/**
 * 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 PushNotificationDestination
 */
export interface PushNotificationDestination {
    /**
     * External UserId
     * @type {string}
     * @memberof PushNotificationDestination
     */
    userId: string;
    /**
     *
     * @type {string}
     * @memberof PushNotificationDestination
     */
    instanceId: string;
}
export declare function PushNotificationDestinationFromJSON(json: any): PushNotificationDestination;
export declare function PushNotificationDestinationFromJSONTyped(json: any, ignoreDiscriminator: boolean): PushNotificationDestination;
export declare function PushNotificationDestinationToJSON(value?: PushNotificationDestination | null): any;
