Sha256: 98f6eed479607f72e1c3fd3fbd402b84439cb5df57e6718543e6d8ca9e0486ac
Contents?: true
Size: 1.22 KB
Versions: 26
Compression:
Stored size: 1.22 KB
Contents
# OryClient::AdminUpdateIdentityBody ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **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( metadata_admin: null, metadata_public: null, schema_id: null, state: null, traits: null ) ```
Version data entries
26 entries across 26 versions & 1 rubygems