/** * Nominex TMA API * API config for Nominex TMA * * The version of the OpenAPI document: 0.0.17 * * * 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 AuthCodeConfirmProps */ export interface AuthCodeConfirmProps { /** * * @type {string} * @memberof AuthCodeConfirmProps */ code?: string; } /** * Check if a given object implements the AuthCodeConfirmProps interface. */ export declare function instanceOfAuthCodeConfirmProps(value: object): boolean; export declare function AuthCodeConfirmPropsFromJSON(json: any): AuthCodeConfirmProps; export declare function AuthCodeConfirmPropsFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuthCodeConfirmProps; export declare function AuthCodeConfirmPropsToJSON(value?: AuthCodeConfirmProps | null): any;