/** * NOTE: This class is auto generated by DANA Indonesia. * Do not edit the class manually. */ import type { ValidationErrorContext } from '../../../runtime'; import type { QueryUserProfileResponseResponseHead } from './QueryUserProfileResponseResponseHead'; import type { QueryUserProfileResponseResponseBody } from './QueryUserProfileResponseResponseBody'; /** * * @export * @interface QueryUserProfileResponseResponse */ export interface QueryUserProfileResponseResponse { /** * * @type {QueryUserProfileResponseResponseHead} * @memberof QueryUserProfileResponseResponse */ head: QueryUserProfileResponseResponseHead; /** * * @type {QueryUserProfileResponseResponseBody} * @memberof QueryUserProfileResponseResponse */ body: QueryUserProfileResponseResponseBody; } /** * Check if a given object implements the QueryUserProfileResponseResponse interface. */ export declare function instanceOfQueryUserProfileResponseResponse(value: object): value is QueryUserProfileResponseResponse; export declare function QueryUserProfileResponseResponseFromJSON(json: any): QueryUserProfileResponseResponse; export declare function QueryUserProfileResponseResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): QueryUserProfileResponseResponse; export declare function QueryUserProfileResponseResponseToJSON(json: any): QueryUserProfileResponseResponse; export declare function QueryUserProfileResponseResponseToJSONTyped(value?: QueryUserProfileResponseResponse | null, ignoreDiscriminator?: boolean): any; export declare function validateQueryUserProfileResponseResponse(value: QueryUserProfileResponseResponse): ValidationErrorContext[];