| Name | Type | Description | Notes |
|---|---|---|---|
| encryption_mode | RTPEncryptionMode | ||
| mos_mode | MosMode | ||
| profile_id | str | The ID of the RTP profile (default: VoiceProfile). |
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)