/**
 * 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.
 */
import { Domain } from './';
/**
 * Call origin specification
 * @export
 * @interface Origin
 */
export interface Origin {
    /**
     *
     * @type {Domain}
     * @memberof Origin
     */
    domain?: Domain;
    /**
     *
     * @type {string}
     * @memberof Origin
     */
    identity: string;
}
export declare function OriginFromJSON(json: any): Origin;
export declare function OriginFromJSONTyped(json: any, ignoreDiscriminator: boolean): Origin;
export declare function OriginToJSON(value?: Origin | null): any;
