Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1023 Bytes

PrefillFieldRequest.md

File metadata and controls

30 lines (21 loc) · 1023 Bytes

PrefillFieldRequest

Properties

Name Type Description Notes
fields List[PrefillField]
on_behalf_of str [optional]

Example

from boldsign.models.prefill_field_request import PrefillFieldRequest

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

# convert the object into a dict
prefill_field_request_dict = prefill_field_request_instance.to_dict()
# create an instance of PrefillFieldRequest from a dict
prefill_field_request_from_dict = PrefillFieldRequest.from_dict(prefill_field_request_dict)

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