class Google::Apis::ManufacturersV1::DestinationStatus

The destination status.

Attributes

destination[RW]

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

status[RW]

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

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/manufacturers_v1/classes.rb, line 364
def update!(**args)
  @destination = args[:destination] if args.key?(:destination)
  @status = args[:status] if args.key?(:status)
end