fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
84 lines • 2.37 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 { CustomConfigParameters } from './CustomConfigParameters';
import type { FeedPost } from './FeedPost';
import type { APIStatus } from './APIStatus';
/**
*
* @export
* @interface GetFeedPosts200Response
*/
export interface GetFeedPosts200Response {
/**
*
* @type {APIStatus}
* @memberof GetFeedPosts200Response
*/
status: APIStatus;
/**
*
* @type {Array<FeedPost>}
* @memberof GetFeedPosts200Response
*/
feedPosts: Array<FeedPost>;
/**
*
* @type {string}
* @memberof GetFeedPosts200Response
*/
reason: string;
/**
*
* @type {string}
* @memberof GetFeedPosts200Response
*/
code: string;
/**
*
* @type {string}
* @memberof GetFeedPosts200Response
*/
secondaryCode?: string;
/**
*
* @type {number}
* @memberof GetFeedPosts200Response
*/
bannedUntil?: number;
/**
*
* @type {number}
* @memberof GetFeedPosts200Response
*/
maxCharacterLength?: number;
/**
*
* @type {string}
* @memberof GetFeedPosts200Response
*/
translatedError?: string;
/**
*
* @type {CustomConfigParameters}
* @memberof GetFeedPosts200Response
*/
customConfig?: CustomConfigParameters;
}
/**
* Check if a given object implements the GetFeedPosts200Response interface.
*/
export declare function instanceOfGetFeedPosts200Response(value: object): value is GetFeedPosts200Response;
export declare function GetFeedPosts200ResponseFromJSON(json: any): GetFeedPosts200Response;
export declare function GetFeedPosts200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetFeedPosts200Response;
export declare function GetFeedPosts200ResponseToJSON(json: any): GetFeedPosts200Response;
export declare function GetFeedPosts200ResponseToJSONTyped(value?: GetFeedPosts200Response | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetFeedPosts200Response.d.ts.map