Sha256: 05cfad1508ae7760b055f50d9bc374e65c2abcb1e060c3a2d24ade9d18930af3
Contents?: true
Size: 1.39 KB
Versions: 2
Compression:
Stored size: 1.39 KB
Contents
# OryKratosClient::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-kratos-client' instance = OryKratosClient::UpdateIdentityBody.new( credentials: null, metadata_admin: null, metadata_public: null, schema_id: null, state: null, traits: null ) ```
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ory-kratos-client-1.2.1 | docs/UpdateIdentityBody.md |
ory-kratos-client-1.1.0 | docs/UpdateIdentityBody.md |