Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1004 Bytes

RevokeMessageRequest.md

File metadata and controls

29 lines (20 loc) · 1004 Bytes

RevokeMessageRequest

Properties

Name Type Description Notes
phone str Phone number with country code [optional]

Example

from openapi_client.models.revoke_message_request import RevokeMessageRequest

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

# convert the object into a dict
revoke_message_request_dict = revoke_message_request_instance.to_dict()
# create an instance of RevokeMessageRequest from a dict
revoke_message_request_from_dict = RevokeMessageRequest.from_dict(revoke_message_request_dict)

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