sinch-rtc
Version:
RTC JavaScript/Web SDK
52 lines (51 loc) • 1.32 kB
TypeScript
/**
* Ocra (REST API for Sinch RTC clients)
* REST API for Sinch RTC clients.
*
* The version of the OpenAPI document: 0.11.0
* Contact: rtc@sinch.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
* User debug information
* @export
* @interface UserDebugInfoResponse
*/
export interface UserDebugInfoResponse {
/**
*
* @type {Date}
* @memberof UserDebugInfoResponse
*/
createdAt: Date;
/**
*
* @type {boolean}
* @memberof UserDebugInfoResponse
*/
blocked: boolean;
/**
*
* @type {number}
* @memberof UserDebugInfoResponse
*/
instanceCount: number;
/**
*
* @type {number}
* @memberof UserDebugInfoResponse
*/
pushProfileCount: number;
/**
*
* @type {Array<string>}
* @memberof UserDebugInfoResponse
*/
instanceIds: Array<string>;
}
export declare function UserDebugInfoResponseFromJSON(json: any): UserDebugInfoResponse;
export declare function UserDebugInfoResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserDebugInfoResponse;
export declare function UserDebugInfoResponseToJSON(value?: UserDebugInfoResponse | null): any;