All Downloads are FREE. Search and download functionalities are using the official Maven repository.

js.web.webrtc.RTCIceCandidateInit Maven / Gradle / Ivy

package js.web.webrtc;

import js.lang.Any;
import org.teavm.jso.JSProperty;

import javax.annotation.Nullable;


public interface RTCIceCandidateInit extends Any {
    @JSProperty
    @Nullable
    String getCandidate();

    @JSProperty
    void setCandidate(String candidate);

    @JSProperty
    int getSdpMLineIndex();

    @JSProperty
    void setSdpMLineIndex(int sdpMLineIndex);

    @JSProperty
    @Nullable
    String getSdpMid();

    @JSProperty
    void setSdpMid(String sdpMid);

    @JSProperty
    @Nullable
    String getUsernameFragment();

    @JSProperty
    void setUsernameFragment(String usernameFragment);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy