Class: Google::Apis::ContentV2::CarriersCarrier

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/content_v2/classes.rb,
generated/google/apis/content_v2/representations.rb,
generated/google/apis/content_v2/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ CarriersCarrier

Returns a new instance of CarriersCarrier



1563
1564
1565
# File 'generated/google/apis/content_v2/classes.rb', line 1563

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

Instance Attribute Details

#countryString

The CLDR country code of the carrier (e.g., "US"). Always present. Corresponds to the JSON property country

Returns:

  • (String)


1550
1551
1552
# File 'generated/google/apis/content_v2/classes.rb', line 1550

def country
  @country
end

#nameString

The name of the carrier (e.g., "UPS"). Always present. Corresponds to the JSON property name

Returns:

  • (String)


1555
1556
1557
# File 'generated/google/apis/content_v2/classes.rb', line 1555

def name
  @name
end

#servicesArray<String>

A list of supported services (e.g., "ground") for that carrier. Contains at least one service. Corresponds to the JSON property services

Returns:

  • (Array<String>)


1561
1562
1563
# File 'generated/google/apis/content_v2/classes.rb', line 1561

def services
  @services
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1568
1569
1570
1571
1572
# File 'generated/google/apis/content_v2/classes.rb', line 1568

def update!(**args)
  @country = args[:country] if args.key?(:country)
  @name = args[:name] if args.key?(:name)
  @services = args[:services] if args.key?(:services)
end