/** * Linkbreakers API * This is a documentation of all the APIs of Linkbreakers * * The version of the OpenAPI document: 1.118.3 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Provides lightweight segmentation metadata Linkbreakers attaches to links and analytics so teams can group campaigns * and filter dashboards. * @export * @interface ApiTag */ export interface ApiTag { /** * * @type {Date} * @memberof ApiTag */ readonly createdAt?: Date; /** * * @type {string} * @memberof ApiTag */ id?: string; /** * * @type {string} * @memberof ApiTag */ name?: string; /** * * @type {Date} * @memberof ApiTag */ readonly updatedAt?: Date; } /** * Check if a given object implements the ApiTag interface. */ export declare function instanceOfApiTag(value: object): value is ApiTag; export declare function ApiTagFromJSON(json: any): ApiTag; export declare function ApiTagFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiTag; export declare function ApiTagToJSON(json: any): ApiTag; export declare function ApiTagToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any;