/** * NOTE: This class is auto generated by DANA Indonesia. * Do not edit the class manually. */ import type { ValidationErrorContext } from '../../../runtime'; import type { CreateShopResponseResponseHead } from './CreateShopResponseResponseHead'; import type { CreateShopResponseResponseBody } from './CreateShopResponseResponseBody'; /** * * @export * @interface CreateShopResponseResponse */ export interface CreateShopResponseResponse { /** * * @type {CreateShopResponseResponseHead} * @memberof CreateShopResponseResponse */ head: CreateShopResponseResponseHead; /** * * @type {CreateShopResponseResponseBody} * @memberof CreateShopResponseResponse */ body: CreateShopResponseResponseBody; } /** * Check if a given object implements the CreateShopResponseResponse interface. */ export declare function instanceOfCreateShopResponseResponse(value: object): value is CreateShopResponseResponse; export declare function CreateShopResponseResponseFromJSON(json: any): CreateShopResponseResponse; export declare function CreateShopResponseResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateShopResponseResponse; export declare function CreateShopResponseResponseToJSON(json: any): CreateShopResponseResponse; export declare function CreateShopResponseResponseToJSONTyped(value?: CreateShopResponseResponse | null, ignoreDiscriminator?: boolean): any; export declare function validateCreateShopResponseResponse(value: CreateShopResponseResponse): ValidationErrorContext[];