/** * NOTE: This class is auto generated by DANA Indonesia. * Do not edit the class manually. */ import type { ValidationErrorContext } from '../../../runtime'; /** * * @export * @interface QueryAssetCardListResponseResponseHead */ export interface QueryAssetCardListResponseResponseHead { /** * API version * @type {string} * @memberof QueryAssetCardListResponseResponseHead */ version?: string; /** * API interface * @type {string} * @memberof QueryAssetCardListResponseResponseHead */ _function?: QueryAssetCardListResponseResponseHeadFunctionEnum; /** * Client ID provided by DANA, used to identify partner and application system * @type {string} * @memberof QueryAssetCardListResponseResponseHead */ clientId?: string; /** * DateTime with timezone (ISO-8601) * @type {string} * @memberof QueryAssetCardListResponseResponseHead */ respTime?: string; /** * Request message ID * @type {string} * @memberof QueryAssetCardListResponseResponseHead */ reqMsgId?: string; /** * As a secret key of client. Assigned client secret during registration * @type {string} * @memberof QueryAssetCardListResponseResponseHead */ clientSecret?: string; /** * * @type {any} * @memberof QueryAssetCardListResponseResponseHead */ reserve?: any | null; } /** * @export */ export declare const QueryAssetCardListResponseResponseHeadFunctionEnum: { readonly DanaMemberAssetQueryAssetCardList: "dana.member.asset.queryAssetCardList"; }; export type QueryAssetCardListResponseResponseHeadFunctionEnum = typeof QueryAssetCardListResponseResponseHeadFunctionEnum[keyof typeof QueryAssetCardListResponseResponseHeadFunctionEnum] | ''; /** * Check if a given object implements the QueryAssetCardListResponseResponseHead interface. */ export declare function instanceOfQueryAssetCardListResponseResponseHead(value: object): value is QueryAssetCardListResponseResponseHead; export declare function QueryAssetCardListResponseResponseHeadFromJSON(json: any): QueryAssetCardListResponseResponseHead; export declare function QueryAssetCardListResponseResponseHeadFromJSONTyped(json: any, ignoreDiscriminator: boolean): QueryAssetCardListResponseResponseHead; export declare function QueryAssetCardListResponseResponseHeadToJSON(json: any): QueryAssetCardListResponseResponseHead; export declare function QueryAssetCardListResponseResponseHeadToJSONTyped(value?: QueryAssetCardListResponseResponseHead | null, ignoreDiscriminator?: boolean): any; export declare function validateQueryAssetCardListResponseResponseHead(value: QueryAssetCardListResponseResponseHead): ValidationErrorContext[];