/** * 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 SignupProps */ export interface SignupProps { /** * * @type {string} * @memberof SignupProps */ username?: string; /** * * @type {any} * @memberof SignupProps */ referrerId?: any | null; } /** * Check if a given object implements the SignupProps interface. */ export declare function instanceOfSignupProps(value: object): boolean; export declare function SignupPropsFromJSON(json: any): SignupProps; export declare function SignupPropsFromJSONTyped(json: any, ignoreDiscriminator: boolean): SignupProps; export declare function SignupPropsToJSON(value?: SignupProps | null): any;