/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { ClientMetadata } from './ClientMetadata'; import { ClientTypeEnum } from './ClientTypeEnum'; /** * Request body for `POST /auth/grant/code`. `client_type` is required so the * authorizing user always sees what kind of client they are approving; pass * `other` if no specific category fits. * @export * @interface GrantCodeRequest */ export interface GrantCodeRequest { /** * * @type {ClientTypeEnum} * @memberof GrantCodeRequest */ clientType: ClientTypeEnum; /** * * @type {ClientMetadata} * @memberof GrantCodeRequest */ clientMetadata?: ClientMetadata; } export declare function GrantCodeRequestFromJSON(json: any): GrantCodeRequest; export declare function GrantCodeRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): GrantCodeRequest; export declare function GrantCodeRequestToJSON(value?: GrantCodeRequest | null): any;