UNPKG

fastcomments-sdk

Version:

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

67 lines 2.03 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. */ import type { FeedPostLink } from './FeedPostLink'; import type { FeedPostMediaItem } from './FeedPostMediaItem'; /** * * @export * @interface UpdateFeedPostParams */ export interface UpdateFeedPostParams { /** * * @type {string} * @memberof UpdateFeedPostParams */ title?: string; /** * * @type {string} * @memberof UpdateFeedPostParams */ contentHTML?: string; /** * * @type {Array<FeedPostMediaItem>} * @memberof UpdateFeedPostParams */ media?: Array<FeedPostMediaItem>; /** * * @type {Array<FeedPostLink>} * @memberof UpdateFeedPostParams */ links?: Array<FeedPostLink>; /** * * @type {Array<string>} * @memberof UpdateFeedPostParams */ tags?: Array<string>; /** * Construct a type with a set of properties K of type T * @type {{ [key: string]: string; }} * @memberof UpdateFeedPostParams */ meta?: { [key: string]: string; }; } /** * Check if a given object implements the UpdateFeedPostParams interface. */ export declare function instanceOfUpdateFeedPostParams(value: object): value is UpdateFeedPostParams; export declare function UpdateFeedPostParamsFromJSON(json: any): UpdateFeedPostParams; export declare function UpdateFeedPostParamsFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateFeedPostParams; export declare function UpdateFeedPostParamsToJSON(json: any): UpdateFeedPostParams; export declare function UpdateFeedPostParamsToJSONTyped(value?: UpdateFeedPostParams | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=UpdateFeedPostParams.d.ts.map