fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
153 lines • 3.11 kB
TypeScript
/**
* fastcomments
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 0.0.0
*
*
* 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 TenantBadge
*/
export interface TenantBadge {
/**
*
* @type {string}
* @memberof TenantBadge
*/
id: string;
/**
*
* @type {string}
* @memberof TenantBadge
*/
tenantId: string;
/**
*
* @type {string}
* @memberof TenantBadge
*/
createdByUserId: string;
/**
*
* @type {Date}
* @memberof TenantBadge
*/
createdAt: Date;
/**
*
* @type {boolean}
* @memberof TenantBadge
*/
enabled: boolean;
/**
*
* @type {string}
* @memberof TenantBadge
*/
urlId?: string | null;
/**
*
* @type {number}
* @memberof TenantBadge
*/
type: number;
/**
*
* @type {number}
* @memberof TenantBadge
*/
threshold: number;
/**
*
* @type {number}
* @memberof TenantBadge
*/
uses: number;
/**
*
* @type {string}
* @memberof TenantBadge
*/
name: string;
/**
*
* @type {string}
* @memberof TenantBadge
*/
description: string;
/**
*
* @type {string}
* @memberof TenantBadge
*/
displayLabel: string;
/**
*
* @type {string}
* @memberof TenantBadge
*/
displaySrc: string | null;
/**
*
* @type {string}
* @memberof TenantBadge
*/
backgroundColor: string | null;
/**
*
* @type {string}
* @memberof TenantBadge
*/
borderColor: string | null;
/**
*
* @type {string}
* @memberof TenantBadge
*/
textColor: string | null;
/**
*
* @type {string}
* @memberof TenantBadge
*/
cssClass?: string | null;
/**
*
* @type {number}
* @memberof TenantBadge
*/
veteranUserThresholdMillis?: number | null;
/**
*
* @type {boolean}
* @memberof TenantBadge
*/
isAwaitingReprocess: boolean;
/**
*
* @type {boolean}
* @memberof TenantBadge
*/
isAwaitingDeletion: boolean;
/**
*
* @type {string}
* @memberof TenantBadge
*/
replacesBadgeId?: string | null;
}
/**
* Check if a given object implements the TenantBadge interface.
*/
export declare function instanceOfTenantBadge(value: object): value is TenantBadge;
export declare function TenantBadgeFromJSON(json: any): TenantBadge;
export declare function TenantBadgeFromJSONTyped(json: any, ignoreDiscriminator: boolean): TenantBadge;
export declare function TenantBadgeToJSON(json: any): TenantBadge;
export declare function TenantBadgeToJSONTyped(value?: TenantBadge | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=TenantBadge.d.ts.map