YoutubeUpdateChannelsCommand constructor

YoutubeUpdateChannelsCommand()

Implementation

YoutubeUpdateChannelsCommand() {
  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.

The API currently only allows the parameter value to be set to either brandingSettings, invideoPromotion, or localizations. (You can only update any one of those parts with a single request.)

Note that this method overrides the existing values for all of the mutable properties that are contained in the part that the parameter value specifies.''')
    ..addOption('body',
        mandatory: true,
        help:
            'Provide a liveBroadcast resource [https://developers.google.com/youtube/v3/live/docs/liveBroadcasts#resource] in the request body');
}