/**
 * 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.
 */
/**
 * WebRTC RTCOAuthCredential. ICE/STUN/TURN credentials.
 * @export
 * @interface WebrtcRTCOAuthCredential
 */
export interface WebrtcRTCOAuthCredential {
    /**
     *
     * @type {string}
     * @memberof WebrtcRTCOAuthCredential
     */
    macKey: string;
    /**
     * OAuth access token (this can be a JWT token in itself), in base64-format (https://tools.ietf.org/html/rfc4648#section-4)
     * @type {string}
     * @memberof WebrtcRTCOAuthCredential
     */
    accessToken: string;
}
export declare function WebrtcRTCOAuthCredentialFromJSON(json: any): WebrtcRTCOAuthCredential;
export declare function WebrtcRTCOAuthCredentialFromJSONTyped(json: any, ignoreDiscriminator: boolean): WebrtcRTCOAuthCredential;
export declare function WebrtcRTCOAuthCredentialToJSON(value?: WebrtcRTCOAuthCredential | null): any;
