Class: Google::Apis::ManufacturersV1::DestinationStatus

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/manufacturers_v1/classes.rb,
lib/google/apis/manufacturers_v1/representations.rb,
lib/google/apis/manufacturers_v1/representations.rb

Overview

The destination status.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DestinationStatus

Returns a new instance of DestinationStatus.



446
447
448
# File 'lib/google/apis/manufacturers_v1/classes.rb', line 446

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#destinationString

The name of the destination. Corresponds to the JSON property destination

Returns:

  • (String)


439
440
441
# File 'lib/google/apis/manufacturers_v1/classes.rb', line 439

def destination
  @destination
end

#statusString

The status of the destination. Corresponds to the JSON property status

Returns:

  • (String)


444
445
446
# File 'lib/google/apis/manufacturers_v1/classes.rb', line 444

def status
  @status
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



451
452
453
454
# File 'lib/google/apis/manufacturers_v1/classes.rb', line 451

def update!(**args)
  @destination = args[:destination] if args.key?(:destination)
  @status = args[:status] if args.key?(:status)
end