Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 710 Bytes

ReviewResponse.md

File metadata and controls

26 lines (20 loc) · 710 Bytes

LaunchDarklyApi::ReviewResponse

Properties

Name Type Description Notes
_id String The approval request ID
kind String The type of review action to take
creation_date Integer [optional]
comment String A comment describing the approval response [optional]
member_id String ID of account member that reviewed request [optional]

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::ReviewResponse.new(
  _id: 12ab3c45de678910abc12345,
  kind: approve,
  creation_date: null,
  comment: Approved!,
  member_id: 12ab3c45de678910abc12345
)