Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.08 KB

File metadata and controls

32 lines (23 loc) · 1.08 KB

PriceInfo

Contains price information for the message. This value is null if the message is still being processed

Properties

Name Type Description Notes
part_price str price per message part - relevant mostly for SMS
parts_count int the number of parts the message consists of
total_price str total price for the message

Example

from messente_api.models.price_info import PriceInfo

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

# convert the object into a dict
price_info_dict = price_info_instance.to_dict()
# create an instance of PriceInfo from a dict
price_info_from_dict = PriceInfo.from_dict(price_info_dict)

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