Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.36 KB

File metadata and controls

31 lines (22 loc) · 1.36 KB

CreateClaimActivity

Properties

Name Type Description Notes
request_id str The request ID that is used to track a request. The request ID is provided by you and must be unique within your organization. [optional]
staking_id str The ID of the staking position. You can retrieve a list of staking positions by calling List staking positions.
fee TransactionRequestFee [optional]

Example

from cobo_waas2.models.create_claim_activity import CreateClaimActivity

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

# convert the object into a dict
create_claim_activity_dict = create_claim_activity_instance.to_dict()
# create an instance of CreateClaimActivity from a dict
create_claim_activity_from_dict = CreateClaimActivity.from_dict(create_claim_activity_dict)

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