/** * NOTE: This class is auto generated by DANA Indonesia. * Do not edit the class manually. */ import type { ValidationErrorContext } from '../../../runtime'; /** * * @export * @interface CreateShopResponseResponseHead */ export interface CreateShopResponseResponseHead { /** * API version * @type {string} * @memberof CreateShopResponseResponseHead */ version?: string; /** * API interface * @type {string} * @memberof CreateShopResponseResponseHead */ _function?: CreateShopResponseResponseHeadFunctionEnum; /** * Client ID provided by DANA, used to identify partner and application system * @type {string} * @memberof CreateShopResponseResponseHead */ clientId?: string; /** * DateTime with timezone, which follows the ISO-8601 standard. Refer to RFC 3339 Section 5.6 * @type {string} * @memberof CreateShopResponseResponseHead */ respTime?: string; /** * Request message ID * @type {string} * @memberof CreateShopResponseResponseHead */ reqMsgId?: string; } /** * @export */ export declare const CreateShopResponseResponseHeadFunctionEnum: { readonly DanaMerchantShopCreateShop: "dana.merchant.shop.createShop"; }; export type CreateShopResponseResponseHeadFunctionEnum = typeof CreateShopResponseResponseHeadFunctionEnum[keyof typeof CreateShopResponseResponseHeadFunctionEnum] | ''; /** * Check if a given object implements the CreateShopResponseResponseHead interface. */ export declare function instanceOfCreateShopResponseResponseHead(value: object): value is CreateShopResponseResponseHead; export declare function CreateShopResponseResponseHeadFromJSON(json: any): CreateShopResponseResponseHead; export declare function CreateShopResponseResponseHeadFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateShopResponseResponseHead; export declare function CreateShopResponseResponseHeadToJSON(json: any): CreateShopResponseResponseHead; export declare function CreateShopResponseResponseHeadToJSONTyped(value?: CreateShopResponseResponseHead | null, ignoreDiscriminator?: boolean): any; export declare function validateCreateShopResponseResponseHead(value: CreateShopResponseResponseHead): ValidationErrorContext[];