GetTagByKeyResponse¶
- pydantic model openapi_client.models.get_tag_by_key_response.GetTagByKeyResponse¶
Response from GET /tags/{key} when key=user. Returns all system users wrapped in a tag-like structure. Metadata fields (TagValue, CreationTime, CreatedBy, LastModifiedTime) are hardcoded to “N/A”.
- Fields:
- field tag_key: Optional[StrictStr] = None (alias 'TagKey')¶
Always “user” for the only supported key.
- field tag_value: Optional[StrictStr] = None (alias 'TagValue')¶
Always “N/A” for key=user.
- field creation_time: Optional[StrictStr] = None (alias 'CreationTime')¶
Always “N/A” for key=user.
- field created_by: Optional[StrictStr] = None (alias 'CreatedBy')¶
Always “N/A” for key=user.
- field last_modified_time: Optional[StrictStr] = None (alias 'LastModifiedTime')¶
Always “N/A” for key=user.
- field message: Optional[StrictStr] = None (alias 'Message')¶
Always the literal string “string” for key=user.
- field user_attached: Optional[List[GetTagByKeyResponseUserAttachedInner]] = None (alias 'UserAttached')¶
List of all users in the system.
- 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 GetTagByKeyResponse 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 GetTagByKeyResponse from a dict
- Return type:
Optional[Self]