pub struct StoreLayout {
pub homepage_id: Option<String>,
pub store_layout_type: Option<String>,
}Expand description
General setting for the managed Google Play store layout, currently only specifying the page to display the first time the store is opened.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- get store layout enterprises (response)
- set store layout enterprises (request|response)
Fields§
§homepage_id: Option<String>The ID of the store page to be used as the homepage. The homepage is the first page shown in the managed Google Play Store. Not specifying a homepage is equivalent to setting the store layout type to “basic”.
store_layout_type: Option<String>The store layout type. By default, this value is set to “basic” if the homepageId field is not set, and to “custom” otherwise. If set to “basic”, the layout will consist of all approved apps that have been whitelisted for the user.
Trait Implementations§
Source§impl Clone for StoreLayout
impl Clone for StoreLayout
Source§fn clone(&self) -> StoreLayout
fn clone(&self) -> StoreLayout
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more