[Cmdlet("Get", "ConsumerRecord")]
[OutputType(new Type[] { typeof(ConsumerRecord<,>) })]
public class GetConsumerRecordCmdletCommand : KNetPSCmdlet
[Parameter(Mandatory = true, Position = 2, ValueFromPipelineByPropertyName = true, HelpMessage = "The object returned from Invoke-Poll")]
public object ConsumerRecords { get; set; }
[Parameter(Mandatory = true, Position = 0, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The dotnet class of the key")]
public string KeyClass { get; set; }
[Parameter(Position = 3, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The topic where operate on, otherwise all elements")]
public string Topic { get; set; }
[Parameter(Mandatory = true, Position = 1, ValueFromPipeline = true, ValueFromPipelineByPropertyName = true, HelpMessage = "The dotnet class of the value")]
public string ValueClass { get; set; }