/** * NOTE: This class is auto generated by DANA Indonesia. * Do not edit the class manually. */ import type { ValidationErrorContext } from '../../../runtime'; import type { CreateShopResponseResponse } from './CreateShopResponseResponse'; /** * * @export * @interface CreateShopResponse */ export interface CreateShopResponse { /** * * @type {CreateShopResponseResponse} * @memberof CreateShopResponse */ response: CreateShopResponseResponse; } /** * Check if a given object implements the CreateShopResponse interface. */ export declare function instanceOfCreateShopResponse(value: object): value is CreateShopResponse; export declare function CreateShopResponseFromJSON(json: any): CreateShopResponse; export declare function CreateShopResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateShopResponse; export declare function CreateShopResponseToJSON(json: any): CreateShopResponse; export declare function CreateShopResponseToJSONTyped(value?: CreateShopResponse | null, ignoreDiscriminator?: boolean): any; export declare function validateCreateShopResponse(value: CreateShopResponse): ValidationErrorContext[];