@leancodepl/kratos
Version:
Headless React components library for building Ory Kratos authentication flows
25 lines • 1.02 kB
TypeScript
import { IdentityPatch } from './IdentityPatch';
/**
* Patch Identities Body
* @export
* @interface PatchIdentitiesBody
*/
export interface PatchIdentitiesBody {
/**
* Identities holds the list of patches to apply
*
* required
* @type {Array<IdentityPatch>}
* @memberof PatchIdentitiesBody
*/
identities?: Array<IdentityPatch>;
}
/**
* Check if a given object implements the PatchIdentitiesBody interface.
*/
export declare function instanceOfPatchIdentitiesBody(value: object): value is PatchIdentitiesBody;
export declare function PatchIdentitiesBodyFromJSON(json: any): PatchIdentitiesBody;
export declare function PatchIdentitiesBodyFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchIdentitiesBody;
export declare function PatchIdentitiesBodyToJSON(json: any): PatchIdentitiesBody;
export declare function PatchIdentitiesBodyToJSONTyped(value?: PatchIdentitiesBody | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=PatchIdentitiesBody.d.ts.map