botv1

package
v0.0.0-...-04e463c Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 18, 2024 License: MIT Imports: 4 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	Action_name = map[int32]string{
		0: "ACTION_UNSPECIFIED",
		1: "ACTION_LONG",
		2: "ACTION_SHORT",
	}
	Action_value = map[string]int32{
		"ACTION_UNSPECIFIED": 0,
		"ACTION_LONG":        1,
		"ACTION_SHORT":       2,
	}
)

Enum value maps for Action.

View Source
var (
	OptionType_name = map[int32]string{
		0: "OPTION_TYPE_UNSPECIFIED",
		1: "OPTION_TYPE_CALL",
		2: "OPTION_TYPE_PUT",
	}
	OptionType_value = map[string]int32{
		"OPTION_TYPE_UNSPECIFIED": 0,
		"OPTION_TYPE_CALL":        1,
		"OPTION_TYPE_PUT":         2,
	}
)

Enum value maps for OptionType.

View Source
var (
	Match_name = map[int32]string{
		0: "MATCH_UNSPECIFIED",
		1: "MATCH_EXACT",
		2: "MATCH_NEAREST",
		3: "MATCH_AT_LEAST",
		4: "MATCH_AT_MOST",
	}
	Match_value = map[string]int32{
		"MATCH_UNSPECIFIED": 0,
		"MATCH_EXACT":       1,
		"MATCH_NEAREST":     2,
		"MATCH_AT_LEAST":    3,
		"MATCH_AT_MOST":     4,
	}
)

Enum value maps for Match.

View Source
var (
	StrikeChooser_name = map[int32]string{
		0: "STRIKE_CHOOSER_UNSPECIFIED",
		1: "STRIKE_CHOOSER_DELTA",
		2: "STRIKE_CHOOSER_PRICE",
	}
	StrikeChooser_value = map[string]int32{
		"STRIKE_CHOOSER_UNSPECIFIED": 0,
		"STRIKE_CHOOSER_DELTA":       1,
		"STRIKE_CHOOSER_PRICE":       2,
	}
)

Enum value maps for StrikeChooser.

View Source
var (
	Allocator_name = map[int32]string{
		0: "ALLOCATOR_UNSPECIFIED",
		1: "ALLOCATOR_CONSTANT",
		2: "ALLOCATOR_MAX_RISK",
	}
	Allocator_value = map[string]int32{
		"ALLOCATOR_UNSPECIFIED": 0,
		"ALLOCATOR_CONSTANT":    1,
		"ALLOCATOR_MAX_RISK":    2,
	}
)

Enum value maps for Allocator.

View Source
var File_bot_v1_bot_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type Action

type Action int32
const (
	Action_ACTION_UNSPECIFIED Action = 0
	Action_ACTION_LONG        Action = 1
	Action_ACTION_SHORT       Action = 2
)

func (Action) Descriptor

func (Action) Descriptor() protoreflect.EnumDescriptor

func (Action) Enum

func (x Action) Enum() *Action

func (Action) EnumDescriptor deprecated

func (Action) EnumDescriptor() ([]byte, []int)

Deprecated: Use Action.Descriptor instead.

func (Action) Number

func (x Action) Number() protoreflect.EnumNumber

func (Action) String

func (x Action) String() string

func (Action) Type

func (Action) Type() protoreflect.EnumType

type Allocation

type Allocation struct {
	Allocator Allocator `protobuf:"varint,1,opt,name=allocator,proto3,enum=bot.v1.Allocator" json:"allocator,omitempty"`
	// constant size
	ConstantSize int32 `protobuf:"varint,11,opt,name=constant_size,json=constantSize,proto3" json:"constant_size,omitempty"`
	// max risk
	MaxRisk float64 `protobuf:"fixed64,12,opt,name=max_risk,json=maxRisk,proto3" json:"max_risk,omitempty"`
	// contains filtered or unexported fields
}

func (*Allocation) Descriptor deprecated

func (*Allocation) Descriptor() ([]byte, []int)

Deprecated: Use Allocation.ProtoReflect.Descriptor instead.

func (*Allocation) GetAllocator

func (x *Allocation) GetAllocator() Allocator

func (*Allocation) GetConstantSize

func (x *Allocation) GetConstantSize() int32

func (*Allocation) GetMaxRisk

func (x *Allocation) GetMaxRisk() float64

func (*Allocation) ProtoMessage

func (*Allocation) ProtoMessage()

func (*Allocation) ProtoReflect

func (x *Allocation) ProtoReflect() protoreflect.Message

func (*Allocation) Reset

func (x *Allocation) Reset()

func (*Allocation) String

func (x *Allocation) String() string

type Allocator

type Allocator int32
const (
	Allocator_ALLOCATOR_UNSPECIFIED Allocator = 0
	// constant size
	Allocator_ALLOCATOR_CONSTANT Allocator = 1
	// max risk, the max loss if the worst case happens
	Allocator_ALLOCATOR_MAX_RISK Allocator = 2
)

func (Allocator) Descriptor

func (Allocator) Descriptor() protoreflect.EnumDescriptor

func (Allocator) Enum

func (x Allocator) Enum() *Allocator

func (Allocator) EnumDescriptor deprecated

func (Allocator) EnumDescriptor() ([]byte, []int)

Deprecated: Use Allocator.Descriptor instead.

func (Allocator) Number

func (x Allocator) Number() protoreflect.EnumNumber

func (Allocator) String

func (x Allocator) String() string

func (Allocator) Type

type CreateRequest

type CreateRequest struct {
	Name    string   `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Setting *Setting `protobuf:"bytes,2,opt,name=setting,proto3" json:"setting,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateRequest) Descriptor deprecated

func (*CreateRequest) Descriptor() ([]byte, []int)

Deprecated: Use CreateRequest.ProtoReflect.Descriptor instead.

func (*CreateRequest) GetName

func (x *CreateRequest) GetName() string

func (*CreateRequest) GetSetting

func (x *CreateRequest) GetSetting() *Setting

func (*CreateRequest) ProtoMessage

func (*CreateRequest) ProtoMessage()

func (*CreateRequest) ProtoReflect

func (x *CreateRequest) ProtoReflect() protoreflect.Message

func (*CreateRequest) Reset

func (x *CreateRequest) Reset()

func (*CreateRequest) String

func (x *CreateRequest) String() string

type CreateResponse

type CreateResponse struct {
	Id      string   `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Name    string   `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Setting *Setting `protobuf:"bytes,3,opt,name=setting,proto3" json:"setting,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateResponse) Descriptor deprecated

func (*CreateResponse) Descriptor() ([]byte, []int)

Deprecated: Use CreateResponse.ProtoReflect.Descriptor instead.

func (*CreateResponse) GetId

func (x *CreateResponse) GetId() string

func (*CreateResponse) GetName

func (x *CreateResponse) GetName() string

func (*CreateResponse) GetSetting

func (x *CreateResponse) GetSetting() *Setting

func (*CreateResponse) ProtoMessage

func (*CreateResponse) ProtoMessage()

func (*CreateResponse) ProtoReflect

func (x *CreateResponse) ProtoReflect() protoreflect.Message

func (*CreateResponse) Reset

func (x *CreateResponse) Reset()

func (*CreateResponse) String

func (x *CreateResponse) String() string

type DTE

type DTE struct {

	// match strategy
	Match Match `protobuf:"varint,10,opt,name=match,proto3,enum=bot.v1.Match" json:"match,omitempty"`
	// the target DTE
	Dte int32 `protobuf:"varint,11,opt,name=dte,proto3" json:"dte,omitempty"`
	// limit the DTE range
	DteRange *IntRange `protobuf:"bytes,12,opt,name=dte_range,json=dteRange,proto3" json:"dte_range,omitempty"`
	// contains filtered or unexported fields
}

func (*DTE) Descriptor deprecated

func (*DTE) Descriptor() ([]byte, []int)

Deprecated: Use DTE.ProtoReflect.Descriptor instead.

func (*DTE) GetDte

func (x *DTE) GetDte() int32

func (*DTE) GetDteRange

func (x *DTE) GetDteRange() *IntRange

func (*DTE) GetMatch

func (x *DTE) GetMatch() Match

func (*DTE) ProtoMessage

func (*DTE) ProtoMessage()

func (*DTE) ProtoReflect

func (x *DTE) ProtoReflect() protoreflect.Message

func (*DTE) Reset

func (x *DTE) Reset()

func (*DTE) String

func (x *DTE) String() string

type DoubleRange

type DoubleRange struct {
	Min float64 `protobuf:"fixed64,1,opt,name=min,proto3" json:"min,omitempty"`
	Max float64 `protobuf:"fixed64,2,opt,name=max,proto3" json:"max,omitempty"`
	// contains filtered or unexported fields
}

func (*DoubleRange) Descriptor deprecated

func (*DoubleRange) Descriptor() ([]byte, []int)

Deprecated: Use DoubleRange.ProtoReflect.Descriptor instead.

func (*DoubleRange) GetMax

func (x *DoubleRange) GetMax() float64

func (*DoubleRange) GetMin

func (x *DoubleRange) GetMin() float64

func (*DoubleRange) ProtoMessage

func (*DoubleRange) ProtoMessage()

func (*DoubleRange) ProtoReflect

func (x *DoubleRange) ProtoReflect() protoreflect.Message

func (*DoubleRange) Reset

func (x *DoubleRange) Reset()

func (*DoubleRange) String

func (x *DoubleRange) String() string

type Entry

type Entry struct {
	Weekdays *WeekdaysChooser `protobuf:"bytes,1,opt,name=weekdays,proto3" json:"weekdays,omitempty"`
	Time     *Time            `protobuf:"bytes,2,opt,name=time,proto3" json:"time,omitempty"`
	// contains filtered or unexported fields
}

func (*Entry) Descriptor deprecated

func (*Entry) Descriptor() ([]byte, []int)

Deprecated: Use Entry.ProtoReflect.Descriptor instead.

func (*Entry) GetTime

func (x *Entry) GetTime() *Time

func (*Entry) GetWeekdays

func (x *Entry) GetWeekdays() *WeekdaysChooser

func (*Entry) ProtoMessage

func (*Entry) ProtoMessage()

func (*Entry) ProtoReflect

func (x *Entry) ProtoReflect() protoreflect.Message

func (*Entry) Reset

func (x *Entry) Reset()

func (*Entry) String

func (x *Entry) String() string

type Exit

type Exit struct {
	Dte      int32   `protobuf:"varint,1,opt,name=dte,proto3" json:"dte,omitempty"`
	Time     *Time   `protobuf:"bytes,2,opt,name=time,proto3" json:"time,omitempty"`
	StopWin  float64 `protobuf:"fixed64,11,opt,name=stop_win,json=stopWin,proto3" json:"stop_win,omitempty"`
	StopLoss float64 `protobuf:"fixed64,12,opt,name=stop_loss,json=stopLoss,proto3" json:"stop_loss,omitempty"`
	// contains filtered or unexported fields
}

func (*Exit) Descriptor deprecated

func (*Exit) Descriptor() ([]byte, []int)

Deprecated: Use Exit.ProtoReflect.Descriptor instead.

func (*Exit) GetDte

func (x *Exit) GetDte() int32

func (*Exit) GetStopLoss

func (x *Exit) GetStopLoss() float64

func (*Exit) GetStopWin

func (x *Exit) GetStopWin() float64

func (*Exit) GetTime

func (x *Exit) GetTime() *Time

func (*Exit) ProtoMessage

func (*Exit) ProtoMessage()

func (*Exit) ProtoReflect

func (x *Exit) ProtoReflect() protoreflect.Message

func (*Exit) Reset

func (x *Exit) Reset()

func (*Exit) String

func (x *Exit) String() string

type GetRequest

type GetRequest struct {
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// contains filtered or unexported fields
}

func (*GetRequest) Descriptor deprecated

func (*GetRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetRequest.ProtoReflect.Descriptor instead.

func (*GetRequest) GetId

func (x *GetRequest) GetId() string

func (*GetRequest) ProtoMessage

func (*GetRequest) ProtoMessage()

func (*GetRequest) ProtoReflect

func (x *GetRequest) ProtoReflect() protoreflect.Message

func (*GetRequest) Reset

func (x *GetRequest) Reset()

func (*GetRequest) String

func (x *GetRequest) String() string

type GetResponse

type GetResponse struct {
	Id      string   `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Name    string   `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Setting *Setting `protobuf:"bytes,3,opt,name=setting,proto3" json:"setting,omitempty"`
	// contains filtered or unexported fields
}

func (*GetResponse) Descriptor deprecated

func (*GetResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetResponse.ProtoReflect.Descriptor instead.

func (*GetResponse) GetId

func (x *GetResponse) GetId() string

func (*GetResponse) GetName

func (x *GetResponse) GetName() string

func (*GetResponse) GetSetting

func (x *GetResponse) GetSetting() *Setting

func (*GetResponse) ProtoMessage

func (*GetResponse) ProtoMessage()

func (*GetResponse) ProtoReflect

func (x *GetResponse) ProtoReflect() protoreflect.Message

func (*GetResponse) Reset

func (x *GetResponse) Reset()

func (*GetResponse) String

func (x *GetResponse) String() string

type IntRange

type IntRange struct {
	Min int32 `protobuf:"varint,1,opt,name=min,proto3" json:"min,omitempty"`
	Max int32 `protobuf:"varint,2,opt,name=max,proto3" json:"max,omitempty"`
	// contains filtered or unexported fields
}

func (*IntRange) Descriptor deprecated

func (*IntRange) Descriptor() ([]byte, []int)

Deprecated: Use IntRange.ProtoReflect.Descriptor instead.

func (*IntRange) GetMax

func (x *IntRange) GetMax() int32

func (*IntRange) GetMin

func (x *IntRange) GetMin() int32

func (*IntRange) ProtoMessage

func (*IntRange) ProtoMessage()

func (*IntRange) ProtoReflect

func (x *IntRange) ProtoReflect() protoreflect.Message

func (*IntRange) Reset

func (x *IntRange) Reset()

func (*IntRange) String

func (x *IntRange) String() string

type Leg

type Leg struct {

	// long or short
	Action Action `protobuf:"varint,1,opt,name=action,proto3,enum=bot.v1.Action" json:"action,omitempty"`
	// call or put
	OptionType OptionType `protobuf:"varint,2,opt,name=option_type,json=optionType,proto3,enum=bot.v1.OptionType" json:"option_type,omitempty"`
	// relative quantity, the final leg's quantity is position's size * this quantity
	Quantity int32 `protobuf:"varint,3,opt,name=quantity,proto3" json:"quantity,omitempty"`
	// strike setting
	Strike *Strike `protobuf:"bytes,4,opt,name=strike,proto3" json:"strike,omitempty"`
	// DTE setting
	Dte *DTE `protobuf:"bytes,5,opt,name=dte,proto3" json:"dte,omitempty"`
	// contains filtered or unexported fields
}

func (*Leg) Descriptor deprecated

func (*Leg) Descriptor() ([]byte, []int)

Deprecated: Use Leg.ProtoReflect.Descriptor instead.

func (*Leg) GetAction

func (x *Leg) GetAction() Action

func (*Leg) GetDte

func (x *Leg) GetDte() *DTE

func (*Leg) GetOptionType

func (x *Leg) GetOptionType() OptionType

func (*Leg) GetQuantity

func (x *Leg) GetQuantity() int32

func (*Leg) GetStrike

func (x *Leg) GetStrike() *Strike

func (*Leg) ProtoMessage

func (*Leg) ProtoMessage()

func (*Leg) ProtoReflect

func (x *Leg) ProtoReflect() protoreflect.Message

func (*Leg) Reset

func (x *Leg) Reset()

func (*Leg) String

func (x *Leg) String() string

type Match

type Match int32
const (
	Match_MATCH_UNSPECIFIED Match = 0
	// exact match
	Match_MATCH_EXACT Match = 1
	// nearest match
	Match_MATCH_NEAREST Match = 2
	// at least
	Match_MATCH_AT_LEAST Match = 3
	// at most
	Match_MATCH_AT_MOST Match = 4
)

func (Match) Descriptor

func (Match) Descriptor() protoreflect.EnumDescriptor

func (Match) Enum

func (x Match) Enum() *Match

func (Match) EnumDescriptor deprecated

func (Match) EnumDescriptor() ([]byte, []int)

Deprecated: Use Match.Descriptor instead.

func (Match) Number

func (x Match) Number() protoreflect.EnumNumber

func (Match) String

func (x Match) String() string

func (Match) Type

func (Match) Type() protoreflect.EnumType

type OptionType

type OptionType int32
const (
	OptionType_OPTION_TYPE_UNSPECIFIED OptionType = 0
	OptionType_OPTION_TYPE_CALL        OptionType = 1
	OptionType_OPTION_TYPE_PUT         OptionType = 2
)

func (OptionType) Descriptor

func (OptionType) Descriptor() protoreflect.EnumDescriptor

func (OptionType) Enum

func (x OptionType) Enum() *OptionType

func (OptionType) EnumDescriptor deprecated

func (OptionType) EnumDescriptor() ([]byte, []int)

Deprecated: Use OptionType.Descriptor instead.

func (OptionType) Number

func (x OptionType) Number() protoreflect.EnumNumber

func (OptionType) String

func (x OptionType) String() string

func (OptionType) Type

type Setting

type Setting struct {

	// underlying symbol, e.g SPX, SPY
	Underlying string `protobuf:"bytes,1,opt,name=underlying,proto3" json:"underlying,omitempty"`
	// legs setting
	Legs []*Leg `protobuf:"bytes,2,rep,name=legs,proto3" json:"legs,omitempty"`
	// allocation
	Allocation *Allocation `protobuf:"bytes,3,opt,name=allocation,proto3" json:"allocation,omitempty"`
	// entry condition
	Entry *Entry `protobuf:"bytes,4,opt,name=entry,proto3" json:"entry,omitempty"`
	// exit condition
	Exit *Exit `protobuf:"bytes,5,opt,name=exit,proto3" json:"exit,omitempty"`
	// contains filtered or unexported fields
}

func (*Setting) Descriptor deprecated

func (*Setting) Descriptor() ([]byte, []int)

Deprecated: Use Setting.ProtoReflect.Descriptor instead.

func (*Setting) GetAllocation

func (x *Setting) GetAllocation() *Allocation

func (*Setting) GetEntry

func (x *Setting) GetEntry() *Entry

func (*Setting) GetExit

func (x *Setting) GetExit() *Exit

func (*Setting) GetLegs

func (x *Setting) GetLegs() []*Leg

func (*Setting) GetUnderlying

func (x *Setting) GetUnderlying() string

func (*Setting) ProtoMessage

func (*Setting) ProtoMessage()

func (*Setting) ProtoReflect

func (x *Setting) ProtoReflect() protoreflect.Message

func (*Setting) Reset

func (x *Setting) Reset()

func (*Setting) String

func (x *Setting) String() string

type Strike

type Strike struct {

	// the strike chooser
	Chooser StrikeChooser `protobuf:"varint,1,opt,name=chooser,proto3,enum=bot.v1.StrikeChooser" json:"chooser,omitempty"`
	// match strategy
	Match Match `protobuf:"varint,10,opt,name=match,proto3,enum=bot.v1.Match" json:"match,omitempty"`
	// the target delta
	Delta float64 `protobuf:"fixed64,11,opt,name=delta,proto3" json:"delta,omitempty"`
	// limit the delta range
	DeltaRange *DoubleRange `protobuf:"bytes,12,opt,name=delta_range,json=deltaRange,proto3" json:"delta_range,omitempty"`
	// the target price
	Price float64 `protobuf:"fixed64,13,opt,name=price,proto3" json:"price,omitempty"`
	// limit the price range
	PriceRange *DoubleRange `protobuf:"bytes,14,opt,name=price_range,json=priceRange,proto3" json:"price_range,omitempty"`
	// offset to the strike chosen above, e.g +10, -10
	StrikeOffset float64 `protobuf:"fixed64,21,opt,name=strike_offset,json=strikeOffset,proto3" json:"strike_offset,omitempty"`
	// contains filtered or unexported fields
}

func (*Strike) Descriptor deprecated

func (*Strike) Descriptor() ([]byte, []int)

Deprecated: Use Strike.ProtoReflect.Descriptor instead.

func (*Strike) GetChooser

func (x *Strike) GetChooser() StrikeChooser

func (*Strike) GetDelta

func (x *Strike) GetDelta() float64

func (*Strike) GetDeltaRange

func (x *Strike) GetDeltaRange() *DoubleRange

func (*Strike) GetMatch

func (x *Strike) GetMatch() Match

func (*Strike) GetPrice

func (x *Strike) GetPrice() float64

func (*Strike) GetPriceRange

func (x *Strike) GetPriceRange() *DoubleRange

func (*Strike) GetStrikeOffset

func (x *Strike) GetStrikeOffset() float64

func (*Strike) ProtoMessage

func (*Strike) ProtoMessage()

func (*Strike) ProtoReflect

func (x *Strike) ProtoReflect() protoreflect.Message

func (*Strike) Reset

func (x *Strike) Reset()

func (*Strike) String

func (x *Strike) String() string

type StrikeChooser

type StrikeChooser int32
const (
	StrikeChooser_STRIKE_CHOOSER_UNSPECIFIED StrikeChooser = 0
	// use delta to choose strike
	StrikeChooser_STRIKE_CHOOSER_DELTA StrikeChooser = 1
	// use price to choose strike
	StrikeChooser_STRIKE_CHOOSER_PRICE StrikeChooser = 2
)

func (StrikeChooser) Descriptor

func (StrikeChooser) Enum

func (x StrikeChooser) Enum() *StrikeChooser

func (StrikeChooser) EnumDescriptor deprecated

func (StrikeChooser) EnumDescriptor() ([]byte, []int)

Deprecated: Use StrikeChooser.Descriptor instead.

func (StrikeChooser) Number

func (StrikeChooser) String

func (x StrikeChooser) String() string

func (StrikeChooser) Type

type Time

type Time struct {
	Hour   int32 `protobuf:"varint,1,opt,name=hour,proto3" json:"hour,omitempty"`
	Minute int32 `protobuf:"varint,2,opt,name=minute,proto3" json:"minute,omitempty"`
	// contains filtered or unexported fields
}

func (*Time) Descriptor deprecated

func (*Time) Descriptor() ([]byte, []int)

Deprecated: Use Time.ProtoReflect.Descriptor instead.

func (*Time) GetHour

func (x *Time) GetHour() int32

func (*Time) GetMinute

func (x *Time) GetMinute() int32

func (*Time) ProtoMessage

func (*Time) ProtoMessage()

func (*Time) ProtoReflect

func (x *Time) ProtoReflect() protoreflect.Message

func (*Time) Reset

func (x *Time) Reset()

func (*Time) String

func (x *Time) String() string

type WeekdaysChooser

type WeekdaysChooser struct {
	Monday    bool `protobuf:"varint,1,opt,name=monday,proto3" json:"monday,omitempty"`
	Tuesday   bool `protobuf:"varint,2,opt,name=tuesday,proto3" json:"tuesday,omitempty"`
	Wednesday bool `protobuf:"varint,3,opt,name=wednesday,proto3" json:"wednesday,omitempty"`
	Thursday  bool `protobuf:"varint,4,opt,name=thursday,proto3" json:"thursday,omitempty"`
	Friday    bool `protobuf:"varint,5,opt,name=friday,proto3" json:"friday,omitempty"`
	// contains filtered or unexported fields
}

func (*WeekdaysChooser) Descriptor deprecated

func (*WeekdaysChooser) Descriptor() ([]byte, []int)

Deprecated: Use WeekdaysChooser.ProtoReflect.Descriptor instead.

func (*WeekdaysChooser) GetFriday

func (x *WeekdaysChooser) GetFriday() bool

func (*WeekdaysChooser) GetMonday

func (x *WeekdaysChooser) GetMonday() bool

func (*WeekdaysChooser) GetThursday

func (x *WeekdaysChooser) GetThursday() bool

func (*WeekdaysChooser) GetTuesday

func (x *WeekdaysChooser) GetTuesday() bool

func (*WeekdaysChooser) GetWednesday

func (x *WeekdaysChooser) GetWednesday() bool

func (*WeekdaysChooser) ProtoMessage

func (*WeekdaysChooser) ProtoMessage()

func (*WeekdaysChooser) ProtoReflect

func (x *WeekdaysChooser) ProtoReflect() protoreflect.Message

func (*WeekdaysChooser) Reset

func (x *WeekdaysChooser) Reset()

func (*WeekdaysChooser) String

func (x *WeekdaysChooser) String() string

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL
JackTT - Gopher 🇻🇳