Class: Google::Shopping::Merchant::Accounts::V1beta::TransitTable::TransitTimeRow

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/shopping/merchant/accounts/v1beta/shippingsettings.rb

Overview

If there's only one dimension set of postal_code_group_names or transit_time_labels, there are multiple rows each with one value for that dimension. If there are two dimensions, each row corresponds to a postal_code_group_names, and columns (values) to a transit_time_labels.

Defined Under Namespace

Classes: TransitTimeValue

Instance Attribute Summary collapse

Instance Attribute Details

#values::Array<::Google::Shopping::Merchant::Accounts::V1beta::TransitTable::TransitTimeRow::TransitTimeValue>

Returns Required. Transit time range (min-max) in business days.

Returns:



541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
# File 'proto_docs/google/shopping/merchant/accounts/v1beta/shippingsettings.rb', line 541

class TransitTimeRow
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Transit time range (min-max) in business days.
  # @!attribute [rw] min_transit_days
  #   @return [::Integer]
  #     Minimum transit time range in business days. 0 means same
  #     day delivery, 1 means next day delivery.
  # @!attribute [rw] max_transit_days
  #   @return [::Integer]
  #     Must be greater than or equal to `min_transit_days`.
  class TransitTimeValue
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end
end