DashboardListResponseObject¶
- pydantic model openapi_client.models.dashboard_list_response_object.DashboardListResponseObject¶
DashboardListResponseObject
- field dashboard_id: Optional[StrictStr] = None (alias 'DashboardId')¶
Unique identifier for the dashboard
- field dashboard_name: Optional[StrictStr] = None (alias 'DashboardName')¶
Name of the dashboard
- field last_modified_time: Optional[StrictStr] = None (alias 'LastModifiedTime')¶
Timestamp when the dashboard was last modified
- field last_modified_by: Optional[StrictStr] = None (alias 'LastModifiedBy')¶
User who last modified the dashboard
- field dashboard_description: Optional[StrictStr] = None (alias 'DashboardDescription')¶
Description of the dashboard
- field access_type: Optional[ResourceAccessType] = None (alias 'AccessType')¶
- field custom_id: Optional[StrictStr] = None (alias 'CustomId')¶
Last 8 characters of DashboardId with hyphens removed (lowercase).
- field current_slug: Optional[StrictStr] = None (alias 'CurrentSlug')¶
PascalCase alphanumeric slug derived from DashboardName.
- field custom_url_path: Optional[StrictStr] = None (alias 'CustomUrlPath')¶
Human-readable path {CurrentSlug}-{CustomId} (for example SalesOverview-3c4d5e6f). Null when CustomId/CurrentSlug are missing.
- 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 DashboardListResponseObject 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 DashboardListResponseObject from a dict
- Return type:
Optional[Self]