Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.27 KB

File metadata and controls

31 lines (22 loc) · 1.27 KB

ApplicationDetailsAttachmentsInner

Properties

Name Type Description Notes
id int Attachment ID [optional]
name str Attachment file name [optional]
file_url str URL to download the attachment [optional]

Example

from bamboohr_sdk.models.application_details_attachments_inner import ApplicationDetailsAttachmentsInner

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

# convert the object into a dict
application_details_attachments_inner_dict = application_details_attachments_inner_instance.to_dict()
# create an instance of ApplicationDetailsAttachmentsInner from a dict
application_details_attachments_inner_from_dict = ApplicationDetailsAttachmentsInner.from_dict(application_details_attachments_inner_dict)

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