Class: Google::Apis::ContentV2_1::ProductStatusDestinationStatus

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ProductStatusDestinationStatus

Returns a new instance of ProductStatusDestinationStatus.



9980
9981
9982
# File 'lib/google/apis/content_v2_1/classes.rb', line 9980

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

Instance Attribute Details

#approved_countriesArray<String>

List of country codes (ISO 3166-1 alpha-2) where the offer is approved. Corresponds to the JSON property approvedCountries

Returns:

  • (Array<String>)


9958
9959
9960
# File 'lib/google/apis/content_v2_1/classes.rb', line 9958

def approved_countries
  @approved_countries
end

#destinationString

The name of the destination Corresponds to the JSON property destination

Returns:

  • (String)


9963
9964
9965
# File 'lib/google/apis/content_v2_1/classes.rb', line 9963

def destination
  @destination
end

#disapproved_countriesArray<String>

List of country codes (ISO 3166-1 alpha-2) where the offer is disapproved. Corresponds to the JSON property disapprovedCountries

Returns:

  • (Array<String>)


9968
9969
9970
# File 'lib/google/apis/content_v2_1/classes.rb', line 9968

def disapproved_countries
  @disapproved_countries
end

#pending_countriesArray<String>

List of country codes (ISO 3166-1 alpha-2) where the offer is pending approval. Corresponds to the JSON property pendingCountries

Returns:

  • (Array<String>)


9973
9974
9975
# File 'lib/google/apis/content_v2_1/classes.rb', line 9973

def pending_countries
  @pending_countries
end

#statusString

Deprecated. Destination approval status in targetCountry of the offer. Corresponds to the JSON property status

Returns:

  • (String)


9978
9979
9980
# File 'lib/google/apis/content_v2_1/classes.rb', line 9978

def status
  @status
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



9985
9986
9987
9988
9989
9990
9991
# File 'lib/google/apis/content_v2_1/classes.rb', line 9985

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