/**
* Synapse REST API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: v1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
* OIDC Core 1.0 Claims Request value
* @export
* @interface OIDCClaimsRequestDetails
*/
export interface OIDCClaimsRequestDetails {
/**
*
* @type {boolean}
* @memberof OIDCClaimsRequestDetails
*/
essential?: boolean;
/**
*
* @type {string}
* @memberof OIDCClaimsRequestDetails
*/
value?: string;
/**
*
* @type {Array}
* @memberof OIDCClaimsRequestDetails
*/
values?: Array;
}
/**
* Check if a given object implements the OIDCClaimsRequestDetails interface.
*/
export declare function instanceOfOIDCClaimsRequestDetails(value: object): value is OIDCClaimsRequestDetails;
export declare function OIDCClaimsRequestDetailsFromJSON(json: any): OIDCClaimsRequestDetails;
export declare function OIDCClaimsRequestDetailsFromJSONTyped(json: any, ignoreDiscriminator: boolean): OIDCClaimsRequestDetails;
export declare function OIDCClaimsRequestDetailsToJSON(json: any): OIDCClaimsRequestDetails;
export declare function OIDCClaimsRequestDetailsToJSONTyped(value?: OIDCClaimsRequestDetails | null, ignoreDiscriminator?: boolean): any;