storj/private/multinodepb/multinode.pb.go
Clement Sam 7461ffe148 {storagenode,web/multinode}: fix storage usage db/cache retrieval queries
The query changes we did while fixing the usage graph led to wrong
payout calculations directly linked to disk space.

This change:

- avoids converting from Bh to B directly in the query
- returns the at_rest_total in the original bytes*hour value
- returns at_rest_total_bytes as the calculated disk spaced used in bytes
- uses the at_rest_total_bytes only for the disk space graph
- return summary_bytes as the average disk space used within the specified date
- updates the disk space graph header to "average disk space used this month"

The total disk used in the month is also displayed in B not B*day

Resolves https://github.com/storj/storj/issues/5355

Change-Id: I2cfefb0fe711f9c59de2adb547c4ab50b05c7cbb
2022-12-09 11:07:33 +00:00

4399 lines
177 KiB
Go

// Code generated by protoc-gen-gogo. DO NOT EDIT.
// source: multinode.proto
package multinodepb
import (
fmt "fmt"
math "math"
time "time"
proto "github.com/gogo/protobuf/proto"
)
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf
var _ = time.Kitchen
// This is a compile-time assertion to ensure that this generated file
// is compatible with the proto package it is being compiled against.
// A compilation error at this line likely means your copy of the
// proto package needs to be updated.
const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package
type RequestHeader struct {
ApiKey []byte `protobuf:"bytes,1,opt,name=api_key,json=apiKey,proto3" json:"api_key,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *RequestHeader) Reset() { *m = RequestHeader{} }
func (m *RequestHeader) String() string { return proto.CompactTextString(m) }
func (*RequestHeader) ProtoMessage() {}
func (*RequestHeader) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{0}
}
func (m *RequestHeader) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RequestHeader.Unmarshal(m, b)
}
func (m *RequestHeader) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_RequestHeader.Marshal(b, m, deterministic)
}
func (m *RequestHeader) XXX_Merge(src proto.Message) {
xxx_messageInfo_RequestHeader.Merge(m, src)
}
func (m *RequestHeader) XXX_Size() int {
return xxx_messageInfo_RequestHeader.Size(m)
}
func (m *RequestHeader) XXX_DiscardUnknown() {
xxx_messageInfo_RequestHeader.DiscardUnknown(m)
}
var xxx_messageInfo_RequestHeader proto.InternalMessageInfo
func (m *RequestHeader) GetApiKey() []byte {
if m != nil {
return m.ApiKey
}
return nil
}
type DiskSpaceRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *DiskSpaceRequest) Reset() { *m = DiskSpaceRequest{} }
func (m *DiskSpaceRequest) String() string { return proto.CompactTextString(m) }
func (*DiskSpaceRequest) ProtoMessage() {}
func (*DiskSpaceRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{1}
}
func (m *DiskSpaceRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DiskSpaceRequest.Unmarshal(m, b)
}
func (m *DiskSpaceRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_DiskSpaceRequest.Marshal(b, m, deterministic)
}
func (m *DiskSpaceRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_DiskSpaceRequest.Merge(m, src)
}
func (m *DiskSpaceRequest) XXX_Size() int {
return xxx_messageInfo_DiskSpaceRequest.Size(m)
}
func (m *DiskSpaceRequest) XXX_DiscardUnknown() {
xxx_messageInfo_DiskSpaceRequest.DiscardUnknown(m)
}
var xxx_messageInfo_DiskSpaceRequest proto.InternalMessageInfo
func (m *DiskSpaceRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
type DiskSpaceResponse struct {
Allocated int64 `protobuf:"varint,1,opt,name=allocated,proto3" json:"allocated,omitempty"`
UsedPieces int64 `protobuf:"varint,2,opt,name=used_pieces,json=usedPieces,proto3" json:"used_pieces,omitempty"`
UsedTrash int64 `protobuf:"varint,3,opt,name=used_trash,json=usedTrash,proto3" json:"used_trash,omitempty"`
Free int64 `protobuf:"varint,4,opt,name=free,proto3" json:"free,omitempty"`
Available int64 `protobuf:"varint,5,opt,name=available,proto3" json:"available,omitempty"`
Overused int64 `protobuf:"varint,6,opt,name=overused,proto3" json:"overused,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *DiskSpaceResponse) Reset() { *m = DiskSpaceResponse{} }
func (m *DiskSpaceResponse) String() string { return proto.CompactTextString(m) }
func (*DiskSpaceResponse) ProtoMessage() {}
func (*DiskSpaceResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{2}
}
func (m *DiskSpaceResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DiskSpaceResponse.Unmarshal(m, b)
}
func (m *DiskSpaceResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_DiskSpaceResponse.Marshal(b, m, deterministic)
}
func (m *DiskSpaceResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_DiskSpaceResponse.Merge(m, src)
}
func (m *DiskSpaceResponse) XXX_Size() int {
return xxx_messageInfo_DiskSpaceResponse.Size(m)
}
func (m *DiskSpaceResponse) XXX_DiscardUnknown() {
xxx_messageInfo_DiskSpaceResponse.DiscardUnknown(m)
}
var xxx_messageInfo_DiskSpaceResponse proto.InternalMessageInfo
func (m *DiskSpaceResponse) GetAllocated() int64 {
if m != nil {
return m.Allocated
}
return 0
}
func (m *DiskSpaceResponse) GetUsedPieces() int64 {
if m != nil {
return m.UsedPieces
}
return 0
}
func (m *DiskSpaceResponse) GetUsedTrash() int64 {
if m != nil {
return m.UsedTrash
}
return 0
}
func (m *DiskSpaceResponse) GetFree() int64 {
if m != nil {
return m.Free
}
return 0
}
func (m *DiskSpaceResponse) GetAvailable() int64 {
if m != nil {
return m.Available
}
return 0
}
func (m *DiskSpaceResponse) GetOverused() int64 {
if m != nil {
return m.Overused
}
return 0
}
type StorageUsage struct {
AtRestTotal float64 `protobuf:"fixed64,1,opt,name=at_rest_total,json=atRestTotal,proto3" json:"at_rest_total,omitempty"`
IntervalStart time.Time `protobuf:"bytes,2,opt,name=interval_start,json=intervalStart,proto3,stdtime" json:"interval_start"`
AtRestTotalBytes float64 `protobuf:"fixed64,3,opt,name=at_rest_total_bytes,json=atRestTotalBytes,proto3" json:"at_rest_total_bytes,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *StorageUsage) Reset() { *m = StorageUsage{} }
func (m *StorageUsage) String() string { return proto.CompactTextString(m) }
func (*StorageUsage) ProtoMessage() {}
func (*StorageUsage) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{3}
}
func (m *StorageUsage) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_StorageUsage.Unmarshal(m, b)
}
func (m *StorageUsage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_StorageUsage.Marshal(b, m, deterministic)
}
func (m *StorageUsage) XXX_Merge(src proto.Message) {
xxx_messageInfo_StorageUsage.Merge(m, src)
}
func (m *StorageUsage) XXX_Size() int {
return xxx_messageInfo_StorageUsage.Size(m)
}
func (m *StorageUsage) XXX_DiscardUnknown() {
xxx_messageInfo_StorageUsage.DiscardUnknown(m)
}
var xxx_messageInfo_StorageUsage proto.InternalMessageInfo
func (m *StorageUsage) GetAtRestTotal() float64 {
if m != nil {
return m.AtRestTotal
}
return 0
}
func (m *StorageUsage) GetIntervalStart() time.Time {
if m != nil {
return m.IntervalStart
}
return time.Time{}
}
func (m *StorageUsage) GetAtRestTotalBytes() float64 {
if m != nil {
return m.AtRestTotalBytes
}
return 0
}
type StorageUsageRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
From time.Time `protobuf:"bytes,2,opt,name=from,proto3,stdtime" json:"from"`
To time.Time `protobuf:"bytes,3,opt,name=to,proto3,stdtime" json:"to"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *StorageUsageRequest) Reset() { *m = StorageUsageRequest{} }
func (m *StorageUsageRequest) String() string { return proto.CompactTextString(m) }
func (*StorageUsageRequest) ProtoMessage() {}
func (*StorageUsageRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{4}
}
func (m *StorageUsageRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_StorageUsageRequest.Unmarshal(m, b)
}
func (m *StorageUsageRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_StorageUsageRequest.Marshal(b, m, deterministic)
}
func (m *StorageUsageRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_StorageUsageRequest.Merge(m, src)
}
func (m *StorageUsageRequest) XXX_Size() int {
return xxx_messageInfo_StorageUsageRequest.Size(m)
}
func (m *StorageUsageRequest) XXX_DiscardUnknown() {
xxx_messageInfo_StorageUsageRequest.DiscardUnknown(m)
}
var xxx_messageInfo_StorageUsageRequest proto.InternalMessageInfo
func (m *StorageUsageRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
func (m *StorageUsageRequest) GetFrom() time.Time {
if m != nil {
return m.From
}
return time.Time{}
}
func (m *StorageUsageRequest) GetTo() time.Time {
if m != nil {
return m.To
}
return time.Time{}
}
type StorageUsageResponse struct {
StorageUsage []*StorageUsage `protobuf:"bytes,1,rep,name=storage_usage,json=storageUsage,proto3" json:"storage_usage,omitempty"`
Summary float64 `protobuf:"fixed64,2,opt,name=summary,proto3" json:"summary,omitempty"`
AverageUsageBytes float64 `protobuf:"fixed64,3,opt,name=average_usage_bytes,json=averageUsageBytes,proto3" json:"average_usage_bytes,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *StorageUsageResponse) Reset() { *m = StorageUsageResponse{} }
func (m *StorageUsageResponse) String() string { return proto.CompactTextString(m) }
func (*StorageUsageResponse) ProtoMessage() {}
func (*StorageUsageResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{5}
}
func (m *StorageUsageResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_StorageUsageResponse.Unmarshal(m, b)
}
func (m *StorageUsageResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_StorageUsageResponse.Marshal(b, m, deterministic)
}
func (m *StorageUsageResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_StorageUsageResponse.Merge(m, src)
}
func (m *StorageUsageResponse) XXX_Size() int {
return xxx_messageInfo_StorageUsageResponse.Size(m)
}
func (m *StorageUsageResponse) XXX_DiscardUnknown() {
xxx_messageInfo_StorageUsageResponse.DiscardUnknown(m)
}
var xxx_messageInfo_StorageUsageResponse proto.InternalMessageInfo
func (m *StorageUsageResponse) GetStorageUsage() []*StorageUsage {
if m != nil {
return m.StorageUsage
}
return nil
}
func (m *StorageUsageResponse) GetSummary() float64 {
if m != nil {
return m.Summary
}
return 0
}
func (m *StorageUsageResponse) GetAverageUsageBytes() float64 {
if m != nil {
return m.AverageUsageBytes
}
return 0
}
type StorageUsageSatelliteRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
SatelliteId NodeID `protobuf:"bytes,2,opt,name=satellite_id,json=satelliteId,proto3,customtype=NodeID" json:"satellite_id"`
From time.Time `protobuf:"bytes,3,opt,name=from,proto3,stdtime" json:"from"`
To time.Time `protobuf:"bytes,4,opt,name=to,proto3,stdtime" json:"to"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *StorageUsageSatelliteRequest) Reset() { *m = StorageUsageSatelliteRequest{} }
func (m *StorageUsageSatelliteRequest) String() string { return proto.CompactTextString(m) }
func (*StorageUsageSatelliteRequest) ProtoMessage() {}
func (*StorageUsageSatelliteRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{6}
}
func (m *StorageUsageSatelliteRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_StorageUsageSatelliteRequest.Unmarshal(m, b)
}
func (m *StorageUsageSatelliteRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_StorageUsageSatelliteRequest.Marshal(b, m, deterministic)
}
func (m *StorageUsageSatelliteRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_StorageUsageSatelliteRequest.Merge(m, src)
}
func (m *StorageUsageSatelliteRequest) XXX_Size() int {
return xxx_messageInfo_StorageUsageSatelliteRequest.Size(m)
}
func (m *StorageUsageSatelliteRequest) XXX_DiscardUnknown() {
xxx_messageInfo_StorageUsageSatelliteRequest.DiscardUnknown(m)
}
var xxx_messageInfo_StorageUsageSatelliteRequest proto.InternalMessageInfo
func (m *StorageUsageSatelliteRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
func (m *StorageUsageSatelliteRequest) GetFrom() time.Time {
if m != nil {
return m.From
}
return time.Time{}
}
func (m *StorageUsageSatelliteRequest) GetTo() time.Time {
if m != nil {
return m.To
}
return time.Time{}
}
type StorageUsageSatelliteResponse struct {
StorageUsage []*StorageUsage `protobuf:"bytes,1,rep,name=storage_usage,json=storageUsage,proto3" json:"storage_usage,omitempty"`
Summary float64 `protobuf:"fixed64,2,opt,name=summary,proto3" json:"summary,omitempty"`
AverageUsageBytes float64 `protobuf:"fixed64,3,opt,name=average_usage_bytes,json=averageUsageBytes,proto3" json:"average_usage_bytes,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *StorageUsageSatelliteResponse) Reset() { *m = StorageUsageSatelliteResponse{} }
func (m *StorageUsageSatelliteResponse) String() string { return proto.CompactTextString(m) }
func (*StorageUsageSatelliteResponse) ProtoMessage() {}
func (*StorageUsageSatelliteResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{7}
}
func (m *StorageUsageSatelliteResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_StorageUsageSatelliteResponse.Unmarshal(m, b)
}
func (m *StorageUsageSatelliteResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_StorageUsageSatelliteResponse.Marshal(b, m, deterministic)
}
func (m *StorageUsageSatelliteResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_StorageUsageSatelliteResponse.Merge(m, src)
}
func (m *StorageUsageSatelliteResponse) XXX_Size() int {
return xxx_messageInfo_StorageUsageSatelliteResponse.Size(m)
}
func (m *StorageUsageSatelliteResponse) XXX_DiscardUnknown() {
xxx_messageInfo_StorageUsageSatelliteResponse.DiscardUnknown(m)
}
var xxx_messageInfo_StorageUsageSatelliteResponse proto.InternalMessageInfo
func (m *StorageUsageSatelliteResponse) GetStorageUsage() []*StorageUsage {
if m != nil {
return m.StorageUsage
}
return nil
}
func (m *StorageUsageSatelliteResponse) GetSummary() float64 {
if m != nil {
return m.Summary
}
return 0
}
func (m *StorageUsageSatelliteResponse) GetAverageUsageBytes() float64 {
if m != nil {
return m.AverageUsageBytes
}
return 0
}
type BandwidthMonthSummaryRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *BandwidthMonthSummaryRequest) Reset() { *m = BandwidthMonthSummaryRequest{} }
func (m *BandwidthMonthSummaryRequest) String() string { return proto.CompactTextString(m) }
func (*BandwidthMonthSummaryRequest) ProtoMessage() {}
func (*BandwidthMonthSummaryRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{8}
}
func (m *BandwidthMonthSummaryRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_BandwidthMonthSummaryRequest.Unmarshal(m, b)
}
func (m *BandwidthMonthSummaryRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_BandwidthMonthSummaryRequest.Marshal(b, m, deterministic)
}
func (m *BandwidthMonthSummaryRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_BandwidthMonthSummaryRequest.Merge(m, src)
}
func (m *BandwidthMonthSummaryRequest) XXX_Size() int {
return xxx_messageInfo_BandwidthMonthSummaryRequest.Size(m)
}
func (m *BandwidthMonthSummaryRequest) XXX_DiscardUnknown() {
xxx_messageInfo_BandwidthMonthSummaryRequest.DiscardUnknown(m)
}
var xxx_messageInfo_BandwidthMonthSummaryRequest proto.InternalMessageInfo
func (m *BandwidthMonthSummaryRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
type BandwidthMonthSummaryResponse struct {
Used int64 `protobuf:"varint,1,opt,name=used,proto3" json:"used,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *BandwidthMonthSummaryResponse) Reset() { *m = BandwidthMonthSummaryResponse{} }
func (m *BandwidthMonthSummaryResponse) String() string { return proto.CompactTextString(m) }
func (*BandwidthMonthSummaryResponse) ProtoMessage() {}
func (*BandwidthMonthSummaryResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{9}
}
func (m *BandwidthMonthSummaryResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_BandwidthMonthSummaryResponse.Unmarshal(m, b)
}
func (m *BandwidthMonthSummaryResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_BandwidthMonthSummaryResponse.Marshal(b, m, deterministic)
}
func (m *BandwidthMonthSummaryResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_BandwidthMonthSummaryResponse.Merge(m, src)
}
func (m *BandwidthMonthSummaryResponse) XXX_Size() int {
return xxx_messageInfo_BandwidthMonthSummaryResponse.Size(m)
}
func (m *BandwidthMonthSummaryResponse) XXX_DiscardUnknown() {
xxx_messageInfo_BandwidthMonthSummaryResponse.DiscardUnknown(m)
}
var xxx_messageInfo_BandwidthMonthSummaryResponse proto.InternalMessageInfo
func (m *BandwidthMonthSummaryResponse) GetUsed() int64 {
if m != nil {
return m.Used
}
return 0
}
type BandwidthSummarySatelliteRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
SatelliteId NodeID `protobuf:"bytes,2,opt,name=satellite_id,json=satelliteId,proto3,customtype=NodeID" json:"satellite_id"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *BandwidthSummarySatelliteRequest) Reset() { *m = BandwidthSummarySatelliteRequest{} }
func (m *BandwidthSummarySatelliteRequest) String() string { return proto.CompactTextString(m) }
func (*BandwidthSummarySatelliteRequest) ProtoMessage() {}
func (*BandwidthSummarySatelliteRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{10}
}
func (m *BandwidthSummarySatelliteRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_BandwidthSummarySatelliteRequest.Unmarshal(m, b)
}
func (m *BandwidthSummarySatelliteRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_BandwidthSummarySatelliteRequest.Marshal(b, m, deterministic)
}
func (m *BandwidthSummarySatelliteRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_BandwidthSummarySatelliteRequest.Merge(m, src)
}
func (m *BandwidthSummarySatelliteRequest) XXX_Size() int {
return xxx_messageInfo_BandwidthSummarySatelliteRequest.Size(m)
}
func (m *BandwidthSummarySatelliteRequest) XXX_DiscardUnknown() {
xxx_messageInfo_BandwidthSummarySatelliteRequest.DiscardUnknown(m)
}
var xxx_messageInfo_BandwidthSummarySatelliteRequest proto.InternalMessageInfo
func (m *BandwidthSummarySatelliteRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
type BandwidthSummarySatelliteResponse struct {
Summary int64 `protobuf:"varint,1,opt,name=summary,proto3" json:"summary,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *BandwidthSummarySatelliteResponse) Reset() { *m = BandwidthSummarySatelliteResponse{} }
func (m *BandwidthSummarySatelliteResponse) String() string { return proto.CompactTextString(m) }
func (*BandwidthSummarySatelliteResponse) ProtoMessage() {}
func (*BandwidthSummarySatelliteResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{11}
}
func (m *BandwidthSummarySatelliteResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_BandwidthSummarySatelliteResponse.Unmarshal(m, b)
}
func (m *BandwidthSummarySatelliteResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_BandwidthSummarySatelliteResponse.Marshal(b, m, deterministic)
}
func (m *BandwidthSummarySatelliteResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_BandwidthSummarySatelliteResponse.Merge(m, src)
}
func (m *BandwidthSummarySatelliteResponse) XXX_Size() int {
return xxx_messageInfo_BandwidthSummarySatelliteResponse.Size(m)
}
func (m *BandwidthSummarySatelliteResponse) XXX_DiscardUnknown() {
xxx_messageInfo_BandwidthSummarySatelliteResponse.DiscardUnknown(m)
}
var xxx_messageInfo_BandwidthSummarySatelliteResponse proto.InternalMessageInfo
func (m *BandwidthSummarySatelliteResponse) GetSummary() int64 {
if m != nil {
return m.Summary
}
return 0
}
type BandwidthSummaryRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *BandwidthSummaryRequest) Reset() { *m = BandwidthSummaryRequest{} }
func (m *BandwidthSummaryRequest) String() string { return proto.CompactTextString(m) }
func (*BandwidthSummaryRequest) ProtoMessage() {}
func (*BandwidthSummaryRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{12}
}
func (m *BandwidthSummaryRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_BandwidthSummaryRequest.Unmarshal(m, b)
}
func (m *BandwidthSummaryRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_BandwidthSummaryRequest.Marshal(b, m, deterministic)
}
func (m *BandwidthSummaryRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_BandwidthSummaryRequest.Merge(m, src)
}
func (m *BandwidthSummaryRequest) XXX_Size() int {
return xxx_messageInfo_BandwidthSummaryRequest.Size(m)
}
func (m *BandwidthSummaryRequest) XXX_DiscardUnknown() {
xxx_messageInfo_BandwidthSummaryRequest.DiscardUnknown(m)
}
var xxx_messageInfo_BandwidthSummaryRequest proto.InternalMessageInfo
func (m *BandwidthSummaryRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
type BandwidthSummaryResponse struct {
Summary int64 `protobuf:"varint,1,opt,name=summary,proto3" json:"summary,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *BandwidthSummaryResponse) Reset() { *m = BandwidthSummaryResponse{} }
func (m *BandwidthSummaryResponse) String() string { return proto.CompactTextString(m) }
func (*BandwidthSummaryResponse) ProtoMessage() {}
func (*BandwidthSummaryResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{13}
}
func (m *BandwidthSummaryResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_BandwidthSummaryResponse.Unmarshal(m, b)
}
func (m *BandwidthSummaryResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_BandwidthSummaryResponse.Marshal(b, m, deterministic)
}
func (m *BandwidthSummaryResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_BandwidthSummaryResponse.Merge(m, src)
}
func (m *BandwidthSummaryResponse) XXX_Size() int {
return xxx_messageInfo_BandwidthSummaryResponse.Size(m)
}
func (m *BandwidthSummaryResponse) XXX_DiscardUnknown() {
xxx_messageInfo_BandwidthSummaryResponse.DiscardUnknown(m)
}
var xxx_messageInfo_BandwidthSummaryResponse proto.InternalMessageInfo
func (m *BandwidthSummaryResponse) GetSummary() int64 {
if m != nil {
return m.Summary
}
return 0
}
type EgressSummarySatelliteRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
SatelliteId NodeID `protobuf:"bytes,2,opt,name=satellite_id,json=satelliteId,proto3,customtype=NodeID" json:"satellite_id"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *EgressSummarySatelliteRequest) Reset() { *m = EgressSummarySatelliteRequest{} }
func (m *EgressSummarySatelliteRequest) String() string { return proto.CompactTextString(m) }
func (*EgressSummarySatelliteRequest) ProtoMessage() {}
func (*EgressSummarySatelliteRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{14}
}
func (m *EgressSummarySatelliteRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_EgressSummarySatelliteRequest.Unmarshal(m, b)
}
func (m *EgressSummarySatelliteRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_EgressSummarySatelliteRequest.Marshal(b, m, deterministic)
}
func (m *EgressSummarySatelliteRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_EgressSummarySatelliteRequest.Merge(m, src)
}
func (m *EgressSummarySatelliteRequest) XXX_Size() int {
return xxx_messageInfo_EgressSummarySatelliteRequest.Size(m)
}
func (m *EgressSummarySatelliteRequest) XXX_DiscardUnknown() {
xxx_messageInfo_EgressSummarySatelliteRequest.DiscardUnknown(m)
}
var xxx_messageInfo_EgressSummarySatelliteRequest proto.InternalMessageInfo
func (m *EgressSummarySatelliteRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
type EgressSummarySatelliteResponse struct {
Summary int64 `protobuf:"varint,1,opt,name=summary,proto3" json:"summary,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *EgressSummarySatelliteResponse) Reset() { *m = EgressSummarySatelliteResponse{} }
func (m *EgressSummarySatelliteResponse) String() string { return proto.CompactTextString(m) }
func (*EgressSummarySatelliteResponse) ProtoMessage() {}
func (*EgressSummarySatelliteResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{15}
}
func (m *EgressSummarySatelliteResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_EgressSummarySatelliteResponse.Unmarshal(m, b)
}
func (m *EgressSummarySatelliteResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_EgressSummarySatelliteResponse.Marshal(b, m, deterministic)
}
func (m *EgressSummarySatelliteResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_EgressSummarySatelliteResponse.Merge(m, src)
}
func (m *EgressSummarySatelliteResponse) XXX_Size() int {
return xxx_messageInfo_EgressSummarySatelliteResponse.Size(m)
}
func (m *EgressSummarySatelliteResponse) XXX_DiscardUnknown() {
xxx_messageInfo_EgressSummarySatelliteResponse.DiscardUnknown(m)
}
var xxx_messageInfo_EgressSummarySatelliteResponse proto.InternalMessageInfo
func (m *EgressSummarySatelliteResponse) GetSummary() int64 {
if m != nil {
return m.Summary
}
return 0
}
type EgressSummaryRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *EgressSummaryRequest) Reset() { *m = EgressSummaryRequest{} }
func (m *EgressSummaryRequest) String() string { return proto.CompactTextString(m) }
func (*EgressSummaryRequest) ProtoMessage() {}
func (*EgressSummaryRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{16}
}
func (m *EgressSummaryRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_EgressSummaryRequest.Unmarshal(m, b)
}
func (m *EgressSummaryRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_EgressSummaryRequest.Marshal(b, m, deterministic)
}
func (m *EgressSummaryRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_EgressSummaryRequest.Merge(m, src)
}
func (m *EgressSummaryRequest) XXX_Size() int {
return xxx_messageInfo_EgressSummaryRequest.Size(m)
}
func (m *EgressSummaryRequest) XXX_DiscardUnknown() {
xxx_messageInfo_EgressSummaryRequest.DiscardUnknown(m)
}
var xxx_messageInfo_EgressSummaryRequest proto.InternalMessageInfo
func (m *EgressSummaryRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
type EgressSummaryResponse struct {
Summary int64 `protobuf:"varint,1,opt,name=summary,proto3" json:"summary,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *EgressSummaryResponse) Reset() { *m = EgressSummaryResponse{} }
func (m *EgressSummaryResponse) String() string { return proto.CompactTextString(m) }
func (*EgressSummaryResponse) ProtoMessage() {}
func (*EgressSummaryResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{17}
}
func (m *EgressSummaryResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_EgressSummaryResponse.Unmarshal(m, b)
}
func (m *EgressSummaryResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_EgressSummaryResponse.Marshal(b, m, deterministic)
}
func (m *EgressSummaryResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_EgressSummaryResponse.Merge(m, src)
}
func (m *EgressSummaryResponse) XXX_Size() int {
return xxx_messageInfo_EgressSummaryResponse.Size(m)
}
func (m *EgressSummaryResponse) XXX_DiscardUnknown() {
xxx_messageInfo_EgressSummaryResponse.DiscardUnknown(m)
}
var xxx_messageInfo_EgressSummaryResponse proto.InternalMessageInfo
func (m *EgressSummaryResponse) GetSummary() int64 {
if m != nil {
return m.Summary
}
return 0
}
type IngressSummarySatelliteRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
SatelliteId NodeID `protobuf:"bytes,2,opt,name=satellite_id,json=satelliteId,proto3,customtype=NodeID" json:"satellite_id"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *IngressSummarySatelliteRequest) Reset() { *m = IngressSummarySatelliteRequest{} }
func (m *IngressSummarySatelliteRequest) String() string { return proto.CompactTextString(m) }
func (*IngressSummarySatelliteRequest) ProtoMessage() {}
func (*IngressSummarySatelliteRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{18}
}
func (m *IngressSummarySatelliteRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_IngressSummarySatelliteRequest.Unmarshal(m, b)
}
func (m *IngressSummarySatelliteRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_IngressSummarySatelliteRequest.Marshal(b, m, deterministic)
}
func (m *IngressSummarySatelliteRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_IngressSummarySatelliteRequest.Merge(m, src)
}
func (m *IngressSummarySatelliteRequest) XXX_Size() int {
return xxx_messageInfo_IngressSummarySatelliteRequest.Size(m)
}
func (m *IngressSummarySatelliteRequest) XXX_DiscardUnknown() {
xxx_messageInfo_IngressSummarySatelliteRequest.DiscardUnknown(m)
}
var xxx_messageInfo_IngressSummarySatelliteRequest proto.InternalMessageInfo
func (m *IngressSummarySatelliteRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
type IngressSummarySatelliteResponse struct {
Summary int64 `protobuf:"varint,1,opt,name=summary,proto3" json:"summary,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *IngressSummarySatelliteResponse) Reset() { *m = IngressSummarySatelliteResponse{} }
func (m *IngressSummarySatelliteResponse) String() string { return proto.CompactTextString(m) }
func (*IngressSummarySatelliteResponse) ProtoMessage() {}
func (*IngressSummarySatelliteResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{19}
}
func (m *IngressSummarySatelliteResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_IngressSummarySatelliteResponse.Unmarshal(m, b)
}
func (m *IngressSummarySatelliteResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_IngressSummarySatelliteResponse.Marshal(b, m, deterministic)
}
func (m *IngressSummarySatelliteResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_IngressSummarySatelliteResponse.Merge(m, src)
}
func (m *IngressSummarySatelliteResponse) XXX_Size() int {
return xxx_messageInfo_IngressSummarySatelliteResponse.Size(m)
}
func (m *IngressSummarySatelliteResponse) XXX_DiscardUnknown() {
xxx_messageInfo_IngressSummarySatelliteResponse.DiscardUnknown(m)
}
var xxx_messageInfo_IngressSummarySatelliteResponse proto.InternalMessageInfo
func (m *IngressSummarySatelliteResponse) GetSummary() int64 {
if m != nil {
return m.Summary
}
return 0
}
type IngressSummaryRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *IngressSummaryRequest) Reset() { *m = IngressSummaryRequest{} }
func (m *IngressSummaryRequest) String() string { return proto.CompactTextString(m) }
func (*IngressSummaryRequest) ProtoMessage() {}
func (*IngressSummaryRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{20}
}
func (m *IngressSummaryRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_IngressSummaryRequest.Unmarshal(m, b)
}
func (m *IngressSummaryRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_IngressSummaryRequest.Marshal(b, m, deterministic)
}
func (m *IngressSummaryRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_IngressSummaryRequest.Merge(m, src)
}
func (m *IngressSummaryRequest) XXX_Size() int {
return xxx_messageInfo_IngressSummaryRequest.Size(m)
}
func (m *IngressSummaryRequest) XXX_DiscardUnknown() {
xxx_messageInfo_IngressSummaryRequest.DiscardUnknown(m)
}
var xxx_messageInfo_IngressSummaryRequest proto.InternalMessageInfo
func (m *IngressSummaryRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
type IngressSummaryResponse struct {
Summary int64 `protobuf:"varint,1,opt,name=summary,proto3" json:"summary,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *IngressSummaryResponse) Reset() { *m = IngressSummaryResponse{} }
func (m *IngressSummaryResponse) String() string { return proto.CompactTextString(m) }
func (*IngressSummaryResponse) ProtoMessage() {}
func (*IngressSummaryResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{21}
}
func (m *IngressSummaryResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_IngressSummaryResponse.Unmarshal(m, b)
}
func (m *IngressSummaryResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_IngressSummaryResponse.Marshal(b, m, deterministic)
}
func (m *IngressSummaryResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_IngressSummaryResponse.Merge(m, src)
}
func (m *IngressSummaryResponse) XXX_Size() int {
return xxx_messageInfo_IngressSummaryResponse.Size(m)
}
func (m *IngressSummaryResponse) XXX_DiscardUnknown() {
xxx_messageInfo_IngressSummaryResponse.DiscardUnknown(m)
}
var xxx_messageInfo_IngressSummaryResponse proto.InternalMessageInfo
func (m *IngressSummaryResponse) GetSummary() int64 {
if m != nil {
return m.Summary
}
return 0
}
type DailySatelliteRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
SatelliteId NodeID `protobuf:"bytes,2,opt,name=satellite_id,json=satelliteId,proto3,customtype=NodeID" json:"satellite_id"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *DailySatelliteRequest) Reset() { *m = DailySatelliteRequest{} }
func (m *DailySatelliteRequest) String() string { return proto.CompactTextString(m) }
func (*DailySatelliteRequest) ProtoMessage() {}
func (*DailySatelliteRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{22}
}
func (m *DailySatelliteRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DailySatelliteRequest.Unmarshal(m, b)
}
func (m *DailySatelliteRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_DailySatelliteRequest.Marshal(b, m, deterministic)
}
func (m *DailySatelliteRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_DailySatelliteRequest.Merge(m, src)
}
func (m *DailySatelliteRequest) XXX_Size() int {
return xxx_messageInfo_DailySatelliteRequest.Size(m)
}
func (m *DailySatelliteRequest) XXX_DiscardUnknown() {
xxx_messageInfo_DailySatelliteRequest.DiscardUnknown(m)
}
var xxx_messageInfo_DailySatelliteRequest proto.InternalMessageInfo
func (m *DailySatelliteRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
type DailySatelliteResponse struct {
UsageRollup []*UsageRollup `protobuf:"bytes,1,rep,name=usage_rollup,json=usageRollup,proto3" json:"usage_rollup,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *DailySatelliteResponse) Reset() { *m = DailySatelliteResponse{} }
func (m *DailySatelliteResponse) String() string { return proto.CompactTextString(m) }
func (*DailySatelliteResponse) ProtoMessage() {}
func (*DailySatelliteResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{23}
}
func (m *DailySatelliteResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DailySatelliteResponse.Unmarshal(m, b)
}
func (m *DailySatelliteResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_DailySatelliteResponse.Marshal(b, m, deterministic)
}
func (m *DailySatelliteResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_DailySatelliteResponse.Merge(m, src)
}
func (m *DailySatelliteResponse) XXX_Size() int {
return xxx_messageInfo_DailySatelliteResponse.Size(m)
}
func (m *DailySatelliteResponse) XXX_DiscardUnknown() {
xxx_messageInfo_DailySatelliteResponse.DiscardUnknown(m)
}
var xxx_messageInfo_DailySatelliteResponse proto.InternalMessageInfo
func (m *DailySatelliteResponse) GetUsageRollup() []*UsageRollup {
if m != nil {
return m.UsageRollup
}
return nil
}
type DailyRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *DailyRequest) Reset() { *m = DailyRequest{} }
func (m *DailyRequest) String() string { return proto.CompactTextString(m) }
func (*DailyRequest) ProtoMessage() {}
func (*DailyRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{24}
}
func (m *DailyRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DailyRequest.Unmarshal(m, b)
}
func (m *DailyRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_DailyRequest.Marshal(b, m, deterministic)
}
func (m *DailyRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_DailyRequest.Merge(m, src)
}
func (m *DailyRequest) XXX_Size() int {
return xxx_messageInfo_DailyRequest.Size(m)
}
func (m *DailyRequest) XXX_DiscardUnknown() {
xxx_messageInfo_DailyRequest.DiscardUnknown(m)
}
var xxx_messageInfo_DailyRequest proto.InternalMessageInfo
func (m *DailyRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
type DailyResponse struct {
UsageRollup []*UsageRollup `protobuf:"bytes,1,rep,name=usage_rollup,json=usageRollup,proto3" json:"usage_rollup,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *DailyResponse) Reset() { *m = DailyResponse{} }
func (m *DailyResponse) String() string { return proto.CompactTextString(m) }
func (*DailyResponse) ProtoMessage() {}
func (*DailyResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{25}
}
func (m *DailyResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DailyResponse.Unmarshal(m, b)
}
func (m *DailyResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_DailyResponse.Marshal(b, m, deterministic)
}
func (m *DailyResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_DailyResponse.Merge(m, src)
}
func (m *DailyResponse) XXX_Size() int {
return xxx_messageInfo_DailyResponse.Size(m)
}
func (m *DailyResponse) XXX_DiscardUnknown() {
xxx_messageInfo_DailyResponse.DiscardUnknown(m)
}
var xxx_messageInfo_DailyResponse proto.InternalMessageInfo
func (m *DailyResponse) GetUsageRollup() []*UsageRollup {
if m != nil {
return m.UsageRollup
}
return nil
}
type UsageRollup struct {
Egress *Egress `protobuf:"bytes,1,opt,name=egress,proto3" json:"egress,omitempty"`
Ingress *Ingress `protobuf:"bytes,2,opt,name=ingress,proto3" json:"ingress,omitempty"`
Delete int64 `protobuf:"varint,3,opt,name=delete,proto3" json:"delete,omitempty"`
IntervalStart time.Time `protobuf:"bytes,4,opt,name=interval_start,json=intervalStart,proto3,stdtime" json:"interval_start"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *UsageRollup) Reset() { *m = UsageRollup{} }
func (m *UsageRollup) String() string { return proto.CompactTextString(m) }
func (*UsageRollup) ProtoMessage() {}
func (*UsageRollup) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{26}
}
func (m *UsageRollup) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_UsageRollup.Unmarshal(m, b)
}
func (m *UsageRollup) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_UsageRollup.Marshal(b, m, deterministic)
}
func (m *UsageRollup) XXX_Merge(src proto.Message) {
xxx_messageInfo_UsageRollup.Merge(m, src)
}
func (m *UsageRollup) XXX_Size() int {
return xxx_messageInfo_UsageRollup.Size(m)
}
func (m *UsageRollup) XXX_DiscardUnknown() {
xxx_messageInfo_UsageRollup.DiscardUnknown(m)
}
var xxx_messageInfo_UsageRollup proto.InternalMessageInfo
func (m *UsageRollup) GetEgress() *Egress {
if m != nil {
return m.Egress
}
return nil
}
func (m *UsageRollup) GetIngress() *Ingress {
if m != nil {
return m.Ingress
}
return nil
}
func (m *UsageRollup) GetDelete() int64 {
if m != nil {
return m.Delete
}
return 0
}
func (m *UsageRollup) GetIntervalStart() time.Time {
if m != nil {
return m.IntervalStart
}
return time.Time{}
}
type Egress struct {
Repair int64 `protobuf:"varint,1,opt,name=repair,proto3" json:"repair,omitempty"`
Audit int64 `protobuf:"varint,2,opt,name=audit,proto3" json:"audit,omitempty"`
Usage int64 `protobuf:"varint,3,opt,name=usage,proto3" json:"usage,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *Egress) Reset() { *m = Egress{} }
func (m *Egress) String() string { return proto.CompactTextString(m) }
func (*Egress) ProtoMessage() {}
func (*Egress) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{27}
}
func (m *Egress) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_Egress.Unmarshal(m, b)
}
func (m *Egress) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_Egress.Marshal(b, m, deterministic)
}
func (m *Egress) XXX_Merge(src proto.Message) {
xxx_messageInfo_Egress.Merge(m, src)
}
func (m *Egress) XXX_Size() int {
return xxx_messageInfo_Egress.Size(m)
}
func (m *Egress) XXX_DiscardUnknown() {
xxx_messageInfo_Egress.DiscardUnknown(m)
}
var xxx_messageInfo_Egress proto.InternalMessageInfo
func (m *Egress) GetRepair() int64 {
if m != nil {
return m.Repair
}
return 0
}
func (m *Egress) GetAudit() int64 {
if m != nil {
return m.Audit
}
return 0
}
func (m *Egress) GetUsage() int64 {
if m != nil {
return m.Usage
}
return 0
}
type Ingress struct {
Repaid int64 `protobuf:"varint,1,opt,name=repaid,proto3" json:"repaid,omitempty"`
Usage int64 `protobuf:"varint,2,opt,name=usage,proto3" json:"usage,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *Ingress) Reset() { *m = Ingress{} }
func (m *Ingress) String() string { return proto.CompactTextString(m) }
func (*Ingress) ProtoMessage() {}
func (*Ingress) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{28}
}
func (m *Ingress) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_Ingress.Unmarshal(m, b)
}
func (m *Ingress) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_Ingress.Marshal(b, m, deterministic)
}
func (m *Ingress) XXX_Merge(src proto.Message) {
xxx_messageInfo_Ingress.Merge(m, src)
}
func (m *Ingress) XXX_Size() int {
return xxx_messageInfo_Ingress.Size(m)
}
func (m *Ingress) XXX_DiscardUnknown() {
xxx_messageInfo_Ingress.DiscardUnknown(m)
}
var xxx_messageInfo_Ingress proto.InternalMessageInfo
func (m *Ingress) GetRepaid() int64 {
if m != nil {
return m.Repaid
}
return 0
}
func (m *Ingress) GetUsage() int64 {
if m != nil {
return m.Usage
}
return 0
}
type VersionRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *VersionRequest) Reset() { *m = VersionRequest{} }
func (m *VersionRequest) String() string { return proto.CompactTextString(m) }
func (*VersionRequest) ProtoMessage() {}
func (*VersionRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{29}
}
func (m *VersionRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_VersionRequest.Unmarshal(m, b)
}
func (m *VersionRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_VersionRequest.Marshal(b, m, deterministic)
}
func (m *VersionRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_VersionRequest.Merge(m, src)
}
func (m *VersionRequest) XXX_Size() int {
return xxx_messageInfo_VersionRequest.Size(m)
}
func (m *VersionRequest) XXX_DiscardUnknown() {
xxx_messageInfo_VersionRequest.DiscardUnknown(m)
}
var xxx_messageInfo_VersionRequest proto.InternalMessageInfo
func (m *VersionRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
type VersionResponse struct {
Version string `protobuf:"bytes,1,opt,name=version,proto3" json:"version,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *VersionResponse) Reset() { *m = VersionResponse{} }
func (m *VersionResponse) String() string { return proto.CompactTextString(m) }
func (*VersionResponse) ProtoMessage() {}
func (*VersionResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{30}
}
func (m *VersionResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_VersionResponse.Unmarshal(m, b)
}
func (m *VersionResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_VersionResponse.Marshal(b, m, deterministic)
}
func (m *VersionResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_VersionResponse.Merge(m, src)
}
func (m *VersionResponse) XXX_Size() int {
return xxx_messageInfo_VersionResponse.Size(m)
}
func (m *VersionResponse) XXX_DiscardUnknown() {
xxx_messageInfo_VersionResponse.DiscardUnknown(m)
}
var xxx_messageInfo_VersionResponse proto.InternalMessageInfo
func (m *VersionResponse) GetVersion() string {
if m != nil {
return m.Version
}
return ""
}
type LastContactRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *LastContactRequest) Reset() { *m = LastContactRequest{} }
func (m *LastContactRequest) String() string { return proto.CompactTextString(m) }
func (*LastContactRequest) ProtoMessage() {}
func (*LastContactRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{31}
}
func (m *LastContactRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_LastContactRequest.Unmarshal(m, b)
}
func (m *LastContactRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_LastContactRequest.Marshal(b, m, deterministic)
}
func (m *LastContactRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_LastContactRequest.Merge(m, src)
}
func (m *LastContactRequest) XXX_Size() int {
return xxx_messageInfo_LastContactRequest.Size(m)
}
func (m *LastContactRequest) XXX_DiscardUnknown() {
xxx_messageInfo_LastContactRequest.DiscardUnknown(m)
}
var xxx_messageInfo_LastContactRequest proto.InternalMessageInfo
func (m *LastContactRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
type LastContactResponse struct {
LastContact time.Time `protobuf:"bytes,1,opt,name=last_contact,json=lastContact,proto3,stdtime" json:"last_contact"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *LastContactResponse) Reset() { *m = LastContactResponse{} }
func (m *LastContactResponse) String() string { return proto.CompactTextString(m) }
func (*LastContactResponse) ProtoMessage() {}
func (*LastContactResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{32}
}
func (m *LastContactResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_LastContactResponse.Unmarshal(m, b)
}
func (m *LastContactResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_LastContactResponse.Marshal(b, m, deterministic)
}
func (m *LastContactResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_LastContactResponse.Merge(m, src)
}
func (m *LastContactResponse) XXX_Size() int {
return xxx_messageInfo_LastContactResponse.Size(m)
}
func (m *LastContactResponse) XXX_DiscardUnknown() {
xxx_messageInfo_LastContactResponse.DiscardUnknown(m)
}
var xxx_messageInfo_LastContactResponse proto.InternalMessageInfo
func (m *LastContactResponse) GetLastContact() time.Time {
if m != nil {
return m.LastContact
}
return time.Time{}
}
type ReputationRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
SatelliteId NodeID `protobuf:"bytes,2,opt,name=satellite_id,json=satelliteId,proto3,customtype=NodeID" json:"satellite_id"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *ReputationRequest) Reset() { *m = ReputationRequest{} }
func (m *ReputationRequest) String() string { return proto.CompactTextString(m) }
func (*ReputationRequest) ProtoMessage() {}
func (*ReputationRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{33}
}
func (m *ReputationRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ReputationRequest.Unmarshal(m, b)
}
func (m *ReputationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ReputationRequest.Marshal(b, m, deterministic)
}
func (m *ReputationRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_ReputationRequest.Merge(m, src)
}
func (m *ReputationRequest) XXX_Size() int {
return xxx_messageInfo_ReputationRequest.Size(m)
}
func (m *ReputationRequest) XXX_DiscardUnknown() {
xxx_messageInfo_ReputationRequest.DiscardUnknown(m)
}
var xxx_messageInfo_ReputationRequest proto.InternalMessageInfo
func (m *ReputationRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
type AuditWindow struct {
WindowStart time.Time `protobuf:"bytes,1,opt,name=window_start,json=windowStart,proto3,stdtime" json:"window_start"`
OnlineCount int32 `protobuf:"varint,2,opt,name=online_count,json=onlineCount,proto3" json:"online_count,omitempty"`
TotalCount int32 `protobuf:"varint,3,opt,name=total_count,json=totalCount,proto3" json:"total_count,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *AuditWindow) Reset() { *m = AuditWindow{} }
func (m *AuditWindow) String() string { return proto.CompactTextString(m) }
func (*AuditWindow) ProtoMessage() {}
func (*AuditWindow) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{34}
}
func (m *AuditWindow) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_AuditWindow.Unmarshal(m, b)
}
func (m *AuditWindow) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_AuditWindow.Marshal(b, m, deterministic)
}
func (m *AuditWindow) XXX_Merge(src proto.Message) {
xxx_messageInfo_AuditWindow.Merge(m, src)
}
func (m *AuditWindow) XXX_Size() int {
return xxx_messageInfo_AuditWindow.Size(m)
}
func (m *AuditWindow) XXX_DiscardUnknown() {
xxx_messageInfo_AuditWindow.DiscardUnknown(m)
}
var xxx_messageInfo_AuditWindow proto.InternalMessageInfo
func (m *AuditWindow) GetWindowStart() time.Time {
if m != nil {
return m.WindowStart
}
return time.Time{}
}
func (m *AuditWindow) GetOnlineCount() int32 {
if m != nil {
return m.OnlineCount
}
return 0
}
func (m *AuditWindow) GetTotalCount() int32 {
if m != nil {
return m.TotalCount
}
return 0
}
type ReputationResponse struct {
Online *ReputationResponse_Online `protobuf:"bytes,1,opt,name=online,proto3" json:"online,omitempty"`
Audit *ReputationResponse_Audit `protobuf:"bytes,2,opt,name=audit,proto3" json:"audit,omitempty"`
DisqualifiedAt *time.Time `protobuf:"bytes,3,opt,name=disqualified_at,json=disqualifiedAt,proto3,stdtime" json:"disqualified_at,omitempty"`
SuspendedAt *time.Time `protobuf:"bytes,4,opt,name=suspended_at,json=suspendedAt,proto3,stdtime" json:"suspended_at,omitempty"`
OfflineSuspendedAt *time.Time `protobuf:"bytes,5,opt,name=offline_suspended_at,json=offlineSuspendedAt,proto3,stdtime" json:"offline_suspended_at,omitempty"`
OfflineUnderReviewAt *time.Time `protobuf:"bytes,6,opt,name=offline_under_review_at,json=offlineUnderReviewAt,proto3,stdtime" json:"offline_under_review_at,omitempty"`
VettedAt *time.Time `protobuf:"bytes,9,opt,name=vetted_at,json=vettedAt,proto3,stdtime" json:"vetted_at,omitempty"`
UpdatedAt time.Time `protobuf:"bytes,7,opt,name=updated_at,json=updatedAt,proto3,stdtime" json:"updated_at"`
JoinedAt time.Time `protobuf:"bytes,8,opt,name=joined_at,json=joinedAt,proto3,stdtime" json:"joined_at"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *ReputationResponse) Reset() { *m = ReputationResponse{} }
func (m *ReputationResponse) String() string { return proto.CompactTextString(m) }
func (*ReputationResponse) ProtoMessage() {}
func (*ReputationResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{35}
}
func (m *ReputationResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ReputationResponse.Unmarshal(m, b)
}
func (m *ReputationResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ReputationResponse.Marshal(b, m, deterministic)
}
func (m *ReputationResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_ReputationResponse.Merge(m, src)
}
func (m *ReputationResponse) XXX_Size() int {
return xxx_messageInfo_ReputationResponse.Size(m)
}
func (m *ReputationResponse) XXX_DiscardUnknown() {
xxx_messageInfo_ReputationResponse.DiscardUnknown(m)
}
var xxx_messageInfo_ReputationResponse proto.InternalMessageInfo
func (m *ReputationResponse) GetOnline() *ReputationResponse_Online {
if m != nil {
return m.Online
}
return nil
}
func (m *ReputationResponse) GetAudit() *ReputationResponse_Audit {
if m != nil {
return m.Audit
}
return nil
}
func (m *ReputationResponse) GetDisqualifiedAt() *time.Time {
if m != nil {
return m.DisqualifiedAt
}
return nil
}
func (m *ReputationResponse) GetSuspendedAt() *time.Time {
if m != nil {
return m.SuspendedAt
}
return nil
}
func (m *ReputationResponse) GetOfflineSuspendedAt() *time.Time {
if m != nil {
return m.OfflineSuspendedAt
}
return nil
}
func (m *ReputationResponse) GetOfflineUnderReviewAt() *time.Time {
if m != nil {
return m.OfflineUnderReviewAt
}
return nil
}
func (m *ReputationResponse) GetVettedAt() *time.Time {
if m != nil {
return m.VettedAt
}
return nil
}
func (m *ReputationResponse) GetUpdatedAt() time.Time {
if m != nil {
return m.UpdatedAt
}
return time.Time{}
}
func (m *ReputationResponse) GetJoinedAt() time.Time {
if m != nil {
return m.JoinedAt
}
return time.Time{}
}
type ReputationResponse_Online struct {
Score float64 `protobuf:"fixed64,1,opt,name=score,proto3" json:"score,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *ReputationResponse_Online) Reset() { *m = ReputationResponse_Online{} }
func (m *ReputationResponse_Online) String() string { return proto.CompactTextString(m) }
func (*ReputationResponse_Online) ProtoMessage() {}
func (*ReputationResponse_Online) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{35, 0}
}
func (m *ReputationResponse_Online) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ReputationResponse_Online.Unmarshal(m, b)
}
func (m *ReputationResponse_Online) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ReputationResponse_Online.Marshal(b, m, deterministic)
}
func (m *ReputationResponse_Online) XXX_Merge(src proto.Message) {
xxx_messageInfo_ReputationResponse_Online.Merge(m, src)
}
func (m *ReputationResponse_Online) XXX_Size() int {
return xxx_messageInfo_ReputationResponse_Online.Size(m)
}
func (m *ReputationResponse_Online) XXX_DiscardUnknown() {
xxx_messageInfo_ReputationResponse_Online.DiscardUnknown(m)
}
var xxx_messageInfo_ReputationResponse_Online proto.InternalMessageInfo
func (m *ReputationResponse_Online) GetScore() float64 {
if m != nil {
return m.Score
}
return 0
}
type ReputationResponse_Audit struct {
Score float64 `protobuf:"fixed64,1,opt,name=score,proto3" json:"score,omitempty"`
SuspensionScore float64 `protobuf:"fixed64,2,opt,name=suspension_score,json=suspensionScore,proto3" json:"suspension_score,omitempty"`
TotalCount int64 `protobuf:"varint,3,opt,name=total_count,json=totalCount,proto3" json:"total_count,omitempty"`
SuccessCount int64 `protobuf:"varint,4,opt,name=success_count,json=successCount,proto3" json:"success_count,omitempty"`
Alpha float64 `protobuf:"fixed64,5,opt,name=alpha,proto3" json:"alpha,omitempty"`
Beta float64 `protobuf:"fixed64,6,opt,name=beta,proto3" json:"beta,omitempty"`
UnknownAlpha float64 `protobuf:"fixed64,7,opt,name=unknown_alpha,json=unknownAlpha,proto3" json:"unknown_alpha,omitempty"`
UnknownBeta float64 `protobuf:"fixed64,8,opt,name=unknown_beta,json=unknownBeta,proto3" json:"unknown_beta,omitempty"`
History []*AuditWindow `protobuf:"bytes,9,rep,name=history,proto3" json:"history,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *ReputationResponse_Audit) Reset() { *m = ReputationResponse_Audit{} }
func (m *ReputationResponse_Audit) String() string { return proto.CompactTextString(m) }
func (*ReputationResponse_Audit) ProtoMessage() {}
func (*ReputationResponse_Audit) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{35, 1}
}
func (m *ReputationResponse_Audit) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ReputationResponse_Audit.Unmarshal(m, b)
}
func (m *ReputationResponse_Audit) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ReputationResponse_Audit.Marshal(b, m, deterministic)
}
func (m *ReputationResponse_Audit) XXX_Merge(src proto.Message) {
xxx_messageInfo_ReputationResponse_Audit.Merge(m, src)
}
func (m *ReputationResponse_Audit) XXX_Size() int {
return xxx_messageInfo_ReputationResponse_Audit.Size(m)
}
func (m *ReputationResponse_Audit) XXX_DiscardUnknown() {
xxx_messageInfo_ReputationResponse_Audit.DiscardUnknown(m)
}
var xxx_messageInfo_ReputationResponse_Audit proto.InternalMessageInfo
func (m *ReputationResponse_Audit) GetScore() float64 {
if m != nil {
return m.Score
}
return 0
}
func (m *ReputationResponse_Audit) GetSuspensionScore() float64 {
if m != nil {
return m.SuspensionScore
}
return 0
}
func (m *ReputationResponse_Audit) GetTotalCount() int64 {
if m != nil {
return m.TotalCount
}
return 0
}
func (m *ReputationResponse_Audit) GetSuccessCount() int64 {
if m != nil {
return m.SuccessCount
}
return 0
}
func (m *ReputationResponse_Audit) GetAlpha() float64 {
if m != nil {
return m.Alpha
}
return 0
}
func (m *ReputationResponse_Audit) GetBeta() float64 {
if m != nil {
return m.Beta
}
return 0
}
func (m *ReputationResponse_Audit) GetUnknownAlpha() float64 {
if m != nil {
return m.UnknownAlpha
}
return 0
}
func (m *ReputationResponse_Audit) GetUnknownBeta() float64 {
if m != nil {
return m.UnknownBeta
}
return 0
}
func (m *ReputationResponse_Audit) GetHistory() []*AuditWindow {
if m != nil {
return m.History
}
return nil
}
type TrustedSatellitesRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *TrustedSatellitesRequest) Reset() { *m = TrustedSatellitesRequest{} }
func (m *TrustedSatellitesRequest) String() string { return proto.CompactTextString(m) }
func (*TrustedSatellitesRequest) ProtoMessage() {}
func (*TrustedSatellitesRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{36}
}
func (m *TrustedSatellitesRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_TrustedSatellitesRequest.Unmarshal(m, b)
}
func (m *TrustedSatellitesRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_TrustedSatellitesRequest.Marshal(b, m, deterministic)
}
func (m *TrustedSatellitesRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_TrustedSatellitesRequest.Merge(m, src)
}
func (m *TrustedSatellitesRequest) XXX_Size() int {
return xxx_messageInfo_TrustedSatellitesRequest.Size(m)
}
func (m *TrustedSatellitesRequest) XXX_DiscardUnknown() {
xxx_messageInfo_TrustedSatellitesRequest.DiscardUnknown(m)
}
var xxx_messageInfo_TrustedSatellitesRequest proto.InternalMessageInfo
func (m *TrustedSatellitesRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
type TrustedSatellitesResponse struct {
TrustedSatellites []*TrustedSatellitesResponse_NodeURL `protobuf:"bytes,1,rep,name=trusted_satellites,json=trustedSatellites,proto3" json:"trusted_satellites,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *TrustedSatellitesResponse) Reset() { *m = TrustedSatellitesResponse{} }
func (m *TrustedSatellitesResponse) String() string { return proto.CompactTextString(m) }
func (*TrustedSatellitesResponse) ProtoMessage() {}
func (*TrustedSatellitesResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{37}
}
func (m *TrustedSatellitesResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_TrustedSatellitesResponse.Unmarshal(m, b)
}
func (m *TrustedSatellitesResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_TrustedSatellitesResponse.Marshal(b, m, deterministic)
}
func (m *TrustedSatellitesResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_TrustedSatellitesResponse.Merge(m, src)
}
func (m *TrustedSatellitesResponse) XXX_Size() int {
return xxx_messageInfo_TrustedSatellitesResponse.Size(m)
}
func (m *TrustedSatellitesResponse) XXX_DiscardUnknown() {
xxx_messageInfo_TrustedSatellitesResponse.DiscardUnknown(m)
}
var xxx_messageInfo_TrustedSatellitesResponse proto.InternalMessageInfo
func (m *TrustedSatellitesResponse) GetTrustedSatellites() []*TrustedSatellitesResponse_NodeURL {
if m != nil {
return m.TrustedSatellites
}
return nil
}
type TrustedSatellitesResponse_NodeURL struct {
NodeId NodeID `protobuf:"bytes,1,opt,name=node_id,json=nodeId,proto3,customtype=NodeID" json:"node_id"`
Address string `protobuf:"bytes,2,opt,name=address,proto3" json:"address,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *TrustedSatellitesResponse_NodeURL) Reset() { *m = TrustedSatellitesResponse_NodeURL{} }
func (m *TrustedSatellitesResponse_NodeURL) String() string { return proto.CompactTextString(m) }
func (*TrustedSatellitesResponse_NodeURL) ProtoMessage() {}
func (*TrustedSatellitesResponse_NodeURL) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{37, 0}
}
func (m *TrustedSatellitesResponse_NodeURL) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_TrustedSatellitesResponse_NodeURL.Unmarshal(m, b)
}
func (m *TrustedSatellitesResponse_NodeURL) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_TrustedSatellitesResponse_NodeURL.Marshal(b, m, deterministic)
}
func (m *TrustedSatellitesResponse_NodeURL) XXX_Merge(src proto.Message) {
xxx_messageInfo_TrustedSatellitesResponse_NodeURL.Merge(m, src)
}
func (m *TrustedSatellitesResponse_NodeURL) XXX_Size() int {
return xxx_messageInfo_TrustedSatellitesResponse_NodeURL.Size(m)
}
func (m *TrustedSatellitesResponse_NodeURL) XXX_DiscardUnknown() {
xxx_messageInfo_TrustedSatellitesResponse_NodeURL.DiscardUnknown(m)
}
var xxx_messageInfo_TrustedSatellitesResponse_NodeURL proto.InternalMessageInfo
func (m *TrustedSatellitesResponse_NodeURL) GetAddress() string {
if m != nil {
return m.Address
}
return ""
}
type OperatorRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *OperatorRequest) Reset() { *m = OperatorRequest{} }
func (m *OperatorRequest) String() string { return proto.CompactTextString(m) }
func (*OperatorRequest) ProtoMessage() {}
func (*OperatorRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{38}
}
func (m *OperatorRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_OperatorRequest.Unmarshal(m, b)
}
func (m *OperatorRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_OperatorRequest.Marshal(b, m, deterministic)
}
func (m *OperatorRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_OperatorRequest.Merge(m, src)
}
func (m *OperatorRequest) XXX_Size() int {
return xxx_messageInfo_OperatorRequest.Size(m)
}
func (m *OperatorRequest) XXX_DiscardUnknown() {
xxx_messageInfo_OperatorRequest.DiscardUnknown(m)
}
var xxx_messageInfo_OperatorRequest proto.InternalMessageInfo
func (m *OperatorRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
type OperatorResponse struct {
Email string `protobuf:"bytes,1,opt,name=email,proto3" json:"email,omitempty"`
Wallet string `protobuf:"bytes,2,opt,name=wallet,proto3" json:"wallet,omitempty"`
WalletFeatures []string `protobuf:"bytes,3,rep,name=wallet_features,json=walletFeatures,proto3" json:"wallet_features,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *OperatorResponse) Reset() { *m = OperatorResponse{} }
func (m *OperatorResponse) String() string { return proto.CompactTextString(m) }
func (*OperatorResponse) ProtoMessage() {}
func (*OperatorResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{39}
}
func (m *OperatorResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_OperatorResponse.Unmarshal(m, b)
}
func (m *OperatorResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_OperatorResponse.Marshal(b, m, deterministic)
}
func (m *OperatorResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_OperatorResponse.Merge(m, src)
}
func (m *OperatorResponse) XXX_Size() int {
return xxx_messageInfo_OperatorResponse.Size(m)
}
func (m *OperatorResponse) XXX_DiscardUnknown() {
xxx_messageInfo_OperatorResponse.DiscardUnknown(m)
}
var xxx_messageInfo_OperatorResponse proto.InternalMessageInfo
func (m *OperatorResponse) GetEmail() string {
if m != nil {
return m.Email
}
return ""
}
func (m *OperatorResponse) GetWallet() string {
if m != nil {
return m.Wallet
}
return ""
}
func (m *OperatorResponse) GetWalletFeatures() []string {
if m != nil {
return m.WalletFeatures
}
return nil
}
type EstimatedPayoutSatelliteRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
SatelliteId NodeID `protobuf:"bytes,2,opt,name=satellite_id,json=satelliteId,proto3,customtype=NodeID" json:"satellite_id"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *EstimatedPayoutSatelliteRequest) Reset() { *m = EstimatedPayoutSatelliteRequest{} }
func (m *EstimatedPayoutSatelliteRequest) String() string { return proto.CompactTextString(m) }
func (*EstimatedPayoutSatelliteRequest) ProtoMessage() {}
func (*EstimatedPayoutSatelliteRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{40}
}
func (m *EstimatedPayoutSatelliteRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_EstimatedPayoutSatelliteRequest.Unmarshal(m, b)
}
func (m *EstimatedPayoutSatelliteRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_EstimatedPayoutSatelliteRequest.Marshal(b, m, deterministic)
}
func (m *EstimatedPayoutSatelliteRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_EstimatedPayoutSatelliteRequest.Merge(m, src)
}
func (m *EstimatedPayoutSatelliteRequest) XXX_Size() int {
return xxx_messageInfo_EstimatedPayoutSatelliteRequest.Size(m)
}
func (m *EstimatedPayoutSatelliteRequest) XXX_DiscardUnknown() {
xxx_messageInfo_EstimatedPayoutSatelliteRequest.DiscardUnknown(m)
}
var xxx_messageInfo_EstimatedPayoutSatelliteRequest proto.InternalMessageInfo
func (m *EstimatedPayoutSatelliteRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
type EstimatedPayoutSatelliteResponse struct {
EstimatedEarnings int64 `protobuf:"varint,1,opt,name=estimated_earnings,json=estimatedEarnings,proto3" json:"estimated_earnings,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *EstimatedPayoutSatelliteResponse) Reset() { *m = EstimatedPayoutSatelliteResponse{} }
func (m *EstimatedPayoutSatelliteResponse) String() string { return proto.CompactTextString(m) }
func (*EstimatedPayoutSatelliteResponse) ProtoMessage() {}
func (*EstimatedPayoutSatelliteResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{41}
}
func (m *EstimatedPayoutSatelliteResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_EstimatedPayoutSatelliteResponse.Unmarshal(m, b)
}
func (m *EstimatedPayoutSatelliteResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_EstimatedPayoutSatelliteResponse.Marshal(b, m, deterministic)
}
func (m *EstimatedPayoutSatelliteResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_EstimatedPayoutSatelliteResponse.Merge(m, src)
}
func (m *EstimatedPayoutSatelliteResponse) XXX_Size() int {
return xxx_messageInfo_EstimatedPayoutSatelliteResponse.Size(m)
}
func (m *EstimatedPayoutSatelliteResponse) XXX_DiscardUnknown() {
xxx_messageInfo_EstimatedPayoutSatelliteResponse.DiscardUnknown(m)
}
var xxx_messageInfo_EstimatedPayoutSatelliteResponse proto.InternalMessageInfo
func (m *EstimatedPayoutSatelliteResponse) GetEstimatedEarnings() int64 {
if m != nil {
return m.EstimatedEarnings
}
return 0
}
type EstimatedPayoutRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *EstimatedPayoutRequest) Reset() { *m = EstimatedPayoutRequest{} }
func (m *EstimatedPayoutRequest) String() string { return proto.CompactTextString(m) }
func (*EstimatedPayoutRequest) ProtoMessage() {}
func (*EstimatedPayoutRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{42}
}
func (m *EstimatedPayoutRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_EstimatedPayoutRequest.Unmarshal(m, b)
}
func (m *EstimatedPayoutRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_EstimatedPayoutRequest.Marshal(b, m, deterministic)
}
func (m *EstimatedPayoutRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_EstimatedPayoutRequest.Merge(m, src)
}
func (m *EstimatedPayoutRequest) XXX_Size() int {
return xxx_messageInfo_EstimatedPayoutRequest.Size(m)
}
func (m *EstimatedPayoutRequest) XXX_DiscardUnknown() {
xxx_messageInfo_EstimatedPayoutRequest.DiscardUnknown(m)
}
var xxx_messageInfo_EstimatedPayoutRequest proto.InternalMessageInfo
func (m *EstimatedPayoutRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
type EstimatedPayoutResponse struct {
EstimatedEarnings int64 `protobuf:"varint,1,opt,name=estimated_earnings,json=estimatedEarnings,proto3" json:"estimated_earnings,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *EstimatedPayoutResponse) Reset() { *m = EstimatedPayoutResponse{} }
func (m *EstimatedPayoutResponse) String() string { return proto.CompactTextString(m) }
func (*EstimatedPayoutResponse) ProtoMessage() {}
func (*EstimatedPayoutResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{43}
}
func (m *EstimatedPayoutResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_EstimatedPayoutResponse.Unmarshal(m, b)
}
func (m *EstimatedPayoutResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_EstimatedPayoutResponse.Marshal(b, m, deterministic)
}
func (m *EstimatedPayoutResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_EstimatedPayoutResponse.Merge(m, src)
}
func (m *EstimatedPayoutResponse) XXX_Size() int {
return xxx_messageInfo_EstimatedPayoutResponse.Size(m)
}
func (m *EstimatedPayoutResponse) XXX_DiscardUnknown() {
xxx_messageInfo_EstimatedPayoutResponse.DiscardUnknown(m)
}
var xxx_messageInfo_EstimatedPayoutResponse proto.InternalMessageInfo
func (m *EstimatedPayoutResponse) GetEstimatedEarnings() int64 {
if m != nil {
return m.EstimatedEarnings
}
return 0
}
type SummaryRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SummaryRequest) Reset() { *m = SummaryRequest{} }
func (m *SummaryRequest) String() string { return proto.CompactTextString(m) }
func (*SummaryRequest) ProtoMessage() {}
func (*SummaryRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{44}
}
func (m *SummaryRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SummaryRequest.Unmarshal(m, b)
}
func (m *SummaryRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SummaryRequest.Marshal(b, m, deterministic)
}
func (m *SummaryRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_SummaryRequest.Merge(m, src)
}
func (m *SummaryRequest) XXX_Size() int {
return xxx_messageInfo_SummaryRequest.Size(m)
}
func (m *SummaryRequest) XXX_DiscardUnknown() {
xxx_messageInfo_SummaryRequest.DiscardUnknown(m)
}
var xxx_messageInfo_SummaryRequest proto.InternalMessageInfo
func (m *SummaryRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
type SummaryResponse struct {
PayoutInfo *PayoutInfo `protobuf:"bytes,1,opt,name=payout_info,json=payoutInfo,proto3" json:"payout_info,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SummaryResponse) Reset() { *m = SummaryResponse{} }
func (m *SummaryResponse) String() string { return proto.CompactTextString(m) }
func (*SummaryResponse) ProtoMessage() {}
func (*SummaryResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{45}
}
func (m *SummaryResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SummaryResponse.Unmarshal(m, b)
}
func (m *SummaryResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SummaryResponse.Marshal(b, m, deterministic)
}
func (m *SummaryResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_SummaryResponse.Merge(m, src)
}
func (m *SummaryResponse) XXX_Size() int {
return xxx_messageInfo_SummaryResponse.Size(m)
}
func (m *SummaryResponse) XXX_DiscardUnknown() {
xxx_messageInfo_SummaryResponse.DiscardUnknown(m)
}
var xxx_messageInfo_SummaryResponse proto.InternalMessageInfo
func (m *SummaryResponse) GetPayoutInfo() *PayoutInfo {
if m != nil {
return m.PayoutInfo
}
return nil
}
type SummaryPeriodRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
Period string `protobuf:"bytes,2,opt,name=period,proto3" json:"period,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SummaryPeriodRequest) Reset() { *m = SummaryPeriodRequest{} }
func (m *SummaryPeriodRequest) String() string { return proto.CompactTextString(m) }
func (*SummaryPeriodRequest) ProtoMessage() {}
func (*SummaryPeriodRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{46}
}
func (m *SummaryPeriodRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SummaryPeriodRequest.Unmarshal(m, b)
}
func (m *SummaryPeriodRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SummaryPeriodRequest.Marshal(b, m, deterministic)
}
func (m *SummaryPeriodRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_SummaryPeriodRequest.Merge(m, src)
}
func (m *SummaryPeriodRequest) XXX_Size() int {
return xxx_messageInfo_SummaryPeriodRequest.Size(m)
}
func (m *SummaryPeriodRequest) XXX_DiscardUnknown() {
xxx_messageInfo_SummaryPeriodRequest.DiscardUnknown(m)
}
var xxx_messageInfo_SummaryPeriodRequest proto.InternalMessageInfo
func (m *SummaryPeriodRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
func (m *SummaryPeriodRequest) GetPeriod() string {
if m != nil {
return m.Period
}
return ""
}
type SummaryPeriodResponse struct {
PayoutInfo *PayoutInfo `protobuf:"bytes,1,opt,name=payout_info,json=payoutInfo,proto3" json:"payout_info,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SummaryPeriodResponse) Reset() { *m = SummaryPeriodResponse{} }
func (m *SummaryPeriodResponse) String() string { return proto.CompactTextString(m) }
func (*SummaryPeriodResponse) ProtoMessage() {}
func (*SummaryPeriodResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{47}
}
func (m *SummaryPeriodResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SummaryPeriodResponse.Unmarshal(m, b)
}
func (m *SummaryPeriodResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SummaryPeriodResponse.Marshal(b, m, deterministic)
}
func (m *SummaryPeriodResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_SummaryPeriodResponse.Merge(m, src)
}
func (m *SummaryPeriodResponse) XXX_Size() int {
return xxx_messageInfo_SummaryPeriodResponse.Size(m)
}
func (m *SummaryPeriodResponse) XXX_DiscardUnknown() {
xxx_messageInfo_SummaryPeriodResponse.DiscardUnknown(m)
}
var xxx_messageInfo_SummaryPeriodResponse proto.InternalMessageInfo
func (m *SummaryPeriodResponse) GetPayoutInfo() *PayoutInfo {
if m != nil {
return m.PayoutInfo
}
return nil
}
type SummarySatelliteRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
SatelliteId NodeID `protobuf:"bytes,2,opt,name=satellite_id,json=satelliteId,proto3,customtype=NodeID" json:"satellite_id"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SummarySatelliteRequest) Reset() { *m = SummarySatelliteRequest{} }
func (m *SummarySatelliteRequest) String() string { return proto.CompactTextString(m) }
func (*SummarySatelliteRequest) ProtoMessage() {}
func (*SummarySatelliteRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{48}
}
func (m *SummarySatelliteRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SummarySatelliteRequest.Unmarshal(m, b)
}
func (m *SummarySatelliteRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SummarySatelliteRequest.Marshal(b, m, deterministic)
}
func (m *SummarySatelliteRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_SummarySatelliteRequest.Merge(m, src)
}
func (m *SummarySatelliteRequest) XXX_Size() int {
return xxx_messageInfo_SummarySatelliteRequest.Size(m)
}
func (m *SummarySatelliteRequest) XXX_DiscardUnknown() {
xxx_messageInfo_SummarySatelliteRequest.DiscardUnknown(m)
}
var xxx_messageInfo_SummarySatelliteRequest proto.InternalMessageInfo
func (m *SummarySatelliteRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
type SummarySatelliteResponse struct {
PayoutInfo *PayoutInfo `protobuf:"bytes,1,opt,name=payout_info,json=payoutInfo,proto3" json:"payout_info,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SummarySatelliteResponse) Reset() { *m = SummarySatelliteResponse{} }
func (m *SummarySatelliteResponse) String() string { return proto.CompactTextString(m) }
func (*SummarySatelliteResponse) ProtoMessage() {}
func (*SummarySatelliteResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{49}
}
func (m *SummarySatelliteResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SummarySatelliteResponse.Unmarshal(m, b)
}
func (m *SummarySatelliteResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SummarySatelliteResponse.Marshal(b, m, deterministic)
}
func (m *SummarySatelliteResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_SummarySatelliteResponse.Merge(m, src)
}
func (m *SummarySatelliteResponse) XXX_Size() int {
return xxx_messageInfo_SummarySatelliteResponse.Size(m)
}
func (m *SummarySatelliteResponse) XXX_DiscardUnknown() {
xxx_messageInfo_SummarySatelliteResponse.DiscardUnknown(m)
}
var xxx_messageInfo_SummarySatelliteResponse proto.InternalMessageInfo
func (m *SummarySatelliteResponse) GetPayoutInfo() *PayoutInfo {
if m != nil {
return m.PayoutInfo
}
return nil
}
type SummarySatellitePeriodRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
SatelliteId NodeID `protobuf:"bytes,2,opt,name=satellite_id,json=satelliteId,proto3,customtype=NodeID" json:"satellite_id"`
Period string `protobuf:"bytes,3,opt,name=period,proto3" json:"period,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SummarySatellitePeriodRequest) Reset() { *m = SummarySatellitePeriodRequest{} }
func (m *SummarySatellitePeriodRequest) String() string { return proto.CompactTextString(m) }
func (*SummarySatellitePeriodRequest) ProtoMessage() {}
func (*SummarySatellitePeriodRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{50}
}
func (m *SummarySatellitePeriodRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SummarySatellitePeriodRequest.Unmarshal(m, b)
}
func (m *SummarySatellitePeriodRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SummarySatellitePeriodRequest.Marshal(b, m, deterministic)
}
func (m *SummarySatellitePeriodRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_SummarySatellitePeriodRequest.Merge(m, src)
}
func (m *SummarySatellitePeriodRequest) XXX_Size() int {
return xxx_messageInfo_SummarySatellitePeriodRequest.Size(m)
}
func (m *SummarySatellitePeriodRequest) XXX_DiscardUnknown() {
xxx_messageInfo_SummarySatellitePeriodRequest.DiscardUnknown(m)
}
var xxx_messageInfo_SummarySatellitePeriodRequest proto.InternalMessageInfo
func (m *SummarySatellitePeriodRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
func (m *SummarySatellitePeriodRequest) GetPeriod() string {
if m != nil {
return m.Period
}
return ""
}
type SummarySatellitePeriodResponse struct {
PayoutInfo *PayoutInfo `protobuf:"bytes,1,opt,name=payout_info,json=payoutInfo,proto3" json:"payout_info,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SummarySatellitePeriodResponse) Reset() { *m = SummarySatellitePeriodResponse{} }
func (m *SummarySatellitePeriodResponse) String() string { return proto.CompactTextString(m) }
func (*SummarySatellitePeriodResponse) ProtoMessage() {}
func (*SummarySatellitePeriodResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{51}
}
func (m *SummarySatellitePeriodResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SummarySatellitePeriodResponse.Unmarshal(m, b)
}
func (m *SummarySatellitePeriodResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SummarySatellitePeriodResponse.Marshal(b, m, deterministic)
}
func (m *SummarySatellitePeriodResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_SummarySatellitePeriodResponse.Merge(m, src)
}
func (m *SummarySatellitePeriodResponse) XXX_Size() int {
return xxx_messageInfo_SummarySatellitePeriodResponse.Size(m)
}
func (m *SummarySatellitePeriodResponse) XXX_DiscardUnknown() {
xxx_messageInfo_SummarySatellitePeriodResponse.DiscardUnknown(m)
}
var xxx_messageInfo_SummarySatellitePeriodResponse proto.InternalMessageInfo
func (m *SummarySatellitePeriodResponse) GetPayoutInfo() *PayoutInfo {
if m != nil {
return m.PayoutInfo
}
return nil
}
type EarnedRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *EarnedRequest) Reset() { *m = EarnedRequest{} }
func (m *EarnedRequest) String() string { return proto.CompactTextString(m) }
func (*EarnedRequest) ProtoMessage() {}
func (*EarnedRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{52}
}
func (m *EarnedRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_EarnedRequest.Unmarshal(m, b)
}
func (m *EarnedRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_EarnedRequest.Marshal(b, m, deterministic)
}
func (m *EarnedRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_EarnedRequest.Merge(m, src)
}
func (m *EarnedRequest) XXX_Size() int {
return xxx_messageInfo_EarnedRequest.Size(m)
}
func (m *EarnedRequest) XXX_DiscardUnknown() {
xxx_messageInfo_EarnedRequest.DiscardUnknown(m)
}
var xxx_messageInfo_EarnedRequest proto.InternalMessageInfo
func (m *EarnedRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
type EarnedResponse struct {
Total int64 `protobuf:"varint,1,opt,name=total,proto3" json:"total,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *EarnedResponse) Reset() { *m = EarnedResponse{} }
func (m *EarnedResponse) String() string { return proto.CompactTextString(m) }
func (*EarnedResponse) ProtoMessage() {}
func (*EarnedResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{53}
}
func (m *EarnedResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_EarnedResponse.Unmarshal(m, b)
}
func (m *EarnedResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_EarnedResponse.Marshal(b, m, deterministic)
}
func (m *EarnedResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_EarnedResponse.Merge(m, src)
}
func (m *EarnedResponse) XXX_Size() int {
return xxx_messageInfo_EarnedResponse.Size(m)
}
func (m *EarnedResponse) XXX_DiscardUnknown() {
xxx_messageInfo_EarnedResponse.DiscardUnknown(m)
}
var xxx_messageInfo_EarnedResponse proto.InternalMessageInfo
func (m *EarnedResponse) GetTotal() int64 {
if m != nil {
return m.Total
}
return 0
}
type EarnedSatelliteRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *EarnedSatelliteRequest) Reset() { *m = EarnedSatelliteRequest{} }
func (m *EarnedSatelliteRequest) String() string { return proto.CompactTextString(m) }
func (*EarnedSatelliteRequest) ProtoMessage() {}
func (*EarnedSatelliteRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{54}
}
func (m *EarnedSatelliteRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_EarnedSatelliteRequest.Unmarshal(m, b)
}
func (m *EarnedSatelliteRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_EarnedSatelliteRequest.Marshal(b, m, deterministic)
}
func (m *EarnedSatelliteRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_EarnedSatelliteRequest.Merge(m, src)
}
func (m *EarnedSatelliteRequest) XXX_Size() int {
return xxx_messageInfo_EarnedSatelliteRequest.Size(m)
}
func (m *EarnedSatelliteRequest) XXX_DiscardUnknown() {
xxx_messageInfo_EarnedSatelliteRequest.DiscardUnknown(m)
}
var xxx_messageInfo_EarnedSatelliteRequest proto.InternalMessageInfo
func (m *EarnedSatelliteRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
type EarnedSatelliteResponse struct {
EarnedSatellite []*EarnedSatellite `protobuf:"bytes,1,rep,name=earned_satellite,json=earnedSatellite,proto3" json:"earned_satellite,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *EarnedSatelliteResponse) Reset() { *m = EarnedSatelliteResponse{} }
func (m *EarnedSatelliteResponse) String() string { return proto.CompactTextString(m) }
func (*EarnedSatelliteResponse) ProtoMessage() {}
func (*EarnedSatelliteResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{55}
}
func (m *EarnedSatelliteResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_EarnedSatelliteResponse.Unmarshal(m, b)
}
func (m *EarnedSatelliteResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_EarnedSatelliteResponse.Marshal(b, m, deterministic)
}
func (m *EarnedSatelliteResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_EarnedSatelliteResponse.Merge(m, src)
}
func (m *EarnedSatelliteResponse) XXX_Size() int {
return xxx_messageInfo_EarnedSatelliteResponse.Size(m)
}
func (m *EarnedSatelliteResponse) XXX_DiscardUnknown() {
xxx_messageInfo_EarnedSatelliteResponse.DiscardUnknown(m)
}
var xxx_messageInfo_EarnedSatelliteResponse proto.InternalMessageInfo
func (m *EarnedSatelliteResponse) GetEarnedSatellite() []*EarnedSatellite {
if m != nil {
return m.EarnedSatellite
}
return nil
}
type EarnedSatellite struct {
Total int64 `protobuf:"varint,1,opt,name=total,proto3" json:"total,omitempty"`
SatelliteId NodeID `protobuf:"bytes,2,opt,name=satellite_id,json=satelliteId,proto3,customtype=NodeID" json:"satellite_id"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *EarnedSatellite) Reset() { *m = EarnedSatellite{} }
func (m *EarnedSatellite) String() string { return proto.CompactTextString(m) }
func (*EarnedSatellite) ProtoMessage() {}
func (*EarnedSatellite) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{56}
}
func (m *EarnedSatellite) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_EarnedSatellite.Unmarshal(m, b)
}
func (m *EarnedSatellite) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_EarnedSatellite.Marshal(b, m, deterministic)
}
func (m *EarnedSatellite) XXX_Merge(src proto.Message) {
xxx_messageInfo_EarnedSatellite.Merge(m, src)
}
func (m *EarnedSatellite) XXX_Size() int {
return xxx_messageInfo_EarnedSatellite.Size(m)
}
func (m *EarnedSatellite) XXX_DiscardUnknown() {
xxx_messageInfo_EarnedSatellite.DiscardUnknown(m)
}
var xxx_messageInfo_EarnedSatellite proto.InternalMessageInfo
func (m *EarnedSatellite) GetTotal() int64 {
if m != nil {
return m.Total
}
return 0
}
type UndistributedRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *UndistributedRequest) Reset() { *m = UndistributedRequest{} }
func (m *UndistributedRequest) String() string { return proto.CompactTextString(m) }
func (*UndistributedRequest) ProtoMessage() {}
func (*UndistributedRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{57}
}
func (m *UndistributedRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_UndistributedRequest.Unmarshal(m, b)
}
func (m *UndistributedRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_UndistributedRequest.Marshal(b, m, deterministic)
}
func (m *UndistributedRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_UndistributedRequest.Merge(m, src)
}
func (m *UndistributedRequest) XXX_Size() int {
return xxx_messageInfo_UndistributedRequest.Size(m)
}
func (m *UndistributedRequest) XXX_DiscardUnknown() {
xxx_messageInfo_UndistributedRequest.DiscardUnknown(m)
}
var xxx_messageInfo_UndistributedRequest proto.InternalMessageInfo
func (m *UndistributedRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
type UndistributedResponse struct {
Total int64 `protobuf:"varint,1,opt,name=total,proto3" json:"total,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *UndistributedResponse) Reset() { *m = UndistributedResponse{} }
func (m *UndistributedResponse) String() string { return proto.CompactTextString(m) }
func (*UndistributedResponse) ProtoMessage() {}
func (*UndistributedResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{58}
}
func (m *UndistributedResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_UndistributedResponse.Unmarshal(m, b)
}
func (m *UndistributedResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_UndistributedResponse.Marshal(b, m, deterministic)
}
func (m *UndistributedResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_UndistributedResponse.Merge(m, src)
}
func (m *UndistributedResponse) XXX_Size() int {
return xxx_messageInfo_UndistributedResponse.Size(m)
}
func (m *UndistributedResponse) XXX_DiscardUnknown() {
xxx_messageInfo_UndistributedResponse.DiscardUnknown(m)
}
var xxx_messageInfo_UndistributedResponse proto.InternalMessageInfo
func (m *UndistributedResponse) GetTotal() int64 {
if m != nil {
return m.Total
}
return 0
}
type PaystubSatelliteRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
SatelliteId NodeID `protobuf:"bytes,2,opt,name=satellite_id,json=satelliteId,proto3,customtype=NodeID" json:"satellite_id"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *PaystubSatelliteRequest) Reset() { *m = PaystubSatelliteRequest{} }
func (m *PaystubSatelliteRequest) String() string { return proto.CompactTextString(m) }
func (*PaystubSatelliteRequest) ProtoMessage() {}
func (*PaystubSatelliteRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{59}
}
func (m *PaystubSatelliteRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_PaystubSatelliteRequest.Unmarshal(m, b)
}
func (m *PaystubSatelliteRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_PaystubSatelliteRequest.Marshal(b, m, deterministic)
}
func (m *PaystubSatelliteRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_PaystubSatelliteRequest.Merge(m, src)
}
func (m *PaystubSatelliteRequest) XXX_Size() int {
return xxx_messageInfo_PaystubSatelliteRequest.Size(m)
}
func (m *PaystubSatelliteRequest) XXX_DiscardUnknown() {
xxx_messageInfo_PaystubSatelliteRequest.DiscardUnknown(m)
}
var xxx_messageInfo_PaystubSatelliteRequest proto.InternalMessageInfo
func (m *PaystubSatelliteRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
type PaystubSatelliteResponse struct {
Paystub *Paystub `protobuf:"bytes,1,opt,name=paystub,proto3" json:"paystub,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *PaystubSatelliteResponse) Reset() { *m = PaystubSatelliteResponse{} }
func (m *PaystubSatelliteResponse) String() string { return proto.CompactTextString(m) }
func (*PaystubSatelliteResponse) ProtoMessage() {}
func (*PaystubSatelliteResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{60}
}
func (m *PaystubSatelliteResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_PaystubSatelliteResponse.Unmarshal(m, b)
}
func (m *PaystubSatelliteResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_PaystubSatelliteResponse.Marshal(b, m, deterministic)
}
func (m *PaystubSatelliteResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_PaystubSatelliteResponse.Merge(m, src)
}
func (m *PaystubSatelliteResponse) XXX_Size() int {
return xxx_messageInfo_PaystubSatelliteResponse.Size(m)
}
func (m *PaystubSatelliteResponse) XXX_DiscardUnknown() {
xxx_messageInfo_PaystubSatelliteResponse.DiscardUnknown(m)
}
var xxx_messageInfo_PaystubSatelliteResponse proto.InternalMessageInfo
func (m *PaystubSatelliteResponse) GetPaystub() *Paystub {
if m != nil {
return m.Paystub
}
return nil
}
type PaystubRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *PaystubRequest) Reset() { *m = PaystubRequest{} }
func (m *PaystubRequest) String() string { return proto.CompactTextString(m) }
func (*PaystubRequest) ProtoMessage() {}
func (*PaystubRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{61}
}
func (m *PaystubRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_PaystubRequest.Unmarshal(m, b)
}
func (m *PaystubRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_PaystubRequest.Marshal(b, m, deterministic)
}
func (m *PaystubRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_PaystubRequest.Merge(m, src)
}
func (m *PaystubRequest) XXX_Size() int {
return xxx_messageInfo_PaystubRequest.Size(m)
}
func (m *PaystubRequest) XXX_DiscardUnknown() {
xxx_messageInfo_PaystubRequest.DiscardUnknown(m)
}
var xxx_messageInfo_PaystubRequest proto.InternalMessageInfo
func (m *PaystubRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
type PaystubResponse struct {
Paystub *Paystub `protobuf:"bytes,1,opt,name=paystub,proto3" json:"paystub,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *PaystubResponse) Reset() { *m = PaystubResponse{} }
func (m *PaystubResponse) String() string { return proto.CompactTextString(m) }
func (*PaystubResponse) ProtoMessage() {}
func (*PaystubResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{62}
}
func (m *PaystubResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_PaystubResponse.Unmarshal(m, b)
}
func (m *PaystubResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_PaystubResponse.Marshal(b, m, deterministic)
}
func (m *PaystubResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_PaystubResponse.Merge(m, src)
}
func (m *PaystubResponse) XXX_Size() int {
return xxx_messageInfo_PaystubResponse.Size(m)
}
func (m *PaystubResponse) XXX_DiscardUnknown() {
xxx_messageInfo_PaystubResponse.DiscardUnknown(m)
}
var xxx_messageInfo_PaystubResponse proto.InternalMessageInfo
func (m *PaystubResponse) GetPaystub() *Paystub {
if m != nil {
return m.Paystub
}
return nil
}
type PaystubPeriodRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
Period string `protobuf:"bytes,2,opt,name=period,proto3" json:"period,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *PaystubPeriodRequest) Reset() { *m = PaystubPeriodRequest{} }
func (m *PaystubPeriodRequest) String() string { return proto.CompactTextString(m) }
func (*PaystubPeriodRequest) ProtoMessage() {}
func (*PaystubPeriodRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{63}
}
func (m *PaystubPeriodRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_PaystubPeriodRequest.Unmarshal(m, b)
}
func (m *PaystubPeriodRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_PaystubPeriodRequest.Marshal(b, m, deterministic)
}
func (m *PaystubPeriodRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_PaystubPeriodRequest.Merge(m, src)
}
func (m *PaystubPeriodRequest) XXX_Size() int {
return xxx_messageInfo_PaystubPeriodRequest.Size(m)
}
func (m *PaystubPeriodRequest) XXX_DiscardUnknown() {
xxx_messageInfo_PaystubPeriodRequest.DiscardUnknown(m)
}
var xxx_messageInfo_PaystubPeriodRequest proto.InternalMessageInfo
func (m *PaystubPeriodRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
func (m *PaystubPeriodRequest) GetPeriod() string {
if m != nil {
return m.Period
}
return ""
}
type PaystubPeriodResponse struct {
Paystub *Paystub `protobuf:"bytes,1,opt,name=paystub,proto3" json:"paystub,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *PaystubPeriodResponse) Reset() { *m = PaystubPeriodResponse{} }
func (m *PaystubPeriodResponse) String() string { return proto.CompactTextString(m) }
func (*PaystubPeriodResponse) ProtoMessage() {}
func (*PaystubPeriodResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{64}
}
func (m *PaystubPeriodResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_PaystubPeriodResponse.Unmarshal(m, b)
}
func (m *PaystubPeriodResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_PaystubPeriodResponse.Marshal(b, m, deterministic)
}
func (m *PaystubPeriodResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_PaystubPeriodResponse.Merge(m, src)
}
func (m *PaystubPeriodResponse) XXX_Size() int {
return xxx_messageInfo_PaystubPeriodResponse.Size(m)
}
func (m *PaystubPeriodResponse) XXX_DiscardUnknown() {
xxx_messageInfo_PaystubPeriodResponse.DiscardUnknown(m)
}
var xxx_messageInfo_PaystubPeriodResponse proto.InternalMessageInfo
func (m *PaystubPeriodResponse) GetPaystub() *Paystub {
if m != nil {
return m.Paystub
}
return nil
}
type PaystubSatellitePeriodRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
SatelliteId NodeID `protobuf:"bytes,2,opt,name=satellite_id,json=satelliteId,proto3,customtype=NodeID" json:"satellite_id"`
Period string `protobuf:"bytes,3,opt,name=period,proto3" json:"period,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *PaystubSatellitePeriodRequest) Reset() { *m = PaystubSatellitePeriodRequest{} }
func (m *PaystubSatellitePeriodRequest) String() string { return proto.CompactTextString(m) }
func (*PaystubSatellitePeriodRequest) ProtoMessage() {}
func (*PaystubSatellitePeriodRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{65}
}
func (m *PaystubSatellitePeriodRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_PaystubSatellitePeriodRequest.Unmarshal(m, b)
}
func (m *PaystubSatellitePeriodRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_PaystubSatellitePeriodRequest.Marshal(b, m, deterministic)
}
func (m *PaystubSatellitePeriodRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_PaystubSatellitePeriodRequest.Merge(m, src)
}
func (m *PaystubSatellitePeriodRequest) XXX_Size() int {
return xxx_messageInfo_PaystubSatellitePeriodRequest.Size(m)
}
func (m *PaystubSatellitePeriodRequest) XXX_DiscardUnknown() {
xxx_messageInfo_PaystubSatellitePeriodRequest.DiscardUnknown(m)
}
var xxx_messageInfo_PaystubSatellitePeriodRequest proto.InternalMessageInfo
func (m *PaystubSatellitePeriodRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
func (m *PaystubSatellitePeriodRequest) GetPeriod() string {
if m != nil {
return m.Period
}
return ""
}
type PaystubSatellitePeriodResponse struct {
Paystub *Paystub `protobuf:"bytes,1,opt,name=paystub,proto3" json:"paystub,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *PaystubSatellitePeriodResponse) Reset() { *m = PaystubSatellitePeriodResponse{} }
func (m *PaystubSatellitePeriodResponse) String() string { return proto.CompactTextString(m) }
func (*PaystubSatellitePeriodResponse) ProtoMessage() {}
func (*PaystubSatellitePeriodResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{66}
}
func (m *PaystubSatellitePeriodResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_PaystubSatellitePeriodResponse.Unmarshal(m, b)
}
func (m *PaystubSatellitePeriodResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_PaystubSatellitePeriodResponse.Marshal(b, m, deterministic)
}
func (m *PaystubSatellitePeriodResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_PaystubSatellitePeriodResponse.Merge(m, src)
}
func (m *PaystubSatellitePeriodResponse) XXX_Size() int {
return xxx_messageInfo_PaystubSatellitePeriodResponse.Size(m)
}
func (m *PaystubSatellitePeriodResponse) XXX_DiscardUnknown() {
xxx_messageInfo_PaystubSatellitePeriodResponse.DiscardUnknown(m)
}
var xxx_messageInfo_PaystubSatellitePeriodResponse proto.InternalMessageInfo
func (m *PaystubSatellitePeriodResponse) GetPaystub() *Paystub {
if m != nil {
return m.Paystub
}
return nil
}
type PayoutInfo struct {
Held int64 `protobuf:"varint,1,opt,name=held,proto3" json:"held,omitempty"`
Paid int64 `protobuf:"varint,2,opt,name=paid,proto3" json:"paid,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *PayoutInfo) Reset() { *m = PayoutInfo{} }
func (m *PayoutInfo) String() string { return proto.CompactTextString(m) }
func (*PayoutInfo) ProtoMessage() {}
func (*PayoutInfo) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{67}
}
func (m *PayoutInfo) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_PayoutInfo.Unmarshal(m, b)
}
func (m *PayoutInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_PayoutInfo.Marshal(b, m, deterministic)
}
func (m *PayoutInfo) XXX_Merge(src proto.Message) {
xxx_messageInfo_PayoutInfo.Merge(m, src)
}
func (m *PayoutInfo) XXX_Size() int {
return xxx_messageInfo_PayoutInfo.Size(m)
}
func (m *PayoutInfo) XXX_DiscardUnknown() {
xxx_messageInfo_PayoutInfo.DiscardUnknown(m)
}
var xxx_messageInfo_PayoutInfo proto.InternalMessageInfo
func (m *PayoutInfo) GetHeld() int64 {
if m != nil {
return m.Held
}
return 0
}
func (m *PayoutInfo) GetPaid() int64 {
if m != nil {
return m.Paid
}
return 0
}
type Paystub struct {
UsageAtRest float64 `protobuf:"fixed64,1,opt,name=usage_at_rest,json=usageAtRest,proto3" json:"usage_at_rest,omitempty"`
UsageGet int64 `protobuf:"varint,2,opt,name=usage_get,json=usageGet,proto3" json:"usage_get,omitempty"`
UsageGetRepair int64 `protobuf:"varint,3,opt,name=usage_get_repair,json=usageGetRepair,proto3" json:"usage_get_repair,omitempty"`
UsageGetAudit int64 `protobuf:"varint,4,opt,name=usage_get_audit,json=usageGetAudit,proto3" json:"usage_get_audit,omitempty"`
CompAtRest int64 `protobuf:"varint,5,opt,name=comp_at_rest,json=compAtRest,proto3" json:"comp_at_rest,omitempty"`
CompGet int64 `protobuf:"varint,6,opt,name=comp_get,json=compGet,proto3" json:"comp_get,omitempty"`
CompGetRepair int64 `protobuf:"varint,7,opt,name=comp_get_repair,json=compGetRepair,proto3" json:"comp_get_repair,omitempty"`
CompGetAudit int64 `protobuf:"varint,8,opt,name=comp_get_audit,json=compGetAudit,proto3" json:"comp_get_audit,omitempty"`
Held int64 `protobuf:"varint,9,opt,name=held,proto3" json:"held,omitempty"`
Paid int64 `protobuf:"varint,10,opt,name=paid,proto3" json:"paid,omitempty"`
Distributed int64 `protobuf:"varint,11,opt,name=distributed,proto3" json:"distributed,omitempty"`
Disposed int64 `protobuf:"varint,12,opt,name=disposed,proto3" json:"disposed,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *Paystub) Reset() { *m = Paystub{} }
func (m *Paystub) String() string { return proto.CompactTextString(m) }
func (*Paystub) ProtoMessage() {}
func (*Paystub) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{68}
}
func (m *Paystub) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_Paystub.Unmarshal(m, b)
}
func (m *Paystub) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_Paystub.Marshal(b, m, deterministic)
}
func (m *Paystub) XXX_Merge(src proto.Message) {
xxx_messageInfo_Paystub.Merge(m, src)
}
func (m *Paystub) XXX_Size() int {
return xxx_messageInfo_Paystub.Size(m)
}
func (m *Paystub) XXX_DiscardUnknown() {
xxx_messageInfo_Paystub.DiscardUnknown(m)
}
var xxx_messageInfo_Paystub proto.InternalMessageInfo
func (m *Paystub) GetUsageAtRest() float64 {
if m != nil {
return m.UsageAtRest
}
return 0
}
func (m *Paystub) GetUsageGet() int64 {
if m != nil {
return m.UsageGet
}
return 0
}
func (m *Paystub) GetUsageGetRepair() int64 {
if m != nil {
return m.UsageGetRepair
}
return 0
}
func (m *Paystub) GetUsageGetAudit() int64 {
if m != nil {
return m.UsageGetAudit
}
return 0
}
func (m *Paystub) GetCompAtRest() int64 {
if m != nil {
return m.CompAtRest
}
return 0
}
func (m *Paystub) GetCompGet() int64 {
if m != nil {
return m.CompGet
}
return 0
}
func (m *Paystub) GetCompGetRepair() int64 {
if m != nil {
return m.CompGetRepair
}
return 0
}
func (m *Paystub) GetCompGetAudit() int64 {
if m != nil {
return m.CompGetAudit
}
return 0
}
func (m *Paystub) GetHeld() int64 {
if m != nil {
return m.Held
}
return 0
}
func (m *Paystub) GetPaid() int64 {
if m != nil {
return m.Paid
}
return 0
}
func (m *Paystub) GetDistributed() int64 {
if m != nil {
return m.Distributed
}
return 0
}
func (m *Paystub) GetDisposed() int64 {
if m != nil {
return m.Disposed
}
return 0
}
type HeldAmountHistoryRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *HeldAmountHistoryRequest) Reset() { *m = HeldAmountHistoryRequest{} }
func (m *HeldAmountHistoryRequest) String() string { return proto.CompactTextString(m) }
func (*HeldAmountHistoryRequest) ProtoMessage() {}
func (*HeldAmountHistoryRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{69}
}
func (m *HeldAmountHistoryRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_HeldAmountHistoryRequest.Unmarshal(m, b)
}
func (m *HeldAmountHistoryRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_HeldAmountHistoryRequest.Marshal(b, m, deterministic)
}
func (m *HeldAmountHistoryRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_HeldAmountHistoryRequest.Merge(m, src)
}
func (m *HeldAmountHistoryRequest) XXX_Size() int {
return xxx_messageInfo_HeldAmountHistoryRequest.Size(m)
}
func (m *HeldAmountHistoryRequest) XXX_DiscardUnknown() {
xxx_messageInfo_HeldAmountHistoryRequest.DiscardUnknown(m)
}
var xxx_messageInfo_HeldAmountHistoryRequest proto.InternalMessageInfo
func (m *HeldAmountHistoryRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
type HeldAmountHistoryResponse struct {
History []*HeldAmountHistoryResponse_HeldAmountHistory `protobuf:"bytes,1,rep,name=history,proto3" json:"history,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *HeldAmountHistoryResponse) Reset() { *m = HeldAmountHistoryResponse{} }
func (m *HeldAmountHistoryResponse) String() string { return proto.CompactTextString(m) }
func (*HeldAmountHistoryResponse) ProtoMessage() {}
func (*HeldAmountHistoryResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{70}
}
func (m *HeldAmountHistoryResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_HeldAmountHistoryResponse.Unmarshal(m, b)
}
func (m *HeldAmountHistoryResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_HeldAmountHistoryResponse.Marshal(b, m, deterministic)
}
func (m *HeldAmountHistoryResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_HeldAmountHistoryResponse.Merge(m, src)
}
func (m *HeldAmountHistoryResponse) XXX_Size() int {
return xxx_messageInfo_HeldAmountHistoryResponse.Size(m)
}
func (m *HeldAmountHistoryResponse) XXX_DiscardUnknown() {
xxx_messageInfo_HeldAmountHistoryResponse.DiscardUnknown(m)
}
var xxx_messageInfo_HeldAmountHistoryResponse proto.InternalMessageInfo
func (m *HeldAmountHistoryResponse) GetHistory() []*HeldAmountHistoryResponse_HeldAmountHistory {
if m != nil {
return m.History
}
return nil
}
type HeldAmountHistoryResponse_HeldAmount struct {
Period string `protobuf:"bytes,1,opt,name=period,proto3" json:"period,omitempty"`
Amount int64 `protobuf:"varint,2,opt,name=amount,proto3" json:"amount,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *HeldAmountHistoryResponse_HeldAmount) Reset() { *m = HeldAmountHistoryResponse_HeldAmount{} }
func (m *HeldAmountHistoryResponse_HeldAmount) String() string { return proto.CompactTextString(m) }
func (*HeldAmountHistoryResponse_HeldAmount) ProtoMessage() {}
func (*HeldAmountHistoryResponse_HeldAmount) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{70, 0}
}
func (m *HeldAmountHistoryResponse_HeldAmount) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_HeldAmountHistoryResponse_HeldAmount.Unmarshal(m, b)
}
func (m *HeldAmountHistoryResponse_HeldAmount) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_HeldAmountHistoryResponse_HeldAmount.Marshal(b, m, deterministic)
}
func (m *HeldAmountHistoryResponse_HeldAmount) XXX_Merge(src proto.Message) {
xxx_messageInfo_HeldAmountHistoryResponse_HeldAmount.Merge(m, src)
}
func (m *HeldAmountHistoryResponse_HeldAmount) XXX_Size() int {
return xxx_messageInfo_HeldAmountHistoryResponse_HeldAmount.Size(m)
}
func (m *HeldAmountHistoryResponse_HeldAmount) XXX_DiscardUnknown() {
xxx_messageInfo_HeldAmountHistoryResponse_HeldAmount.DiscardUnknown(m)
}
var xxx_messageInfo_HeldAmountHistoryResponse_HeldAmount proto.InternalMessageInfo
func (m *HeldAmountHistoryResponse_HeldAmount) GetPeriod() string {
if m != nil {
return m.Period
}
return ""
}
func (m *HeldAmountHistoryResponse_HeldAmount) GetAmount() int64 {
if m != nil {
return m.Amount
}
return 0
}
type HeldAmountHistoryResponse_HeldAmountHistory struct {
SatelliteId NodeID `protobuf:"bytes,1,opt,name=satellite_id,json=satelliteId,proto3,customtype=NodeID" json:"satellite_id"`
HeldAmounts []*HeldAmountHistoryResponse_HeldAmount `protobuf:"bytes,2,rep,name=held_amounts,json=heldAmounts,proto3" json:"held_amounts,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *HeldAmountHistoryResponse_HeldAmountHistory) Reset() {
*m = HeldAmountHistoryResponse_HeldAmountHistory{}
}
func (m *HeldAmountHistoryResponse_HeldAmountHistory) String() string {
return proto.CompactTextString(m)
}
func (*HeldAmountHistoryResponse_HeldAmountHistory) ProtoMessage() {}
func (*HeldAmountHistoryResponse_HeldAmountHistory) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{70, 1}
}
func (m *HeldAmountHistoryResponse_HeldAmountHistory) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_HeldAmountHistoryResponse_HeldAmountHistory.Unmarshal(m, b)
}
func (m *HeldAmountHistoryResponse_HeldAmountHistory) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_HeldAmountHistoryResponse_HeldAmountHistory.Marshal(b, m, deterministic)
}
func (m *HeldAmountHistoryResponse_HeldAmountHistory) XXX_Merge(src proto.Message) {
xxx_messageInfo_HeldAmountHistoryResponse_HeldAmountHistory.Merge(m, src)
}
func (m *HeldAmountHistoryResponse_HeldAmountHistory) XXX_Size() int {
return xxx_messageInfo_HeldAmountHistoryResponse_HeldAmountHistory.Size(m)
}
func (m *HeldAmountHistoryResponse_HeldAmountHistory) XXX_DiscardUnknown() {
xxx_messageInfo_HeldAmountHistoryResponse_HeldAmountHistory.DiscardUnknown(m)
}
var xxx_messageInfo_HeldAmountHistoryResponse_HeldAmountHistory proto.InternalMessageInfo
func (m *HeldAmountHistoryResponse_HeldAmountHistory) GetHeldAmounts() []*HeldAmountHistoryResponse_HeldAmount {
if m != nil {
return m.HeldAmounts
}
return nil
}
type EstimatedPayoutTotalRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *EstimatedPayoutTotalRequest) Reset() { *m = EstimatedPayoutTotalRequest{} }
func (m *EstimatedPayoutTotalRequest) String() string { return proto.CompactTextString(m) }
func (*EstimatedPayoutTotalRequest) ProtoMessage() {}
func (*EstimatedPayoutTotalRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{71}
}
func (m *EstimatedPayoutTotalRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_EstimatedPayoutTotalRequest.Unmarshal(m, b)
}
func (m *EstimatedPayoutTotalRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_EstimatedPayoutTotalRequest.Marshal(b, m, deterministic)
}
func (m *EstimatedPayoutTotalRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_EstimatedPayoutTotalRequest.Merge(m, src)
}
func (m *EstimatedPayoutTotalRequest) XXX_Size() int {
return xxx_messageInfo_EstimatedPayoutTotalRequest.Size(m)
}
func (m *EstimatedPayoutTotalRequest) XXX_DiscardUnknown() {
xxx_messageInfo_EstimatedPayoutTotalRequest.DiscardUnknown(m)
}
var xxx_messageInfo_EstimatedPayoutTotalRequest proto.InternalMessageInfo
func (m *EstimatedPayoutTotalRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
type EstimatedPayoutTotalResponse struct {
EstimatedEarnings int64 `protobuf:"varint,1,opt,name=estimated_earnings,json=estimatedEarnings,proto3" json:"estimated_earnings,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *EstimatedPayoutTotalResponse) Reset() { *m = EstimatedPayoutTotalResponse{} }
func (m *EstimatedPayoutTotalResponse) String() string { return proto.CompactTextString(m) }
func (*EstimatedPayoutTotalResponse) ProtoMessage() {}
func (*EstimatedPayoutTotalResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{72}
}
func (m *EstimatedPayoutTotalResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_EstimatedPayoutTotalResponse.Unmarshal(m, b)
}
func (m *EstimatedPayoutTotalResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_EstimatedPayoutTotalResponse.Marshal(b, m, deterministic)
}
func (m *EstimatedPayoutTotalResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_EstimatedPayoutTotalResponse.Merge(m, src)
}
func (m *EstimatedPayoutTotalResponse) XXX_Size() int {
return xxx_messageInfo_EstimatedPayoutTotalResponse.Size(m)
}
func (m *EstimatedPayoutTotalResponse) XXX_DiscardUnknown() {
xxx_messageInfo_EstimatedPayoutTotalResponse.DiscardUnknown(m)
}
var xxx_messageInfo_EstimatedPayoutTotalResponse proto.InternalMessageInfo
func (m *EstimatedPayoutTotalResponse) GetEstimatedEarnings() int64 {
if m != nil {
return m.EstimatedEarnings
}
return 0
}
type AllSatellitesSummaryRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *AllSatellitesSummaryRequest) Reset() { *m = AllSatellitesSummaryRequest{} }
func (m *AllSatellitesSummaryRequest) String() string { return proto.CompactTextString(m) }
func (*AllSatellitesSummaryRequest) ProtoMessage() {}
func (*AllSatellitesSummaryRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{73}
}
func (m *AllSatellitesSummaryRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_AllSatellitesSummaryRequest.Unmarshal(m, b)
}
func (m *AllSatellitesSummaryRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_AllSatellitesSummaryRequest.Marshal(b, m, deterministic)
}
func (m *AllSatellitesSummaryRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_AllSatellitesSummaryRequest.Merge(m, src)
}
func (m *AllSatellitesSummaryRequest) XXX_Size() int {
return xxx_messageInfo_AllSatellitesSummaryRequest.Size(m)
}
func (m *AllSatellitesSummaryRequest) XXX_DiscardUnknown() {
xxx_messageInfo_AllSatellitesSummaryRequest.DiscardUnknown(m)
}
var xxx_messageInfo_AllSatellitesSummaryRequest proto.InternalMessageInfo
func (m *AllSatellitesSummaryRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
type AllSatellitesSummaryResponse struct {
PayoutInfo *PayoutInfo `protobuf:"bytes,1,opt,name=payout_info,json=payoutInfo,proto3" json:"payout_info,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *AllSatellitesSummaryResponse) Reset() { *m = AllSatellitesSummaryResponse{} }
func (m *AllSatellitesSummaryResponse) String() string { return proto.CompactTextString(m) }
func (*AllSatellitesSummaryResponse) ProtoMessage() {}
func (*AllSatellitesSummaryResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{74}
}
func (m *AllSatellitesSummaryResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_AllSatellitesSummaryResponse.Unmarshal(m, b)
}
func (m *AllSatellitesSummaryResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_AllSatellitesSummaryResponse.Marshal(b, m, deterministic)
}
func (m *AllSatellitesSummaryResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_AllSatellitesSummaryResponse.Merge(m, src)
}
func (m *AllSatellitesSummaryResponse) XXX_Size() int {
return xxx_messageInfo_AllSatellitesSummaryResponse.Size(m)
}
func (m *AllSatellitesSummaryResponse) XXX_DiscardUnknown() {
xxx_messageInfo_AllSatellitesSummaryResponse.DiscardUnknown(m)
}
var xxx_messageInfo_AllSatellitesSummaryResponse proto.InternalMessageInfo
func (m *AllSatellitesSummaryResponse) GetPayoutInfo() *PayoutInfo {
if m != nil {
return m.PayoutInfo
}
return nil
}
type AllSatellitesPeriodSummaryRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
Period string `protobuf:"bytes,2,opt,name=period,proto3" json:"period,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *AllSatellitesPeriodSummaryRequest) Reset() { *m = AllSatellitesPeriodSummaryRequest{} }
func (m *AllSatellitesPeriodSummaryRequest) String() string { return proto.CompactTextString(m) }
func (*AllSatellitesPeriodSummaryRequest) ProtoMessage() {}
func (*AllSatellitesPeriodSummaryRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{75}
}
func (m *AllSatellitesPeriodSummaryRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_AllSatellitesPeriodSummaryRequest.Unmarshal(m, b)
}
func (m *AllSatellitesPeriodSummaryRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_AllSatellitesPeriodSummaryRequest.Marshal(b, m, deterministic)
}
func (m *AllSatellitesPeriodSummaryRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_AllSatellitesPeriodSummaryRequest.Merge(m, src)
}
func (m *AllSatellitesPeriodSummaryRequest) XXX_Size() int {
return xxx_messageInfo_AllSatellitesPeriodSummaryRequest.Size(m)
}
func (m *AllSatellitesPeriodSummaryRequest) XXX_DiscardUnknown() {
xxx_messageInfo_AllSatellitesPeriodSummaryRequest.DiscardUnknown(m)
}
var xxx_messageInfo_AllSatellitesPeriodSummaryRequest proto.InternalMessageInfo
func (m *AllSatellitesPeriodSummaryRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
func (m *AllSatellitesPeriodSummaryRequest) GetPeriod() string {
if m != nil {
return m.Period
}
return ""
}
type AllSatellitesPeriodSummaryResponse struct {
PayoutInfo *PayoutInfo `protobuf:"bytes,1,opt,name=payout_info,json=payoutInfo,proto3" json:"payout_info,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *AllSatellitesPeriodSummaryResponse) Reset() { *m = AllSatellitesPeriodSummaryResponse{} }
func (m *AllSatellitesPeriodSummaryResponse) String() string { return proto.CompactTextString(m) }
func (*AllSatellitesPeriodSummaryResponse) ProtoMessage() {}
func (*AllSatellitesPeriodSummaryResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{76}
}
func (m *AllSatellitesPeriodSummaryResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_AllSatellitesPeriodSummaryResponse.Unmarshal(m, b)
}
func (m *AllSatellitesPeriodSummaryResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_AllSatellitesPeriodSummaryResponse.Marshal(b, m, deterministic)
}
func (m *AllSatellitesPeriodSummaryResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_AllSatellitesPeriodSummaryResponse.Merge(m, src)
}
func (m *AllSatellitesPeriodSummaryResponse) XXX_Size() int {
return xxx_messageInfo_AllSatellitesPeriodSummaryResponse.Size(m)
}
func (m *AllSatellitesPeriodSummaryResponse) XXX_DiscardUnknown() {
xxx_messageInfo_AllSatellitesPeriodSummaryResponse.DiscardUnknown(m)
}
var xxx_messageInfo_AllSatellitesPeriodSummaryResponse proto.InternalMessageInfo
func (m *AllSatellitesPeriodSummaryResponse) GetPayoutInfo() *PayoutInfo {
if m != nil {
return m.PayoutInfo
}
return nil
}
type SatelliteSummaryRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
SatelliteId NodeID `protobuf:"bytes,2,opt,name=satellite_id,json=satelliteId,proto3,customtype=NodeID" json:"satellite_id"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SatelliteSummaryRequest) Reset() { *m = SatelliteSummaryRequest{} }
func (m *SatelliteSummaryRequest) String() string { return proto.CompactTextString(m) }
func (*SatelliteSummaryRequest) ProtoMessage() {}
func (*SatelliteSummaryRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{77}
}
func (m *SatelliteSummaryRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SatelliteSummaryRequest.Unmarshal(m, b)
}
func (m *SatelliteSummaryRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SatelliteSummaryRequest.Marshal(b, m, deterministic)
}
func (m *SatelliteSummaryRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_SatelliteSummaryRequest.Merge(m, src)
}
func (m *SatelliteSummaryRequest) XXX_Size() int {
return xxx_messageInfo_SatelliteSummaryRequest.Size(m)
}
func (m *SatelliteSummaryRequest) XXX_DiscardUnknown() {
xxx_messageInfo_SatelliteSummaryRequest.DiscardUnknown(m)
}
var xxx_messageInfo_SatelliteSummaryRequest proto.InternalMessageInfo
func (m *SatelliteSummaryRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
type SatelliteSummaryResponse struct {
PayoutInfo *PayoutInfo `protobuf:"bytes,1,opt,name=payout_info,json=payoutInfo,proto3" json:"payout_info,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SatelliteSummaryResponse) Reset() { *m = SatelliteSummaryResponse{} }
func (m *SatelliteSummaryResponse) String() string { return proto.CompactTextString(m) }
func (*SatelliteSummaryResponse) ProtoMessage() {}
func (*SatelliteSummaryResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{78}
}
func (m *SatelliteSummaryResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SatelliteSummaryResponse.Unmarshal(m, b)
}
func (m *SatelliteSummaryResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SatelliteSummaryResponse.Marshal(b, m, deterministic)
}
func (m *SatelliteSummaryResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_SatelliteSummaryResponse.Merge(m, src)
}
func (m *SatelliteSummaryResponse) XXX_Size() int {
return xxx_messageInfo_SatelliteSummaryResponse.Size(m)
}
func (m *SatelliteSummaryResponse) XXX_DiscardUnknown() {
xxx_messageInfo_SatelliteSummaryResponse.DiscardUnknown(m)
}
var xxx_messageInfo_SatelliteSummaryResponse proto.InternalMessageInfo
func (m *SatelliteSummaryResponse) GetPayoutInfo() *PayoutInfo {
if m != nil {
return m.PayoutInfo
}
return nil
}
type SatellitePeriodSummaryRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
SatelliteId NodeID `protobuf:"bytes,2,opt,name=satellite_id,json=satelliteId,proto3,customtype=NodeID" json:"satellite_id"`
Period string `protobuf:"bytes,3,opt,name=period,proto3" json:"period,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SatellitePeriodSummaryRequest) Reset() { *m = SatellitePeriodSummaryRequest{} }
func (m *SatellitePeriodSummaryRequest) String() string { return proto.CompactTextString(m) }
func (*SatellitePeriodSummaryRequest) ProtoMessage() {}
func (*SatellitePeriodSummaryRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{79}
}
func (m *SatellitePeriodSummaryRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SatellitePeriodSummaryRequest.Unmarshal(m, b)
}
func (m *SatellitePeriodSummaryRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SatellitePeriodSummaryRequest.Marshal(b, m, deterministic)
}
func (m *SatellitePeriodSummaryRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_SatellitePeriodSummaryRequest.Merge(m, src)
}
func (m *SatellitePeriodSummaryRequest) XXX_Size() int {
return xxx_messageInfo_SatellitePeriodSummaryRequest.Size(m)
}
func (m *SatellitePeriodSummaryRequest) XXX_DiscardUnknown() {
xxx_messageInfo_SatellitePeriodSummaryRequest.DiscardUnknown(m)
}
var xxx_messageInfo_SatellitePeriodSummaryRequest proto.InternalMessageInfo
func (m *SatellitePeriodSummaryRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
func (m *SatellitePeriodSummaryRequest) GetPeriod() string {
if m != nil {
return m.Period
}
return ""
}
type SatellitePeriodSummaryResponse struct {
PayoutInfo *PayoutInfo `protobuf:"bytes,1,opt,name=payout_info,json=payoutInfo,proto3" json:"payout_info,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SatellitePeriodSummaryResponse) Reset() { *m = SatellitePeriodSummaryResponse{} }
func (m *SatellitePeriodSummaryResponse) String() string { return proto.CompactTextString(m) }
func (*SatellitePeriodSummaryResponse) ProtoMessage() {}
func (*SatellitePeriodSummaryResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{80}
}
func (m *SatellitePeriodSummaryResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SatellitePeriodSummaryResponse.Unmarshal(m, b)
}
func (m *SatellitePeriodSummaryResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SatellitePeriodSummaryResponse.Marshal(b, m, deterministic)
}
func (m *SatellitePeriodSummaryResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_SatellitePeriodSummaryResponse.Merge(m, src)
}
func (m *SatellitePeriodSummaryResponse) XXX_Size() int {
return xxx_messageInfo_SatellitePeriodSummaryResponse.Size(m)
}
func (m *SatellitePeriodSummaryResponse) XXX_DiscardUnknown() {
xxx_messageInfo_SatellitePeriodSummaryResponse.DiscardUnknown(m)
}
var xxx_messageInfo_SatellitePeriodSummaryResponse proto.InternalMessageInfo
func (m *SatellitePeriodSummaryResponse) GetPayoutInfo() *PayoutInfo {
if m != nil {
return m.PayoutInfo
}
return nil
}
type EarnedPerSatelliteRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *EarnedPerSatelliteRequest) Reset() { *m = EarnedPerSatelliteRequest{} }
func (m *EarnedPerSatelliteRequest) String() string { return proto.CompactTextString(m) }
func (*EarnedPerSatelliteRequest) ProtoMessage() {}
func (*EarnedPerSatelliteRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{81}
}
func (m *EarnedPerSatelliteRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_EarnedPerSatelliteRequest.Unmarshal(m, b)
}
func (m *EarnedPerSatelliteRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_EarnedPerSatelliteRequest.Marshal(b, m, deterministic)
}
func (m *EarnedPerSatelliteRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_EarnedPerSatelliteRequest.Merge(m, src)
}
func (m *EarnedPerSatelliteRequest) XXX_Size() int {
return xxx_messageInfo_EarnedPerSatelliteRequest.Size(m)
}
func (m *EarnedPerSatelliteRequest) XXX_DiscardUnknown() {
xxx_messageInfo_EarnedPerSatelliteRequest.DiscardUnknown(m)
}
var xxx_messageInfo_EarnedPerSatelliteRequest proto.InternalMessageInfo
func (m *EarnedPerSatelliteRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
type EarnedPerSatelliteResponse struct {
EarnedSatellite []*EarnedSatellite `protobuf:"bytes,1,rep,name=earned_satellite,json=earnedSatellite,proto3" json:"earned_satellite,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *EarnedPerSatelliteResponse) Reset() { *m = EarnedPerSatelliteResponse{} }
func (m *EarnedPerSatelliteResponse) String() string { return proto.CompactTextString(m) }
func (*EarnedPerSatelliteResponse) ProtoMessage() {}
func (*EarnedPerSatelliteResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{82}
}
func (m *EarnedPerSatelliteResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_EarnedPerSatelliteResponse.Unmarshal(m, b)
}
func (m *EarnedPerSatelliteResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_EarnedPerSatelliteResponse.Marshal(b, m, deterministic)
}
func (m *EarnedPerSatelliteResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_EarnedPerSatelliteResponse.Merge(m, src)
}
func (m *EarnedPerSatelliteResponse) XXX_Size() int {
return xxx_messageInfo_EarnedPerSatelliteResponse.Size(m)
}
func (m *EarnedPerSatelliteResponse) XXX_DiscardUnknown() {
xxx_messageInfo_EarnedPerSatelliteResponse.DiscardUnknown(m)
}
var xxx_messageInfo_EarnedPerSatelliteResponse proto.InternalMessageInfo
func (m *EarnedPerSatelliteResponse) GetEarnedSatellite() []*EarnedSatellite {
if m != nil {
return m.EarnedSatellite
}
return nil
}
type SatellitePaystubRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
SatelliteId NodeID `protobuf:"bytes,2,opt,name=satellite_id,json=satelliteId,proto3,customtype=NodeID" json:"satellite_id"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SatellitePaystubRequest) Reset() { *m = SatellitePaystubRequest{} }
func (m *SatellitePaystubRequest) String() string { return proto.CompactTextString(m) }
func (*SatellitePaystubRequest) ProtoMessage() {}
func (*SatellitePaystubRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{83}
}
func (m *SatellitePaystubRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SatellitePaystubRequest.Unmarshal(m, b)
}
func (m *SatellitePaystubRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SatellitePaystubRequest.Marshal(b, m, deterministic)
}
func (m *SatellitePaystubRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_SatellitePaystubRequest.Merge(m, src)
}
func (m *SatellitePaystubRequest) XXX_Size() int {
return xxx_messageInfo_SatellitePaystubRequest.Size(m)
}
func (m *SatellitePaystubRequest) XXX_DiscardUnknown() {
xxx_messageInfo_SatellitePaystubRequest.DiscardUnknown(m)
}
var xxx_messageInfo_SatellitePaystubRequest proto.InternalMessageInfo
func (m *SatellitePaystubRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
type SatellitePaystubResponse struct {
Paystub *Paystub `protobuf:"bytes,1,opt,name=paystub,proto3" json:"paystub,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SatellitePaystubResponse) Reset() { *m = SatellitePaystubResponse{} }
func (m *SatellitePaystubResponse) String() string { return proto.CompactTextString(m) }
func (*SatellitePaystubResponse) ProtoMessage() {}
func (*SatellitePaystubResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{84}
}
func (m *SatellitePaystubResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SatellitePaystubResponse.Unmarshal(m, b)
}
func (m *SatellitePaystubResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SatellitePaystubResponse.Marshal(b, m, deterministic)
}
func (m *SatellitePaystubResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_SatellitePaystubResponse.Merge(m, src)
}
func (m *SatellitePaystubResponse) XXX_Size() int {
return xxx_messageInfo_SatellitePaystubResponse.Size(m)
}
func (m *SatellitePaystubResponse) XXX_DiscardUnknown() {
xxx_messageInfo_SatellitePaystubResponse.DiscardUnknown(m)
}
var xxx_messageInfo_SatellitePaystubResponse proto.InternalMessageInfo
func (m *SatellitePaystubResponse) GetPaystub() *Paystub {
if m != nil {
return m.Paystub
}
return nil
}
type PeriodPaystubRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
Period string `protobuf:"bytes,2,opt,name=period,proto3" json:"period,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *PeriodPaystubRequest) Reset() { *m = PeriodPaystubRequest{} }
func (m *PeriodPaystubRequest) String() string { return proto.CompactTextString(m) }
func (*PeriodPaystubRequest) ProtoMessage() {}
func (*PeriodPaystubRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{85}
}
func (m *PeriodPaystubRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_PeriodPaystubRequest.Unmarshal(m, b)
}
func (m *PeriodPaystubRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_PeriodPaystubRequest.Marshal(b, m, deterministic)
}
func (m *PeriodPaystubRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_PeriodPaystubRequest.Merge(m, src)
}
func (m *PeriodPaystubRequest) XXX_Size() int {
return xxx_messageInfo_PeriodPaystubRequest.Size(m)
}
func (m *PeriodPaystubRequest) XXX_DiscardUnknown() {
xxx_messageInfo_PeriodPaystubRequest.DiscardUnknown(m)
}
var xxx_messageInfo_PeriodPaystubRequest proto.InternalMessageInfo
func (m *PeriodPaystubRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
func (m *PeriodPaystubRequest) GetPeriod() string {
if m != nil {
return m.Period
}
return ""
}
type PeriodPaystubResponse struct {
Paystub *Paystub `protobuf:"bytes,1,opt,name=paystub,proto3" json:"paystub,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *PeriodPaystubResponse) Reset() { *m = PeriodPaystubResponse{} }
func (m *PeriodPaystubResponse) String() string { return proto.CompactTextString(m) }
func (*PeriodPaystubResponse) ProtoMessage() {}
func (*PeriodPaystubResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{86}
}
func (m *PeriodPaystubResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_PeriodPaystubResponse.Unmarshal(m, b)
}
func (m *PeriodPaystubResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_PeriodPaystubResponse.Marshal(b, m, deterministic)
}
func (m *PeriodPaystubResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_PeriodPaystubResponse.Merge(m, src)
}
func (m *PeriodPaystubResponse) XXX_Size() int {
return xxx_messageInfo_PeriodPaystubResponse.Size(m)
}
func (m *PeriodPaystubResponse) XXX_DiscardUnknown() {
xxx_messageInfo_PeriodPaystubResponse.DiscardUnknown(m)
}
var xxx_messageInfo_PeriodPaystubResponse proto.InternalMessageInfo
func (m *PeriodPaystubResponse) GetPaystub() *Paystub {
if m != nil {
return m.Paystub
}
return nil
}
type SatellitePeriodPaystubRequest struct {
Header *RequestHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
SatelliteId NodeID `protobuf:"bytes,2,opt,name=satellite_id,json=satelliteId,proto3,customtype=NodeID" json:"satellite_id"`
Period string `protobuf:"bytes,3,opt,name=period,proto3" json:"period,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SatellitePeriodPaystubRequest) Reset() { *m = SatellitePeriodPaystubRequest{} }
func (m *SatellitePeriodPaystubRequest) String() string { return proto.CompactTextString(m) }
func (*SatellitePeriodPaystubRequest) ProtoMessage() {}
func (*SatellitePeriodPaystubRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{87}
}
func (m *SatellitePeriodPaystubRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SatellitePeriodPaystubRequest.Unmarshal(m, b)
}
func (m *SatellitePeriodPaystubRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SatellitePeriodPaystubRequest.Marshal(b, m, deterministic)
}
func (m *SatellitePeriodPaystubRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_SatellitePeriodPaystubRequest.Merge(m, src)
}
func (m *SatellitePeriodPaystubRequest) XXX_Size() int {
return xxx_messageInfo_SatellitePeriodPaystubRequest.Size(m)
}
func (m *SatellitePeriodPaystubRequest) XXX_DiscardUnknown() {
xxx_messageInfo_SatellitePeriodPaystubRequest.DiscardUnknown(m)
}
var xxx_messageInfo_SatellitePeriodPaystubRequest proto.InternalMessageInfo
func (m *SatellitePeriodPaystubRequest) GetHeader() *RequestHeader {
if m != nil {
return m.Header
}
return nil
}
func (m *SatellitePeriodPaystubRequest) GetPeriod() string {
if m != nil {
return m.Period
}
return ""
}
type SatellitePeriodPaystubResponse struct {
Paystub *Paystub `protobuf:"bytes,1,opt,name=paystub,proto3" json:"paystub,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SatellitePeriodPaystubResponse) Reset() { *m = SatellitePeriodPaystubResponse{} }
func (m *SatellitePeriodPaystubResponse) String() string { return proto.CompactTextString(m) }
func (*SatellitePeriodPaystubResponse) ProtoMessage() {}
func (*SatellitePeriodPaystubResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_9a45fd79b06f3a1b, []int{88}
}
func (m *SatellitePeriodPaystubResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SatellitePeriodPaystubResponse.Unmarshal(m, b)
}
func (m *SatellitePeriodPaystubResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SatellitePeriodPaystubResponse.Marshal(b, m, deterministic)
}
func (m *SatellitePeriodPaystubResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_SatellitePeriodPaystubResponse.Merge(m, src)
}
func (m *SatellitePeriodPaystubResponse) XXX_Size() int {
return xxx_messageInfo_SatellitePeriodPaystubResponse.Size(m)
}
func (m *SatellitePeriodPaystubResponse) XXX_DiscardUnknown() {
xxx_messageInfo_SatellitePeriodPaystubResponse.DiscardUnknown(m)
}
var xxx_messageInfo_SatellitePeriodPaystubResponse proto.InternalMessageInfo
func (m *SatellitePeriodPaystubResponse) GetPaystub() *Paystub {
if m != nil {
return m.Paystub
}
return nil
}
func init() {
proto.RegisterType((*RequestHeader)(nil), "multinode.RequestHeader")
proto.RegisterType((*DiskSpaceRequest)(nil), "multinode.DiskSpaceRequest")
proto.RegisterType((*DiskSpaceResponse)(nil), "multinode.DiskSpaceResponse")
proto.RegisterType((*StorageUsage)(nil), "multinode.StorageUsage")
proto.RegisterType((*StorageUsageRequest)(nil), "multinode.StorageUsageRequest")
proto.RegisterType((*StorageUsageResponse)(nil), "multinode.StorageUsageResponse")
proto.RegisterType((*StorageUsageSatelliteRequest)(nil), "multinode.StorageUsageSatelliteRequest")
proto.RegisterType((*StorageUsageSatelliteResponse)(nil), "multinode.StorageUsageSatelliteResponse")
proto.RegisterType((*BandwidthMonthSummaryRequest)(nil), "multinode.BandwidthMonthSummaryRequest")
proto.RegisterType((*BandwidthMonthSummaryResponse)(nil), "multinode.BandwidthMonthSummaryResponse")
proto.RegisterType((*BandwidthSummarySatelliteRequest)(nil), "multinode.BandwidthSummarySatelliteRequest")
proto.RegisterType((*BandwidthSummarySatelliteResponse)(nil), "multinode.BandwidthSummarySatelliteResponse")
proto.RegisterType((*BandwidthSummaryRequest)(nil), "multinode.BandwidthSummaryRequest")
proto.RegisterType((*BandwidthSummaryResponse)(nil), "multinode.BandwidthSummaryResponse")
proto.RegisterType((*EgressSummarySatelliteRequest)(nil), "multinode.EgressSummarySatelliteRequest")
proto.RegisterType((*EgressSummarySatelliteResponse)(nil), "multinode.EgressSummarySatelliteResponse")
proto.RegisterType((*EgressSummaryRequest)(nil), "multinode.EgressSummaryRequest")
proto.RegisterType((*EgressSummaryResponse)(nil), "multinode.EgressSummaryResponse")
proto.RegisterType((*IngressSummarySatelliteRequest)(nil), "multinode.IngressSummarySatelliteRequest")
proto.RegisterType((*IngressSummarySatelliteResponse)(nil), "multinode.IngressSummarySatelliteResponse")
proto.RegisterType((*IngressSummaryRequest)(nil), "multinode.IngressSummaryRequest")
proto.RegisterType((*IngressSummaryResponse)(nil), "multinode.IngressSummaryResponse")
proto.RegisterType((*DailySatelliteRequest)(nil), "multinode.DailySatelliteRequest")
proto.RegisterType((*DailySatelliteResponse)(nil), "multinode.DailySatelliteResponse")
proto.RegisterType((*DailyRequest)(nil), "multinode.DailyRequest")
proto.RegisterType((*DailyResponse)(nil), "multinode.DailyResponse")
proto.RegisterType((*UsageRollup)(nil), "multinode.UsageRollup")
proto.RegisterType((*Egress)(nil), "multinode.Egress")
proto.RegisterType((*Ingress)(nil), "multinode.Ingress")
proto.RegisterType((*VersionRequest)(nil), "multinode.VersionRequest")
proto.RegisterType((*VersionResponse)(nil), "multinode.VersionResponse")
proto.RegisterType((*LastContactRequest)(nil), "multinode.LastContactRequest")
proto.RegisterType((*LastContactResponse)(nil), "multinode.LastContactResponse")
proto.RegisterType((*ReputationRequest)(nil), "multinode.ReputationRequest")
proto.RegisterType((*AuditWindow)(nil), "multinode.AuditWindow")
proto.RegisterType((*ReputationResponse)(nil), "multinode.ReputationResponse")
proto.RegisterType((*ReputationResponse_Online)(nil), "multinode.ReputationResponse.Online")
proto.RegisterType((*ReputationResponse_Audit)(nil), "multinode.ReputationResponse.Audit")
proto.RegisterType((*TrustedSatellitesRequest)(nil), "multinode.TrustedSatellitesRequest")
proto.RegisterType((*TrustedSatellitesResponse)(nil), "multinode.TrustedSatellitesResponse")
proto.RegisterType((*TrustedSatellitesResponse_NodeURL)(nil), "multinode.TrustedSatellitesResponse.NodeURL")
proto.RegisterType((*OperatorRequest)(nil), "multinode.OperatorRequest")
proto.RegisterType((*OperatorResponse)(nil), "multinode.OperatorResponse")
proto.RegisterType((*EstimatedPayoutSatelliteRequest)(nil), "multinode.EstimatedPayoutSatelliteRequest")
proto.RegisterType((*EstimatedPayoutSatelliteResponse)(nil), "multinode.EstimatedPayoutSatelliteResponse")
proto.RegisterType((*EstimatedPayoutRequest)(nil), "multinode.EstimatedPayoutRequest")
proto.RegisterType((*EstimatedPayoutResponse)(nil), "multinode.EstimatedPayoutResponse")
proto.RegisterType((*SummaryRequest)(nil), "multinode.SummaryRequest")
proto.RegisterType((*SummaryResponse)(nil), "multinode.SummaryResponse")
proto.RegisterType((*SummaryPeriodRequest)(nil), "multinode.SummaryPeriodRequest")
proto.RegisterType((*SummaryPeriodResponse)(nil), "multinode.SummaryPeriodResponse")
proto.RegisterType((*SummarySatelliteRequest)(nil), "multinode.SummarySatelliteRequest")
proto.RegisterType((*SummarySatelliteResponse)(nil), "multinode.SummarySatelliteResponse")
proto.RegisterType((*SummarySatellitePeriodRequest)(nil), "multinode.SummarySatellitePeriodRequest")
proto.RegisterType((*SummarySatellitePeriodResponse)(nil), "multinode.SummarySatellitePeriodResponse")
proto.RegisterType((*EarnedRequest)(nil), "multinode.EarnedRequest")
proto.RegisterType((*EarnedResponse)(nil), "multinode.EarnedResponse")
proto.RegisterType((*EarnedSatelliteRequest)(nil), "multinode.EarnedSatelliteRequest")
proto.RegisterType((*EarnedSatelliteResponse)(nil), "multinode.EarnedSatelliteResponse")
proto.RegisterType((*EarnedSatellite)(nil), "multinode.EarnedSatellite")
proto.RegisterType((*UndistributedRequest)(nil), "multinode.UndistributedRequest")
proto.RegisterType((*UndistributedResponse)(nil), "multinode.UndistributedResponse")
proto.RegisterType((*PaystubSatelliteRequest)(nil), "multinode.PaystubSatelliteRequest")
proto.RegisterType((*PaystubSatelliteResponse)(nil), "multinode.PaystubSatelliteResponse")
proto.RegisterType((*PaystubRequest)(nil), "multinode.PaystubRequest")
proto.RegisterType((*PaystubResponse)(nil), "multinode.PaystubResponse")
proto.RegisterType((*PaystubPeriodRequest)(nil), "multinode.PaystubPeriodRequest")
proto.RegisterType((*PaystubPeriodResponse)(nil), "multinode.PaystubPeriodResponse")
proto.RegisterType((*PaystubSatellitePeriodRequest)(nil), "multinode.PaystubSatellitePeriodRequest")
proto.RegisterType((*PaystubSatellitePeriodResponse)(nil), "multinode.PaystubSatellitePeriodResponse")
proto.RegisterType((*PayoutInfo)(nil), "multinode.PayoutInfo")
proto.RegisterType((*Paystub)(nil), "multinode.Paystub")
proto.RegisterType((*HeldAmountHistoryRequest)(nil), "multinode.HeldAmountHistoryRequest")
proto.RegisterType((*HeldAmountHistoryResponse)(nil), "multinode.HeldAmountHistoryResponse")
proto.RegisterType((*HeldAmountHistoryResponse_HeldAmount)(nil), "multinode.HeldAmountHistoryResponse.HeldAmount")
proto.RegisterType((*HeldAmountHistoryResponse_HeldAmountHistory)(nil), "multinode.HeldAmountHistoryResponse.HeldAmountHistory")
proto.RegisterType((*EstimatedPayoutTotalRequest)(nil), "multinode.EstimatedPayoutTotalRequest")
proto.RegisterType((*EstimatedPayoutTotalResponse)(nil), "multinode.EstimatedPayoutTotalResponse")
proto.RegisterType((*AllSatellitesSummaryRequest)(nil), "multinode.AllSatellitesSummaryRequest")
proto.RegisterType((*AllSatellitesSummaryResponse)(nil), "multinode.AllSatellitesSummaryResponse")
proto.RegisterType((*AllSatellitesPeriodSummaryRequest)(nil), "multinode.AllSatellitesPeriodSummaryRequest")
proto.RegisterType((*AllSatellitesPeriodSummaryResponse)(nil), "multinode.AllSatellitesPeriodSummaryResponse")
proto.RegisterType((*SatelliteSummaryRequest)(nil), "multinode.SatelliteSummaryRequest")
proto.RegisterType((*SatelliteSummaryResponse)(nil), "multinode.SatelliteSummaryResponse")
proto.RegisterType((*SatellitePeriodSummaryRequest)(nil), "multinode.SatellitePeriodSummaryRequest")
proto.RegisterType((*SatellitePeriodSummaryResponse)(nil), "multinode.SatellitePeriodSummaryResponse")
proto.RegisterType((*EarnedPerSatelliteRequest)(nil), "multinode.EarnedPerSatelliteRequest")
proto.RegisterType((*EarnedPerSatelliteResponse)(nil), "multinode.EarnedPerSatelliteResponse")
proto.RegisterType((*SatellitePaystubRequest)(nil), "multinode.SatellitePaystubRequest")
proto.RegisterType((*SatellitePaystubResponse)(nil), "multinode.SatellitePaystubResponse")
proto.RegisterType((*PeriodPaystubRequest)(nil), "multinode.PeriodPaystubRequest")
proto.RegisterType((*PeriodPaystubResponse)(nil), "multinode.PeriodPaystubResponse")
proto.RegisterType((*SatellitePeriodPaystubRequest)(nil), "multinode.SatellitePeriodPaystubRequest")
proto.RegisterType((*SatellitePeriodPaystubResponse)(nil), "multinode.SatellitePeriodPaystubResponse")
}
func init() { proto.RegisterFile("multinode.proto", fileDescriptor_9a45fd79b06f3a1b) }
var fileDescriptor_9a45fd79b06f3a1b = []byte{
// 2886 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x5a, 0xcb, 0x6f, 0x1c, 0xc7,
0xd1, 0xff, 0x86, 0x8f, 0x5d, 0x6e, 0xed, 0xf2, 0xd5, 0xe2, 0x63, 0x39, 0xe2, 0x4b, 0x43, 0x7d,
0x12, 0x15, 0x4b, 0x94, 0x4d, 0x1b, 0x4e, 0xec, 0xd8, 0x88, 0x97, 0x92, 0x6c, 0xd2, 0x96, 0x2c,
0x66, 0x28, 0x39, 0x86, 0x15, 0x78, 0x3d, 0xe4, 0x34, 0xc9, 0xb1, 0x67, 0x67, 0xd6, 0x33, 0xbd,
0x64, 0x08, 0x04, 0x46, 0x0e, 0x89, 0x73, 0x0a, 0x90, 0xb3, 0x11, 0xe4, 0x9a, 0x5b, 0x0e, 0xb9,
0xe4, 0x98, 0x5b, 0x60, 0x20, 0xff, 0x41, 0x0e, 0x0e, 0x90, 0x5b, 0x2e, 0xb9, 0xe4, 0x96, 0x53,
0xd0, 0x8f, 0x79, 0xf4, 0xbc, 0x96, 0x9c, 0x95, 0x41, 0xdf, 0xa6, 0xab, 0xab, 0x7e, 0x5d, 0x55,
0xdd, 0x5d, 0xd3, 0x55, 0xdd, 0x30, 0xd9, 0xe9, 0xd9, 0xc4, 0x72, 0x5c, 0x13, 0x6f, 0x74, 0x3d,
0x97, 0xb8, 0xa8, 0x16, 0x12, 0x54, 0x38, 0x72, 0x8f, 0x5c, 0x4e, 0x56, 0x57, 0x8e, 0x5c, 0xf7,
0xc8, 0xc6, 0x77, 0x59, 0x6b, 0xbf, 0x77, 0x78, 0x97, 0x58, 0x1d, 0xec, 0x13, 0xa3, 0xd3, 0xe5,
0x0c, 0xda, 0x3a, 0x8c, 0xeb, 0xf8, 0xf3, 0x1e, 0xf6, 0xc9, 0x36, 0x36, 0x4c, 0xec, 0xa1, 0x79,
0xa8, 0x1a, 0x5d, 0xab, 0xfd, 0x19, 0x3e, 0x6b, 0x2a, 0xab, 0xca, 0x7a, 0x43, 0xaf, 0x18, 0x5d,
0xeb, 0x3d, 0x7c, 0xa6, 0xdd, 0x87, 0xa9, 0xfb, 0x96, 0xff, 0xd9, 0x5e, 0xd7, 0x38, 0xc0, 0x42,
0x04, 0xbd, 0x08, 0x95, 0x63, 0x26, 0xc6, 0x78, 0xeb, 0x9b, 0xcd, 0x8d, 0x48, 0x2f, 0x09, 0x56,
0x17, 0x7c, 0xda, 0x5f, 0x14, 0x98, 0x8e, 0xc1, 0xf8, 0x5d, 0xd7, 0xf1, 0x31, 0x5a, 0x84, 0x9a,
0x61, 0xdb, 0xee, 0x81, 0x41, 0xb0, 0xc9, 0xa0, 0x86, 0xf5, 0x88, 0x80, 0x56, 0xa0, 0xde, 0xf3,
0xb1, 0xd9, 0xee, 0x5a, 0xf8, 0x00, 0xfb, 0xcd, 0x21, 0xd6, 0x0f, 0x94, 0xb4, 0xcb, 0x28, 0x68,
0x09, 0x58, 0xab, 0x4d, 0x3c, 0xc3, 0x3f, 0x6e, 0x0e, 0x73, 0x79, 0x4a, 0x79, 0x42, 0x09, 0x08,
0xc1, 0xc8, 0xa1, 0x87, 0x71, 0x73, 0x84, 0x75, 0xb0, 0x6f, 0x36, 0xe2, 0x89, 0x61, 0xd9, 0xc6,
0xbe, 0x8d, 0x9b, 0xa3, 0x62, 0xc4, 0x80, 0x80, 0x54, 0x18, 0x73, 0x4f, 0xb0, 0x47, 0x21, 0x9a,
0x15, 0xd6, 0x19, 0xb6, 0xb5, 0x3f, 0x2a, 0xd0, 0xd8, 0x23, 0xae, 0x67, 0x1c, 0xe1, 0xa7, 0xbe,
0x71, 0x84, 0x91, 0x06, 0xe3, 0x06, 0x69, 0x7b, 0xd8, 0x27, 0x6d, 0xe2, 0x12, 0xc3, 0x66, 0x06,
0x28, 0x7a, 0xdd, 0x20, 0x3a, 0xf6, 0xc9, 0x13, 0x4a, 0x42, 0xef, 0xc1, 0x84, 0xe5, 0x10, 0xec,
0x9d, 0x18, 0x76, 0xdb, 0x27, 0x86, 0x47, 0x98, 0x15, 0xf5, 0x4d, 0x75, 0x83, 0x4f, 0xd0, 0x46,
0x30, 0x41, 0x1b, 0x4f, 0x82, 0x09, 0xda, 0x1a, 0xfb, 0xfa, 0x9b, 0x95, 0xff, 0xfb, 0xed, 0x3f,
0x56, 0x14, 0x7d, 0x3c, 0x90, 0xdd, 0xa3, 0xa2, 0xe8, 0x0e, 0x5c, 0x91, 0x06, 0x6c, 0xef, 0x9f,
0x11, 0xec, 0x33, 0xbb, 0x15, 0x7d, 0x2a, 0x36, 0xec, 0x16, 0xa5, 0x6b, 0x7f, 0x56, 0xe0, 0x4a,
0x5c, 0xe1, 0xd2, 0x93, 0x87, 0x7e, 0x40, 0x1d, 0xe9, 0x76, 0x2e, 0xa4, 0x3b, 0x93, 0x40, 0xaf,
0xc0, 0x10, 0x71, 0x99, 0x86, 0xe7, 0x95, 0x1b, 0x22, 0xae, 0xf6, 0x7b, 0x05, 0x66, 0x64, 0xcd,
0xc5, 0x7a, 0x79, 0x03, 0xc6, 0x7d, 0x4e, 0x6f, 0xf7, 0x68, 0x47, 0x53, 0x59, 0x1d, 0x5e, 0xaf,
0x6f, 0xce, 0xc7, 0x2c, 0x90, 0xe4, 0x1a, 0x7e, 0x7c, 0xc2, 0x9a, 0x50, 0xf5, 0x7b, 0x9d, 0x8e,
0xe1, 0x9d, 0x31, 0x4b, 0x14, 0x3d, 0x68, 0xa2, 0x0d, 0xb8, 0x62, 0x9c, 0xe0, 0x08, 0x57, 0xf2,
0xec, 0xb4, 0xe8, 0x62, 0x20, 0xdc, 0xb5, 0xff, 0x51, 0x60, 0x31, 0x3e, 0xd0, 0x9e, 0x41, 0xb0,
0x6d, 0x5b, 0x64, 0x00, 0x1f, 0xbf, 0x04, 0x0d, 0x3f, 0x40, 0x69, 0x5b, 0x26, 0xd3, 0xb0, 0xb1,
0x35, 0x41, 0xfd, 0xf2, 0xf7, 0x6f, 0x56, 0x2a, 0xef, 0xbb, 0x26, 0xde, 0xb9, 0xaf, 0xd7, 0x43,
0x9e, 0x1d, 0x33, 0x9c, 0x96, 0xe1, 0x92, 0xd3, 0x32, 0x72, 0xc1, 0x69, 0xf9, 0x83, 0x02, 0x4b,
0x39, 0x56, 0x7f, 0xc7, 0xe6, 0x67, 0x17, 0x16, 0xb7, 0x0c, 0xc7, 0x3c, 0xb5, 0x4c, 0x72, 0xfc,
0xc8, 0x75, 0xc8, 0xf1, 0x1e, 0x07, 0x2a, 0x1f, 0xbf, 0x5e, 0x86, 0xa5, 0x1c, 0x44, 0x61, 0x3a,
0x82, 0x11, 0x16, 0x36, 0x78, 0x14, 0x63, 0xdf, 0xda, 0xaf, 0x15, 0x58, 0x0d, 0xa5, 0x84, 0xc0,
0xa5, 0x2c, 0x15, 0xed, 0x4d, 0xb8, 0x56, 0xa0, 0x88, 0x30, 0x21, 0xe6, 0x7f, 0x6e, 0x45, 0xd0,
0xd4, 0xde, 0x83, 0xf9, 0xa4, 0x78, 0x79, 0x57, 0xbe, 0x02, 0xcd, 0x34, 0x58, 0x5f, 0x15, 0x7e,
0xa9, 0xc0, 0xd2, 0x83, 0x23, 0x0f, 0xfb, 0xfe, 0xa5, 0x3a, 0xf2, 0x75, 0x58, 0xce, 0xd3, 0xa2,
0xaf, 0x09, 0xdb, 0x30, 0x23, 0xc9, 0x96, 0x77, 0xe1, 0x4b, 0x30, 0x9b, 0x40, 0xea, 0x3b, 0xf8,
0xaf, 0x14, 0x58, 0xde, 0x71, 0x2e, 0xdf, 0x81, 0x3f, 0x84, 0x95, 0x5c, 0x35, 0xfa, 0x1a, 0xb1,
0x03, 0xb3, 0xb2, 0x70, 0x79, 0x17, 0x6e, 0xc2, 0x5c, 0x12, 0xaa, 0xef, 0xf0, 0x3f, 0x87, 0xd9,
0xfb, 0x86, 0x65, 0x5f, 0x92, 0xe7, 0xf6, 0x60, 0x2e, 0x39, 0xba, 0xd0, 0xf8, 0x35, 0x68, 0xf0,
0xb0, 0xe8, 0xb9, 0xb6, 0xdd, 0xeb, 0x8a, 0xa8, 0x3b, 0x17, 0x53, 0x82, 0x87, 0x5b, 0xd6, 0xab,
0xd7, 0x7b, 0x51, 0x43, 0x7b, 0x0b, 0x1a, 0x0c, 0xb4, 0xbc, 0x23, 0xdf, 0x85, 0x71, 0x81, 0x30,
0xb8, 0x36, 0x7f, 0x53, 0xa0, 0x1e, 0xeb, 0x44, 0xb7, 0xa0, 0x82, 0xd9, 0x1c, 0x09, 0x6d, 0xa6,
0x63, 0x20, 0x7c, 0x03, 0xe8, 0x82, 0x01, 0xdd, 0x86, 0xaa, 0xc5, 0xe7, 0x53, 0x1c, 0x53, 0x50,
0x8c, 0x57, 0xcc, 0xb4, 0x1e, 0xb0, 0xa0, 0x39, 0xa8, 0x98, 0xd8, 0xc6, 0x04, 0x8b, 0x53, 0xa3,
0x68, 0x65, 0x9c, 0xd7, 0x46, 0x4a, 0x9f, 0xd7, 0xb4, 0x87, 0x50, 0x79, 0x10, 0x0e, 0xe7, 0xe1,
0xae, 0x61, 0x79, 0x62, 0x45, 0x89, 0x16, 0x9a, 0x81, 0x51, 0xa3, 0x67, 0x5a, 0x44, 0x9c, 0x6d,
0x79, 0x83, 0x52, 0xf9, 0xdf, 0x93, 0xeb, 0xc6, 0x1b, 0xda, 0xf7, 0xa1, 0xba, 0xe3, 0xc8, 0x70,
0xa6, 0x04, 0x67, 0x46, 0x82, 0x43, 0x71, 0xc1, 0x2d, 0x98, 0xf8, 0x00, 0x7b, 0xbe, 0xe5, 0x3a,
0xe5, 0x27, 0xf9, 0x05, 0x98, 0x0c, 0x31, 0xa2, 0x6d, 0x72, 0xc2, 0x49, 0x0c, 0xa5, 0xa6, 0x07,
0x4d, 0xed, 0x6d, 0x40, 0x0f, 0x0d, 0x9f, 0xdc, 0x73, 0x1d, 0x62, 0x1c, 0x90, 0xf2, 0x83, 0x7e,
0x0c, 0x57, 0x24, 0x1c, 0x31, 0xf0, 0x3b, 0xd0, 0xb0, 0x0d, 0x9f, 0xb4, 0x0f, 0x38, 0x5d, 0xc0,
0x9d, 0x6f, 0x86, 0xea, 0x76, 0x04, 0xa8, 0xfd, 0x0c, 0xa6, 0x75, 0xdc, 0xed, 0x11, 0x83, 0x0c,
0xe2, 0x9b, 0x32, 0x5b, 0xf9, 0x2b, 0x05, 0xea, 0x2d, 0x3a, 0xd7, 0x3f, 0xb1, 0x1c, 0xd3, 0x3d,
0xa5, 0x26, 0x9d, 0xb2, 0x2f, 0xb1, 0xe8, 0x2e, 0x64, 0x12, 0x97, 0xe4, 0x29, 0xc2, 0x35, 0x68,
0xb8, 0x8e, 0x6d, 0x39, 0xb8, 0x7d, 0xe0, 0xf6, 0x1c, 0xbe, 0xae, 0x46, 0xf5, 0x3a, 0xa7, 0xdd,
0xa3, 0x24, 0x9a, 0x55, 0xf1, 0xec, 0x81, 0x73, 0x0c, 0x33, 0x0e, 0x60, 0x24, 0xc6, 0xa0, 0xfd,
0xb7, 0x0a, 0x28, 0xee, 0x97, 0xf0, 0x6c, 0x57, 0xe1, 0x30, 0x42, 0xbb, 0xeb, 0x92, 0x63, 0x92,
0xec, 0x1b, 0x8f, 0x19, 0xaf, 0x2e, 0x64, 0xd0, 0x6b, 0xf1, 0x95, 0x5e, 0xdf, 0x5c, 0x2b, 0x16,
0x66, 0xbe, 0x09, 0xb6, 0xc3, 0x23, 0x98, 0x34, 0x2d, 0xff, 0xf3, 0x9e, 0x61, 0x5b, 0x87, 0x16,
0x36, 0xdb, 0x06, 0x39, 0xe7, 0x89, 0x57, 0x61, 0xfe, 0x99, 0x88, 0x0b, 0xb7, 0x08, 0xf5, 0xb5,
0xdf, 0xf3, 0xbb, 0xd8, 0x31, 0x39, 0xd6, 0xc8, 0x05, 0xb0, 0xea, 0xa1, 0x64, 0x8b, 0xa0, 0x0f,
0x60, 0xc6, 0x3d, 0x3c, 0x64, 0xce, 0x96, 0x00, 0x47, 0x2f, 0x00, 0x88, 0x04, 0xc2, 0x5e, 0x0c,
0xf7, 0x19, 0xcc, 0x07, 0xb8, 0x3d, 0xc7, 0xc4, 0x5e, 0xdb, 0xc3, 0x27, 0x16, 0x3e, 0xa5, 0xd0,
0x95, 0x0b, 0x40, 0x07, 0xca, 0x3d, 0xa5, 0x18, 0x3a, 0x83, 0x68, 0x11, 0xd4, 0x82, 0xda, 0x09,
0x26, 0x84, 0x6b, 0x5a, 0xbb, 0x00, 0xdc, 0x18, 0x17, 0x6b, 0x11, 0x74, 0x0f, 0xa0, 0xd7, 0x35,
0x0d, 0x81, 0x51, 0xbd, 0xc0, 0x52, 0xad, 0x09, 0x39, 0xae, 0xc7, 0xa7, 0xae, 0xe5, 0x70, 0x8c,
0xb1, 0x0b, 0x60, 0x8c, 0x71, 0xb1, 0x16, 0x51, 0x97, 0xa1, 0xc2, 0x17, 0x19, 0x8d, 0x7b, 0xfe,
0x81, 0xeb, 0x61, 0x91, 0x81, 0xf3, 0x86, 0xfa, 0xa7, 0x21, 0x18, 0x6d, 0x05, 0x01, 0x35, 0xdd,
0x8f, 0x6e, 0xc1, 0x14, 0x9f, 0x37, 0x1a, 0xb4, 0xda, 0x9c, 0x81, 0xe7, 0x1d, 0x93, 0x11, 0x7d,
0x8f, 0xb1, 0x66, 0xec, 0x99, 0xe1, 0xf8, 0x9e, 0x41, 0x6b, 0x30, 0xee, 0xf7, 0x0e, 0x0e, 0xb0,
0xef, 0x0b, 0x16, 0x5e, 0x73, 0x68, 0x08, 0x22, 0x67, 0xa2, 0xd1, 0xde, 0xee, 0x1e, 0x1b, 0x6c,
0x85, 0x28, 0x3a, 0x6f, 0xd0, 0xc4, 0x61, 0x1f, 0x13, 0x83, 0xcd, 0xad, 0xa2, 0xb3, 0x6f, 0x0a,
0xd7, 0x73, 0x3e, 0x73, 0xdc, 0x53, 0xa7, 0xcd, 0x25, 0xaa, 0xac, 0xb3, 0x21, 0x88, 0x2d, 0x26,
0x78, 0x0d, 0x82, 0x76, 0x9b, 0x01, 0x8c, 0xf1, 0xf2, 0x83, 0xa0, 0x6d, 0x51, 0x9c, 0x17, 0xa1,
0x7a, 0x6c, 0xd1, 0x1c, 0xeb, 0xac, 0x59, 0x4b, 0xfd, 0x85, 0x63, 0x01, 0x48, 0x0f, 0xd8, 0xb4,
0x87, 0xd0, 0x7c, 0xe2, 0xf5, 0x7c, 0x82, 0xcd, 0xf0, 0x98, 0xe1, 0x97, 0x8f, 0xe0, 0x7f, 0x55,
0x60, 0x21, 0x03, 0x4e, 0x44, 0x94, 0x67, 0x80, 0x08, 0xef, 0x6c, 0x87, 0xc1, 0xd1, 0x17, 0xc7,
0x85, 0xdb, 0x31, 0xec, 0x5c, 0x84, 0x0d, 0x1a, 0x5b, 0x9f, 0xea, 0x0f, 0xf5, 0x69, 0x92, 0x64,
0x51, 0x1f, 0x42, 0x55, 0xf4, 0xa2, 0x9b, 0x50, 0xa5, 0x38, 0x6d, 0xf1, 0xbf, 0x4c, 0xc7, 0xe6,
0x0a, 0xed, 0xde, 0x31, 0xe9, 0x2f, 0xcd, 0x30, 0xcd, 0xf0, 0x0c, 0x51, 0xd3, 0x83, 0xa6, 0x76,
0x0f, 0x26, 0x1f, 0x77, 0xb1, 0x67, 0x10, 0xd7, 0x2b, 0xef, 0x0d, 0x0b, 0xa6, 0x22, 0x10, 0xe1,
0x83, 0x19, 0x18, 0xc5, 0x1d, 0xc3, 0xb2, 0xc5, 0x3f, 0x94, 0x37, 0xe8, 0x0f, 0xfe, 0xd4, 0xb0,
0x6d, 0x4c, 0x84, 0x1e, 0xa2, 0x85, 0x6e, 0xc2, 0x24, 0xff, 0x6a, 0x1f, 0x62, 0x83, 0xf4, 0x3c,
0x96, 0x03, 0x0f, 0xaf, 0xd7, 0xf4, 0x09, 0x4e, 0x7e, 0x5b, 0x50, 0xb5, 0x2f, 0x15, 0x58, 0x79,
0xe0, 0x13, 0xab, 0x43, 0xb7, 0xdb, 0xae, 0x71, 0xe6, 0xf6, 0xc8, 0xe5, 0x1c, 0x5a, 0x7f, 0x0c,
0xab, 0xf9, 0x7a, 0x08, 0x1f, 0xdc, 0x01, 0x84, 0x03, 0x9e, 0x36, 0x36, 0x3c, 0xc7, 0x72, 0x8e,
0x7c, 0x71, 0xb4, 0x99, 0x0e, 0x7b, 0x1e, 0x88, 0x0e, 0xed, 0x5d, 0x98, 0x4b, 0x40, 0x96, 0x9f,
0x92, 0x6d, 0x98, 0x4f, 0x61, 0x95, 0xd3, 0x6a, 0x0b, 0x26, 0x06, 0xce, 0x49, 0x76, 0x60, 0x32,
0x99, 0x8c, 0xbc, 0x0a, 0xf5, 0x2e, 0xd3, 0xab, 0x6d, 0x39, 0x87, 0xae, 0x40, 0x9a, 0x8d, 0x21,
0x71, 0xad, 0x77, 0x9c, 0x43, 0x57, 0x87, 0x6e, 0xf8, 0xad, 0x7d, 0x02, 0x33, 0x02, 0x6a, 0x17,
0x7b, 0x96, 0x6b, 0x96, 0x9f, 0xf4, 0x39, 0xa8, 0x74, 0x19, 0x44, 0xb0, 0x16, 0x79, 0x4b, 0x7b,
0x0c, 0xb3, 0x89, 0x11, 0x06, 0x54, 0xf9, 0x0b, 0x98, 0xbf, 0xd4, 0xcc, 0x54, 0x87, 0x66, 0x6e,
0x4a, 0x5a, 0xd6, 0xa6, 0xdf, 0x29, 0xb0, 0x94, 0x04, 0x1d, 0x74, 0x42, 0x4a, 0x54, 0x0a, 0xa3,
0x39, 0x1c, 0x96, 0xe6, 0xf0, 0x43, 0x58, 0xce, 0xd3, 0x6e, 0x40, 0xc3, 0x5b, 0x30, 0x4e, 0xb7,
0x06, 0x2e, 0x6f, 0xa7, 0x76, 0x03, 0x26, 0x02, 0x88, 0x28, 0x58, 0x46, 0x95, 0xf6, 0x61, 0x9d,
0x37, 0x58, 0x3c, 0x60, 0x7c, 0x83, 0x2f, 0x1b, 0xed, 0x13, 0x98, 0x4f, 0x61, 0x89, 0xc1, 0x1f,
0xc0, 0x14, 0x66, 0x5d, 0xd1, 0xcf, 0x4a, 0xfc, 0xab, 0xd4, 0x78, 0x56, 0x9a, 0x90, 0x9e, 0xc4,
0x32, 0x41, 0xfb, 0x08, 0x26, 0x13, 0x3c, 0xd9, 0x66, 0x95, 0x59, 0xc1, 0xdb, 0x30, 0xf3, 0xd4,
0x31, 0x2d, 0x9f, 0x78, 0xd6, 0x7e, 0x8f, 0x0c, 0xe2, 0xfb, 0x3b, 0x30, 0x9b, 0x40, 0x2a, 0x9c,
0x82, 0x2f, 0x60, 0x7e, 0xd7, 0x38, 0xf3, 0x49, 0x6f, 0xff, 0x72, 0xb6, 0xee, 0x36, 0x34, 0xd3,
0xe3, 0x0b, 0x8d, 0x6f, 0x43, 0xb5, 0xcb, 0xfb, 0x84, 0x06, 0x48, 0x5e, 0xbd, 0xb4, 0x47, 0x0f,
0x58, 0x68, 0x18, 0x0f, 0x68, 0xa5, 0x9d, 0xf7, 0x23, 0x98, 0x0c, 0x31, 0x4a, 0x29, 0xf1, 0x09,
0xcc, 0x08, 0xda, 0xb7, 0x15, 0xbc, 0x1f, 0xc0, 0x6c, 0x62, 0x84, 0x52, 0x8a, 0xd2, 0xf0, 0x96,
0x74, 0xfc, 0x77, 0x28, 0xbc, 0xbd, 0x0f, 0xcb, 0x79, 0xda, 0x95, 0x32, 0xf7, 0x15, 0x80, 0x28,
0xdc, 0xd1, 0x83, 0xfb, 0x31, 0xb6, 0xc3, 0x8a, 0x3f, 0xfd, 0xa6, 0x34, 0x56, 0x97, 0xe1, 0x05,
0x18, 0xf6, 0xad, 0xfd, 0x66, 0x18, 0xaa, 0x02, 0x0a, 0x69, 0x30, 0xce, 0x6b, 0x63, 0xe2, 0x22,
0x2f, 0xb8, 0x33, 0x64, 0xc4, 0x16, 0xbb, 0xc1, 0x43, 0x57, 0xa1, 0xc6, 0x79, 0x8e, 0x70, 0x50,
0x18, 0x1a, 0x63, 0x84, 0x77, 0x30, 0x41, 0xeb, 0x30, 0x15, 0x76, 0xb6, 0x45, 0x4d, 0x89, 0xa7,
0x23, 0x13, 0x01, 0x8f, 0xce, 0x6b, 0x4b, 0x37, 0x60, 0x32, 0xe2, 0xe4, 0xb9, 0x37, 0x4f, 0x4a,
0xc6, 0x03, 0x46, 0x9e, 0x1c, 0xad, 0x42, 0xe3, 0xc0, 0xed, 0x74, 0x43, 0x8d, 0xf8, 0xa5, 0x28,
0x50, 0x9a, 0x50, 0x68, 0x01, 0xc6, 0x18, 0x07, 0xd5, 0x87, 0xdf, 0x8a, 0x56, 0x69, 0x9b, 0xaa,
0x73, 0x03, 0x26, 0x83, 0xae, 0x40, 0x9b, 0x2a, 0x1f, 0x44, 0x70, 0x08, 0x65, 0xae, 0xc3, 0x44,
0xc8, 0xc7, 0x75, 0x19, 0xe3, 0x09, 0x92, 0x60, 0xe3, 0xaa, 0x04, 0x1e, 0xad, 0x65, 0x78, 0x14,
0x22, 0x8f, 0xa2, 0x55, 0xa8, 0xc7, 0x62, 0x53, 0xb3, 0xce, 0xba, 0xe2, 0x24, 0xa4, 0xc2, 0x98,
0x69, 0xf9, 0x5d, 0xd7, 0xc7, 0x66, 0xb3, 0xc1, 0x5d, 0x18, 0xb4, 0x69, 0x8a, 0xb3, 0x8d, 0x6d,
0xb3, 0xd5, 0xa1, 0x49, 0xd9, 0x36, 0xcf, 0x7b, 0xca, 0x6f, 0xf6, 0xaf, 0x87, 0x60, 0x21, 0x03,
0x4e, 0xac, 0xaf, 0xdd, 0x28, 0x01, 0xe3, 0xff, 0x8a, 0x57, 0x63, 0x80, 0xb9, 0x62, 0x19, 0x3d,
0x01, 0x8c, 0xfa, 0x06, 0x40, 0xd4, 0x1b, 0x5b, 0xf9, 0x4a, 0x7c, 0xe5, 0x53, 0xba, 0xd1, 0x09,
0x2b, 0x40, 0xc3, 0xba, 0x68, 0xa9, 0x5f, 0x29, 0x30, 0x9d, 0x02, 0x4f, 0x6d, 0x39, 0xa5, 0xff,
0x96, 0xd3, 0xa1, 0x41, 0xa7, 0xa7, 0xcd, 0x71, 0x69, 0xbe, 0x44, 0xad, 0xbb, 0x7b, 0x41, 0xeb,
0xf4, 0xfa, 0x71, 0xf8, 0xed, 0x6b, 0x8f, 0xe1, 0x6a, 0xe2, 0x30, 0xce, 0x6e, 0xb3, 0xcb, 0xcf,
0xcd, 0x23, 0x58, 0xcc, 0x06, 0x2c, 0x77, 0xc4, 0x7f, 0x0c, 0x57, 0x5b, 0xb6, 0x1d, 0xe5, 0x98,
0x03, 0x9f, 0xf7, 0x3f, 0x80, 0xc5, 0x6c, 0xc0, 0x01, 0x0f, 0x5f, 0x1d, 0xb8, 0x26, 0xe1, 0xf2,
0xa0, 0x37, 0xa8, 0xba, 0xb9, 0x3f, 0x93, 0x9f, 0x82, 0x56, 0x34, 0xdc, 0x73, 0x48, 0x0b, 0x02,
0xe8, 0x81, 0x4d, 0x28, 0x99, 0x16, 0xa4, 0xc6, 0x7f, 0x1e, 0x69, 0x81, 0xfc, 0x4b, 0xba, 0x04,
0xd3, 0x0a, 0xd3, 0x82, 0x1c, 0xed, 0x06, 0x34, 0xfc, 0x11, 0x2c, 0xf0, 0xd3, 0xef, 0x2e, 0xf6,
0x9e, 0xc3, 0x71, 0xfd, 0x00, 0xd4, 0x2c, 0xb8, 0xe7, 0x7b, 0x62, 0x8f, 0x2f, 0xc0, 0x41, 0xcf,
0x86, 0x25, 0x0f, 0xb7, 0xe9, 0xf1, 0x4b, 0x9f, 0x2b, 0xd9, 0x74, 0x0e, 0x6c, 0x46, 0xd1, 0xb9,
0x52, 0x1e, 0xa1, 0xf4, 0xb9, 0x32, 0xb1, 0x02, 0x2f, 0xc1, 0xf3, 0x45, 0xe7, 0xca, 0x3c, 0xed,
0xca, 0x98, 0xbb, 0xf9, 0x8b, 0x21, 0xa8, 0x8a, 0x77, 0x31, 0xe8, 0x6d, 0xa8, 0x85, 0xef, 0xe4,
0xd0, 0xd5, 0x98, 0x54, 0xf2, 0x11, 0x9e, 0xba, 0x98, 0xdd, 0x29, 0x34, 0xd8, 0x86, 0x51, 0xfe,
0xaa, 0x66, 0x39, 0xef, 0xf1, 0x8d, 0x80, 0x59, 0xc9, 0xed, 0x17, 0x48, 0x07, 0x30, 0x21, 0x3f,
0xf7, 0x41, 0x37, 0x73, 0x44, 0x92, 0x3b, 0x5a, 0x5d, 0xef, 0xcf, 0xc8, 0x07, 0xd9, 0xfc, 0x67,
0x05, 0x6a, 0xe1, 0xab, 0x10, 0x64, 0x40, 0x23, 0xfe, 0xc8, 0x46, 0x1a, 0xb0, 0xe8, 0x61, 0x8f,
0x34, 0x60, 0xf1, 0x7b, 0x9d, 0x13, 0x58, 0xc8, 0x7d, 0x11, 0x83, 0x5e, 0xc8, 0x82, 0xc9, 0x29,
0x4e, 0xa9, 0xb7, 0xcf, 0xc7, 0x1c, 0x16, 0xbd, 0xa7, 0x92, 0x4c, 0x48, 0x2b, 0x40, 0x08, 0x46,
0x59, 0x2b, 0xe4, 0x11, 0xe0, 0x1d, 0x98, 0xcb, 0x7e, 0x9d, 0x82, 0xd6, 0x53, 0x37, 0xe7, 0x79,
0xe6, 0xdc, 0x3a, 0x07, 0xa7, 0x18, 0x4e, 0x87, 0x71, 0x89, 0x03, 0xad, 0xe4, 0xc9, 0x06, 0xe0,
0xab, 0xf9, 0x0c, 0x02, 0xb3, 0x0b, 0xf3, 0x39, 0xef, 0x43, 0xd0, 0xad, 0xf4, 0x8d, 0x7e, 0x9e,
0x11, 0xdf, 0x3b, 0x0f, 0xab, 0x18, 0xf1, 0x29, 0x4c, 0xc8, 0x2c, 0x68, 0x35, 0x57, 0x3a, 0xc0,
0xbf, 0x56, 0xc0, 0x11, 0xc1, 0xca, 0xcf, 0x35, 0x24, 0xd8, 0xcc, 0x77, 0x24, 0x12, 0x6c, 0xce,
0x5b, 0x8f, 0xd7, 0x61, 0x94, 0xf5, 0xa0, 0xf9, 0x24, 0x6f, 0x00, 0xd2, 0x4c, 0x77, 0x88, 0x4d,
0xf6, 0xe5, 0x30, 0x8c, 0xd0, 0x38, 0x87, 0xde, 0x82, 0xaa, 0xb8, 0xce, 0x47, 0x0b, 0x31, 0x6e,
0xf9, 0x99, 0x80, 0xaa, 0x66, 0x75, 0x09, 0x35, 0x1e, 0x42, 0x3d, 0x76, 0x37, 0x8f, 0x96, 0x62,
0xac, 0xe9, 0xbb, 0x7f, 0x75, 0x39, 0xaf, 0x5b, 0xa0, 0xed, 0x00, 0x44, 0xb7, 0xc0, 0x68, 0x31,
0xe7, 0x72, 0x98, 0x63, 0x2d, 0x15, 0x5e, 0x1d, 0xa3, 0x8f, 0x61, 0x3a, 0x75, 0x5f, 0x84, 0xd6,
0x8a, 0x6f, 0x93, 0x38, 0xf0, 0xf5, 0xf3, 0x5c, 0x39, 0xa1, 0x7b, 0x30, 0x16, 0x5c, 0xe2, 0xa0,
0xb8, 0x83, 0x12, 0xd7, 0x43, 0xea, 0xd5, 0xcc, 0x3e, 0x31, 0x11, 0xff, 0xaa, 0xb1, 0x92, 0x80,
0xdb, 0x23, 0x3e, 0x9d, 0x8b, 0x60, 0xdd, 0xc5, 0xe7, 0x22, 0xb1, 0xe0, 0xd4, 0xac, 0xae, 0x68,
0x1b, 0x4a, 0x95, 0x78, 0x69, 0x1b, 0x66, 0xdd, 0x02, 0x48, 0xdb, 0x30, 0xbb, 0x88, 0xff, 0x0c,
0xa6, 0x52, 0xfb, 0x4f, 0x4b, 0x4b, 0xa5, 0x56, 0xf0, 0x5a, 0x21, 0x4f, 0x14, 0xa6, 0xb2, 0xcb,
0xce, 0x52, 0x98, 0x2a, 0xac, 0x9b, 0x4b, 0x61, 0xaa, 0x4f, 0x0d, 0xfb, 0x4d, 0xa8, 0xf0, 0x43,
0x1e, 0x6a, 0xa6, 0xce, 0x7d, 0x01, 0xdc, 0x42, 0x46, 0x8f, 0x10, 0xff, 0x30, 0x5d, 0xb1, 0xbd,
0x56, 0x70, 0x7e, 0x14, 0x80, 0x5a, 0x11, 0x8b, 0x40, 0xf6, 0xa1, 0x99, 0x77, 0x39, 0x86, 0xe2,
0x11, 0xac, 0xcf, 0x4d, 0x9e, 0xfa, 0xc2, 0xb9, 0x78, 0x63, 0xe6, 0xc8, 0x3c, 0xb2, 0x39, 0x99,
0x57, 0x6b, 0xb2, 0x39, 0x39, 0x37, 0x66, 0x3a, 0x8c, 0x4b, 0x45, 0x63, 0x69, 0x1d, 0x66, 0x15,
0xa6, 0xa5, 0x75, 0x98, 0x5d, 0x6f, 0x7e, 0x06, 0x53, 0xc9, 0x12, 0x9e, 0xb4, 0x0e, 0x73, 0xca,
0xce, 0xd2, 0x3a, 0xcc, 0x2d, 0x0d, 0xbf, 0x15, 0x15, 0xe6, 0x16, 0x32, 0xce, 0x67, 0x19, 0x5b,
0x2f, 0x79, 0xce, 0xd3, 0x61, 0x5c, 0xaa, 0xa3, 0x4a, 0x26, 0x67, 0xd5, 0x70, 0x25, 0x93, 0xb3,
0x4b, 0xb0, 0x1d, 0x98, 0xcb, 0xae, 0x5a, 0x4a, 0xbb, 0xa3, 0xb0, 0xec, 0x2a, 0xed, 0x8e, 0x3e,
0x25, 0xd0, 0x8f, 0xb3, 0x2a, 0x42, 0x6b, 0xc5, 0x85, 0x9c, 0x74, 0xc0, 0xcc, 0xad, 0xf6, 0x6c,
0xfe, 0xbb, 0x06, 0x15, 0xb1, 0xce, 0x8e, 0x60, 0x26, 0xab, 0xde, 0x81, 0x6e, 0xc4, 0x5f, 0x25,
0xe4, 0x57, 0x58, 0xd4, 0x9b, 0x7d, 0xf9, 0x84, 0x4d, 0x67, 0xa0, 0xe6, 0x57, 0x24, 0xd0, 0xed,
0x3c, 0x98, 0xac, 0x4c, 0x5c, 0xbd, 0x73, 0x4e, 0xee, 0x58, 0xe0, 0x4c, 0x94, 0x0b, 0xe4, 0xc0,
0x99, 0x5d, 0xcb, 0x90, 0x03, 0x67, 0x5e, 0xbd, 0x81, 0x06, 0xce, 0xcc, 0xc4, 0x5c, 0x0e, 0x9c,
0x45, 0x95, 0x05, 0x39, 0x70, 0x16, 0x67, 0xf9, 0x03, 0x06, 0x4e, 0x03, 0x50, 0x3a, 0x3b, 0x47,
0xd7, 0x53, 0x02, 0x19, 0xb5, 0x00, 0xf5, 0xff, 0xfb, 0x70, 0x5d, 0x66, 0x04, 0x3d, 0x82, 0x99,
0xac, 0xb2, 0xa2, 0xb4, 0x8c, 0x0b, 0x0a, 0x99, 0xd2, 0x32, 0x2e, 0xac, 0x4f, 0x7e, 0x4b, 0x01,
0x35, 0x59, 0x4d, 0xc8, 0x5e, 0x9f, 0x89, 0x28, 0xb8, 0x56, 0xc8, 0xf3, 0x5c, 0x03, 0x6a, 0x3c,
0xa3, 0x96, 0x03, 0x6a, 0x46, 0x25, 0x40, 0x0e, 0xa8, 0x99, 0xc9, 0x78, 0x7a, 0xd7, 0x04, 0xe0,
0x05, 0xbb, 0x26, 0x31, 0xca, 0xad, 0x73, 0x70, 0xf2, 0xe1, 0xb6, 0xae, 0x7f, 0xa4, 0xd1, 0x08,
0xf8, 0xe9, 0x86, 0xe5, 0xde, 0x65, 0x1f, 0x77, 0xbb, 0x9e, 0x75, 0x62, 0x10, 0x7c, 0x37, 0x84,
0xe8, 0xee, 0xef, 0x57, 0xd8, 0x2b, 0xb7, 0x97, 0xff, 0x17, 0x00, 0x00, 0xff, 0xff, 0xde, 0x43,
0x56, 0xb1, 0xd2, 0x37, 0x00, 0x00,
}