Properties
| Name | Type | Description |
|---|---|---|
| Id | object | The Id object of the created Session. |
| Token | object | The token object of this Session. |
| UserCompany | object | The UserCompany object that is logged in with this Session. |
| UserPerson | object | The UserPerson object that is logged in with this Session. |
| UserApiKey | object | The UserApiKey object that is logged in with this Session. |
| UserPaymentServiceProvider | object | The UserPaymentServiceProvider object that is logged in with this Session. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SessionServerCreate",
"title": "SessionServerCreate",
"type": "object",
"properties": {
"Id": {
"type": "object",
"description": "The Id object of the created Session.",
"readOnly": true,
"writeOnly": false,
"$ref": "#/components/schemas/BunqId"
},
"Token": {
"type": "object",
"description": "The token object of this Session.",
"readOnly": true,
"writeOnly": false,
"$ref": "#/components/schemas/SessionServerToken"
},
"UserCompany": {
"type": "object",
"description": "The UserCompany object that is logged in with this Session.",
"readOnly": true,
"writeOnly": false,
"$ref": "#/components/schemas/UserCompany"
},
"UserPerson": {
"type": "object",
"description": "The UserPerson object that is logged in with this Session.",
"readOnly": true,
"writeOnly": false,
"$ref": "#/components/schemas/UserPerson"
},
"UserApiKey": {
"type": "object",
"description": "The UserApiKey object that is logged in with this Session.",
"readOnly": true,
"writeOnly": false,
"$ref": "#/components/schemas/UserApiKey"
},
"UserPaymentServiceProvider": {
"type": "object",
"description": "The UserPaymentServiceProvider object that is logged in with this Session.",
"readOnly": true,
"writeOnly": false,
"$ref": "#/components/schemas/UserPaymentServiceProvider"
}
}
}