Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 925 Bytes

PointsCardStatus.md

File metadata and controls

28 lines (20 loc) · 925 Bytes

PointsCardStatus

Properties

Name Type Description Notes
message str [optional]

Example

from sparkfly_client.models.points_card_status import PointsCardStatus

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

# convert the object into a dict
points_card_status_dict = points_card_status_instance.to_dict()
# create an instance of PointsCardStatus from a dict
points_card_status_form_dict = points_card_status.from_dict(points_card_status_dict)

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