Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 936 Bytes

PutBranch.md

File metadata and controls

28 lines (22 loc) · 936 Bytes

LaunchDarklyApi::PutBranch

Properties

Name Type Description Notes
name String The branch name
head String An ID representing the branch HEAD. For example, a commit SHA.
update_sequence_id Integer An optional ID used to prevent older data from overwriting newer data. If no sequence ID is included, the newly submitted data will always be saved. [optional]
sync_time Integer
references Array<ReferenceRep> An array of flag references found on the branch [optional]
commit_time Integer [optional]

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::PutBranch.new(
  name: main,
  head: a94a8fe5ccb19ba61c4c0873d391e987982fbbd3,
  update_sequence_id: 25,
  sync_time: null,
  references: null,
  commit_time: null
)