class Google::Apis::ContentV2_1::PosStore

Store resource.

Attributes

kind[RW]

Identifies what kind of resource this is. Value: the fixed string “`content# posStore`” Corresponds to the JSON property `kind` @return [String]

store_address[RW]

Required. The street address of the store. Corresponds to the JSON property `storeAddress` @return [String]

store_code[RW]

Required. A store identifier that is unique for the given merchant. Corresponds to the JSON property `storeCode` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/content_v2_1/classes.rb, line 9862
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/content_v2_1/classes.rb, line 9867
def update!(**args)
  @kind = args[:kind] if args.key?(:kind)
  @store_address = args[:store_address] if args.key?(:store_address)
  @store_code = args[:store_code] if args.key?(:store_code)
end