Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 995 Bytes

File metadata and controls

31 lines (22 loc) · 995 Bytes

RTPProfile

Properties

Name Type Description Notes
encryption_mode RTPEncryptionMode
mos_mode MosMode
profile_id str The ID of the RTP profile (default: VoiceProfile).

Example

from cyperf.models.rtp_profile import RTPProfile

# TODO update the JSON string below
json = "{}"
# create an instance of RTPProfile from a JSON string
rtp_profile_instance = RTPProfile.from_json(json)
# print the JSON string representation of the object
print(RTPProfile.to_json())

# convert the object into a dict
rtp_profile_dict = rtp_profile_instance.to_dict()
# create an instance of RTPProfile from a dict
rtp_profile_from_dict = RTPProfile.from_dict(rtp_profile_dict)

[Back to Model list] [Back to API list] [Back to README]