fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
119 lines • 3.27 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';
import type { UserSessionInfo } from './UserSessionInfo';
/**
*
* @export
* @interface GetFeedPostsPublic200Response
*/
export interface GetFeedPostsPublic200Response {
/**
*
* @type {{ [key: string]: { [key: string]: boolean; }; }}
* @memberof GetFeedPostsPublic200Response
*/
myReacts?: {
[key: string]: {
[key: string]: boolean;
};
};
/**
*
* @type {APIStatus}
* @memberof GetFeedPostsPublic200Response
*/
status: APIStatus;
/**
*
* @type {Array<FeedPost>}
* @memberof GetFeedPostsPublic200Response
*/
feedPosts: Array<FeedPost>;
/**
*
* @type {UserSessionInfo}
* @memberof GetFeedPostsPublic200Response
*/
user?: UserSessionInfo | null;
/**
*
* @type {string}
* @memberof GetFeedPostsPublic200Response
*/
urlIdWS?: string;
/**
*
* @type {string}
* @memberof GetFeedPostsPublic200Response
*/
userIdWS?: string;
/**
*
* @type {string}
* @memberof GetFeedPostsPublic200Response
*/
tenantIdWS?: string;
/**
*
* @type {string}
* @memberof GetFeedPostsPublic200Response
*/
reason: string;
/**
*
* @type {string}
* @memberof GetFeedPostsPublic200Response
*/
code: string;
/**
*
* @type {string}
* @memberof GetFeedPostsPublic200Response
*/
secondaryCode?: string;
/**
*
* @type {number}
* @memberof GetFeedPostsPublic200Response
*/
bannedUntil?: number;
/**
*
* @type {number}
* @memberof GetFeedPostsPublic200Response
*/
maxCharacterLength?: number;
/**
*
* @type {string}
* @memberof GetFeedPostsPublic200Response
*/
translatedError?: string;
/**
*
* @type {CustomConfigParameters}
* @memberof GetFeedPostsPublic200Response
*/
customConfig?: CustomConfigParameters;
}
/**
* Check if a given object implements the GetFeedPostsPublic200Response interface.
*/
export declare function instanceOfGetFeedPostsPublic200Response(value: object): value is GetFeedPostsPublic200Response;
export declare function GetFeedPostsPublic200ResponseFromJSON(json: any): GetFeedPostsPublic200Response;
export declare function GetFeedPostsPublic200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetFeedPostsPublic200Response;
export declare function GetFeedPostsPublic200ResponseToJSON(json: any): GetFeedPostsPublic200Response;
export declare function GetFeedPostsPublic200ResponseToJSONTyped(value?: GetFeedPostsPublic200Response | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetFeedPostsPublic200Response.d.ts.map