sinch-rtc
Version:
RTC JavaScript/Web SDK
42 lines (41 loc) • 1.03 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.
*/
/**
*
* @export
* @interface UpaPushProfile
*/
export interface UpaPushProfile {
/**
*
* @type {string}
* @memberof UpaPushProfile
*/
vendorId: string;
/**
*
* @type {string}
* @memberof UpaPushProfile
*/
deviceToken: string;
/**
*
* @type {{ [key: string]: string; }}
* @memberof UpaPushProfile
*/
vendorData: {
[key: string]: string;
};
}
export declare function UpaPushProfileFromJSON(json: any): UpaPushProfile;
export declare function UpaPushProfileFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpaPushProfile;
export declare function UpaPushProfileToJSON(value?: UpaPushProfile | null): any;