fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
33 lines • 1.21 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 SetCommentTextParams
*/
export interface SetCommentTextParams {
/**
*
* @type {string}
* @memberof SetCommentTextParams
*/
comment: string;
}
/**
* Check if a given object implements the SetCommentTextParams interface.
*/
export declare function instanceOfSetCommentTextParams(value: object): value is SetCommentTextParams;
export declare function SetCommentTextParamsFromJSON(json: any): SetCommentTextParams;
export declare function SetCommentTextParamsFromJSONTyped(json: any, ignoreDiscriminator: boolean): SetCommentTextParams;
export declare function SetCommentTextParamsToJSON(json: any): SetCommentTextParams;
export declare function SetCommentTextParamsToJSONTyped(value?: SetCommentTextParams | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=SetCommentTextParams.d.ts.map