com.atproto.sync.get_repo#

pydantic model atproto.xrpc_client.models.com.atproto.sync.get_repo.Params#

Bases: ParamsModelBase

Parameters model for com.atproto.sync.getRepo.

Show JSON schema
{
   "title": "Params",
   "description": "Parameters model for :obj:`com.atproto.sync.getRepo`.",
   "type": "object",
   "properties": {
      "did": {
         "title": "Did",
         "type": "string"
      },
      "since": {
         "anyOf": [
            {
               "type": "string"
            },
            {
               "type": "null"
            }
         ],
         "default": null,
         "title": "Since"
      }
   },
   "additionalProperties": false,
   "required": [
      "did"
   ]
}

Fields:
field did: str [Required]#

The DID of the repo.

field since: Optional[str] = None#

The revision of the repo to catch up from.

class atproto.xrpc_client.models.com.atproto.sync.get_repo.ParamsDict#

Bases: TypedDict

did: str#

The DID of the repo.

since: typing_extensions.NotRequired[Optional[str]]#

The revision of the repo to catch up from.

atproto.xrpc_client.models.com.atproto.sync.get_repo.Response#

Response raw data type.