Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 956 Bytes

CreateF24Response.md

File metadata and controls

30 lines (20 loc) · 956 Bytes

CreateF24Response

Properties

Name Type Description Notes
data F24 [optional]

Example

from fattureincloud_python_sdk.models.create_f24_response import CreateF24Response

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

# convert the object into a dict
create_f24_response_dict = create_f24_response_instance.to_dict()
# create an instance of CreateF24Response from a dict
create_f24_response_from_dict = CreateF24Response.from_dict(create_f24_response_dict)

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