/** * NOTE: This class is auto generated by DANA Indonesia. * Do not edit the class manually. */ import type { ValidationErrorContext } from '../../../runtime'; import type { AssetCardListItem } from './AssetCardListItem'; import type { MemberAssetResultInfo } from './MemberAssetResultInfo'; /** * Response body (`resultInfo` mandatory; `assetCardList` optional) * @export * @interface QueryAssetCardListResponseResponseBody */ export interface QueryAssetCardListResponseResponseBody { /** * * @type {MemberAssetResultInfo} * @memberof QueryAssetCardListResponseResponseBody */ resultInfo: MemberAssetResultInfo; /** * Asset card list detail (present when applicable) * @type {Array} * @memberof QueryAssetCardListResponseResponseBody */ assetCardList?: Array; } /** * Check if a given object implements the QueryAssetCardListResponseResponseBody interface. */ export declare function instanceOfQueryAssetCardListResponseResponseBody(value: object): value is QueryAssetCardListResponseResponseBody; export declare function QueryAssetCardListResponseResponseBodyFromJSON(json: any): QueryAssetCardListResponseResponseBody; export declare function QueryAssetCardListResponseResponseBodyFromJSONTyped(json: any, ignoreDiscriminator: boolean): QueryAssetCardListResponseResponseBody; export declare function QueryAssetCardListResponseResponseBodyToJSON(json: any): QueryAssetCardListResponseResponseBody; export declare function QueryAssetCardListResponseResponseBodyToJSONTyped(value?: QueryAssetCardListResponseResponseBody | null, ignoreDiscriminator?: boolean): any; export declare function validateQueryAssetCardListResponseResponseBody(value: QueryAssetCardListResponseResponseBody): ValidationErrorContext[];