sinch-rtc
Version:
RTC JavaScript/Web SDK
59 lines (58 loc) • 1.43 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.
*/
import { ApnPushProfile, FcmPushProfile, OpaquePushProfile, UpaPushProfile, W3CPushProfile } from './';
/**
*
* @export
* @interface PushProfile
*/
export interface PushProfile {
/**
*
* @type {number}
* @memberof PushProfile
*/
maxPayloadSize?: number;
/**
*
* @type {Array<ApnPushProfile>}
* @memberof PushProfile
*/
apn?: Array<ApnPushProfile>;
/**
*
* @type {FcmPushProfile}
* @memberof PushProfile
*/
fcm?: FcmPushProfile;
/**
*
* @type {OpaquePushProfile}
* @memberof PushProfile
*/
opaque?: OpaquePushProfile;
/**
*
* @type {UpaPushProfile}
* @memberof PushProfile
*/
upa?: UpaPushProfile;
/**
*
* @type {W3CPushProfile}
* @memberof PushProfile
*/
w3c?: W3CPushProfile;
}
export declare function PushProfileFromJSON(json: any): PushProfile;
export declare function PushProfileFromJSONTyped(json: any, ignoreDiscriminator: boolean): PushProfile;
export declare function PushProfileToJSON(value?: PushProfile | null): any;