/** * 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. */ /** * OAuth 2.0 Client ID and secret, generated when a new client is created * @export * @interface OAuthClientIdAndSecret */ export interface OAuthClientIdAndSecret { /** * The unique ID for the OAuth client, created by Synapse * @type {string} * @memberof OAuthClientIdAndSecret */ client_id?: string; /** * The shared secret used to exchange an access code for an access token. Returned only during initial client creation. * @type {string} * @memberof OAuthClientIdAndSecret */ client_secret?: string; } /** * Check if a given object implements the OAuthClientIdAndSecret interface. */ export declare function instanceOfOAuthClientIdAndSecret(value: object): value is OAuthClientIdAndSecret; export declare function OAuthClientIdAndSecretFromJSON(json: any): OAuthClientIdAndSecret; export declare function OAuthClientIdAndSecretFromJSONTyped(json: any, ignoreDiscriminator: boolean): OAuthClientIdAndSecret; export declare function OAuthClientIdAndSecretToJSON(json: any): OAuthClientIdAndSecret; export declare function OAuthClientIdAndSecretToJSONTyped(value?: OAuthClientIdAndSecret | null, ignoreDiscriminator?: boolean): any;