sinch-rtc
Version:
RTC JavaScript/Web SDK
46 lines (45 loc) • 1.3 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 OpaquePushProfile
*/
export interface OpaquePushProfile {
/**
*
* @type {string}
* @memberof OpaquePushProfile
*/
externalId: string;
/**
* Whether the push profile is used for "Sinch Managed Push Notifications" or not.
* @type {boolean}
* @memberof OpaquePushProfile
*/
managed: boolean;
/**
* Application specific MIME type.
* @type {string}
* @memberof OpaquePushProfile
*/
contentType: string;
/**
* Opaque data. base64-encoded (https://tools.ietf.org/html/rfc4648#section-4)
* @type {string}
* @memberof OpaquePushProfile
*/
data: string;
}
export declare function OpaquePushProfileFromJSON(json: any): OpaquePushProfile;
export declare function OpaquePushProfileFromJSONTyped(json: any, ignoreDiscriminator: boolean): OpaquePushProfile;
export declare function OpaquePushProfileToJSON(value?: OpaquePushProfile | null): any;