UNPKG

fastcomments-sdk

Version:

FastComments API Client - A SDK for interacting with the FastComments API

81 lines 2.11 kB
/** * 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 CommentUserBadgeInfo */ export interface CommentUserBadgeInfo { /** * * @type {string} * @memberof CommentUserBadgeInfo */ id: string; /** * * @type {number} * @memberof CommentUserBadgeInfo */ type: number; /** * * @type {string} * @memberof CommentUserBadgeInfo */ description: string; /** * * @type {string} * @memberof CommentUserBadgeInfo */ displayLabel?: string | null; /** * * @type {string} * @memberof CommentUserBadgeInfo */ displaySrc?: string | null; /** * * @type {string} * @memberof CommentUserBadgeInfo */ backgroundColor?: string | null; /** * * @type {string} * @memberof CommentUserBadgeInfo */ borderColor?: string | null; /** * * @type {string} * @memberof CommentUserBadgeInfo */ textColor?: string | null; /** * * @type {string} * @memberof CommentUserBadgeInfo */ cssClass?: string | null; } /** * Check if a given object implements the CommentUserBadgeInfo interface. */ export declare function instanceOfCommentUserBadgeInfo(value: object): value is CommentUserBadgeInfo; export declare function CommentUserBadgeInfoFromJSON(json: any): CommentUserBadgeInfo; export declare function CommentUserBadgeInfoFromJSONTyped(json: any, ignoreDiscriminator: boolean): CommentUserBadgeInfo; export declare function CommentUserBadgeInfoToJSON(json: any): CommentUserBadgeInfo; export declare function CommentUserBadgeInfoToJSONTyped(value?: CommentUserBadgeInfo | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CommentUserBadgeInfo.d.ts.map