@apideck/node
Version:
Apideck Node.js SDK
40 lines (39 loc) • 1.17 kB
TypeScript
/**
* Apideck
* The Apideck OpenAPI Spec: SDK Optimized
*
* The version of the OpenAPI document: 10.13.0
* Contact: support@apideck.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
*
* @export
* @interface CollectionTag
*/
export interface CollectionTag {
/**
* A unique identifier for an object.
* @type {string}
* @memberof CollectionTag
*/
id: string | null;
/**
* The name of the tag.
* @type {string}
* @memberof CollectionTag
*/
readonly name?: string | null;
/**
* When custom mappings are configured on the resource, the result is included here.
* @type {object}
* @memberof CollectionTag
*/
readonly custom_mappings?: object | null;
}
export declare function CollectionTagFromJSON(json: any): CollectionTag;
export declare function CollectionTagFromJSONTyped(json: any, ignoreDiscriminator: boolean): CollectionTag;
export declare function CollectionTagToJSON(value?: CollectionTag | null): any;