//#region src/model/ApiSecretTag.d.ts type IApiSecretTag = { key: string; value: string; }; /** * @typedef {Object} IApiSecretTag * @property {String} key * @property {String} value */ /** * The ApiSecretTag model module. * @module model/ApiSecretTag * @type {IApiSecretTag} */ declare class ApiSecretTag { /** * Initializes the fields of this object. * This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins). * Only for internal use. */ static initialize(obj: any, key: any, value: any): void; /** * Constructs a ApiSecretTag from a plain JavaScript object, optionally creating a new instance. * Copies all relevant properties from data to obj if supplied or a new instance if not. * @param {Object} data The plain JavaScript object bearing properties of interest. * @param {module:model/ApiSecretTag} obj Optional instance to populate. * @return {module:model/ApiSecretTag} The populated ApiSecretTag instance. */ static constructFromObject(data: any, obj: any): any; /** * Validates the JSON data with respect to ApiSecretTag. * @param {Object} data The plain JavaScript object bearing properties of interest. * @return {boolean} to indicate whether the JSON data is valid with respect to ApiSecretTag. */ static validateJSON(data: any): boolean; /** * Constructs a new ApiSecretTag. * @alias module:model/ApiSecretTag * @param {String} key - * @param {String} value - */ constructor(key: string, value: string); key: string; value: string; } declare namespace ApiSecretTag { let RequiredProperties: string[]; } //#endregion export { IApiSecretTag, ApiSecretTag as default };