fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
45 lines • 1.45 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 CreateUserBadgeParams
*/
export interface CreateUserBadgeParams {
/**
*
* @type {string}
* @memberof CreateUserBadgeParams
*/
userId: string;
/**
*
* @type {string}
* @memberof CreateUserBadgeParams
*/
badgeId: string;
/**
*
* @type {boolean}
* @memberof CreateUserBadgeParams
*/
displayedOnComments?: boolean;
}
/**
* Check if a given object implements the CreateUserBadgeParams interface.
*/
export declare function instanceOfCreateUserBadgeParams(value: object): value is CreateUserBadgeParams;
export declare function CreateUserBadgeParamsFromJSON(json: any): CreateUserBadgeParams;
export declare function CreateUserBadgeParamsFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateUserBadgeParams;
export declare function CreateUserBadgeParamsToJSON(json: any): CreateUserBadgeParams;
export declare function CreateUserBadgeParamsToJSONTyped(value?: CreateUserBadgeParams | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=CreateUserBadgeParams.d.ts.map