/** * SmartyMeet Dev03 API REST * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.1 * Contact: developer@smartymeet.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface UserAttributesSchemaIdentitiesInner */ export interface UserAttributesSchemaIdentitiesInner { /** * Cognito identity provider name (Google, LinkedIn, or ms-{shortCode}) * @type {string} * @memberof UserAttributesSchemaIdentitiesInner */ provider?: string; /** * The provider's subject identifier. Pairwise per client_id at Entra, so it only matches tokens issued to the same app registration as the IdP. * @type {string} * @memberof UserAttributesSchemaIdentitiesInner */ sub?: string; /** * * @type {string} * @memberof UserAttributesSchemaIdentitiesInner */ linkedAt?: string; } /** * Check if a given object implements the UserAttributesSchemaIdentitiesInner interface. */ export declare function instanceOfUserAttributesSchemaIdentitiesInner(value: object): value is UserAttributesSchemaIdentitiesInner; export declare function UserAttributesSchemaIdentitiesInnerFromJSON(json: any): UserAttributesSchemaIdentitiesInner; export declare function UserAttributesSchemaIdentitiesInnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserAttributesSchemaIdentitiesInner; export declare function UserAttributesSchemaIdentitiesInnerToJSON(json: any): UserAttributesSchemaIdentitiesInner; export declare function UserAttributesSchemaIdentitiesInnerToJSONTyped(value?: UserAttributesSchemaIdentitiesInner | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=UserAttributesSchemaIdentitiesInner.d.ts.map