VerticalListItem¶
- pydantic model openapi_client.models.vertical_list_item.VerticalListItem¶
One vertical from GET /verticals. Fields come from the Verticals table plus AccessType. IsQEnabled may be present when set.
- Fields:
- field vertical_id: Optional[StrictStr] = None (alias 'VerticalId')¶
Unique identifier of the vertical.
- field vertical_name: Optional[StrictStr] = None (alias 'VerticalName')¶
Display name of the vertical.
- field vertical_type: Optional[StrictStr] = None (alias 'VerticalType')¶
App key stored on the vertical. BI is “bi” (QS_VERTICAL_NAME).
- field description: Optional[StrictStr] = None (alias 'Description')¶
Optional description.
- field last_modified_time: Optional[StrictStr] = None (alias 'LastModifiedTime')¶
Last modification timestamp used as the default sort key.
- field last_modified_by: Optional[StrictStr] = None (alias 'LastModifiedBy')¶
User who last modified the vertical.
- field created_by: Optional[StrictStr] = None (alias 'CreatedBy')¶
User who created the vertical.
- field creation_time: Optional[StrictStr] = None (alias 'CreationTime')¶
Creation timestamp.
- field access_type: Optional[StrictStr] = None (alias 'AccessType')¶
Caller’s ACL on this vertical (owner, editor, or read-only).
- field is_q_enabled: Optional[StrictStr] = None (alias 'IsQEnabled')¶
Present when set on the vertical. “yes” allows QuickSight Pro roles on grant-access and upgrade-role.
- to_str()¶
Returns the string representation of the model using alias
- Return type:
str
- to_json()¶
Returns the JSON representation of the model using alias
- Return type:
str
- classmethod from_json(json_str)¶
Create an instance of VerticalListItem from a JSON string
- Return type:
Optional[Self]
- to_dict()¶
Return the dictionary representation of the model using alias.
This has the following differences from calling pydantic’s self.model_dump(by_alias=True):
None is only added to the output dict for nullable fields that were set at model initialization. Other fields with value None are ignored.
- Return type:
Dict[str,Any]
- classmethod from_dict(obj)¶
Create an instance of VerticalListItem from a dict
- Return type:
Optional[Self]