[Cmdlet("New", "KafkaConsumer")]
[OutputType(new Type[] { typeof(KafkaConsumer<,>) })]
public class NewKafkaConsumerCmdletCommand : KNetPSCmdlet
[Parameter(Mandatory = true, Position = 2, ValueFromPipelineByPropertyName = true, HelpMessage = "The configuration to be used as a ConsumerConfigBuilder object")]
public ConsumerConfigBuilder Configuration { get; set; }
[Parameter(Mandatory = true, Position = 0, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The dotnet class of the key")]
public string KeyClass { get; set; }
[Parameter(Mandatory = true, Position = 1, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The dotnet class of the value")]
public string ValueClass { get; set; }