/** * NOTE: This class is auto generated by DANA Indonesia. * Do not edit the class manually. */ import type { ValidationErrorContext } from '../../../runtime'; import type { QueryShopResponseResponse } from './QueryShopResponseResponse'; /** * * @export * @interface QueryShopResponse */ export interface QueryShopResponse { /** * * @type {QueryShopResponseResponse} * @memberof QueryShopResponse */ response: QueryShopResponseResponse; /** * Signature * @type {string} * @memberof QueryShopResponse */ signature?: string; } /** * Check if a given object implements the QueryShopResponse interface. */ export declare function instanceOfQueryShopResponse(value: object): value is QueryShopResponse; export declare function QueryShopResponseFromJSON(json: any): QueryShopResponse; export declare function QueryShopResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): QueryShopResponse; export declare function QueryShopResponseToJSON(json: any): QueryShopResponse; export declare function QueryShopResponseToJSONTyped(value?: QueryShopResponse | null, ignoreDiscriminator?: boolean): any; export declare function validateQueryShopResponse(value: QueryShopResponse): ValidationErrorContext[];