fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
41 lines • 1.45 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 { User } from './User';
import type { APIStatus } from './APIStatus';
/**
*
* @export
* @interface GetTenantUsersResponse
*/
export interface GetTenantUsersResponse {
/**
*
* @type {APIStatus}
* @memberof GetTenantUsersResponse
*/
status: APIStatus;
/**
*
* @type {Array<User>}
* @memberof GetTenantUsersResponse
*/
tenantUsers: Array<User>;
}
/**
* Check if a given object implements the GetTenantUsersResponse interface.
*/
export declare function instanceOfGetTenantUsersResponse(value: object): value is GetTenantUsersResponse;
export declare function GetTenantUsersResponseFromJSON(json: any): GetTenantUsersResponse;
export declare function GetTenantUsersResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetTenantUsersResponse;
export declare function GetTenantUsersResponseToJSON(json: any): GetTenantUsersResponse;
export declare function GetTenantUsersResponseToJSONTyped(value?: GetTenantUsersResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetTenantUsersResponse.d.ts.map