fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
47 lines • 1.73 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.
*/
import type { CommentUserHashTagInfo } from './CommentUserHashTagInfo';
import type { CommentUserMentionInfo } from './CommentUserMentionInfo';
/**
*
* @export
* @interface CommentTextUpdateRequest
*/
export interface CommentTextUpdateRequest {
/**
*
* @type {string}
* @memberof CommentTextUpdateRequest
*/
comment: string;
/**
*
* @type {Array<CommentUserMentionInfo>}
* @memberof CommentTextUpdateRequest
*/
mentions?: Array<CommentUserMentionInfo>;
/**
*
* @type {Array<CommentUserHashTagInfo>}
* @memberof CommentTextUpdateRequest
*/
hashTags?: Array<CommentUserHashTagInfo>;
}
/**
* Check if a given object implements the CommentTextUpdateRequest interface.
*/
export declare function instanceOfCommentTextUpdateRequest(value: object): value is CommentTextUpdateRequest;
export declare function CommentTextUpdateRequestFromJSON(json: any): CommentTextUpdateRequest;
export declare function CommentTextUpdateRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CommentTextUpdateRequest;
export declare function CommentTextUpdateRequestToJSON(json: any): CommentTextUpdateRequest;
export declare function CommentTextUpdateRequestToJSONTyped(value?: CommentTextUpdateRequest | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=CommentTextUpdateRequest.d.ts.map