fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
91 lines • 2.55 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 { UserSearchResult } from './UserSearchResult';
import type { APIStatus } from './APIStatus';
import type { UserSearchSectionResult } from './UserSearchSectionResult';
/**
*
* @export
* @interface SearchUsersResponse1
*/
export interface SearchUsersResponse1 {
/**
*
* @type {APIStatus}
* @memberof SearchUsersResponse1
*/
status: APIStatus;
/**
*
* @type {Array<UserSearchSectionResult>}
* @memberof SearchUsersResponse1
*/
sections: Array<UserSearchSectionResult>;
/**
*
* @type {Array<UserSearchResult>}
* @memberof SearchUsersResponse1
*/
users: Array<UserSearchResult>;
/**
*
* @type {string}
* @memberof SearchUsersResponse1
*/
reason: string;
/**
*
* @type {string}
* @memberof SearchUsersResponse1
*/
code: string;
/**
*
* @type {string}
* @memberof SearchUsersResponse1
*/
secondaryCode?: string;
/**
*
* @type {number}
* @memberof SearchUsersResponse1
*/
bannedUntil?: number;
/**
*
* @type {number}
* @memberof SearchUsersResponse1
*/
maxCharacterLength?: number;
/**
*
* @type {string}
* @memberof SearchUsersResponse1
*/
translatedError?: string;
/**
*
* @type {CustomConfigParameters}
* @memberof SearchUsersResponse1
*/
customConfig?: CustomConfigParameters;
}
/**
* Check if a given object implements the SearchUsersResponse1 interface.
*/
export declare function instanceOfSearchUsersResponse1(value: object): value is SearchUsersResponse1;
export declare function SearchUsersResponse1FromJSON(json: any): SearchUsersResponse1;
export declare function SearchUsersResponse1FromJSONTyped(json: any, ignoreDiscriminator: boolean): SearchUsersResponse1;
export declare function SearchUsersResponse1ToJSON(json: any): SearchUsersResponse1;
export declare function SearchUsersResponse1ToJSONTyped(value?: SearchUsersResponse1 | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=SearchUsersResponse1.d.ts.map