Sha256: e6bfee4d43e8c7a16a32ae0522b79351a4554efd0ef28e6124bc129af20f8325
Contents?: true
Size: 1.37 KB
Versions: 35
Compression:
Stored size: 1.37 KB
Contents
# OryClient::UpdateIdentityBody ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **credentials** | [**IdentityWithCredentials**](IdentityWithCredentials.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** | **String** | State is the identity's state. active StateActive inactive StateInactive | | | **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::UpdateIdentityBody.new( credentials: null, metadata_admin: null, metadata_public: null, schema_id: null, state: null, traits: null ) ```
Version data entries
35 entries across 35 versions & 1 rubygems