/** * NOTE: This class is auto generated by DANA Indonesia. * Do not edit the class manually. */ import type { ValidationErrorContext } from '../../../runtime'; /** * * @export * @interface UserName */ export interface UserName { /** * First name * @type {string} * @memberof UserName */ firstName?: string; /** * Last name * @type {string} * @memberof UserName */ lastName?: string; } /** * Check if a given object implements the UserName interface. */ export declare function instanceOfUserName(value: object): value is UserName; export declare function UserNameFromJSON(json: any): UserName; export declare function UserNameFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserName; export declare function UserNameToJSON(json: any): UserName; export declare function UserNameToJSONTyped(value?: UserName | null, ignoreDiscriminator?: boolean): any; export declare function validateUserName(value: UserName): ValidationErrorContext[];