YoutubeUpdateStreamCommand constructor

YoutubeUpdateStreamCommand()

Implementation

YoutubeUpdateStreamCommand() {
  argParser
    ..addOption('part',
        defaultsTo: 'id,snippet,cdn,status',
        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.

The part properties that you can include in the parameter value are id, snippet, cdn, and status.

Note that this method will override the existing values for all of the mutable properties that are contained in any parts that the parameter value specifies. If the request body does not specify a value for a mutable property, the existing value for that property will be removed.''')
    ..addOption('body',
        mandatory: true,
        help:
            'Provide a liveBroadcast resource [https://developers.google.com/youtube/v3/live/docs/liveBroadcasts#resource] in the request body.');
}