com.atproto.server.create_app_password#
- pydantic model atproto.xrpc_client.models.com.atproto.server.create_app_password.AppPassword#
Bases:
ModelBase
Definition model for
com.atproto.server.createAppPassword
.Show JSON schema
{ "title": "AppPassword", "description": "Definition model for :obj:`com.atproto.server.createAppPassword`.", "type": "object", "properties": { "createdAt": { "title": "Createdat", "type": "string" }, "name": { "title": "Name", "type": "string" }, "password": { "title": "Password", "type": "string" }, "$type": { "const": "com.atproto.server.createAppPassword#appPassword", "default": "com.atproto.server.createAppPassword#appPassword", "title": "$Type" } }, "additionalProperties": false, "required": [ "createdAt", "name", "password" ] }
- Fields:
- field created_at: str [Required] (alias 'createdAt')#
Created at.
- field name: str [Required]#
Name.
- field password: str [Required]#
Password.
- field py_type: typing_extensions.Literal[com.atproto.server.createAppPassword#appPassword] = 'com.atproto.server.createAppPassword#appPassword' (alias '$type')#
- pydantic model atproto.xrpc_client.models.com.atproto.server.create_app_password.Data#
Bases:
DataModelBase
Input data model for
com.atproto.server.createAppPassword
.Show JSON schema
{ "title": "Data", "description": "Input data model for :obj:`com.atproto.server.createAppPassword`.", "type": "object", "properties": { "name": { "title": "Name", "type": "string" } }, "additionalProperties": false, "required": [ "name" ] }
- Fields:
- field name: str [Required]#
Name.