/** * NOTE: This class is auto generated by DANA Indonesia. * Do not edit the class manually. */ import type { ValidationErrorContext } from '../../../runtime'; import type { QueryMerchantInfoResponseResponse } from './QueryMerchantInfoResponseResponse'; /** * * @export * @interface QueryMerchantInfoResponse */ export interface QueryMerchantInfoResponse { /** * * @type {QueryMerchantInfoResponseResponse} * @memberof QueryMerchantInfoResponse */ response?: QueryMerchantInfoResponseResponse; /** * Signature * @type {string} * @memberof QueryMerchantInfoResponse */ signature?: string; } /** * Check if a given object implements the QueryMerchantInfoResponse interface. */ export declare function instanceOfQueryMerchantInfoResponse(value: object): value is QueryMerchantInfoResponse; export declare function QueryMerchantInfoResponseFromJSON(json: any): QueryMerchantInfoResponse; export declare function QueryMerchantInfoResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): QueryMerchantInfoResponse; export declare function QueryMerchantInfoResponseToJSON(json: any): QueryMerchantInfoResponse; export declare function QueryMerchantInfoResponseToJSONTyped(value?: QueryMerchantInfoResponse | null, ignoreDiscriminator?: boolean): any; export declare function validateQueryMerchantInfoResponse(value: QueryMerchantInfoResponse): ValidationErrorContext[];