File tree Expand file tree Collapse file tree 5 files changed +14
-2
lines changed
generated/google-apis-youtube_v3
lib/google/apis/youtube_v3 Expand file tree Collapse file tree 5 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -288027,6 +288027,7 @@
288027288027"/youtube:v3/PlaylistSnippet/thumbnails": thumbnails
288028288028"/youtube:v3/PlaylistSnippet/title": title
288029288029"/youtube:v3/PlaylistStatus": playlist_status
288030+ "/youtube:v3/PlaylistStatus/podcastStatus": podcast_status
288030288031"/youtube:v3/PlaylistStatus/privacyStatus": privacy_status
288031288032"/youtube:v3/PromotedItem": promoted_item
288032288033"/youtube:v3/PromotedItem/customMessage": custom_message
Original file line number Diff line number Diff line change 11# Release history for google-apis-youtube_v3
22
3+ ### v0.30.0 (2023-07-16)
4+
5+ * Regenerated from discovery document revision 20230711
6+
37### v0.29.0 (2023-05-07)
48
59* Regenerated from discovery document revision 20230502
Original file line number Diff line number Diff line change @@ -6229,6 +6229,11 @@ def update!(**args)
62296229 class PlaylistStatus
62306230 include Google ::Apis ::Core ::Hashable
62316231
6232+ #
6233+ # Corresponds to the JSON property `podcastStatus`
6234+ # @return [String]
6235+ attr_accessor :podcast_status
6236+
62326237 # The playlist's privacy status.
62336238 # Corresponds to the JSON property `privacyStatus`
62346239 # @return [String]
@@ -6240,6 +6245,7 @@ def initialize(**args)
62406245
62416246 # Update properties of this object
62426247 def update! ( **args )
6248+ @podcast_status = args [ :podcast_status ] if args . key? ( :podcast_status )
62436249 @privacy_status = args [ :privacy_status ] if args . key? ( :privacy_status )
62446250 end
62456251 end
Original file line number Diff line number Diff line change @@ -16,13 +16,13 @@ module Google
1616 module Apis
1717 module YoutubeV3
1818 # Version of the google-apis-youtube_v3 gem
19- GEM_VERSION = "0.29 .0"
19+ GEM_VERSION = "0.30 .0"
2020
2121 # Version of the code generator used to generate this client
2222 GENERATOR_VERSION = "0.12.0"
2323
2424 # Revision of the discovery document this client was generated from
25- REVISION = "20230502 "
25+ REVISION = "20230711 "
2626 end
2727 end
2828end
Original file line number Diff line number Diff line change @@ -2772,6 +2772,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
27722772 class PlaylistStatus
27732773 # @private
27742774 class Representation < Google ::Apis ::Core ::JsonRepresentation
2775+ property :podcast_status , as : 'podcastStatus'
27752776 property :privacy_status , as : 'privacyStatus'
27762777 end
27772778 end
You can’t perform that action at this time.
0 commit comments