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