/** *

A description of the identity.

*/ export interface _IdentityDescription { /** *

A unique identifier in the format REGION:GUID.

*/ IdentityId?: string; /** *

A set of optional name-value pairs that map provider names to provider tokens.

*/ Logins?: Array | Iterable; /** *

Date on which the identity was created.

*/ CreationDate?: Date | string | number; /** *

Date on which the identity was last modified.

*/ LastModifiedDate?: Date | string | number; } export interface _UnmarshalledIdentityDescription extends _IdentityDescription { /** *

A set of optional name-value pairs that map provider names to provider tokens.

*/ Logins?: Array; /** *

Date on which the identity was created.

*/ CreationDate?: Date; /** *

Date on which the identity was last modified.

*/ LastModifiedDate?: Date; }