fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
48 lines • 1.64 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 { UserSearchResult } from './UserSearchResult';
import type { APIStatus } from './APIStatus';
import type { UserSearchSectionResult } from './UserSearchSectionResult';
/**
*
* @export
* @interface SearchUsersResult
*/
export interface SearchUsersResult {
/**
*
* @type {APIStatus}
* @memberof SearchUsersResult
*/
status: APIStatus;
/**
*
* @type {Array<UserSearchSectionResult>}
* @memberof SearchUsersResult
*/
sections: Array<UserSearchSectionResult>;
/**
*
* @type {Array<UserSearchResult>}
* @memberof SearchUsersResult
*/
users: Array<UserSearchResult>;
}
/**
* Check if a given object implements the SearchUsersResult interface.
*/
export declare function instanceOfSearchUsersResult(value: object): value is SearchUsersResult;
export declare function SearchUsersResultFromJSON(json: any): SearchUsersResult;
export declare function SearchUsersResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): SearchUsersResult;
export declare function SearchUsersResultToJSON(json: any): SearchUsersResult;
export declare function SearchUsersResultToJSONTyped(value?: SearchUsersResult | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=SearchUsersResult.d.ts.map