YoutubeListCommentsCommand constructor

YoutubeListCommentsCommand()

Implementation

YoutubeListCommentsCommand() {
  argParser
    ..addOption('part',
        defaultsTo: 'id,snippet',
        help:
            '''The part parameter specifies a comma-separated list of one or more comment resource properties that the API response will include.

The following list contains the part names that you can include in the parameter value:
id, snippet''')
    ..addOption('id',
        valueHelp: 'string',
        help:
            'The id parameter specifies a comma-separated list of comment IDs for the resources that are being retrieved. In a comment resource, the id property specifies the comment\'s ID.')
    ..addOption('parent-id',
        valueHelp: 'string',
        help:
            'The parentId parameter specifies the ID of the comment for which replies should be retrieved.');
}