sinch-rtc
Version:
RTC JavaScript/Web SDK
28 lines (27 loc) • 829 B
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.
*/
/**
*
* @export
* @interface IceServerAllOf
*/
export interface IceServerAllOf {
/**
* Time of when credentials for the ICE servers expire.
* @type {Date}
* @memberof IceServerAllOf
*/
validUntil: Date;
}
export declare function IceServerAllOfFromJSON(json: any): IceServerAllOf;
export declare function IceServerAllOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): IceServerAllOf;
export declare function IceServerAllOfToJSON(value?: IceServerAllOf | null): any;