Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.54 KB

EzsignsignergroupmembershipResponse.md

File metadata and controls

34 lines (25 loc) · 1.54 KB

EzsignsignergroupmembershipResponse

A Ezsignsignergroupmembership Object

Properties

Name Type Description Notes
pki_ezsignsignergroupmembership_id int The unique ID of the Ezsignsignergroupmembership
fki_ezsignsignergroup_id int The unique ID of the Ezsignsignergroup
fki_ezsignsigner_id int The unique ID of the Ezsignsigner [optional]
fki_user_id int The unique ID of the User [optional]
fki_usergroup_id int The unique ID of the Usergroup [optional]

Example

from eZmaxApi.models.ezsignsignergroupmembership_response import EzsignsignergroupmembershipResponse

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

# convert the object into a dict
ezsignsignergroupmembership_response_dict = ezsignsignergroupmembership_response_instance.to_dict()
# create an instance of EzsignsignergroupmembershipResponse from a dict
ezsignsignergroupmembership_response_form_dict = ezsignsignergroupmembership_response.from_dict(ezsignsignergroupmembership_response_dict)

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