91b7e24d55
Renamed methods, error messages. Change-Id: I7d7b6b092c05bbc5bf1322855efc5ccb9b312671
2243 lines
90 KiB
Go
2243 lines
90 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 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{3}
|
|
}
|
|
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{4}
|
|
}
|
|
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 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{5}
|
|
}
|
|
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{6}
|
|
}
|
|
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{7}
|
|
}
|
|
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{8}
|
|
}
|
|
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{9}
|
|
}
|
|
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 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"`
|
|
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{10}
|
|
}
|
|
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
|
|
}
|
|
|
|
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{10, 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"`
|
|
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{10, 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
|
|
}
|
|
|
|
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{11}
|
|
}
|
|
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{12}
|
|
}
|
|
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{12, 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 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{13}
|
|
}
|
|
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{14}
|
|
}
|
|
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{15}
|
|
}
|
|
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{16}
|
|
}
|
|
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{17}
|
|
}
|
|
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{18}
|
|
}
|
|
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{19}
|
|
}
|
|
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{20}
|
|
}
|
|
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{21}
|
|
}
|
|
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{22}
|
|
}
|
|
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{23}
|
|
}
|
|
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{24}
|
|
}
|
|
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{25}
|
|
}
|
|
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{26}
|
|
}
|
|
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{27}
|
|
}
|
|
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{28}
|
|
}
|
|
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{29}
|
|
}
|
|
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{30}
|
|
}
|
|
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{31}
|
|
}
|
|
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{32}
|
|
}
|
|
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{33}
|
|
}
|
|
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{34}
|
|
}
|
|
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{35}
|
|
}
|
|
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{36}
|
|
}
|
|
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{37}
|
|
}
|
|
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{38}
|
|
}
|
|
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{39}
|
|
}
|
|
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{40}
|
|
}
|
|
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,5,opt,name=usage_at_rest,json=usageAtRest,proto3" json:"usage_at_rest,omitempty"`
|
|
UsageGet int64 `protobuf:"varint,6,opt,name=usage_get,json=usageGet,proto3" json:"usage_get,omitempty"`
|
|
UsageGetRepair int64 `protobuf:"varint,8,opt,name=usage_get_repair,json=usageGetRepair,proto3" json:"usage_get_repair,omitempty"`
|
|
UsageGetAudit int64 `protobuf:"varint,10,opt,name=usage_get_audit,json=usageGetAudit,proto3" json:"usage_get_audit,omitempty"`
|
|
CompAtRest int64 `protobuf:"varint,11,opt,name=comp_at_rest,json=compAtRest,proto3" json:"comp_at_rest,omitempty"`
|
|
CompGet int64 `protobuf:"varint,12,opt,name=comp_get,json=compGet,proto3" json:"comp_get,omitempty"`
|
|
CompGetRepair int64 `protobuf:"varint,14,opt,name=comp_get_repair,json=compGetRepair,proto3" json:"comp_get_repair,omitempty"`
|
|
CompGetAudit int64 `protobuf:"varint,16,opt,name=comp_get_audit,json=compGetAudit,proto3" json:"comp_get_audit,omitempty"`
|
|
Held int64 `protobuf:"varint,18,opt,name=held,proto3" json:"held,omitempty"`
|
|
Paid int64 `protobuf:"varint,21,opt,name=paid,proto3" json:"paid,omitempty"`
|
|
Distributed int64 `protobuf:"varint,22,opt,name=distributed,proto3" json:"distributed,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{41}
|
|
}
|
|
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
|
|
}
|
|
|
|
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{42}
|
|
}
|
|
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{43}
|
|
}
|
|
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{43, 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{43, 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
|
|
}
|
|
|
|
func init() {
|
|
proto.RegisterType((*RequestHeader)(nil), "multinode.RequestHeader")
|
|
proto.RegisterType((*DiskSpaceRequest)(nil), "multinode.DiskSpaceRequest")
|
|
proto.RegisterType((*DiskSpaceResponse)(nil), "multinode.DiskSpaceResponse")
|
|
proto.RegisterType((*BandwidthMonthSummaryRequest)(nil), "multinode.BandwidthMonthSummaryRequest")
|
|
proto.RegisterType((*BandwidthMonthSummaryResponse)(nil), "multinode.BandwidthMonthSummaryResponse")
|
|
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((*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((*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")
|
|
}
|
|
|
|
func init() { proto.RegisterFile("multinode.proto", fileDescriptor_9a45fd79b06f3a1b) }
|
|
|
|
var fileDescriptor_9a45fd79b06f3a1b = []byte{
|
|
// 1608 bytes of a gzipped FileDescriptorProto
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x58, 0xcd, 0x6f, 0xdb, 0xc6,
|
|
0x12, 0x7f, 0xf4, 0x87, 0x64, 0x8d, 0x64, 0xcb, 0xde, 0xe7, 0x0f, 0x9a, 0xf1, 0xd7, 0xa3, 0x8d,
|
|
0xc4, 0x79, 0x49, 0xe4, 0xf7, 0x9c, 0x22, 0x40, 0x81, 0x14, 0x8d, 0xdd, 0x38, 0xb1, 0x5b, 0x37,
|
|
0x71, 0xe8, 0xa4, 0x08, 0x12, 0x20, 0xca, 0xda, 0x5c, 0xcb, 0x6c, 0x24, 0x92, 0xe5, 0x2e, 0xdd,
|
|
0xfa, 0x92, 0x63, 0xcf, 0x3d, 0x17, 0xfd, 0x5f, 0x8a, 0x5e, 0x8a, 0xfc, 0x0d, 0x3d, 0xa4, 0xe7,
|
|
0x1e, 0x7b, 0xea, 0xb5, 0xd8, 0x0f, 0x52, 0x24, 0x45, 0x29, 0x89, 0x84, 0x36, 0xbd, 0x71, 0x67,
|
|
0x7e, 0xfb, 0x9b, 0xd9, 0xd9, 0xd9, 0xe1, 0xec, 0x42, 0xb5, 0x15, 0x36, 0x99, 0xe3, 0x7a, 0x36,
|
|
0xa9, 0xf9, 0x81, 0xc7, 0x3c, 0x54, 0x8a, 0x05, 0x06, 0x34, 0xbc, 0x86, 0x27, 0xc5, 0xc6, 0x72,
|
|
0xc3, 0xf3, 0x1a, 0x4d, 0xb2, 0x21, 0x46, 0x47, 0xe1, 0xc9, 0x06, 0x73, 0x5a, 0x84, 0x32, 0xdc,
|
|
0xf2, 0x25, 0xc0, 0x5c, 0x87, 0x71, 0x8b, 0x7c, 0x15, 0x12, 0xca, 0x76, 0x09, 0xb6, 0x49, 0x80,
|
|
0xe6, 0xa0, 0x88, 0x7d, 0xa7, 0xfe, 0x82, 0x9c, 0xeb, 0xda, 0x8a, 0xb6, 0x5e, 0xb1, 0x0a, 0xd8,
|
|
0x77, 0x3e, 0x23, 0xe7, 0xe6, 0x6d, 0x98, 0xbc, 0xed, 0xd0, 0x17, 0x87, 0x3e, 0x3e, 0x26, 0x6a,
|
|
0x0a, 0xfa, 0x1f, 0x14, 0x4e, 0xc5, 0x34, 0x81, 0x2d, 0x6f, 0xea, 0xb5, 0xb6, 0x5f, 0x29, 0x5a,
|
|
0x4b, 0xe1, 0xcc, 0x1f, 0x35, 0x98, 0x4a, 0xd0, 0x50, 0xdf, 0x73, 0x29, 0x41, 0x0b, 0x50, 0xc2,
|
|
0xcd, 0xa6, 0x77, 0x8c, 0x19, 0xb1, 0x05, 0xd5, 0xb0, 0xd5, 0x16, 0xa0, 0x65, 0x28, 0x87, 0x94,
|
|
0xd8, 0x75, 0xdf, 0x21, 0xc7, 0x84, 0xea, 0x43, 0x42, 0x0f, 0x5c, 0x74, 0x20, 0x24, 0x68, 0x11,
|
|
0xc4, 0xa8, 0xce, 0x02, 0x4c, 0x4f, 0xf5, 0x61, 0x39, 0x9f, 0x4b, 0x1e, 0x72, 0x01, 0x42, 0x30,
|
|
0x72, 0x12, 0x10, 0xa2, 0x8f, 0x08, 0x85, 0xf8, 0x16, 0x16, 0xcf, 0xb0, 0xd3, 0xc4, 0x47, 0x4d,
|
|
0xa2, 0x8f, 0x2a, 0x8b, 0x91, 0x00, 0x19, 0x30, 0xe6, 0x9d, 0x91, 0x80, 0x53, 0xe8, 0x05, 0xa1,
|
|
0x8c, 0xc7, 0xe6, 0x01, 0x2c, 0x6c, 0x63, 0xd7, 0xfe, 0xda, 0xb1, 0xd9, 0xe9, 0xe7, 0x9e, 0xcb,
|
|
0x4e, 0x0f, 0xc3, 0x56, 0x0b, 0x07, 0xe7, 0xfd, 0xc7, 0xe4, 0x3a, 0x2c, 0x76, 0x61, 0x54, 0xe1,
|
|
0x41, 0x30, 0x22, 0x5c, 0x91, 0x91, 0x11, 0xdf, 0xe6, 0x36, 0x4c, 0x7c, 0x41, 0x02, 0xea, 0x78,
|
|
0x6e, 0xff, 0x86, 0xaf, 0x40, 0x35, 0xe6, 0x50, 0xa6, 0x74, 0x28, 0x9e, 0x49, 0x91, 0x60, 0x29,
|
|
0x59, 0xd1, 0xd0, 0xbc, 0x03, 0x68, 0x1f, 0x53, 0xf6, 0x89, 0xe7, 0x32, 0x7c, 0xcc, 0xfa, 0x37,
|
|
0xfa, 0x0c, 0xfe, 0x9d, 0xe2, 0x51, 0x86, 0xef, 0x42, 0xa5, 0x89, 0x29, 0xab, 0x1f, 0x4b, 0xb9,
|
|
0xa2, 0x33, 0x6a, 0x32, 0x81, 0x6b, 0x51, 0x02, 0xd7, 0x1e, 0x46, 0x09, 0xbc, 0x3d, 0xf6, 0xea,
|
|
0xf5, 0xf2, 0xbf, 0xbe, 0xfb, 0x75, 0x59, 0xb3, 0xca, 0xcd, 0x36, 0xa1, 0xf9, 0x0d, 0x4c, 0x59,
|
|
0xc4, 0x0f, 0x19, 0x66, 0x83, 0xc4, 0x06, 0xfd, 0x1f, 0x2a, 0x14, 0x33, 0xd2, 0x6c, 0x3a, 0x8c,
|
|
0xd4, 0x1d, 0x5b, 0x64, 0x5d, 0x65, 0x7b, 0x82, 0xdb, 0xfc, 0xe5, 0xf5, 0x72, 0xe1, 0x9e, 0x67,
|
|
0x93, 0xbd, 0xdb, 0x56, 0x39, 0xc6, 0xec, 0xd9, 0xe6, 0x1f, 0x1a, 0xa0, 0xa4, 0x69, 0xb5, 0xb2,
|
|
0x9b, 0x50, 0xf0, 0xdc, 0xa6, 0xe3, 0x12, 0x65, 0x7b, 0x2d, 0x65, 0x3b, 0x0b, 0xaf, 0xdd, 0x17,
|
|
0x58, 0x4b, 0xcd, 0x41, 0x1f, 0xc2, 0x28, 0x0e, 0x6d, 0x87, 0x09, 0x07, 0xca, 0x9b, 0xab, 0xbd,
|
|
0x27, 0x6f, 0x71, 0xa8, 0x25, 0x67, 0x18, 0x4b, 0x50, 0x90, 0x64, 0x68, 0x1a, 0x46, 0xe9, 0xb1,
|
|
0x17, 0x48, 0x0f, 0x34, 0x4b, 0x0e, 0x8c, 0x5d, 0x18, 0x15, 0xf8, 0x7c, 0x35, 0xba, 0x0c, 0x93,
|
|
0x34, 0xa4, 0x3e, 0x71, 0xf9, 0xf6, 0xd7, 0x25, 0x60, 0x48, 0x00, 0xaa, 0x6d, 0xf9, 0x21, 0x17,
|
|
0x9b, 0xfb, 0xa0, 0x3f, 0x0c, 0x42, 0xca, 0x88, 0x7d, 0x18, 0xc5, 0x83, 0xf6, 0x9f, 0x21, 0x3f,
|
|
0x6b, 0x30, 0x9f, 0x43, 0xa7, 0xc2, 0xf9, 0x14, 0x10, 0x93, 0xca, 0x7a, 0x1c, 0x7c, 0xaa, 0x6b,
|
|
0x2b, 0xc3, 0xeb, 0xe5, 0xcd, 0xab, 0x09, 0xee, 0xae, 0x0c, 0x35, 0xbe, 0x77, 0x8f, 0xac, 0x7d,
|
|
0x6b, 0x8a, 0x65, 0x21, 0xc6, 0x3e, 0x14, 0x95, 0x16, 0x5d, 0x82, 0x22, 0xe7, 0xe1, 0x7b, 0xaf,
|
|
0xe5, 0xee, 0x7d, 0x81, 0xab, 0xf7, 0x6c, 0x7e, 0x64, 0xb0, 0x6d, 0x07, 0x84, 0xca, 0xd2, 0x54,
|
|
0xb2, 0xa2, 0xa1, 0xf9, 0xad, 0x06, 0xcb, 0x3b, 0x94, 0x39, 0x2d, 0x5e, 0xc6, 0x0e, 0xf0, 0xb9,
|
|
0x17, 0xb2, 0xd8, 0xd6, 0xdf, 0x9a, 0x99, 0x0f, 0x60, 0xa5, 0xbb, 0x1f, 0x2a, 0xae, 0xd7, 0x00,
|
|
0x91, 0x08, 0x53, 0x27, 0x38, 0x70, 0x1d, 0xb7, 0x41, 0x55, 0xc9, 0x99, 0x8a, 0x35, 0x3b, 0x4a,
|
|
0x61, 0x7e, 0x0a, 0xb3, 0x19, 0xca, 0xfe, 0x37, 0x7c, 0x17, 0xe6, 0x3a, 0xb8, 0xfa, 0xf3, 0x6a,
|
|
0x1b, 0x26, 0x06, 0x2e, 0xc7, 0x7b, 0x50, 0xcd, 0x16, 0xe0, 0x1b, 0x50, 0xf6, 0x85, 0x5f, 0x75,
|
|
0xc7, 0x3d, 0xf1, 0x14, 0xd3, 0x4c, 0x82, 0x49, 0x7a, 0xbd, 0xe7, 0x9e, 0x78, 0x16, 0xf8, 0xf1,
|
|
0xb7, 0xf9, 0x1c, 0xa6, 0x15, 0xd5, 0x01, 0x09, 0x1c, 0xcf, 0xee, 0x7f, 0xd3, 0x67, 0xa1, 0xe0,
|
|
0x0b, 0x0a, 0x95, 0x63, 0x6a, 0x64, 0xde, 0x87, 0x99, 0x8c, 0x85, 0x01, 0x5d, 0x7e, 0x09, 0x73,
|
|
0x8a, 0xf0, 0xfd, 0xa4, 0xaa, 0x05, 0x7a, 0xa7, 0xfd, 0x01, 0xd7, 0xf4, 0x83, 0x06, 0x8b, 0x59,
|
|
0xd2, 0x41, 0x37, 0xe4, 0xdd, 0x97, 0x96, 0xd8, 0xc3, 0xe1, 0xd4, 0x1e, 0x3e, 0x86, 0xa5, 0x6e,
|
|
0xde, 0x0d, 0xb8, 0xf0, 0x2d, 0x18, 0xe7, 0x47, 0x83, 0xf4, 0xbf, 0x4e, 0xf3, 0x22, 0x4c, 0x44,
|
|
0x14, 0xca, 0x99, 0x69, 0x18, 0x65, 0x1e, 0xc3, 0x4d, 0x75, 0x0a, 0xe5, 0x40, 0xd4, 0x03, 0x81,
|
|
0x1b, 0x3c, 0x6d, 0xcc, 0xe7, 0x30, 0xd7, 0xc1, 0xa5, 0x8c, 0xef, 0xc0, 0x24, 0x11, 0xaa, 0x76,
|
|
0xf1, 0x57, 0xb5, 0xdf, 0x48, 0xd0, 0x66, 0x67, 0x57, 0x49, 0x5a, 0x60, 0x3e, 0x81, 0x6a, 0x06,
|
|
0x93, 0xbf, 0xac, 0x7e, 0x32, 0x78, 0x17, 0xa6, 0x1f, 0xb9, 0xb6, 0x43, 0x59, 0xe0, 0x1c, 0x85,
|
|
0x6c, 0x90, 0xd8, 0x5f, 0x83, 0x99, 0x0c, 0x53, 0xcf, 0x2d, 0x78, 0x09, 0x73, 0x07, 0xf8, 0x9c,
|
|
0xb2, 0xf0, 0xe8, 0xfd, 0x1c, 0xdd, 0x5d, 0xd0, 0x3b, 0xed, 0x2b, 0x8f, 0xaf, 0x42, 0xd1, 0x97,
|
|
0x3a, 0xe5, 0x01, 0x4a, 0x67, 0x2f, 0xd7, 0x58, 0x11, 0x84, 0x97, 0xf1, 0x48, 0xd6, 0x77, 0xf0,
|
|
0x3e, 0x86, 0x6a, 0xcc, 0xd1, 0x97, 0x13, 0xcf, 0x61, 0x5a, 0xc9, 0xfe, 0xaa, 0xe2, 0xbd, 0x03,
|
|
0x33, 0x19, 0x0b, 0x7d, 0x39, 0xca, 0xcb, 0x5b, 0x36, 0xf0, 0xff, 0xa0, 0xf2, 0x76, 0x0f, 0x96,
|
|
0xba, 0x79, 0xd7, 0xd7, 0x72, 0x3f, 0x00, 0x68, 0x97, 0x3b, 0x7e, 0x37, 0x3a, 0x25, 0xcd, 0xf8,
|
|
0x6e, 0xc4, 0xbf, 0xb9, 0xcc, 0xc7, 0xca, 0xe9, 0x61, 0x4b, 0x7c, 0x9b, 0xbf, 0x0f, 0x41, 0x51,
|
|
0x51, 0x21, 0x13, 0xc6, 0x43, 0x8a, 0x1b, 0xa4, 0x8e, 0x59, 0x3d, 0x20, 0x94, 0x89, 0x0b, 0xa0,
|
|
0x66, 0x95, 0x85, 0x70, 0x8b, 0x37, 0x1f, 0x0c, 0x5d, 0x80, 0x92, 0xc4, 0x34, 0x08, 0x8b, 0xee,
|
|
0x80, 0x42, 0x70, 0x97, 0x30, 0xb4, 0x0e, 0x93, 0xb1, 0xb2, 0x1e, 0x10, 0x1f, 0x3b, 0x81, 0x3e,
|
|
0x26, 0x30, 0x13, 0x11, 0xc6, 0x12, 0x52, 0x74, 0x11, 0xaa, 0x6d, 0xa4, 0x6c, 0xe4, 0x41, 0x00,
|
|
0xc7, 0x23, 0xa0, 0x6c, 0xc1, 0x57, 0xa0, 0x72, 0xec, 0xb5, 0xfc, 0xd8, 0xa3, 0xb2, 0xbc, 0xe4,
|
|
0x72, 0x99, 0x72, 0x68, 0x1e, 0xc6, 0x04, 0x82, 0xfb, 0x53, 0x11, 0xda, 0x22, 0x1f, 0x73, 0x77,
|
|
0x2e, 0x42, 0x35, 0x52, 0x45, 0xde, 0x4c, 0x48, 0x23, 0x0a, 0xa1, 0x9c, 0x59, 0x83, 0x89, 0x18,
|
|
0x27, 0x7d, 0x99, 0x14, 0xb0, 0x8a, 0x82, 0x49, 0x57, 0xa2, 0x88, 0xa2, 0x9c, 0x88, 0xce, 0xb4,
|
|
0x23, 0x8a, 0x56, 0xa0, 0x9c, 0xa8, 0x4d, 0xfa, 0xac, 0x50, 0x25, 0x45, 0xfc, 0x5a, 0xb0, 0x4b,
|
|
0x9a, 0xf6, 0x56, 0xcb, 0x0b, 0x5d, 0xb6, 0xeb, 0x50, 0xe6, 0x0d, 0xd2, 0x97, 0xbd, 0x1a, 0x82,
|
|
0xf9, 0x1c, 0x3a, 0x95, 0x43, 0x07, 0x50, 0x3c, 0x95, 0x22, 0xf5, 0x3f, 0xb8, 0x91, 0x20, 0xec,
|
|
0x3a, 0x2d, 0x47, 0x13, 0xd1, 0x18, 0x37, 0x01, 0xda, 0xda, 0x44, 0x76, 0x6b, 0xc9, 0xec, 0xe6,
|
|
0x72, 0x2c, 0x10, 0x2a, 0xdb, 0xd4, 0xc8, 0xf8, 0x5e, 0x83, 0xa9, 0x0e, 0xf2, 0x8e, 0x63, 0xa5,
|
|
0xbd, 0xf9, 0x58, 0x59, 0x50, 0xe1, 0x5b, 0x50, 0x97, 0xbc, 0xfc, 0x8e, 0xc1, 0x57, 0xb7, 0xf1,
|
|
0x8e, 0xab, 0xb3, 0xca, 0xa7, 0xf1, 0x37, 0xdd, 0x7c, 0x00, 0xc5, 0x43, 0xe6, 0x05, 0xb8, 0x41,
|
|
0xd0, 0x1d, 0x28, 0xc5, 0xef, 0x31, 0xe8, 0x42, 0x82, 0x35, 0xfb, 0xd8, 0x63, 0x2c, 0xe4, 0x2b,
|
|
0xa5, 0xa9, 0x4d, 0x17, 0x4a, 0xf1, 0x23, 0x06, 0xc2, 0x50, 0x49, 0x3e, 0x64, 0xa0, 0x4b, 0x89,
|
|
0xa9, 0xbd, 0x1e, 0x4f, 0x8c, 0xf5, 0x37, 0x03, 0x95, 0xbd, 0x9f, 0x86, 0x60, 0x84, 0x87, 0x0b,
|
|
0xdd, 0x82, 0xa2, 0x7a, 0xc4, 0x40, 0xf3, 0x89, 0xd9, 0xe9, 0xc7, 0x11, 0xc3, 0xc8, 0x53, 0xa9,
|
|
0xd4, 0xd9, 0x87, 0x72, 0xe2, 0x45, 0x02, 0x2d, 0x26, 0xa0, 0x9d, 0x2f, 0x1e, 0xc6, 0x52, 0x37,
|
|
0xb5, 0x62, 0xdb, 0x03, 0x68, 0x5f, 0xcc, 0xd1, 0x42, 0x97, 0xfb, 0xba, 0xe4, 0x5a, 0xec, 0x79,
|
|
0x9b, 0x47, 0xcf, 0x60, 0xaa, 0xe3, 0x16, 0x8b, 0x56, 0x7b, 0xdf, 0x71, 0x25, 0xf1, 0xda, 0xdb,
|
|
0x5c, 0x84, 0x37, 0x7f, 0x2b, 0x89, 0x9a, 0xe8, 0x85, 0x8c, 0xf2, 0x30, 0x46, 0xbb, 0x95, 0x0c,
|
|
0x63, 0x66, 0x7f, 0x8c, 0x3c, 0x95, 0xf2, 0xd6, 0x82, 0xf1, 0xd4, 0x55, 0x04, 0x2d, 0x77, 0x82,
|
|
0x53, 0xbf, 0x25, 0x63, 0xa5, 0x3b, 0x20, 0xbe, 0xec, 0x4f, 0x66, 0x5b, 0x63, 0x64, 0x76, 0xce,
|
|
0xca, 0xf6, 0x3b, 0xc6, 0x6a, 0x4f, 0x8c, 0x22, 0x6f, 0xc1, 0x6c, 0x7e, 0xdf, 0x8d, 0xd6, 0x7b,
|
|
0x4c, 0x4f, 0x2f, 0xe1, 0xf2, 0x5b, 0x20, 0x95, 0xb9, 0x8f, 0xa0, 0x20, 0x7b, 0x4e, 0xa4, 0x77,
|
|
0xb4, 0xaa, 0x11, 0xdd, 0x7c, 0x8e, 0x46, 0x4d, 0x7f, 0xdc, 0xd9, 0xb2, 0xfe, 0xa7, 0x47, 0xcb,
|
|
0xab, 0x08, 0xcd, 0x5e, 0x10, 0xc5, 0x4c, 0x41, 0xef, 0xf6, 0x3a, 0x80, 0xfe, 0x9b, 0x9c, 0xdf,
|
|
0xfb, 0x29, 0xc3, 0xb8, 0xf2, 0x56, 0xd8, 0xc4, 0x72, 0xd2, 0x98, 0xf4, 0x72, 0x72, 0xdf, 0x16,
|
|
0xd2, 0xcb, 0xe9, 0xf2, 0x64, 0x60, 0xc1, 0x78, 0xaa, 0x6b, 0x4e, 0xe5, 0x61, 0x5e, 0x67, 0x9e,
|
|
0xca, 0xc3, 0xfc, 0x86, 0xfb, 0x29, 0x4c, 0x66, 0x7b, 0x98, 0x54, 0x1e, 0x76, 0xe9, 0xbb, 0x53,
|
|
0x79, 0xd8, 0xb5, 0x37, 0xbe, 0xd5, 0xee, 0x4c, 0xe6, 0x73, 0x1a, 0x9f, 0x9c, 0xa3, 0x97, 0x6d,
|
|
0x6c, 0x2d, 0x18, 0x4f, 0x35, 0x92, 0xa9, 0x25, 0xe7, 0x35, 0xb1, 0xa9, 0x25, 0xe7, 0xf7, 0xa0,
|
|
0x2d, 0x98, 0xcd, 0x6f, 0xdb, 0x52, 0xa7, 0xa3, 0x67, 0xdf, 0x99, 0x3a, 0x1d, 0x6f, 0xe8, 0x01,
|
|
0x9f, 0xe5, 0xfd, 0x2e, 0x57, 0x7b, 0xff, 0xe5, 0x3a, 0x6b, 0x5d, 0xd7, 0x5f, 0xe1, 0xf6, 0xda,
|
|
0x13, 0x93, 0x0b, 0xbe, 0xac, 0x39, 0xde, 0x86, 0xf8, 0xd8, 0xf0, 0x03, 0xe7, 0x0c, 0x33, 0xb2,
|
|
0x11, 0xcf, 0xf6, 0x8f, 0x8e, 0x0a, 0xe2, 0x9d, 0xf9, 0xfa, 0x9f, 0x01, 0x00, 0x00, 0xff, 0xff,
|
|
0x83, 0x12, 0xc9, 0x30, 0x60, 0x19, 0x00, 0x00,
|
|
}
|