protected GenericCloudEventsAttributeType(string name, CloudEventAttributeTypeOrdinal ordinal) : base(name, ordinal, typeof(T))
 {
 }
 private CloudEventAttributeType(string name, CloudEventAttributeTypeOrdinal ordinal, Type clrType)
 {
     Name    = name;
     Ordinal = ordinal;
     ClrType = clrType;
 }