Skip to main content

Formdefinitionfileuploadresponse

Properties

NameTypeDescriptionNotes
createdstrCreated is the date the file was uploaded[optional]
file_idstrfileId is a unique ULID that serves as an identifier for the form definition file[optional]
form_definition_idstrFormDefinitionID is a unique guid identifying this form definition[optional]
}

Example

from sailpoint.custom_forms.models.formdefinitionfileuploadresponse import Formdefinitionfileuploadresponse

formdefinitionfileuploadresponse = Formdefinitionfileuploadresponse(
created='2023-07-12T20:14:57.74486Z',
file_id='01FHZXHK8PTP9FVK99Z66GXQTX.png',
form_definition_id='00000000-0000-0000-0000-000000000000'
)

[Back to top]