class Google::Apis::ContentV2::ProductStatusDestinationStatus

Attributes

approval_status[RW]

The destination's approval status. Corresponds to the JSON property `approvalStatus` @return [String]

destination[RW]

The name of the destination Corresponds to the JSON property `destination` @return [String]

intention[RW]

Whether the destination is required, excluded, selected by default or should be validated. Corresponds to the JSON property `intention` @return [String]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/content_v2/classes.rb, line 5384
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/content_v2/classes.rb, line 5389
def update!(**args)
  @approval_status = args[:approval_status] if args.key?(:approval_status)
  @destination = args[:destination] if args.key?(:destination)
  @intention = args[:intention] if args.key?(:intention)
end