Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 894 Bytes

ModelsDefinitionUpdateRequestV2.md

File metadata and controls

26 lines (20 loc) · 894 Bytes

Falcon::ModelsDefinitionUpdateRequestV2

Properties

Name Type Description Notes
definition V2Definition
change_log String Optional user provided description to outline the changes made as part of the update. Maximum of 500 characters. [optional]
enabled Boolean Specifies whether a new definition should be enabled when created, always set to false if it's imported'
flight_control DefinitionsFlightControlRequest [optional]
id String Used to identify documents across versions

Example

require 'crimson-falcon'

instance = Falcon::ModelsDefinitionUpdateRequestV2.new(
  definition: null,
  change_log: null,
  enabled: null,
  flight_control: null,
  id: null
)