google-apis-content_v2 0.15.0 → 0.16.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0f7d46b46f20184a6118bce1516ae0888671e8854224a989fee83131d38d1c1c
4
- data.tar.gz: d0a55044076db3f79525da12999f212b08da9be9f1e992d36b92e1295fa11611
3
+ metadata.gz: 6798299d98ddde5bfb95f1076054db9e2240b2dcef5752215b2122984ebac4b1
4
+ data.tar.gz: 964a0e5e01dd30d0359e85fc4084b15cb23a23ac522446450ec1be85e7574035
5
5
  SHA512:
6
- metadata.gz: 7fe0754f3ba0f001388d51e33207f8214857f43eca47cc59fe9ba3cc6a011a882ae11b0a2fb9a35ff4d37d44f82824124439ac77c1c92ea5e9ed4abfbb26678c
7
- data.tar.gz: 2d702de55cebfdfc9dfab0721dfbe8160a1e134291b3422b72837649e3ad8649b3d1d8b379f551e983de23171df66d536d71ea7eb3d375e905ef77a6e400b647
6
+ metadata.gz: 53ed3a21ed66abea1b39fa25505bff7e8f6c0aebafb65e0f4fbb201892234327c5b520814eb00bb819d0654a0065841a897d2d4ed99dcc4a1586901aefca7a91
7
+ data.tar.gz: d26794af8d9152e3aee044acc0bf5005a6872792fddad9ad23926ab0c4a4a6594e0c0f75f794260c7f4e802fa7549e2491164f1ec611278e148809761f5b53c1
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-content_v2
2
2
 
3
+ ### v0.16.0 (2022-01-11)
4
+
5
+ * Regenerated from discovery document revision 20220105
6
+
3
7
  ### v0.15.0 (2021-12-16)
4
8
 
5
9
  * Unspecified changes
@@ -8737,12 +8737,27 @@ module Google
8737
8737
  class PosStore
8738
8738
  include Google::Apis::Core::Hashable
8739
8739
 
8740
+ # The business type of the store.
8741
+ # Corresponds to the JSON property `gcidCategory`
8742
+ # @return [Array<String>]
8743
+ attr_accessor :gcid_category
8744
+
8740
8745
  # Identifies what kind of resource this is. Value: the fixed string "`content#
8741
8746
  # posStore`"
8742
8747
  # Corresponds to the JSON property `kind`
8743
8748
  # @return [String]
8744
8749
  attr_accessor :kind
8745
8750
 
8751
+ # The store phone number.
8752
+ # Corresponds to the JSON property `phoneNumber`
8753
+ # @return [String]
8754
+ attr_accessor :phone_number
8755
+
8756
+ # The Google Place Id of the store location.
8757
+ # Corresponds to the JSON property `placeId`
8758
+ # @return [String]
8759
+ attr_accessor :place_id
8760
+
8746
8761
  # Required. The street address of the store.
8747
8762
  # Corresponds to the JSON property `storeAddress`
8748
8763
  # @return [String]
@@ -8753,15 +8768,30 @@ module Google
8753
8768
  # @return [String]
8754
8769
  attr_accessor :store_code
8755
8770
 
8771
+ # The merchant or store name.
8772
+ # Corresponds to the JSON property `storeName`
8773
+ # @return [String]
8774
+ attr_accessor :store_name
8775
+
8776
+ # The website url for the store or merchant.
8777
+ # Corresponds to the JSON property `websiteUrl`
8778
+ # @return [String]
8779
+ attr_accessor :website_url
8780
+
8756
8781
  def initialize(**args)
8757
8782
  update!(**args)
8758
8783
  end
8759
8784
 
8760
8785
  # Update properties of this object
8761
8786
  def update!(**args)
8787
+ @gcid_category = args[:gcid_category] if args.key?(:gcid_category)
8762
8788
  @kind = args[:kind] if args.key?(:kind)
8789
+ @phone_number = args[:phone_number] if args.key?(:phone_number)
8790
+ @place_id = args[:place_id] if args.key?(:place_id)
8763
8791
  @store_address = args[:store_address] if args.key?(:store_address)
8764
8792
  @store_code = args[:store_code] if args.key?(:store_code)
8793
+ @store_name = args[:store_name] if args.key?(:store_name)
8794
+ @website_url = args[:website_url] if args.key?(:website_url)
8765
8795
  end
8766
8796
  end
8767
8797
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ContentV2
18
18
  # Version of the google-apis-content_v2 gem
19
- GEM_VERSION = "0.15.0"
19
+ GEM_VERSION = "0.16.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20211007"
25
+ REVISION = "20220105"
26
26
  end
27
27
  end
28
28
  end
@@ -4034,9 +4034,14 @@ module Google
4034
4034
  class PosStore
4035
4035
  # @private
4036
4036
  class Representation < Google::Apis::Core::JsonRepresentation
4037
+ collection :gcid_category, as: 'gcidCategory'
4037
4038
  property :kind, as: 'kind'
4039
+ property :phone_number, as: 'phoneNumber'
4040
+ property :place_id, as: 'placeId'
4038
4041
  property :store_address, as: 'storeAddress'
4039
4042
  property :store_code, as: 'storeCode'
4043
+ property :store_name, as: 'storeName'
4044
+ property :website_url, as: 'websiteUrl'
4040
4045
  end
4041
4046
  end
4042
4047
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-content_v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.15.0
4
+ version: 0.16.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-01-10 00:00:00.000000000 Z
11
+ date: 2022-01-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-content_v2/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-content_v2/v0.15.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-content_v2/v0.16.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-content_v2
63
63
  post_install_message:
64
64
  rdoc_options: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.3.4
78
+ rubygems_version: 3.3.5
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Content API for Shopping V2