Class: Aws::GeoPlaces::Types::BusinessChain

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-geoplaces/lib/aws-sdk-geoplaces/types.rb

Overview

A businesschain is a chain of businesses that belong to the same brand. For example 7-11.

Constant Summary collapse

SENSITIVE =
[:name, :id]

Instance Attribute Summary collapse

Instance Attribute Details

#idString

The Business Chain Id.

Returns:

  • (String)


719
720
721
722
723
724
# File 'gems/aws-sdk-geoplaces/lib/aws-sdk-geoplaces/types.rb', line 719

class BusinessChain < Struct.new(
  :name,
  :id)
  SENSITIVE = [:name, :id]
  include Aws::Structure
end

#nameString

The business chain name.

Returns:

  • (String)


719
720
721
722
723
724
# File 'gems/aws-sdk-geoplaces/lib/aws-sdk-geoplaces/types.rb', line 719

class BusinessChain < Struct.new(
  :name,
  :id)
  SENSITIVE = [:name, :id]
  include Aws::Structure
end