/** * NOTE: This class is auto generated by DANA Indonesia. * Do not edit the class manually. */ import type { ValidationErrorContext } from '../../../runtime'; import type { ResultInfo } from './ResultInfo'; import type { MerchantResourceInformation } from './MerchantResourceInformation'; /** * * @export * @interface QueryMerchantResourceResponseResponseBody */ export interface QueryMerchantResourceResponseResponseBody { /** * * @type {ResultInfo} * @memberof QueryMerchantResourceResponseResponseBody */ resultInfo: ResultInfo; /** * Merchant resource information list - will be filled if success * @type {Array} * @memberof QueryMerchantResourceResponseResponseBody */ merchantResourceInformations?: Array; } /** * Check if a given object implements the QueryMerchantResourceResponseResponseBody interface. */ export declare function instanceOfQueryMerchantResourceResponseResponseBody(value: object): value is QueryMerchantResourceResponseResponseBody; export declare function QueryMerchantResourceResponseResponseBodyFromJSON(json: any): QueryMerchantResourceResponseResponseBody; export declare function QueryMerchantResourceResponseResponseBodyFromJSONTyped(json: any, ignoreDiscriminator: boolean): QueryMerchantResourceResponseResponseBody; export declare function QueryMerchantResourceResponseResponseBodyToJSON(json: any): QueryMerchantResourceResponseResponseBody; export declare function QueryMerchantResourceResponseResponseBodyToJSONTyped(value?: QueryMerchantResourceResponseResponseBody | null, ignoreDiscriminator?: boolean): any; export declare function validateQueryMerchantResourceResponseResponseBody(value: QueryMerchantResourceResponseResponseBody): ValidationErrorContext[];