Shared Link Edit Dto
immichpy.client.generated.models.shared_link_edit_dto.SharedLinkEditDto
pydantic-model
Bases: BaseModel
SharedLinkEditDto
Show JSON schema:
{
"description": "SharedLinkEditDto",
"properties": {
"allowDownload": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"description": "Allow downloads",
"title": "Allowdownload"
},
"allowUpload": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"description": "Allow uploads",
"title": "Allowupload"
},
"changeExpiryTime": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"description": "Whether to change the expiry time. Few clients cannot send null to set the expiryTime to never. Setting this flag and not sending expiryAt is considered as null instead. Clients that can send null values can ignore this.",
"title": "Changeexpirytime"
},
"description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Link description",
"title": "Description"
},
"expiresAt": {
"anyOf": [
{
"format": "date-time",
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Expiration date",
"title": "Expiresat"
},
"password": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Link password",
"title": "Password"
},
"showMetadata": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"description": "Show metadata",
"title": "Showmetadata"
},
"slug": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Custom URL slug",
"title": "Slug"
}
},
"title": "SharedLinkEditDto",
"type": "object"
}
Config:
populate_by_name:Truevalidate_assignment:Trueprotected_namespaces:()
Fields:
-
allow_download(Optional[StrictBool]) -
allow_upload(Optional[StrictBool]) -
change_expiry_time(Optional[StrictBool]) -
description(Optional[StrictStr]) -
expires_at(Optional[datetime]) -
password(Optional[StrictStr]) -
show_metadata(Optional[StrictBool]) -
slug(Optional[StrictStr])
allow_download
pydantic-field
allow_download: Optional[StrictBool] = None
Allow downloads
allow_upload
pydantic-field
allow_upload: Optional[StrictBool] = None
Allow uploads
change_expiry_time
pydantic-field
change_expiry_time: Optional[StrictBool] = None
Whether to change the expiry time. Few clients cannot send null to set the expiryTime to never. Setting this flag and not sending expiryAt is considered as null instead. Clients that can send null values can ignore this.
description
pydantic-field
description: Optional[StrictStr] = None
Link description
expires_at
pydantic-field
expires_at: Optional[datetime] = None
Expiration date
password
pydantic-field
password: Optional[StrictStr] = None
Link password
show_metadata
pydantic-field
show_metadata: Optional[StrictBool] = None
Show metadata
slug
pydantic-field
slug: Optional[StrictStr] = None
Custom URL slug
from_dict
classmethod
from_dict(obj: Optional[Dict[str, Any]]) -> Optional[Self]
Create an instance of SharedLinkEditDto from a dict
Source code in immichpy/client/generated/models/shared_link_edit_dto.py
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 | |
from_json
classmethod
from_json(json_str: str) -> Optional[Self]
Create an instance of SharedLinkEditDto from a JSON string
Source code in immichpy/client/generated/models/shared_link_edit_dto.py
79 80 81 82 | |
to_dict
to_dict() -> Dict[str, Any]
Return the dictionary representation of the model using alias.
This has the following differences from calling pydantic's
self.model_dump(by_alias=True):
Noneis only added to the output dict for nullable fields that were set at model initialization. Other fields with valueNoneare ignored.
Source code in immichpy/client/generated/models/shared_link_edit_dto.py
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 | |
to_json
to_json() -> str
Returns the JSON representation of the model using alias
Source code in immichpy/client/generated/models/shared_link_edit_dto.py
74 75 76 77 | |
to_str
to_str() -> str
Returns the string representation of the model using alias
Source code in immichpy/client/generated/models/shared_link_edit_dto.py
70 71 72 | |