module PagesResource: sig .. end
val get : ?base_url:string ->
?etag:string ->
?std_params:GapiService.StandardParameters.t ->
blogId:string ->
pageId:string ->
GapiConversation.Session.t ->
GapiBloggerV2Model.Page.t * GapiConversation.Session.t
Gets one blog page by id.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/blogger/v2/").
etag : Optional ETag.
std_params : Optional standard parameters.
blogId : ID of the blog containing the page.
pageId : The ID of the page to get.
val list : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
?fetchBodies:bool ->
blogId:string ->
GapiConversation.Session.t ->
GapiBloggerV2Model.PageList.t * GapiConversation.Session.t
Retrieves pages for a blog, possibly filtered.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/blogger/v2/").
std_params : Optional standard parameters.
fetchBodies : Whether to retrieve the Page bodies.
blogId : ID of the blog to fetch pages from.