app.bsky.notification.register_push#

pydantic model atproto.xrpc_client.models.app.bsky.notification.register_push.Data#

Bases: DataModelBase

Input data model for app.bsky.notification.registerPush.

Show JSON schema
{
   "title": "Data",
   "description": "Input data model for :obj:`app.bsky.notification.registerPush`.",
   "type": "object",
   "properties": {
      "appId": {
         "title": "Appid",
         "type": "string"
      },
      "platform": {
         "title": "Platform",
         "type": "string"
      },
      "serviceDid": {
         "title": "Servicedid",
         "type": "string"
      },
      "token": {
         "title": "Token",
         "type": "string"
      }
   },
   "additionalProperties": false,
   "required": [
      "appId",
      "platform",
      "serviceDid",
      "token"
   ]
}

Fields:
field app_id: str [Required] (alias 'appId')#

App id.

field platform: str [Required]#

Platform.

field service_did: str [Required] (alias 'serviceDid')#

Service did.

field token: str [Required]#

Token.

class atproto.xrpc_client.models.app.bsky.notification.register_push.DataDict#

Bases: TypedDict

app_id: str#

App id.

platform: str#

Platform.

service_did: str#

Service did.

token: str#

Token.