UNPKG

sinch-rtc

Version:

RTC JavaScript/Web SDK

34 lines (33 loc) 883 B
/** * 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 FcmPushProfile */ export interface FcmPushProfile { /** * * @type {string} * @memberof FcmPushProfile */ registrationId: string; /** * * @type {string} * @memberof FcmPushProfile */ senderId: string; } export declare function FcmPushProfileFromJSON(json: any): FcmPushProfile; export declare function FcmPushProfileFromJSONTyped(json: any, ignoreDiscriminator: boolean): FcmPushProfile; export declare function FcmPushProfileToJSON(value?: FcmPushProfile | null): any;