Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.4 KB

File metadata and controls

33 lines (24 loc) · 1.4 KB

QuorumUser

A user who participates in this request's approval quorum, and their approval state.

Properties

Name Type Description Notes
index int Zero-based position of this user within the `users` array. The `members` arrays elsewhere in the document reference users by this index rather than repeating the user ID.
user_id str The participating user's ID.
status QuorumApprovalState
is_mandatory_owner bool Present and `true` only for the workspace owner, when this request additionally requires the owner's approval. Absent for every other participant. [optional]

Example

from fireblocks.models.quorum_user import QuorumUser

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

# convert the object into a dict
quorum_user_dict = quorum_user_instance.to_dict()
# create an instance of QuorumUser from a dict
quorum_user_from_dict = QuorumUser.from_dict(quorum_user_dict)

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