2017-10-30 2 views

答えて

0

プレゼンテーション全体については、this documentationを確認できます。

JSON表現

{ 
    "presentationId": string, 
    "pageSize": { 
    object(Size) 
    }, 
    "slides": [ 
    { 
     object(Page) 
    } 
    ], 
    "title": string, 
    "masters": [ 
    { 
     object(Page) 
    } 
    ], 
    "layouts": [ 
    { 
     object(Page) 
    } 
    ], 
    "locale": string, 
    "revisionId": string, 
    "notesMaster": { 
    object(Page) 
    }, 
} 

各ページについて、あなたはREST Resource: presentations.pagesを参照することができます。

JSON表現

{ 
    "objectId": string, 
    "pageType": enum(PageType), 
    "pageElements": [ 
    { 
     object(PageElement) 
    } 
    ], 
    "revisionId": string, 
    "pageProperties": { 
    object(PageProperties) 
    }, 

    // Union field properties can be only one of the following: 
    "slideProperties": { 
    object(SlideProperties) 
    }, 
    "layoutProperties": { 
    object(LayoutProperties) 
    }, 
    "notesProperties": { 
    object(NotesProperties) 
    }, 
    "masterProperties": { 
    object(MasterProperties) 
    }, 
    // End of list of possible types for union field properties. 
} 
関連する問題