UNPKG

fastcomments-sdk

Version:

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

41 lines 1.62 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 { APIStatus } from './APIStatus'; import type { UserSearchSectionResult } from './UserSearchSectionResult'; /** * * @export * @interface SearchUsersSectionedResponse */ export interface SearchUsersSectionedResponse { /** * * @type {APIStatus} * @memberof SearchUsersSectionedResponse */ status: APIStatus; /** * * @type {Array<UserSearchSectionResult>} * @memberof SearchUsersSectionedResponse */ sections: Array<UserSearchSectionResult>; } /** * Check if a given object implements the SearchUsersSectionedResponse interface. */ export declare function instanceOfSearchUsersSectionedResponse(value: object): value is SearchUsersSectionedResponse; export declare function SearchUsersSectionedResponseFromJSON(json: any): SearchUsersSectionedResponse; export declare function SearchUsersSectionedResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SearchUsersSectionedResponse; export declare function SearchUsersSectionedResponseToJSON(json: any): SearchUsersSectionedResponse; export declare function SearchUsersSectionedResponseToJSONTyped(value?: SearchUsersSectionedResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=SearchUsersSectionedResponse.d.ts.map