YoutubeUpdatePlaylistsCommand constructor

YoutubeUpdatePlaylistsCommand()

Implementation

YoutubeUpdatePlaylistsCommand() {
  argParser
    ..addOption('part',
        mandatory: true,
        help:
            '''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.

Note that this method will override the existing values for mutable properties that are contained in any parts that the request body specifies. For example, a playlist's description is contained in the snippet part, which must be included in the request body. If the request does not specify a value for the snippet.description property, the playlist's existing description will be deleted.

The following list contains the part names that you can include in the parameter value:
contentDetails, id, localizations, player, snippet, status''')
    ..addOption('body',
        mandatory: true,
        help:
            'Provide a liveBroadcast resource [https://developers.google.com/youtube/v3/live/docs/liveBroadcasts#resource] in the request body');
}