/** * NOTE: This class is auto generated by DANA Indonesia. * Do not edit the class manually. */ import type { ValidationErrorContext } from '../../../runtime'; import type { QueryMerchantResourceResponseResponse } from './QueryMerchantResourceResponseResponse'; /** * * @export * @interface QueryMerchantResourceResponse */ export interface QueryMerchantResourceResponse { /** * * @type {QueryMerchantResourceResponseResponse} * @memberof QueryMerchantResourceResponse */ response: QueryMerchantResourceResponseResponse; } /** * Check if a given object implements the QueryMerchantResourceResponse interface. */ export declare function instanceOfQueryMerchantResourceResponse(value: object): value is QueryMerchantResourceResponse; export declare function QueryMerchantResourceResponseFromJSON(json: any): QueryMerchantResourceResponse; export declare function QueryMerchantResourceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): QueryMerchantResourceResponse; export declare function QueryMerchantResourceResponseToJSON(json: any): QueryMerchantResourceResponse; export declare function QueryMerchantResourceResponseToJSONTyped(value?: QueryMerchantResourceResponse | null, ignoreDiscriminator?: boolean): any; export declare function validateQueryMerchantResourceResponse(value: QueryMerchantResourceResponse): ValidationErrorContext[];