/** * NOTE: This class is auto generated by DANA Indonesia. * Do not edit the class manually. */ import type { ValidationErrorContext } from '../../../runtime'; import type { ApplyTokenResponseAdditionalInfoUserInfo } from './ApplyTokenResponseAdditionalInfoUserInfo'; /** * * @export * @interface ApplyTokenResponseAdditionalInfo */ export interface ApplyTokenResponseAdditionalInfo { /** * * @type {ApplyTokenResponseAdditionalInfoUserInfo} * @memberof ApplyTokenResponseAdditionalInfo */ userInfo?: ApplyTokenResponseAdditionalInfoUserInfo; } /** * Check if a given object implements the ApplyTokenResponseAdditionalInfo interface. */ export declare function instanceOfApplyTokenResponseAdditionalInfo(value: object): value is ApplyTokenResponseAdditionalInfo; export declare function ApplyTokenResponseAdditionalInfoFromJSON(json: any): ApplyTokenResponseAdditionalInfo; export declare function ApplyTokenResponseAdditionalInfoFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApplyTokenResponseAdditionalInfo; export declare function ApplyTokenResponseAdditionalInfoToJSON(json: any): ApplyTokenResponseAdditionalInfo; export declare function ApplyTokenResponseAdditionalInfoToJSONTyped(value?: ApplyTokenResponseAdditionalInfo | null, ignoreDiscriminator?: boolean): any; export declare function validateApplyTokenResponseAdditionalInfo(value: ApplyTokenResponseAdditionalInfo): ValidationErrorContext[];