sinch-rtc
Version:
RTC JavaScript/Web SDK
34 lines (33 loc) • 925 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 PushConfig
*/
export interface PushConfig {
/**
* Google FCM Sender ID.
* @type {string}
* @memberof PushConfig
*/
fcmSenderId?: string;
/**
* W3C Push VAPID public key (base64url encoded)
* @type {string}
* @memberof PushConfig
*/
w3cApplicationServerKey?: string;
}
export declare function PushConfigFromJSON(json: any): PushConfig;
export declare function PushConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): PushConfig;
export declare function PushConfigToJSON(value?: PushConfig | null): any;