/** * NOTE: This class is auto generated by DANA Indonesia. * Do not edit the class manually. */ import type { ValidationErrorContext } from '../../../runtime'; /** * Additional information of user. Contains publicUserId * @export * @interface ApplyTokenResponseAdditionalInfoUserInfo */ export interface ApplyTokenResponseAdditionalInfoUserInfo { /** * Static unique identifier for one user * @type {string} * @memberof ApplyTokenResponseAdditionalInfoUserInfo */ publicUserId?: string; } /** * Check if a given object implements the ApplyTokenResponseAdditionalInfoUserInfo interface. */ export declare function instanceOfApplyTokenResponseAdditionalInfoUserInfo(value: object): value is ApplyTokenResponseAdditionalInfoUserInfo; export declare function ApplyTokenResponseAdditionalInfoUserInfoFromJSON(json: any): ApplyTokenResponseAdditionalInfoUserInfo; export declare function ApplyTokenResponseAdditionalInfoUserInfoFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApplyTokenResponseAdditionalInfoUserInfo; export declare function ApplyTokenResponseAdditionalInfoUserInfoToJSON(json: any): ApplyTokenResponseAdditionalInfoUserInfo; export declare function ApplyTokenResponseAdditionalInfoUserInfoToJSONTyped(value?: ApplyTokenResponseAdditionalInfoUserInfo | null, ignoreDiscriminator?: boolean): any; export declare function validateApplyTokenResponseAdditionalInfoUserInfo(value: ApplyTokenResponseAdditionalInfoUserInfo): ValidationErrorContext[];