//GetSecondaryAllocID gets SecondaryAllocID, Tag 793
func (m ConfirmationRequest) GetSecondaryAllocID() (v string, err quickfix.MessageRejectError) {
	var f field.SecondaryAllocIDField
	if err = m.Get(&f); err == nil {
		v = f.Value()
	}
	return
}
//GetSecondaryAllocID gets SecondaryAllocID, Tag 793
func (m AllocationInstructionAck) GetSecondaryAllocID() (v string, err quickfix.MessageRejectError) {
	var f field.SecondaryAllocIDField
	if err = m.Get(&f); err == nil {
		v = f.Value()
	}
	return
}