/** * NOTE: This class is auto generated by DANA Indonesia. * Do not edit the class manually. */ import type { ValidationErrorContext } from '../../../runtime'; import type { QueryAssetCardListResponseResponse } from './QueryAssetCardListResponseResponse'; /** * * @export * @interface QueryAssetCardListResponse */ export interface QueryAssetCardListResponse { /** * * @type {QueryAssetCardListResponseResponse} * @memberof QueryAssetCardListResponse */ response: QueryAssetCardListResponseResponse; /** * Signature * @type {string} * @memberof QueryAssetCardListResponse */ signature?: string; } /** * Check if a given object implements the QueryAssetCardListResponse interface. */ export declare function instanceOfQueryAssetCardListResponse(value: object): value is QueryAssetCardListResponse; export declare function QueryAssetCardListResponseFromJSON(json: any): QueryAssetCardListResponse; export declare function QueryAssetCardListResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): QueryAssetCardListResponse; export declare function QueryAssetCardListResponseToJSON(json: any): QueryAssetCardListResponse; export declare function QueryAssetCardListResponseToJSONTyped(value?: QueryAssetCardListResponse | null, ignoreDiscriminator?: boolean): any; export declare function validateQueryAssetCardListResponse(value: QueryAssetCardListResponse): ValidationErrorContext[];