Sha256: 3c6be2895bd076dad8c3cb464bb9027da20bc9df3d68d8fb0579376e3934c62c
Contents?: true
Size: 1.35 KB
Versions: 37
Compression:
Stored size: 1.35 KB
Contents
# OryClient::AdminUpdateIdentityBody ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **credentials** | [**AdminIdentityImportCredentials**](AdminIdentityImportCredentials.md) | | [optional] | | **metadata_admin** | **Object** | Store metadata about the user which is only accessible through admin APIs such as `GET /admin/identities/<id>`. | [optional] | | **metadata_public** | **Object** | Store metadata about the identity which the identity itself can see when calling for example the session endpoint. Do not store sensitive information (e.g. credit score) about the identity in this field. | [optional] | | **schema_id** | **String** | SchemaID is the ID of the JSON Schema to be used for validating the identity's traits. If set will update the Identity's SchemaID. | | | **state** | [**IdentityState**](IdentityState.md) | | | | **traits** | **Object** | Traits represent an identity's traits. The identity is able to create, modify, and delete traits in a self-service manner. The input will always be validated against the JSON Schema defined in `schema_id`. | | ## Example ```ruby require 'ory-client' instance = OryClient::AdminUpdateIdentityBody.new( credentials: null, metadata_admin: null, metadata_public: null, schema_id: null, state: null, traits: null ) ```
Version data entries
37 entries across 37 versions & 1 rubygems