github.com/confluentinc/confluent-kafka-go@v1.9.2/schemaregistry/confluent/types/decimal.proto (about)

     1  syntax = "proto3";
     2  
     3  package confluent.type;
     4  
     5  option go_package="../types";
     6  
     7  message Decimal {
     8  
     9    // The two's-complement representation of the unscaled integer value in big-endian byte order
    10    bytes value = 1;
    11  
    12    // The precision
    13    uint32 precision = 2;
    14  
    15    // The scale
    16    int32 scale = 3;
    17  }