email

package
v0.3.0 Latest Latest
Warning

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

Go to latest
Published: Jun 3, 2016 License: Apache-1.1 Imports: 7 Imported by: 0

Documentation

Overview

Package email msg type = C.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Route

func Route(router RouteOut) (string, string, quickfix.MessageRoute)

Route returns the beginstring, message type, and MessageRoute for this Message type

Types

type Message

type Message struct {
	FIXMsgType string `fix:"C"`
	fix44.Header
	//EmailThreadID is a required field for Email.
	EmailThreadID string `fix:"164"`
	//EmailType is a required field for Email.
	EmailType string `fix:"94"`
	//OrigTime is a non-required field for Email.
	OrigTime *time.Time `fix:"42"`
	//Subject is a required field for Email.
	Subject string `fix:"147"`
	//EncodedSubjectLen is a non-required field for Email.
	EncodedSubjectLen *int `fix:"356"`
	//EncodedSubject is a non-required field for Email.
	EncodedSubject *string `fix:"357"`
	//NoRoutingIDs is a non-required field for Email.
	NoRoutingIDs []NoRoutingIDs `fix:"215,omitempty"`
	//NoRelatedSym is a non-required field for Email.
	NoRelatedSym []NoRelatedSym `fix:"146,omitempty"`
	//NoUnderlyings is a non-required field for Email.
	NoUnderlyings []NoUnderlyings `fix:"711,omitempty"`
	//NoLegs is a non-required field for Email.
	NoLegs []NoLegs `fix:"555,omitempty"`
	//OrderID is a non-required field for Email.
	OrderID *string `fix:"37"`
	//ClOrdID is a non-required field for Email.
	ClOrdID *string `fix:"11"`
	//NoLinesOfText is a required field for Email.
	NoLinesOfText []NoLinesOfText `fix:"33"`
	//RawDataLength is a non-required field for Email.
	RawDataLength *int `fix:"95"`
	//RawData is a non-required field for Email.
	RawData *string `fix:"96"`
	fix44.Trailer
}

Message is a Email FIX Message

func New

func New(emailthreadid string, emailtype string, subject string, nolinesoftext []NoLinesOfText) *Message

New returns an initialized Email instance

func (Message) Marshal

func (m Message) Marshal() quickfix.Message

Marshal converts Message to a quickfix.Message instance

func (*Message) SetClOrdID

func (m *Message) SetClOrdID(v string)

func (*Message) SetEmailThreadID

func (m *Message) SetEmailThreadID(v string)

func (*Message) SetEmailType

func (m *Message) SetEmailType(v string)

func (*Message) SetEncodedSubject

func (m *Message) SetEncodedSubject(v string)

func (*Message) SetEncodedSubjectLen

func (m *Message) SetEncodedSubjectLen(v int)

func (*Message) SetNoLegs

func (m *Message) SetNoLegs(v []NoLegs)

func (*Message) SetNoLinesOfText

func (m *Message) SetNoLinesOfText(v []NoLinesOfText)

func (*Message) SetNoRelatedSym

func (m *Message) SetNoRelatedSym(v []NoRelatedSym)

func (*Message) SetNoRoutingIDs

func (m *Message) SetNoRoutingIDs(v []NoRoutingIDs)

func (*Message) SetNoUnderlyings

func (m *Message) SetNoUnderlyings(v []NoUnderlyings)

func (*Message) SetOrderID

func (m *Message) SetOrderID(v string)

func (*Message) SetOrigTime

func (m *Message) SetOrigTime(v time.Time)

func (*Message) SetRawData

func (m *Message) SetRawData(v string)

func (*Message) SetRawDataLength

func (m *Message) SetRawDataLength(v int)

func (*Message) SetSubject

func (m *Message) SetSubject(v string)

type NoLegs

type NoLegs struct {
	//InstrumentLeg is a non-required component for NoLegs.
	InstrumentLeg *instrumentleg.InstrumentLeg
}

NoLegs is a repeating group in Email

func NewNoLegs

func NewNoLegs() *NoLegs

NewNoLegs returns an initialized NoLegs instance

func (*NoLegs) SetInstrumentLeg

func (m *NoLegs) SetInstrumentLeg(v instrumentleg.InstrumentLeg)

type NoLinesOfText

type NoLinesOfText struct {
	//Text is a required field for NoLinesOfText.
	Text string `fix:"58"`
	//EncodedTextLen is a non-required field for NoLinesOfText.
	EncodedTextLen *int `fix:"354"`
	//EncodedText is a non-required field for NoLinesOfText.
	EncodedText *string `fix:"355"`
}

NoLinesOfText is a repeating group in Email

func NewNoLinesOfText

func NewNoLinesOfText(text string) *NoLinesOfText

NewNoLinesOfText returns an initialized NoLinesOfText instance

func (*NoLinesOfText) SetEncodedText

func (m *NoLinesOfText) SetEncodedText(v string)

func (*NoLinesOfText) SetEncodedTextLen

func (m *NoLinesOfText) SetEncodedTextLen(v int)

func (*NoLinesOfText) SetText

func (m *NoLinesOfText) SetText(v string)

type NoRelatedSym

type NoRelatedSym struct {
	//Instrument is a non-required component for NoRelatedSym.
	Instrument *instrument.Instrument
}

NoRelatedSym is a repeating group in Email

func NewNoRelatedSym

func NewNoRelatedSym() *NoRelatedSym

NewNoRelatedSym returns an initialized NoRelatedSym instance

func (*NoRelatedSym) SetInstrument

func (m *NoRelatedSym) SetInstrument(v instrument.Instrument)

type NoRoutingIDs

type NoRoutingIDs struct {
	//RoutingType is a non-required field for NoRoutingIDs.
	RoutingType *int `fix:"216"`
	//RoutingID is a non-required field for NoRoutingIDs.
	RoutingID *string `fix:"217"`
}

NoRoutingIDs is a repeating group in Email

func NewNoRoutingIDs

func NewNoRoutingIDs() *NoRoutingIDs

NewNoRoutingIDs returns an initialized NoRoutingIDs instance

func (*NoRoutingIDs) SetRoutingID

func (m *NoRoutingIDs) SetRoutingID(v string)

func (*NoRoutingIDs) SetRoutingType

func (m *NoRoutingIDs) SetRoutingType(v int)

type NoUnderlyings

type NoUnderlyings struct {
	//UnderlyingInstrument is a non-required component for NoUnderlyings.
	UnderlyingInstrument *underlyinginstrument.UnderlyingInstrument
}

NoUnderlyings is a repeating group in Email

func NewNoUnderlyings

func NewNoUnderlyings() *NoUnderlyings

NewNoUnderlyings returns an initialized NoUnderlyings instance

func (*NoUnderlyings) SetUnderlyingInstrument

func (m *NoUnderlyings) SetUnderlyingInstrument(v underlyinginstrument.UnderlyingInstrument)

type RouteOut

type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError

A RouteOut is the callback type that should be implemented for routing Message

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL