blob: fd02287b40a1b83002ba8d58f2d71dbffc9308af [file] [log] [blame]
John Asmuth614db982014-04-24 15:46:26 -04001<html><body>
2<style>
3
4body, h1, h2, h3, div, span, p, pre, a {
5 margin: 0;
6 padding: 0;
7 border: 0;
8 font-weight: inherit;
9 font-style: inherit;
10 font-size: 100%;
11 font-family: inherit;
12 vertical-align: baseline;
13}
14
15body {
16 font-size: 13px;
17 padding: 1em;
18}
19
20h1 {
21 font-size: 26px;
22 margin-bottom: 1em;
23}
24
25h2 {
26 font-size: 24px;
27 margin-bottom: 1em;
28}
29
30h3 {
31 font-size: 20px;
32 margin-bottom: 1em;
33 margin-top: 1em;
34}
35
36pre, code {
37 line-height: 1.5;
38 font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
39}
40
41pre {
42 margin-top: 0.5em;
43}
44
45h1, h2, h3, p {
46 font-family: Arial, sans serif;
47}
48
49h1, h2, h3 {
50 border-bottom: solid #CCC 1px;
51}
52
53.toc_element {
54 margin-top: 0.5em;
55}
56
57.firstline {
58 margin-left: 2 em;
59}
60
61.method {
62 margin-top: 1em;
63 border: solid 1px #CCC;
64 padding: 1em;
65 background: #EEE;
66}
67
68.details {
69 font-weight: bold;
70 font-size: 14px;
71}
72
73</style>
74
75<h1><a href="youtube_v3.html">YouTube Data API</a> . <a href="youtube_v3.channelSections.html">channelSections</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
Craig Citroe633be12015-03-02 13:40:36 -080078 <code><a href="#delete">delete(id, onBehalfOfContentOwner=None)</a></code></p>
John Asmuth614db982014-04-24 15:46:26 -040079<p class="firstline">Deletes a channelSection.</p>
80<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070081 <code><a href="#insert">insert(part, body=None, onBehalfOfContentOwner=None, onBehalfOfContentOwnerChannel=None)</a></code></p>
John Asmuth614db982014-04-24 15:46:26 -040082<p class="firstline">Adds a channelSection for the authenticated user's channel.</p>
83<p class="toc_element">
Bu Sun Kim65020912020-05-20 12:08:20 -070084 <code><a href="#list">list(part, channelId=None, hl=None, id=None, mine=None, onBehalfOfContentOwner=None)</a></code></p>
John Asmuth614db982014-04-24 15:46:26 -040085<p class="firstline">Returns channelSection resources that match the API request criteria.</p>
86<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070087 <code><a href="#update">update(part, body=None, onBehalfOfContentOwner=None)</a></code></p>
John Asmuth614db982014-04-24 15:46:26 -040088<p class="firstline">Update a channelSection.</p>
89<h3>Method Details</h3>
90<div class="method">
Craig Citroe633be12015-03-02 13:40:36 -080091 <code class="details" id="delete">delete(id, onBehalfOfContentOwner=None)</code>
John Asmuth614db982014-04-24 15:46:26 -040092 <pre>Deletes a channelSection.
93
94Args:
95 id: string, The id parameter specifies the YouTube channelSection ID for the resource that is being deleted. In a channelSection resource, the id property specifies the YouTube channelSection ID. (required)
Craig Citroe633be12015-03-02 13:40:36 -080096 onBehalfOfContentOwner: string, Note: This parameter is intended exclusively for YouTube content partners.
97
Bu Sun Kim65020912020-05-20 12:08:20 -070098The onBehalfOfContentOwner parameter indicates that the request&#x27;s authorization credentials identify a YouTube CMS user who is acting on behalf of the content owner specified in the parameter value. This parameter is intended for YouTube content partners that own and manage many different YouTube channels. It allows content owners to authenticate once and get access to all their video and channel data, without having to provide authentication credentials for each individual channel. The CMS account that the user authenticates with must be linked to the specified YouTube content owner.
John Asmuth614db982014-04-24 15:46:26 -040099</pre>
100</div>
101
102<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -0700103 <code class="details" id="insert">insert(part, body=None, onBehalfOfContentOwner=None, onBehalfOfContentOwnerChannel=None)</code>
Bu Sun Kim65020912020-05-20 12:08:20 -0700104 <pre>Adds a channelSection for the authenticated user&#x27;s channel.
John Asmuth614db982014-04-24 15:46:26 -0400105
106Args:
107 part: string, The part parameter serves two purposes in this operation. It identifies the properties that the write operation will set as well as the properties that the API response will include.
108
109The part names that you can include in the parameter value are snippet and contentDetails. (required)
Dan O'Mearadd494642020-05-01 07:42:23 -0700110 body: object, The request body.
John Asmuth614db982014-04-24 15:46:26 -0400111 The object takes the form of:
112
Craig Citroe633be12015-03-02 13:40:36 -0800113{
Bu Sun Kim65020912020-05-20 12:08:20 -0700114 &quot;contentDetails&quot;: { # Details about a channelsection, including playlists and channels. # The contentDetails object contains details about the channel section content, such as a list of playlists or channels featured in the section.
115 &quot;channels&quot;: [ # The channel ids for type multiple_channels.
116 &quot;A String&quot;,
Nathaniel Manista4f877e52015-06-15 16:44:50 +0000117 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700118 &quot;playlists&quot;: [ # The playlist ids for type single_playlist and multiple_playlists. For singlePlaylist, only one playlistId is allowed.
119 &quot;A String&quot;,
Nathaniel Manista4f877e52015-06-15 16:44:50 +0000120 ],
121 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700122 &quot;etag&quot;: &quot;A String&quot;, # Etag of this resource.
123 &quot;id&quot;: &quot;A String&quot;, # The ID that YouTube uses to uniquely identify the channel section.
124 &quot;kind&quot;: &quot;youtube#channelSection&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;youtube#channelSection&quot;.
125 &quot;localizations&quot;: { # Localizations for different languages
126 &quot;a_key&quot;: { # ChannelSection localization setting # The language tag, using string since map_key require simple types.
127 &quot;title&quot;: &quot;A String&quot;, # The localized strings for channel section&#x27;s title.
Craig Citroe633be12015-03-02 13:40:36 -0800128 },
129 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700130 &quot;snippet&quot;: { # Basic details about a channel section, including title, style and position. # The snippet object contains basic details about the channel section, such as its type, style and title.
131 &quot;channelId&quot;: &quot;A String&quot;, # The ID that YouTube uses to uniquely identify the channel that published the channel section.
132 &quot;defaultLanguage&quot;: &quot;A String&quot;, # The language of the channel section&#x27;s default title and description.
133 &quot;localized&quot;: { # ChannelSection localization setting # Localized title, read-only.
134 &quot;title&quot;: &quot;A String&quot;, # The localized strings for channel section&#x27;s title.
Craig Citroe633be12015-03-02 13:40:36 -0800135 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700136 &quot;position&quot;: 42, # The position of the channel section in the channel.
137 &quot;style&quot;: &quot;A String&quot;, # The style of the channel section.
138 &quot;title&quot;: &quot;A String&quot;, # The channel section&#x27;s title for multiple_playlists and multiple_channels.
139 &quot;type&quot;: &quot;A String&quot;, # The type of the channel section.
140 },
141 &quot;targeting&quot;: { # ChannelSection targeting setting. # The targeting object contains basic targeting settings about the channel section.
142 &quot;countries&quot;: [ # The country the channel section is targeting.
143 &quot;A String&quot;,
144 ],
145 &quot;languages&quot;: [ # The language the channel section is targeting.
146 &quot;A String&quot;,
147 ],
148 &quot;regions&quot;: [ # The region the channel section is targeting.
149 &quot;A String&quot;,
150 ],
Craig Citroe633be12015-03-02 13:40:36 -0800151 },
John Asmuth614db982014-04-24 15:46:26 -0400152 }
153
Craig Citro065b5302014-08-14 00:47:23 -0700154 onBehalfOfContentOwner: string, Note: This parameter is intended exclusively for YouTube content partners.
155
Bu Sun Kim65020912020-05-20 12:08:20 -0700156The onBehalfOfContentOwner parameter indicates that the request&#x27;s authorization credentials identify a YouTube CMS user who is acting on behalf of the content owner specified in the parameter value. This parameter is intended for YouTube content partners that own and manage many different YouTube channels. It allows content owners to authenticate once and get access to all their video and channel data, without having to provide authentication credentials for each individual channel. The CMS account that the user authenticates with must be linked to the specified YouTube content owner.
John Asmuth614db982014-04-24 15:46:26 -0400157 onBehalfOfContentOwnerChannel: string, This parameter can only be used in a properly authorized request. Note: This parameter is intended exclusively for YouTube content partners.
158
159The onBehalfOfContentOwnerChannel parameter specifies the YouTube channel ID of the channel to which a video is being added. This parameter is required when a request specifies a value for the onBehalfOfContentOwner parameter, and it can only be used in conjunction with that parameter. In addition, the request must be authorized using a CMS account that is linked to the content owner that the onBehalfOfContentOwner parameter specifies. Finally, the channel that the onBehalfOfContentOwnerChannel parameter value specifies must be linked to the content owner that the onBehalfOfContentOwner parameter specifies.
160
161This parameter is intended for YouTube content partners that own and manage many different YouTube channels. It allows content owners to authenticate once and perform actions on behalf of the channel specified in the parameter value, without having to provide authentication credentials for each separate channel.
162
163Returns:
164 An object of the form:
165
Craig Citroe633be12015-03-02 13:40:36 -0800166 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700167 &quot;contentDetails&quot;: { # Details about a channelsection, including playlists and channels. # The contentDetails object contains details about the channel section content, such as a list of playlists or channels featured in the section.
168 &quot;channels&quot;: [ # The channel ids for type multiple_channels.
169 &quot;A String&quot;,
Nathaniel Manista4f877e52015-06-15 16:44:50 +0000170 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700171 &quot;playlists&quot;: [ # The playlist ids for type single_playlist and multiple_playlists. For singlePlaylist, only one playlistId is allowed.
172 &quot;A String&quot;,
Nathaniel Manista4f877e52015-06-15 16:44:50 +0000173 ],
174 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700175 &quot;etag&quot;: &quot;A String&quot;, # Etag of this resource.
176 &quot;id&quot;: &quot;A String&quot;, # The ID that YouTube uses to uniquely identify the channel section.
177 &quot;kind&quot;: &quot;youtube#channelSection&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;youtube#channelSection&quot;.
178 &quot;localizations&quot;: { # Localizations for different languages
179 &quot;a_key&quot;: { # ChannelSection localization setting # The language tag, using string since map_key require simple types.
180 &quot;title&quot;: &quot;A String&quot;, # The localized strings for channel section&#x27;s title.
Craig Citroe633be12015-03-02 13:40:36 -0800181 },
182 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700183 &quot;snippet&quot;: { # Basic details about a channel section, including title, style and position. # The snippet object contains basic details about the channel section, such as its type, style and title.
184 &quot;channelId&quot;: &quot;A String&quot;, # The ID that YouTube uses to uniquely identify the channel that published the channel section.
185 &quot;defaultLanguage&quot;: &quot;A String&quot;, # The language of the channel section&#x27;s default title and description.
186 &quot;localized&quot;: { # ChannelSection localization setting # Localized title, read-only.
187 &quot;title&quot;: &quot;A String&quot;, # The localized strings for channel section&#x27;s title.
Craig Citroe633be12015-03-02 13:40:36 -0800188 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700189 &quot;position&quot;: 42, # The position of the channel section in the channel.
190 &quot;style&quot;: &quot;A String&quot;, # The style of the channel section.
191 &quot;title&quot;: &quot;A String&quot;, # The channel section&#x27;s title for multiple_playlists and multiple_channels.
192 &quot;type&quot;: &quot;A String&quot;, # The type of the channel section.
193 },
194 &quot;targeting&quot;: { # ChannelSection targeting setting. # The targeting object contains basic targeting settings about the channel section.
195 &quot;countries&quot;: [ # The country the channel section is targeting.
196 &quot;A String&quot;,
197 ],
198 &quot;languages&quot;: [ # The language the channel section is targeting.
199 &quot;A String&quot;,
200 ],
201 &quot;regions&quot;: [ # The region the channel section is targeting.
202 &quot;A String&quot;,
203 ],
Craig Citroe633be12015-03-02 13:40:36 -0800204 },
John Asmuth614db982014-04-24 15:46:26 -0400205 }</pre>
206</div>
207
208<div class="method">
Bu Sun Kim65020912020-05-20 12:08:20 -0700209 <code class="details" id="list">list(part, channelId=None, hl=None, id=None, mine=None, onBehalfOfContentOwner=None)</code>
John Asmuth614db982014-04-24 15:46:26 -0400210 <pre>Returns channelSection resources that match the API request criteria.
211
212Args:
213 part: string, The part parameter specifies a comma-separated list of one or more channelSection resource properties that the API response will include. The part names that you can include in the parameter value are id, snippet, and contentDetails.
214
215If the parameter identifies a property that contains child properties, the child properties will be included in the response. For example, in a channelSection resource, the snippet property contains other properties, such as a display title for the channelSection. If you set part=snippet, the API response will also contain all of those nested properties. (required)
Bu Sun Kim65020912020-05-20 12:08:20 -0700216 channelId: string, The channelId parameter specifies a YouTube channel ID. The API will only return that channel&#x27;s channelSections.
217 hl: string, The hl parameter indicates that the snippet.localized property values in the returned channelSection resources should be in the specified language if localized values for that language are available. For example, if the API request specifies hl=de, the snippet.localized properties in the API response will contain German titles if German titles are available. Channel owners can provide localized channel section titles using either the channelSections.insert or channelSections.update method.
218 id: string, The id parameter specifies a comma-separated list of the YouTube channelSection ID(s) for the resource(s) that are being retrieved. In a channelSection resource, the id property specifies the YouTube channelSection ID.
219 mine: boolean, Set this parameter&#x27;s value to true to retrieve a feed of the authenticated user&#x27;s channelSections.
John Asmuth614db982014-04-24 15:46:26 -0400220 onBehalfOfContentOwner: string, Note: This parameter is intended exclusively for YouTube content partners.
221
Bu Sun Kim65020912020-05-20 12:08:20 -0700222The onBehalfOfContentOwner parameter indicates that the request&#x27;s authorization credentials identify a YouTube CMS user who is acting on behalf of the content owner specified in the parameter value. This parameter is intended for YouTube content partners that own and manage many different YouTube channels. It allows content owners to authenticate once and get access to all their video and channel data, without having to provide authentication credentials for each individual channel. The CMS account that the user authenticates with must be linked to the specified YouTube content owner.
John Asmuth614db982014-04-24 15:46:26 -0400223
224Returns:
225 An object of the form:
226
227 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700228 &quot;etag&quot;: &quot;A String&quot;, # Etag of this resource.
229 &quot;eventId&quot;: &quot;A String&quot;, # Serialized EventId of the request which produced this response.
230 &quot;items&quot;: [ # A list of ChannelSections that match the request criteria.
Craig Citroe633be12015-03-02 13:40:36 -0800231 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700232 &quot;contentDetails&quot;: { # Details about a channelsection, including playlists and channels. # The contentDetails object contains details about the channel section content, such as a list of playlists or channels featured in the section.
233 &quot;channels&quot;: [ # The channel ids for type multiple_channels.
234 &quot;A String&quot;,
Nathaniel Manista4f877e52015-06-15 16:44:50 +0000235 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700236 &quot;playlists&quot;: [ # The playlist ids for type single_playlist and multiple_playlists. For singlePlaylist, only one playlistId is allowed.
237 &quot;A String&quot;,
Nathaniel Manista4f877e52015-06-15 16:44:50 +0000238 ],
239 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700240 &quot;etag&quot;: &quot;A String&quot;, # Etag of this resource.
241 &quot;id&quot;: &quot;A String&quot;, # The ID that YouTube uses to uniquely identify the channel section.
242 &quot;kind&quot;: &quot;youtube#channelSection&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;youtube#channelSection&quot;.
243 &quot;localizations&quot;: { # Localizations for different languages
244 &quot;a_key&quot;: { # ChannelSection localization setting # The language tag, using string since map_key require simple types.
245 &quot;title&quot;: &quot;A String&quot;, # The localized strings for channel section&#x27;s title.
Craig Citroe633be12015-03-02 13:40:36 -0800246 },
247 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700248 &quot;snippet&quot;: { # Basic details about a channel section, including title, style and position. # The snippet object contains basic details about the channel section, such as its type, style and title.
249 &quot;channelId&quot;: &quot;A String&quot;, # The ID that YouTube uses to uniquely identify the channel that published the channel section.
250 &quot;defaultLanguage&quot;: &quot;A String&quot;, # The language of the channel section&#x27;s default title and description.
251 &quot;localized&quot;: { # ChannelSection localization setting # Localized title, read-only.
252 &quot;title&quot;: &quot;A String&quot;, # The localized strings for channel section&#x27;s title.
Craig Citroe633be12015-03-02 13:40:36 -0800253 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700254 &quot;position&quot;: 42, # The position of the channel section in the channel.
255 &quot;style&quot;: &quot;A String&quot;, # The style of the channel section.
256 &quot;title&quot;: &quot;A String&quot;, # The channel section&#x27;s title for multiple_playlists and multiple_channels.
257 &quot;type&quot;: &quot;A String&quot;, # The type of the channel section.
258 },
259 &quot;targeting&quot;: { # ChannelSection targeting setting. # The targeting object contains basic targeting settings about the channel section.
260 &quot;countries&quot;: [ # The country the channel section is targeting.
261 &quot;A String&quot;,
262 ],
263 &quot;languages&quot;: [ # The language the channel section is targeting.
264 &quot;A String&quot;,
265 ],
266 &quot;regions&quot;: [ # The region the channel section is targeting.
267 &quot;A String&quot;,
268 ],
Craig Citroe633be12015-03-02 13:40:36 -0800269 },
John Asmuth614db982014-04-24 15:46:26 -0400270 },
271 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700272 &quot;kind&quot;: &quot;youtube#channelSectionListResponse&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;youtube#channelSectionListResponse&quot;.
273 &quot;visitorId&quot;: &quot;A String&quot;, # The visitorId identifies the visitor.
John Asmuth614db982014-04-24 15:46:26 -0400274 }</pre>
275</div>
276
277<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -0700278 <code class="details" id="update">update(part, body=None, onBehalfOfContentOwner=None)</code>
John Asmuth614db982014-04-24 15:46:26 -0400279 <pre>Update a channelSection.
280
281Args:
282 part: string, The part parameter serves two purposes in this operation. It identifies the properties that the write operation will set as well as the properties that the API response will include.
283
284The part names that you can include in the parameter value are snippet and contentDetails. (required)
Dan O'Mearadd494642020-05-01 07:42:23 -0700285 body: object, The request body.
John Asmuth614db982014-04-24 15:46:26 -0400286 The object takes the form of:
287
Craig Citroe633be12015-03-02 13:40:36 -0800288{
Bu Sun Kim65020912020-05-20 12:08:20 -0700289 &quot;contentDetails&quot;: { # Details about a channelsection, including playlists and channels. # The contentDetails object contains details about the channel section content, such as a list of playlists or channels featured in the section.
290 &quot;channels&quot;: [ # The channel ids for type multiple_channels.
291 &quot;A String&quot;,
Nathaniel Manista4f877e52015-06-15 16:44:50 +0000292 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700293 &quot;playlists&quot;: [ # The playlist ids for type single_playlist and multiple_playlists. For singlePlaylist, only one playlistId is allowed.
294 &quot;A String&quot;,
Nathaniel Manista4f877e52015-06-15 16:44:50 +0000295 ],
296 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700297 &quot;etag&quot;: &quot;A String&quot;, # Etag of this resource.
298 &quot;id&quot;: &quot;A String&quot;, # The ID that YouTube uses to uniquely identify the channel section.
299 &quot;kind&quot;: &quot;youtube#channelSection&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;youtube#channelSection&quot;.
300 &quot;localizations&quot;: { # Localizations for different languages
301 &quot;a_key&quot;: { # ChannelSection localization setting # The language tag, using string since map_key require simple types.
302 &quot;title&quot;: &quot;A String&quot;, # The localized strings for channel section&#x27;s title.
Craig Citroe633be12015-03-02 13:40:36 -0800303 },
304 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700305 &quot;snippet&quot;: { # Basic details about a channel section, including title, style and position. # The snippet object contains basic details about the channel section, such as its type, style and title.
306 &quot;channelId&quot;: &quot;A String&quot;, # The ID that YouTube uses to uniquely identify the channel that published the channel section.
307 &quot;defaultLanguage&quot;: &quot;A String&quot;, # The language of the channel section&#x27;s default title and description.
308 &quot;localized&quot;: { # ChannelSection localization setting # Localized title, read-only.
309 &quot;title&quot;: &quot;A String&quot;, # The localized strings for channel section&#x27;s title.
Craig Citroe633be12015-03-02 13:40:36 -0800310 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700311 &quot;position&quot;: 42, # The position of the channel section in the channel.
312 &quot;style&quot;: &quot;A String&quot;, # The style of the channel section.
313 &quot;title&quot;: &quot;A String&quot;, # The channel section&#x27;s title for multiple_playlists and multiple_channels.
314 &quot;type&quot;: &quot;A String&quot;, # The type of the channel section.
315 },
316 &quot;targeting&quot;: { # ChannelSection targeting setting. # The targeting object contains basic targeting settings about the channel section.
317 &quot;countries&quot;: [ # The country the channel section is targeting.
318 &quot;A String&quot;,
319 ],
320 &quot;languages&quot;: [ # The language the channel section is targeting.
321 &quot;A String&quot;,
322 ],
323 &quot;regions&quot;: [ # The region the channel section is targeting.
324 &quot;A String&quot;,
325 ],
Craig Citroe633be12015-03-02 13:40:36 -0800326 },
John Asmuth614db982014-04-24 15:46:26 -0400327 }
328
Craig Citroe633be12015-03-02 13:40:36 -0800329 onBehalfOfContentOwner: string, Note: This parameter is intended exclusively for YouTube content partners.
330
Bu Sun Kim65020912020-05-20 12:08:20 -0700331The onBehalfOfContentOwner parameter indicates that the request&#x27;s authorization credentials identify a YouTube CMS user who is acting on behalf of the content owner specified in the parameter value. This parameter is intended for YouTube content partners that own and manage many different YouTube channels. It allows content owners to authenticate once and get access to all their video and channel data, without having to provide authentication credentials for each individual channel. The CMS account that the user authenticates with must be linked to the specified YouTube content owner.
John Asmuth614db982014-04-24 15:46:26 -0400332
333Returns:
334 An object of the form:
335
Craig Citroe633be12015-03-02 13:40:36 -0800336 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700337 &quot;contentDetails&quot;: { # Details about a channelsection, including playlists and channels. # The contentDetails object contains details about the channel section content, such as a list of playlists or channels featured in the section.
338 &quot;channels&quot;: [ # The channel ids for type multiple_channels.
339 &quot;A String&quot;,
Nathaniel Manista4f877e52015-06-15 16:44:50 +0000340 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700341 &quot;playlists&quot;: [ # The playlist ids for type single_playlist and multiple_playlists. For singlePlaylist, only one playlistId is allowed.
342 &quot;A String&quot;,
Nathaniel Manista4f877e52015-06-15 16:44:50 +0000343 ],
344 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700345 &quot;etag&quot;: &quot;A String&quot;, # Etag of this resource.
346 &quot;id&quot;: &quot;A String&quot;, # The ID that YouTube uses to uniquely identify the channel section.
347 &quot;kind&quot;: &quot;youtube#channelSection&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;youtube#channelSection&quot;.
348 &quot;localizations&quot;: { # Localizations for different languages
349 &quot;a_key&quot;: { # ChannelSection localization setting # The language tag, using string since map_key require simple types.
350 &quot;title&quot;: &quot;A String&quot;, # The localized strings for channel section&#x27;s title.
Craig Citroe633be12015-03-02 13:40:36 -0800351 },
352 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700353 &quot;snippet&quot;: { # Basic details about a channel section, including title, style and position. # The snippet object contains basic details about the channel section, such as its type, style and title.
354 &quot;channelId&quot;: &quot;A String&quot;, # The ID that YouTube uses to uniquely identify the channel that published the channel section.
355 &quot;defaultLanguage&quot;: &quot;A String&quot;, # The language of the channel section&#x27;s default title and description.
356 &quot;localized&quot;: { # ChannelSection localization setting # Localized title, read-only.
357 &quot;title&quot;: &quot;A String&quot;, # The localized strings for channel section&#x27;s title.
Craig Citroe633be12015-03-02 13:40:36 -0800358 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700359 &quot;position&quot;: 42, # The position of the channel section in the channel.
360 &quot;style&quot;: &quot;A String&quot;, # The style of the channel section.
361 &quot;title&quot;: &quot;A String&quot;, # The channel section&#x27;s title for multiple_playlists and multiple_channels.
362 &quot;type&quot;: &quot;A String&quot;, # The type of the channel section.
363 },
364 &quot;targeting&quot;: { # ChannelSection targeting setting. # The targeting object contains basic targeting settings about the channel section.
365 &quot;countries&quot;: [ # The country the channel section is targeting.
366 &quot;A String&quot;,
367 ],
368 &quot;languages&quot;: [ # The language the channel section is targeting.
369 &quot;A String&quot;,
370 ],
371 &quot;regions&quot;: [ # The region the channel section is targeting.
372 &quot;A String&quot;,
373 ],
Craig Citroe633be12015-03-02 13:40:36 -0800374 },
John Asmuth614db982014-04-24 15:46:26 -0400375 }</pre>
376</div>
377
378</body></html>