Struct google_coordinate1::CustomFieldDef [] [src]

pub struct CustomFieldDef {
    pub kind: Option<String>,
    pub enumitems: Option<Vec<EnumItemDef>>,
    pub name: Option<String>,
    pub type_: Option<String>,
    pub required_for_checkout: Option<bool>,
    pub enabled: Option<bool>,
    pub id: Option<String>,
}

Custom field definition.

This type is not used in any activity, and only used as part of another schema.

Fields

Identifies this object as a custom field definition.

List of enum items for this custom field. Populated only if the field type is enum. Enum fields appear as 'lists' in the Coordinate web and mobile UI.

Custom field name.

Custom field type.

Whether the field is required for checkout.

Whether the field is enabled.

Custom field id.

Trait Implementations

impl Debug for CustomFieldDef
[src]

Formats the value using the given formatter.

impl Clone for CustomFieldDef
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for CustomFieldDef
[src]

Returns the "default value" for a type. Read more

impl Part for CustomFieldDef
[src]