initial commit with code

This commit is contained in:
Kyle MacDonald
2024-06-13 13:51:50 -04:00
parent 0d66e8ff7b
commit 0d763fc89a
1109 changed files with 130690 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
# Client
## Fields
| Field | Type | Required | Description |
| ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- |
| `object` | [com.clerk.backend_api.models.components.Object](../../models/components/Object.md) | :heavy_check_mark: | String representing the object's type. Objects of the same type share the same value.<br/> |
| `id` | *String* | :heavy_check_mark: | String representing the identifier of the session.<br/> |
| `sessionIds` | List<*String*> | :heavy_check_mark: | N/A |
| `sessions` | List<[com.clerk.backend_api.models.components.Session](../../models/components/Session.md)> | :heavy_check_mark: | N/A |
| `signInId` | *Optional<? extends String>* | :heavy_check_mark: | N/A |
| `signUpId` | *Optional<? extends String>* | :heavy_check_mark: | N/A |
| `lastActiveSessionId` | *Optional<? extends String>* | :heavy_check_mark: | Last active session_id.<br/> |
| `updatedAt` | *long* | :heavy_check_mark: | Unix timestamp of last update.<br/> |
| `createdAt` | *long* | :heavy_check_mark: | Unix timestamp of creation.<br/> |