/** * NOTE: This class is auto generated by DANA Indonesia. * Do not edit the class manually. */ import type { ValidationErrorContext } from '../../../runtime'; import type { UpdateShopResponseResponse } from './UpdateShopResponseResponse'; /** * * @export * @interface UpdateShopResponse */ export interface UpdateShopResponse { /** * * @type {UpdateShopResponseResponse} * @memberof UpdateShopResponse */ response: UpdateShopResponseResponse; /** * Signature * @type {string} * @memberof UpdateShopResponse */ signature?: string; } /** * Check if a given object implements the UpdateShopResponse interface. */ export declare function instanceOfUpdateShopResponse(value: object): value is UpdateShopResponse; export declare function UpdateShopResponseFromJSON(json: any): UpdateShopResponse; export declare function UpdateShopResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateShopResponse; export declare function UpdateShopResponseToJSON(json: any): UpdateShopResponse; export declare function UpdateShopResponseToJSONTyped(value?: UpdateShopResponse | null, ignoreDiscriminator?: boolean): any; export declare function validateUpdateShopResponse(value: UpdateShopResponse): ValidationErrorContext[];