server

package
v1.0.0 Latest Latest
Warning

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

Go to latest
Published: Dec 30, 2024 License: BSD-3-Clause Imports: 4 Imported by: 0

Documentation

Overview

Package server provides primitives to interact with the openapi HTTP API.

Code generated by github.com/oapi-codegen/oapi-codegen/v2 version v2.4.1 DO NOT EDIT.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func RegisterHandlers

func RegisterHandlers(router EchoRouter, si ServerInterface)

RegisterHandlers adds each server route to the EchoRouter.

func RegisterHandlersWithBaseURL

func RegisterHandlersWithBaseURL(router EchoRouter, si ServerInterface, baseURL string)

Registers handlers, and prepends BaseURL to the paths, so that the paths can be served under a prefix.

Types

type EchoRouter

type EchoRouter interface {
	CONNECT(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route
	DELETE(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route
	GET(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route
	HEAD(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route
	OPTIONS(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route
	PATCH(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route
	POST(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route
	PUT(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route
	TRACE(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route
}

This is a simple interface which specifies echo.Route addition functions which are present on both echo.Echo and echo.Group, since we want to allow using either of them for path registration

type ServerInterface

type ServerInterface interface {
	// Retrieve accounting contact
	// (GET /AccountingContact)
	GetAccountingContact(ctx echo.Context, params GetAccountingContactParams) error
	// Create a new accounting contact
	// (POST /AccountingContact)
	CreateAccountingContact(ctx echo.Context) error
	// Deletes an accounting contact
	// (DELETE /AccountingContact/{accountingContactId})
	DeleteAccountingContact(ctx echo.Context, accountingContactId int) error
	// Find accounting contact by ID
	// (GET /AccountingContact/{accountingContactId})
	GetAccountingContactById(ctx echo.Context, accountingContactId int) error
	// Update an existing accounting contact
	// (PUT /AccountingContact/{accountingContactId})
	UpdateAccountingContact(ctx echo.Context, accountingContactId int) error
	// Retrieve check accounts
	// (GET /CheckAccount)
	GetCheckAccounts(ctx echo.Context) error
	// Create a new check account
	// (POST /CheckAccount)
	CreateCheckAccount(ctx echo.Context) error
	// Create a new clearing account
	// (POST /CheckAccount/Factory/clearingAccount)
	CreateClearingAccount(ctx echo.Context) error
	// Create a new file import account
	// (POST /CheckAccount/Factory/fileImportAccount)
	CreateFileImportAccount(ctx echo.Context) error
	// Deletes a check account
	// (DELETE /CheckAccount/{checkAccountId})
	DeleteCheckAccount(ctx echo.Context, checkAccountId int) error
	// Find check account by ID
	// (GET /CheckAccount/{checkAccountId})
	GetCheckAccountById(ctx echo.Context, checkAccountId int) error
	// Update an existing check account
	// (PUT /CheckAccount/{checkAccountId})
	UpdateCheckAccount(ctx echo.Context, checkAccountId int) error
	// Get the balance at a given date
	// (GET /CheckAccount/{checkAccountId}/getBalanceAtDate)
	GetBalanceAtDate(ctx echo.Context, checkAccountId int, params GetBalanceAtDateParams) error
	// Retrieve transactions
	// (GET /CheckAccountTransaction)
	GetTransactions(ctx echo.Context, params GetTransactionsParams) error
	// Create a new transaction
	// (POST /CheckAccountTransaction)
	CreateTransaction(ctx echo.Context) error
	// Deletes a check account transaction
	// (DELETE /CheckAccountTransaction/{checkAccountTransactionId})
	DeleteCheckAccountTransaction(ctx echo.Context, checkAccountTransactionId int) error
	// Find check account transaction by ID
	// (GET /CheckAccountTransaction/{checkAccountTransactionId})
	GetCheckAccountTransactionById(ctx echo.Context, checkAccountTransactionId int) error
	// Update an existing check account transaction
	// (PUT /CheckAccountTransaction/{checkAccountTransactionId})
	UpdateCheckAccountTransaction(ctx echo.Context, checkAccountTransactionId int) error
	// Enshrine
	// (PUT /CheckAccountTransaction/{checkAccountTransactionId}/enshrine)
	CheckAccountTransactionEnshrine(ctx echo.Context, checkAccountTransactionId int) error
	// Retrieve communication ways
	// (GET /CommunicationWay)
	GetCommunicationWays(ctx echo.Context, params GetCommunicationWaysParams) error
	// Create a new contact communication way
	// (POST /CommunicationWay)
	CreateCommunicationWay(ctx echo.Context) error
	// Deletes a communication way
	// (DELETE /CommunicationWay/{communicationWayId})
	DeleteCommunicationWay(ctx echo.Context, communicationWayId int) error
	// Find communication way by ID
	// (GET /CommunicationWay/{communicationWayId})
	GetCommunicationWayById(ctx echo.Context, communicationWayId int) error
	// Update a existing communication way
	// (PUT /CommunicationWay/{communicationWayId})
	UpdateCommunicationWay(ctx echo.Context, communicationWayId int) error
	// Retrieve communication way keys
	// (GET /CommunicationWayKey)
	GetCommunicationWayKeys(ctx echo.Context) error
	// Retrieve contacts
	// (GET /Contact)
	GetContacts(ctx echo.Context, params GetContactsParams) error
	// Create a new contact
	// (POST /Contact)
	CreateContact(ctx echo.Context) error
	// Find contacts by custom field value
	// (GET /Contact/Factory/findContactsByCustomFieldValue)
	FindContactsByCustomFieldValue(ctx echo.Context, params FindContactsByCustomFieldValueParams) error
	// Get next free customer number
	// (GET /Contact/Factory/getNextCustomerNumber)
	GetNextCustomerNumber(ctx echo.Context) error
	// Check if a customer number is available
	// (GET /Contact/Mapper/checkCustomerNumberAvailability)
	ContactCustomerNumberAvailabilityCheck(ctx echo.Context, params ContactCustomerNumberAvailabilityCheckParams) error
	// Deletes a contact
	// (DELETE /Contact/{contactId})
	DeleteContact(ctx echo.Context, contactId int) error
	// Find contact by ID
	// (GET /Contact/{contactId})
	GetContactById(ctx echo.Context, contactId int) error
	// Update a existing contact
	// (PUT /Contact/{contactId})
	UpdateContact(ctx echo.Context, contactId int) error
	// Get number of all items
	// (GET /Contact/{contactId}/getTabsItemCount)
	GetContactTabsItemCountById(ctx echo.Context, contactId int) error
	// Retrieve contact addresses
	// (GET /ContactAddress)
	GetContactAddresses(ctx echo.Context) error
	// Create a new contact address
	// (POST /ContactAddress)
	CreateContactAddress(ctx echo.Context) error
	// Deletes a contact address
	// (DELETE /ContactAddress/{contactAddressId})
	DeleteContactAddress(ctx echo.Context, contactAddressId int) error
	// Find contact address by ID
	// (GET /ContactAddress/{contactAddressId})
	ContactAddressId(ctx echo.Context, contactAddressId int) error
	// update a existing contact address
	// (PUT /ContactAddress/{contactAddressId})
	UpdateContactAddress(ctx echo.Context, contactAddressId int) error
	// Retrieve contact fields
	// (GET /ContactCustomField)
	GetContactFields(ctx echo.Context) error
	// Create contact field
	// (POST /ContactCustomField)
	CreateContactField(ctx echo.Context) error
	// delete a contact field
	// (DELETE /ContactCustomField/{contactCustomFieldId})
	DeleteContactCustomFieldId(ctx echo.Context, contactCustomFieldId int) error
	// Retrieve contact fields
	// (GET /ContactCustomField/{contactCustomFieldId})
	GetContactFieldsById(ctx echo.Context, contactCustomFieldId float32) error
	// Update a contact field
	// (PUT /ContactCustomField/{contactCustomFieldId})
	UpdateContactfield(ctx echo.Context, contactCustomFieldId float32) error
	// Retrieve contact field settings
	// (GET /ContactCustomFieldSetting)
	GetContactFieldSettings(ctx echo.Context) error
	// Create contact field setting
	// (POST /ContactCustomFieldSetting)
	CreateContactFieldSetting(ctx echo.Context) error
	// Deletes a contact field setting
	// (DELETE /ContactCustomFieldSetting/{contactCustomFieldSettingId})
	DeleteContactFieldSetting(ctx echo.Context, contactCustomFieldSettingId int) error
	// Find contact field setting by ID
	// (GET /ContactCustomFieldSetting/{contactCustomFieldSettingId})
	GetContactFieldSettingById(ctx echo.Context, contactCustomFieldSettingId int) error
	// Update contact field setting
	// (PUT /ContactCustomFieldSetting/{contactCustomFieldSettingId})
	UpdateContactFieldSetting(ctx echo.Context, contactCustomFieldSettingId int) error
	// Receive count reference
	// (GET /ContactCustomFieldSetting/{contactCustomFieldSettingId}/getReferenceCount)
	GetReferenceCount(ctx echo.Context, contactCustomFieldSettingId int) error
	// Retrieve CreditNote
	// (GET /CreditNote)
	GetCreditNotes(ctx echo.Context, params GetCreditNotesParams) error
	// Creates a new creditNote from an invoice
	// (POST /CreditNote/Factory/createFromInvoice)
	CreateCreditNoteFromInvoice(ctx echo.Context) error
	// Creates a new creditNote from a voucher
	// (POST /CreditNote/Factory/createFromVoucher)
	CreateCreditNoteFromVoucher(ctx echo.Context) error
	// Create a new creditNote
	// (POST /CreditNote/Factory/saveCreditNote)
	CreatecreditNote(ctx echo.Context) error
	// Deletes an creditNote
	// (DELETE /CreditNote/{creditNoteId})
	DeletecreditNote(ctx echo.Context, creditNoteId int) error
	// Find creditNote by ID
	// (GET /CreditNote/{creditNoteId})
	GetcreditNoteById(ctx echo.Context, creditNoteId int) error
	// Update an existing creditNote
	// (PUT /CreditNote/{creditNoteId})
	UpdatecreditNote(ctx echo.Context, creditNoteId int) error
	// Book a credit note
	// (PUT /CreditNote/{creditNoteId}/bookAmount)
	BookCreditNote(ctx echo.Context, creditNoteId int) error
	// Update an of credit note template
	// (PUT /CreditNote/{creditNoteId}/changeParameter)
	UpdateCreditNoteTemplate(ctx echo.Context, creditNoteId int) error
	// Enshrine
	// (PUT /CreditNote/{creditNoteId}/enshrine)
	CreditNoteEnshrine(ctx echo.Context, creditNoteId int) error
	// Retrieve pdf document of a credit note
	// (GET /CreditNote/{creditNoteId}/getPdf)
	CreditNoteGetPdf(ctx echo.Context, creditNoteId int, params CreditNoteGetPdfParams) error
	// Reset status to draft
	// (PUT /CreditNote/{creditNoteId}/resetToDraft)
	CreditNoteResetToDraft(ctx echo.Context, creditNoteId int) error
	// Reset status to open
	// (PUT /CreditNote/{creditNoteId}/resetToOpen)
	CreditNoteResetToOpen(ctx echo.Context, creditNoteId int) error
	// Mark credit note as sent
	// (PUT /CreditNote/{creditNoteId}/sendBy)
	CreditNoteSendBy(ctx echo.Context, creditNoteId int) error
	// Send credit note by printing
	// (GET /CreditNote/{creditNoteId}/sendByWithRender)
	SendCreditNoteByPrinting(ctx echo.Context, creditNoteId int, params SendCreditNoteByPrintingParams) error
	// Send credit note via email
	// (POST /CreditNote/{creditNoteId}/sendViaEmail)
	SendCreditNoteViaEMail(ctx echo.Context, creditNoteId int) error
	// Retrieve creditNote positions
	// (GET /CreditNotePos)
	GetcreditNotePositions(ctx echo.Context, params GetcreditNotePositionsParams) error
	// Retrieve letterpapers
	// (GET /DocServer/getLetterpapersWithThumb)
	GetLetterpapersWithThumb(ctx echo.Context) error
	// Retrieve templates
	// (GET /DocServer/getTemplatesWithThumb)
	GetTemplates(ctx echo.Context, params GetTemplatesParams) error
	// Export contact
	// (GET /Export/contactListCsv)
	ExportContact(ctx echo.Context, params ExportContactParams) error
	// Export creditNote
	// (GET /Export/creditNoteCsv)
	ExportCreditNote(ctx echo.Context, params ExportCreditNoteParams) error
	// Export datev
	// (GET /Export/datevCSV)
	ExportDatev(ctx echo.Context, params ExportDatevParams) error
	// Export invoice
	// (GET /Export/invoiceCsv)
	ExportInvoice(ctx echo.Context, params ExportInvoiceParams) error
	// Export Invoice as zip
	// (GET /Export/invoiceZip)
	ExportInvoiceZip(ctx echo.Context, params ExportInvoiceZipParams) error
	// Export transaction
	// (GET /Export/transactionsCsv)
	ExportTransactions(ctx echo.Context, params ExportTransactionsParams) error
	// Export voucher as zip
	// (GET /Export/voucherListCsv)
	ExportVoucher(ctx echo.Context, params ExportVoucherParams) error
	// Export voucher zip
	// (GET /Export/voucherZip)
	ExportVoucherZip(ctx echo.Context, params ExportVoucherZipParams) error
	// Retrieve invoices
	// (GET /Invoice)
	GetInvoices(ctx echo.Context, params GetInvoicesParams) error
	// Create invoice from order
	// (POST /Invoice/Factory/createInvoiceFromOrder)
	CreateInvoiceFromOrder(ctx echo.Context) error
	// Create invoice reminder
	// (POST /Invoice/Factory/createInvoiceReminder)
	CreateInvoiceReminder(ctx echo.Context, params CreateInvoiceReminderParams) error
	// Create a new invoice
	// (POST /Invoice/Factory/saveInvoice)
	CreateInvoiceByFactory(ctx echo.Context) error
	// Find invoice by ID
	// (GET /Invoice/{invoiceId})
	GetInvoiceById(ctx echo.Context, invoiceId int) error
	// Book an invoice
	// (PUT /Invoice/{invoiceId}/bookAmount)
	BookInvoice(ctx echo.Context, invoiceId int) error
	// Cancel an invoice / Create cancellation invoice
	// (POST /Invoice/{invoiceId}/cancelInvoice)
	CancelInvoice(ctx echo.Context, invoiceId int) error
	// Update an invoice template
	// (PUT /Invoice/{invoiceId}/changeParameter)
	UpdateInvoiceTemplate(ctx echo.Context, invoiceId int) error
	// Enshrine
	// (PUT /Invoice/{invoiceId}/enshrine)
	InvoiceEnshrine(ctx echo.Context, invoiceId int) error
	// Check if an invoice is already partially paid
	// (GET /Invoice/{invoiceId}/getIsPartiallyPaid)
	GetIsInvoicePartiallyPaid(ctx echo.Context, invoiceId int) error
	// Retrieve pdf document of an invoice
	// (GET /Invoice/{invoiceId}/getPdf)
	InvoiceGetPdf(ctx echo.Context, invoiceId int, params InvoiceGetPdfParams) error
	// Find invoice positions
	// (GET /Invoice/{invoiceId}/getPositions)
	GetInvoicePositionsById(ctx echo.Context, invoiceId int, params GetInvoicePositionsByIdParams) error
	// Retrieve XML of an e-invoice
	// (GET /Invoice/{invoiceId}/getXml)
	InvoiceGetXml(ctx echo.Context, invoiceId int) error
	// Render the pdf document of an invoice
	// (POST /Invoice/{invoiceId}/render)
	InvoiceRender(ctx echo.Context, invoiceId int) error
	// Reset status to draft
	// (PUT /Invoice/{invoiceId}/resetToDraft)
	InvoiceResetToDraft(ctx echo.Context, invoiceId int) error
	// Reset status to open
	// (PUT /Invoice/{invoiceId}/resetToOpen)
	InvoiceResetToOpen(ctx echo.Context, invoiceId int) error
	// Mark invoice as sent
	// (PUT /Invoice/{invoiceId}/sendBy)
	InvoiceSendBy(ctx echo.Context, invoiceId int) error
	// Send invoice via email
	// (POST /Invoice/{invoiceId}/sendViaEmail)
	SendInvoiceViaEMail(ctx echo.Context, invoiceId int) error
	// Retrieve InvoicePos
	// (GET /InvoicePos)
	GetInvoicePos(ctx echo.Context, params GetInvoicePosParams) error
	// Retrieve orders
	// (GET /Order)
	GetOrders(ctx echo.Context, params GetOrdersParams) error
	// Create contract note from order
	// (POST /Order/Factory/createContractNoteFromOrder)
	CreateContractNoteFromOrder(ctx echo.Context, params CreateContractNoteFromOrderParams) error
	// Create packing list from order
	// (POST /Order/Factory/createPackingListFromOrder)
	CreatePackingListFromOrder(ctx echo.Context, params CreatePackingListFromOrderParams) error
	// Create a new order
	// (POST /Order/Factory/saveOrder)
	CreateOrder(ctx echo.Context) error
	// Deletes an order
	// (DELETE /Order/{orderId})
	DeleteOrder(ctx echo.Context, orderId int) error
	// Find order by ID
	// (GET /Order/{orderId})
	GetOrderById(ctx echo.Context, orderId int) error
	// Update an existing order
	// (PUT /Order/{orderId})
	UpdateOrder(ctx echo.Context, orderId int) error
	// Update an order template
	// (PUT /Order/{orderId}/changeParameter)
	UpdateOrderTemplate(ctx echo.Context, orderId int) error
	// Find order discounts
	// (GET /Order/{orderId}/getDiscounts)
	GetDiscounts(ctx echo.Context, orderId int, params GetDiscountsParams) error
	// Retrieve pdf document of an order
	// (GET /Order/{orderId}/getPdf)
	OrderGetPdf(ctx echo.Context, orderId int, params OrderGetPdfParams) error
	// Find order positions
	// (GET /Order/{orderId}/getPositions)
	GetOrderPositionsById(ctx echo.Context, orderId int, params GetOrderPositionsByIdParams) error
	// Find related objects
	// (GET /Order/{orderId}/getRelatedObjects)
	GetRelatedObjects(ctx echo.Context, orderId int, params GetRelatedObjectsParams) error
	// Mark order as sent
	// (PUT /Order/{orderId}/sendBy)
	OrderSendBy(ctx echo.Context, orderId int) error
	// Send order via email
	// (POST /Order/{orderId}/sendViaEmail)
	SendorderViaEMail(ctx echo.Context, orderId int) error
	// Retrieve order positions
	// (GET /OrderPos)
	GetOrderPositions(ctx echo.Context, params GetOrderPositionsParams) error
	// Deletes an order Position
	// (DELETE /OrderPos/{orderPosId})
	DeleteOrderPos(ctx echo.Context, orderPosId int) error
	// Find order position by ID
	// (GET /OrderPos/{orderPosId})
	GetOrderPositionById(ctx echo.Context, orderPosId int) error
	// Update an existing order position
	// (PUT /OrderPos/{orderPosId})
	UpdateOrderPosition(ctx echo.Context, orderPosId int) error
	// Retrieve parts
	// (GET /Part)
	GetParts(ctx echo.Context, params GetPartsParams) error
	// Create a new part
	// (POST /Part)
	CreatePart(ctx echo.Context) error
	// Find part by ID
	// (GET /Part/{partId})
	GetPartById(ctx echo.Context, partId int) error
	// Update an existing part
	// (PUT /Part/{partId})
	UpdatePart(ctx echo.Context, partId int) error
	// Get stock of a part
	// (GET /Part/{partId}/getStock)
	PartGetStock(ctx echo.Context, partId int) error
	// Get guidance by account number
	// (GET /ReceiptGuidance/forAccountNumber)
	ForAccountNumber(ctx echo.Context, params ForAccountNumberParams) error
	// Get all account guides
	// (GET /ReceiptGuidance/forAllAccounts)
	ForAllAccounts(ctx echo.Context) error
	// Get guidance for expense accounts
	// (GET /ReceiptGuidance/forExpense)
	ForExpense(ctx echo.Context) error
	// Get guidance for revenue accounts
	// (GET /ReceiptGuidance/forRevenue)
	ForRevenue(ctx echo.Context) error
	// Get guidance by Tax Rule
	// (GET /ReceiptGuidance/forTaxRule)
	ForTaxRule(ctx echo.Context, params ForTaxRuleParams) error
	// Export contact list
	// (GET /Report/contactlist)
	ReportContact(ctx echo.Context, params ReportContactParams) error
	// Export invoice list
	// (GET /Report/invoicelist)
	ReportInvoice(ctx echo.Context, params ReportInvoiceParams) error
	// Export order list
	// (GET /Report/orderlist)
	ReportOrder(ctx echo.Context, params ReportOrderParams) error
	// Export voucher list
	// (GET /Report/voucherlist)
	ReportVoucher(ctx echo.Context, params ReportVoucherParams) error
	// Update export config
	// (PUT /SevClient/{SevClientId}/updateExportConfig)
	UpdateExportConfig(ctx echo.Context, sevClientId float32) error
	// Retrieve tags
	// (GET /Tag)
	GetTags(ctx echo.Context, params GetTagsParams) error
	// Create a new tag
	// (POST /Tag/Factory/create)
	CreateTag(ctx echo.Context) error
	// Deletes a tag
	// (DELETE /Tag/{tagId})
	DeleteTag(ctx echo.Context, tagId int) error
	// Find tag by ID
	// (GET /Tag/{tagId})
	GetTagById(ctx echo.Context, tagId int) error
	// Update tag
	// (PUT /Tag/{tagId})
	UpdateTag(ctx echo.Context, tagId int) error
	// Retrieve tag relations
	// (GET /TagRelation)
	GetTagRelations(ctx echo.Context) error
	// Retrieve Placeholders
	// (GET /Textparser/fetchDictionaryEntriesByType)
	GetPlaceholder(ctx echo.Context, params GetPlaceholderParams) error
	// Retrieve bookkeeping system version
	// (GET /Tools/bookkeepingSystemVersion)
	BookkeepingSystemVersion(ctx echo.Context) error
	// Retrieve vouchers
	// (GET /Voucher)
	GetVouchers(ctx echo.Context, params GetVouchersParams) error
	// Create a new voucher
	// (POST /Voucher/Factory/saveVoucher)
	VoucherFactorySaveVoucher(ctx echo.Context) error
	// Upload voucher file
	// (POST /Voucher/Factory/uploadTempFile)
	VoucherUploadFile(ctx echo.Context) error
	// Find voucher by ID
	// (GET /Voucher/{voucherId})
	GetVoucherById(ctx echo.Context, voucherId int) error
	// Update an existing voucher
	// (PUT /Voucher/{voucherId})
	UpdateVoucher(ctx echo.Context, voucherId int) error
	// Book a voucher
	// (PUT /Voucher/{voucherId}/bookAmount)
	BookVoucher(ctx echo.Context, voucherId int) error
	// Enshrine
	// (PUT /Voucher/{voucherId}/enshrine)
	VoucherEnshrine(ctx echo.Context, voucherId int) error
	// Reset status to draft
	// (PUT /Voucher/{voucherId}/resetToDraft)
	VoucherResetToDraft(ctx echo.Context, voucherId int) error
	// Reset status to open
	// (PUT /Voucher/{voucherId}/resetToOpen)
	VoucherResetToOpen(ctx echo.Context, voucherId int) error
	// Retrieve voucher positions
	// (GET /VoucherPos)
	GetVoucherPositions(ctx echo.Context, params GetVoucherPositionsParams) error
}

ServerInterface represents all server handlers.

type ServerInterfaceWrapper

type ServerInterfaceWrapper struct {
	Handler ServerInterface
}

ServerInterfaceWrapper converts echo contexts to parameters.

func (*ServerInterfaceWrapper) BookCreditNote

func (w *ServerInterfaceWrapper) BookCreditNote(ctx echo.Context) error

BookCreditNote converts echo context to params.

func (*ServerInterfaceWrapper) BookInvoice

func (w *ServerInterfaceWrapper) BookInvoice(ctx echo.Context) error

BookInvoice converts echo context to params.

func (*ServerInterfaceWrapper) BookVoucher

func (w *ServerInterfaceWrapper) BookVoucher(ctx echo.Context) error

BookVoucher converts echo context to params.

func (*ServerInterfaceWrapper) BookkeepingSystemVersion

func (w *ServerInterfaceWrapper) BookkeepingSystemVersion(ctx echo.Context) error

BookkeepingSystemVersion converts echo context to params.

func (*ServerInterfaceWrapper) CancelInvoice

func (w *ServerInterfaceWrapper) CancelInvoice(ctx echo.Context) error

CancelInvoice converts echo context to params.

func (*ServerInterfaceWrapper) CheckAccountTransactionEnshrine

func (w *ServerInterfaceWrapper) CheckAccountTransactionEnshrine(ctx echo.Context) error

CheckAccountTransactionEnshrine converts echo context to params.

func (*ServerInterfaceWrapper) ContactAddressId

func (w *ServerInterfaceWrapper) ContactAddressId(ctx echo.Context) error

ContactAddressId converts echo context to params.

func (*ServerInterfaceWrapper) ContactCustomerNumberAvailabilityCheck

func (w *ServerInterfaceWrapper) ContactCustomerNumberAvailabilityCheck(ctx echo.Context) error

ContactCustomerNumberAvailabilityCheck converts echo context to params.

func (*ServerInterfaceWrapper) CreateAccountingContact

func (w *ServerInterfaceWrapper) CreateAccountingContact(ctx echo.Context) error

CreateAccountingContact converts echo context to params.

func (*ServerInterfaceWrapper) CreateCheckAccount

func (w *ServerInterfaceWrapper) CreateCheckAccount(ctx echo.Context) error

CreateCheckAccount converts echo context to params.

func (*ServerInterfaceWrapper) CreateClearingAccount

func (w *ServerInterfaceWrapper) CreateClearingAccount(ctx echo.Context) error

CreateClearingAccount converts echo context to params.

func (*ServerInterfaceWrapper) CreateCommunicationWay

func (w *ServerInterfaceWrapper) CreateCommunicationWay(ctx echo.Context) error

CreateCommunicationWay converts echo context to params.

func (*ServerInterfaceWrapper) CreateContact

func (w *ServerInterfaceWrapper) CreateContact(ctx echo.Context) error

CreateContact converts echo context to params.

func (*ServerInterfaceWrapper) CreateContactAddress

func (w *ServerInterfaceWrapper) CreateContactAddress(ctx echo.Context) error

CreateContactAddress converts echo context to params.

func (*ServerInterfaceWrapper) CreateContactField

func (w *ServerInterfaceWrapper) CreateContactField(ctx echo.Context) error

CreateContactField converts echo context to params.

func (*ServerInterfaceWrapper) CreateContactFieldSetting

func (w *ServerInterfaceWrapper) CreateContactFieldSetting(ctx echo.Context) error

CreateContactFieldSetting converts echo context to params.

func (*ServerInterfaceWrapper) CreateContractNoteFromOrder

func (w *ServerInterfaceWrapper) CreateContractNoteFromOrder(ctx echo.Context) error

CreateContractNoteFromOrder converts echo context to params.

func (*ServerInterfaceWrapper) CreateCreditNoteFromInvoice

func (w *ServerInterfaceWrapper) CreateCreditNoteFromInvoice(ctx echo.Context) error

CreateCreditNoteFromInvoice converts echo context to params.

func (*ServerInterfaceWrapper) CreateCreditNoteFromVoucher

func (w *ServerInterfaceWrapper) CreateCreditNoteFromVoucher(ctx echo.Context) error

CreateCreditNoteFromVoucher converts echo context to params.

func (*ServerInterfaceWrapper) CreateFileImportAccount

func (w *ServerInterfaceWrapper) CreateFileImportAccount(ctx echo.Context) error

CreateFileImportAccount converts echo context to params.

func (*ServerInterfaceWrapper) CreateInvoiceByFactory

func (w *ServerInterfaceWrapper) CreateInvoiceByFactory(ctx echo.Context) error

CreateInvoiceByFactory converts echo context to params.

func (*ServerInterfaceWrapper) CreateInvoiceFromOrder

func (w *ServerInterfaceWrapper) CreateInvoiceFromOrder(ctx echo.Context) error

CreateInvoiceFromOrder converts echo context to params.

func (*ServerInterfaceWrapper) CreateInvoiceReminder

func (w *ServerInterfaceWrapper) CreateInvoiceReminder(ctx echo.Context) error

CreateInvoiceReminder converts echo context to params.

func (*ServerInterfaceWrapper) CreateOrder

func (w *ServerInterfaceWrapper) CreateOrder(ctx echo.Context) error

CreateOrder converts echo context to params.

func (*ServerInterfaceWrapper) CreatePackingListFromOrder

func (w *ServerInterfaceWrapper) CreatePackingListFromOrder(ctx echo.Context) error

CreatePackingListFromOrder converts echo context to params.

func (*ServerInterfaceWrapper) CreatePart

func (w *ServerInterfaceWrapper) CreatePart(ctx echo.Context) error

CreatePart converts echo context to params.

func (*ServerInterfaceWrapper) CreateTag

func (w *ServerInterfaceWrapper) CreateTag(ctx echo.Context) error

CreateTag converts echo context to params.

func (*ServerInterfaceWrapper) CreateTransaction

func (w *ServerInterfaceWrapper) CreateTransaction(ctx echo.Context) error

CreateTransaction converts echo context to params.

func (*ServerInterfaceWrapper) CreatecreditNote

func (w *ServerInterfaceWrapper) CreatecreditNote(ctx echo.Context) error

CreatecreditNote converts echo context to params.

func (*ServerInterfaceWrapper) CreditNoteEnshrine

func (w *ServerInterfaceWrapper) CreditNoteEnshrine(ctx echo.Context) error

CreditNoteEnshrine converts echo context to params.

func (*ServerInterfaceWrapper) CreditNoteGetPdf

func (w *ServerInterfaceWrapper) CreditNoteGetPdf(ctx echo.Context) error

CreditNoteGetPdf converts echo context to params.

func (*ServerInterfaceWrapper) CreditNoteResetToDraft

func (w *ServerInterfaceWrapper) CreditNoteResetToDraft(ctx echo.Context) error

CreditNoteResetToDraft converts echo context to params.

func (*ServerInterfaceWrapper) CreditNoteResetToOpen

func (w *ServerInterfaceWrapper) CreditNoteResetToOpen(ctx echo.Context) error

CreditNoteResetToOpen converts echo context to params.

func (*ServerInterfaceWrapper) CreditNoteSendBy

func (w *ServerInterfaceWrapper) CreditNoteSendBy(ctx echo.Context) error

CreditNoteSendBy converts echo context to params.

func (*ServerInterfaceWrapper) DeleteAccountingContact

func (w *ServerInterfaceWrapper) DeleteAccountingContact(ctx echo.Context) error

DeleteAccountingContact converts echo context to params.

func (*ServerInterfaceWrapper) DeleteCheckAccount

func (w *ServerInterfaceWrapper) DeleteCheckAccount(ctx echo.Context) error

DeleteCheckAccount converts echo context to params.

func (*ServerInterfaceWrapper) DeleteCheckAccountTransaction

func (w *ServerInterfaceWrapper) DeleteCheckAccountTransaction(ctx echo.Context) error

DeleteCheckAccountTransaction converts echo context to params.

func (*ServerInterfaceWrapper) DeleteCommunicationWay

func (w *ServerInterfaceWrapper) DeleteCommunicationWay(ctx echo.Context) error

DeleteCommunicationWay converts echo context to params.

func (*ServerInterfaceWrapper) DeleteContact

func (w *ServerInterfaceWrapper) DeleteContact(ctx echo.Context) error

DeleteContact converts echo context to params.

func (*ServerInterfaceWrapper) DeleteContactAddress

func (w *ServerInterfaceWrapper) DeleteContactAddress(ctx echo.Context) error

DeleteContactAddress converts echo context to params.

func (*ServerInterfaceWrapper) DeleteContactCustomFieldId

func (w *ServerInterfaceWrapper) DeleteContactCustomFieldId(ctx echo.Context) error

DeleteContactCustomFieldId converts echo context to params.

func (*ServerInterfaceWrapper) DeleteContactFieldSetting

func (w *ServerInterfaceWrapper) DeleteContactFieldSetting(ctx echo.Context) error

DeleteContactFieldSetting converts echo context to params.

func (*ServerInterfaceWrapper) DeleteOrder

func (w *ServerInterfaceWrapper) DeleteOrder(ctx echo.Context) error

DeleteOrder converts echo context to params.

func (*ServerInterfaceWrapper) DeleteOrderPos

func (w *ServerInterfaceWrapper) DeleteOrderPos(ctx echo.Context) error

DeleteOrderPos converts echo context to params.

func (*ServerInterfaceWrapper) DeleteTag

func (w *ServerInterfaceWrapper) DeleteTag(ctx echo.Context) error

DeleteTag converts echo context to params.

func (*ServerInterfaceWrapper) DeletecreditNote

func (w *ServerInterfaceWrapper) DeletecreditNote(ctx echo.Context) error

DeletecreditNote converts echo context to params.

func (*ServerInterfaceWrapper) ExportContact

func (w *ServerInterfaceWrapper) ExportContact(ctx echo.Context) error

ExportContact converts echo context to params.

func (*ServerInterfaceWrapper) ExportCreditNote

func (w *ServerInterfaceWrapper) ExportCreditNote(ctx echo.Context) error

ExportCreditNote converts echo context to params.

func (*ServerInterfaceWrapper) ExportDatev

func (w *ServerInterfaceWrapper) ExportDatev(ctx echo.Context) error

ExportDatev converts echo context to params.

func (*ServerInterfaceWrapper) ExportInvoice

func (w *ServerInterfaceWrapper) ExportInvoice(ctx echo.Context) error

ExportInvoice converts echo context to params.

func (*ServerInterfaceWrapper) ExportInvoiceZip

func (w *ServerInterfaceWrapper) ExportInvoiceZip(ctx echo.Context) error

ExportInvoiceZip converts echo context to params.

func (*ServerInterfaceWrapper) ExportTransactions

func (w *ServerInterfaceWrapper) ExportTransactions(ctx echo.Context) error

ExportTransactions converts echo context to params.

func (*ServerInterfaceWrapper) ExportVoucher

func (w *ServerInterfaceWrapper) ExportVoucher(ctx echo.Context) error

ExportVoucher converts echo context to params.

func (*ServerInterfaceWrapper) ExportVoucherZip

func (w *ServerInterfaceWrapper) ExportVoucherZip(ctx echo.Context) error

ExportVoucherZip converts echo context to params.

func (*ServerInterfaceWrapper) FindContactsByCustomFieldValue

func (w *ServerInterfaceWrapper) FindContactsByCustomFieldValue(ctx echo.Context) error

FindContactsByCustomFieldValue converts echo context to params.

func (*ServerInterfaceWrapper) ForAccountNumber

func (w *ServerInterfaceWrapper) ForAccountNumber(ctx echo.Context) error

ForAccountNumber converts echo context to params.

func (*ServerInterfaceWrapper) ForAllAccounts

func (w *ServerInterfaceWrapper) ForAllAccounts(ctx echo.Context) error

ForAllAccounts converts echo context to params.

func (*ServerInterfaceWrapper) ForExpense

func (w *ServerInterfaceWrapper) ForExpense(ctx echo.Context) error

ForExpense converts echo context to params.

func (*ServerInterfaceWrapper) ForRevenue

func (w *ServerInterfaceWrapper) ForRevenue(ctx echo.Context) error

ForRevenue converts echo context to params.

func (*ServerInterfaceWrapper) ForTaxRule

func (w *ServerInterfaceWrapper) ForTaxRule(ctx echo.Context) error

ForTaxRule converts echo context to params.

func (*ServerInterfaceWrapper) GetAccountingContact

func (w *ServerInterfaceWrapper) GetAccountingContact(ctx echo.Context) error

GetAccountingContact converts echo context to params.

func (*ServerInterfaceWrapper) GetAccountingContactById

func (w *ServerInterfaceWrapper) GetAccountingContactById(ctx echo.Context) error

GetAccountingContactById converts echo context to params.

func (*ServerInterfaceWrapper) GetBalanceAtDate

func (w *ServerInterfaceWrapper) GetBalanceAtDate(ctx echo.Context) error

GetBalanceAtDate converts echo context to params.

func (*ServerInterfaceWrapper) GetCheckAccountById

func (w *ServerInterfaceWrapper) GetCheckAccountById(ctx echo.Context) error

GetCheckAccountById converts echo context to params.

func (*ServerInterfaceWrapper) GetCheckAccountTransactionById

func (w *ServerInterfaceWrapper) GetCheckAccountTransactionById(ctx echo.Context) error

GetCheckAccountTransactionById converts echo context to params.

func (*ServerInterfaceWrapper) GetCheckAccounts

func (w *ServerInterfaceWrapper) GetCheckAccounts(ctx echo.Context) error

GetCheckAccounts converts echo context to params.

func (*ServerInterfaceWrapper) GetCommunicationWayById

func (w *ServerInterfaceWrapper) GetCommunicationWayById(ctx echo.Context) error

GetCommunicationWayById converts echo context to params.

func (*ServerInterfaceWrapper) GetCommunicationWayKeys

func (w *ServerInterfaceWrapper) GetCommunicationWayKeys(ctx echo.Context) error

GetCommunicationWayKeys converts echo context to params.

func (*ServerInterfaceWrapper) GetCommunicationWays

func (w *ServerInterfaceWrapper) GetCommunicationWays(ctx echo.Context) error

GetCommunicationWays converts echo context to params.

func (*ServerInterfaceWrapper) GetContactAddresses

func (w *ServerInterfaceWrapper) GetContactAddresses(ctx echo.Context) error

GetContactAddresses converts echo context to params.

func (*ServerInterfaceWrapper) GetContactById

func (w *ServerInterfaceWrapper) GetContactById(ctx echo.Context) error

GetContactById converts echo context to params.

func (*ServerInterfaceWrapper) GetContactFieldSettingById

func (w *ServerInterfaceWrapper) GetContactFieldSettingById(ctx echo.Context) error

GetContactFieldSettingById converts echo context to params.

func (*ServerInterfaceWrapper) GetContactFieldSettings

func (w *ServerInterfaceWrapper) GetContactFieldSettings(ctx echo.Context) error

GetContactFieldSettings converts echo context to params.

func (*ServerInterfaceWrapper) GetContactFields

func (w *ServerInterfaceWrapper) GetContactFields(ctx echo.Context) error

GetContactFields converts echo context to params.

func (*ServerInterfaceWrapper) GetContactFieldsById

func (w *ServerInterfaceWrapper) GetContactFieldsById(ctx echo.Context) error

GetContactFieldsById converts echo context to params.

func (*ServerInterfaceWrapper) GetContactTabsItemCountById

func (w *ServerInterfaceWrapper) GetContactTabsItemCountById(ctx echo.Context) error

GetContactTabsItemCountById converts echo context to params.

func (*ServerInterfaceWrapper) GetContacts

func (w *ServerInterfaceWrapper) GetContacts(ctx echo.Context) error

GetContacts converts echo context to params.

func (*ServerInterfaceWrapper) GetCreditNotes

func (w *ServerInterfaceWrapper) GetCreditNotes(ctx echo.Context) error

GetCreditNotes converts echo context to params.

func (*ServerInterfaceWrapper) GetDiscounts

func (w *ServerInterfaceWrapper) GetDiscounts(ctx echo.Context) error

GetDiscounts converts echo context to params.

func (*ServerInterfaceWrapper) GetInvoiceById

func (w *ServerInterfaceWrapper) GetInvoiceById(ctx echo.Context) error

GetInvoiceById converts echo context to params.

func (*ServerInterfaceWrapper) GetInvoicePos

func (w *ServerInterfaceWrapper) GetInvoicePos(ctx echo.Context) error

GetInvoicePos converts echo context to params.

func (*ServerInterfaceWrapper) GetInvoicePositionsById

func (w *ServerInterfaceWrapper) GetInvoicePositionsById(ctx echo.Context) error

GetInvoicePositionsById converts echo context to params.

func (*ServerInterfaceWrapper) GetInvoices

func (w *ServerInterfaceWrapper) GetInvoices(ctx echo.Context) error

GetInvoices converts echo context to params.

func (*ServerInterfaceWrapper) GetIsInvoicePartiallyPaid

func (w *ServerInterfaceWrapper) GetIsInvoicePartiallyPaid(ctx echo.Context) error

GetIsInvoicePartiallyPaid converts echo context to params.

func (*ServerInterfaceWrapper) GetLetterpapersWithThumb

func (w *ServerInterfaceWrapper) GetLetterpapersWithThumb(ctx echo.Context) error

GetLetterpapersWithThumb converts echo context to params.

func (*ServerInterfaceWrapper) GetNextCustomerNumber

func (w *ServerInterfaceWrapper) GetNextCustomerNumber(ctx echo.Context) error

GetNextCustomerNumber converts echo context to params.

func (*ServerInterfaceWrapper) GetOrderById

func (w *ServerInterfaceWrapper) GetOrderById(ctx echo.Context) error

GetOrderById converts echo context to params.

func (*ServerInterfaceWrapper) GetOrderPositionById

func (w *ServerInterfaceWrapper) GetOrderPositionById(ctx echo.Context) error

GetOrderPositionById converts echo context to params.

func (*ServerInterfaceWrapper) GetOrderPositions

func (w *ServerInterfaceWrapper) GetOrderPositions(ctx echo.Context) error

GetOrderPositions converts echo context to params.

func (*ServerInterfaceWrapper) GetOrderPositionsById

func (w *ServerInterfaceWrapper) GetOrderPositionsById(ctx echo.Context) error

GetOrderPositionsById converts echo context to params.

func (*ServerInterfaceWrapper) GetOrders

func (w *ServerInterfaceWrapper) GetOrders(ctx echo.Context) error

GetOrders converts echo context to params.

func (*ServerInterfaceWrapper) GetPartById

func (w *ServerInterfaceWrapper) GetPartById(ctx echo.Context) error

GetPartById converts echo context to params.

func (*ServerInterfaceWrapper) GetParts

func (w *ServerInterfaceWrapper) GetParts(ctx echo.Context) error

GetParts converts echo context to params.

func (*ServerInterfaceWrapper) GetPlaceholder

func (w *ServerInterfaceWrapper) GetPlaceholder(ctx echo.Context) error

GetPlaceholder converts echo context to params.

func (*ServerInterfaceWrapper) GetReferenceCount

func (w *ServerInterfaceWrapper) GetReferenceCount(ctx echo.Context) error

GetReferenceCount converts echo context to params.

func (*ServerInterfaceWrapper) GetRelatedObjects

func (w *ServerInterfaceWrapper) GetRelatedObjects(ctx echo.Context) error

GetRelatedObjects converts echo context to params.

func (*ServerInterfaceWrapper) GetTagById

func (w *ServerInterfaceWrapper) GetTagById(ctx echo.Context) error

GetTagById converts echo context to params.

func (*ServerInterfaceWrapper) GetTagRelations

func (w *ServerInterfaceWrapper) GetTagRelations(ctx echo.Context) error

GetTagRelations converts echo context to params.

func (*ServerInterfaceWrapper) GetTags

func (w *ServerInterfaceWrapper) GetTags(ctx echo.Context) error

GetTags converts echo context to params.

func (*ServerInterfaceWrapper) GetTemplates

func (w *ServerInterfaceWrapper) GetTemplates(ctx echo.Context) error

GetTemplates converts echo context to params.

func (*ServerInterfaceWrapper) GetTransactions

func (w *ServerInterfaceWrapper) GetTransactions(ctx echo.Context) error

GetTransactions converts echo context to params.

func (*ServerInterfaceWrapper) GetVoucherById

func (w *ServerInterfaceWrapper) GetVoucherById(ctx echo.Context) error

GetVoucherById converts echo context to params.

func (*ServerInterfaceWrapper) GetVoucherPositions

func (w *ServerInterfaceWrapper) GetVoucherPositions(ctx echo.Context) error

GetVoucherPositions converts echo context to params.

func (*ServerInterfaceWrapper) GetVouchers

func (w *ServerInterfaceWrapper) GetVouchers(ctx echo.Context) error

GetVouchers converts echo context to params.

func (*ServerInterfaceWrapper) GetcreditNoteById

func (w *ServerInterfaceWrapper) GetcreditNoteById(ctx echo.Context) error

GetcreditNoteById converts echo context to params.

func (*ServerInterfaceWrapper) GetcreditNotePositions

func (w *ServerInterfaceWrapper) GetcreditNotePositions(ctx echo.Context) error

GetcreditNotePositions converts echo context to params.

func (*ServerInterfaceWrapper) InvoiceEnshrine

func (w *ServerInterfaceWrapper) InvoiceEnshrine(ctx echo.Context) error

InvoiceEnshrine converts echo context to params.

func (*ServerInterfaceWrapper) InvoiceGetPdf

func (w *ServerInterfaceWrapper) InvoiceGetPdf(ctx echo.Context) error

InvoiceGetPdf converts echo context to params.

func (*ServerInterfaceWrapper) InvoiceGetXml

func (w *ServerInterfaceWrapper) InvoiceGetXml(ctx echo.Context) error

InvoiceGetXml converts echo context to params.

func (*ServerInterfaceWrapper) InvoiceRender

func (w *ServerInterfaceWrapper) InvoiceRender(ctx echo.Context) error

InvoiceRender converts echo context to params.

func (*ServerInterfaceWrapper) InvoiceResetToDraft

func (w *ServerInterfaceWrapper) InvoiceResetToDraft(ctx echo.Context) error

InvoiceResetToDraft converts echo context to params.

func (*ServerInterfaceWrapper) InvoiceResetToOpen

func (w *ServerInterfaceWrapper) InvoiceResetToOpen(ctx echo.Context) error

InvoiceResetToOpen converts echo context to params.

func (*ServerInterfaceWrapper) InvoiceSendBy

func (w *ServerInterfaceWrapper) InvoiceSendBy(ctx echo.Context) error

InvoiceSendBy converts echo context to params.

func (*ServerInterfaceWrapper) OrderGetPdf

func (w *ServerInterfaceWrapper) OrderGetPdf(ctx echo.Context) error

OrderGetPdf converts echo context to params.

func (*ServerInterfaceWrapper) OrderSendBy

func (w *ServerInterfaceWrapper) OrderSendBy(ctx echo.Context) error

OrderSendBy converts echo context to params.

func (*ServerInterfaceWrapper) PartGetStock

func (w *ServerInterfaceWrapper) PartGetStock(ctx echo.Context) error

PartGetStock converts echo context to params.

func (*ServerInterfaceWrapper) ReportContact

func (w *ServerInterfaceWrapper) ReportContact(ctx echo.Context) error

ReportContact converts echo context to params.

func (*ServerInterfaceWrapper) ReportInvoice

func (w *ServerInterfaceWrapper) ReportInvoice(ctx echo.Context) error

ReportInvoice converts echo context to params.

func (*ServerInterfaceWrapper) ReportOrder

func (w *ServerInterfaceWrapper) ReportOrder(ctx echo.Context) error

ReportOrder converts echo context to params.

func (*ServerInterfaceWrapper) ReportVoucher

func (w *ServerInterfaceWrapper) ReportVoucher(ctx echo.Context) error

ReportVoucher converts echo context to params.

func (*ServerInterfaceWrapper) SendCreditNoteByPrinting

func (w *ServerInterfaceWrapper) SendCreditNoteByPrinting(ctx echo.Context) error

SendCreditNoteByPrinting converts echo context to params.

func (*ServerInterfaceWrapper) SendCreditNoteViaEMail

func (w *ServerInterfaceWrapper) SendCreditNoteViaEMail(ctx echo.Context) error

SendCreditNoteViaEMail converts echo context to params.

func (*ServerInterfaceWrapper) SendInvoiceViaEMail

func (w *ServerInterfaceWrapper) SendInvoiceViaEMail(ctx echo.Context) error

SendInvoiceViaEMail converts echo context to params.

func (*ServerInterfaceWrapper) SendorderViaEMail

func (w *ServerInterfaceWrapper) SendorderViaEMail(ctx echo.Context) error

SendorderViaEMail converts echo context to params.

func (*ServerInterfaceWrapper) UpdateAccountingContact

func (w *ServerInterfaceWrapper) UpdateAccountingContact(ctx echo.Context) error

UpdateAccountingContact converts echo context to params.

func (*ServerInterfaceWrapper) UpdateCheckAccount

func (w *ServerInterfaceWrapper) UpdateCheckAccount(ctx echo.Context) error

UpdateCheckAccount converts echo context to params.

func (*ServerInterfaceWrapper) UpdateCheckAccountTransaction

func (w *ServerInterfaceWrapper) UpdateCheckAccountTransaction(ctx echo.Context) error

UpdateCheckAccountTransaction converts echo context to params.

func (*ServerInterfaceWrapper) UpdateCommunicationWay

func (w *ServerInterfaceWrapper) UpdateCommunicationWay(ctx echo.Context) error

UpdateCommunicationWay converts echo context to params.

func (*ServerInterfaceWrapper) UpdateContact

func (w *ServerInterfaceWrapper) UpdateContact(ctx echo.Context) error

UpdateContact converts echo context to params.

func (*ServerInterfaceWrapper) UpdateContactAddress

func (w *ServerInterfaceWrapper) UpdateContactAddress(ctx echo.Context) error

UpdateContactAddress converts echo context to params.

func (*ServerInterfaceWrapper) UpdateContactFieldSetting

func (w *ServerInterfaceWrapper) UpdateContactFieldSetting(ctx echo.Context) error

UpdateContactFieldSetting converts echo context to params.

func (*ServerInterfaceWrapper) UpdateContactfield

func (w *ServerInterfaceWrapper) UpdateContactfield(ctx echo.Context) error

UpdateContactfield converts echo context to params.

func (*ServerInterfaceWrapper) UpdateCreditNoteTemplate

func (w *ServerInterfaceWrapper) UpdateCreditNoteTemplate(ctx echo.Context) error

UpdateCreditNoteTemplate converts echo context to params.

func (*ServerInterfaceWrapper) UpdateExportConfig

func (w *ServerInterfaceWrapper) UpdateExportConfig(ctx echo.Context) error

UpdateExportConfig converts echo context to params.

func (*ServerInterfaceWrapper) UpdateInvoiceTemplate

func (w *ServerInterfaceWrapper) UpdateInvoiceTemplate(ctx echo.Context) error

UpdateInvoiceTemplate converts echo context to params.

func (*ServerInterfaceWrapper) UpdateOrder

func (w *ServerInterfaceWrapper) UpdateOrder(ctx echo.Context) error

UpdateOrder converts echo context to params.

func (*ServerInterfaceWrapper) UpdateOrderPosition

func (w *ServerInterfaceWrapper) UpdateOrderPosition(ctx echo.Context) error

UpdateOrderPosition converts echo context to params.

func (*ServerInterfaceWrapper) UpdateOrderTemplate

func (w *ServerInterfaceWrapper) UpdateOrderTemplate(ctx echo.Context) error

UpdateOrderTemplate converts echo context to params.

func (*ServerInterfaceWrapper) UpdatePart

func (w *ServerInterfaceWrapper) UpdatePart(ctx echo.Context) error

UpdatePart converts echo context to params.

func (*ServerInterfaceWrapper) UpdateTag

func (w *ServerInterfaceWrapper) UpdateTag(ctx echo.Context) error

UpdateTag converts echo context to params.

func (*ServerInterfaceWrapper) UpdateVoucher

func (w *ServerInterfaceWrapper) UpdateVoucher(ctx echo.Context) error

UpdateVoucher converts echo context to params.

func (*ServerInterfaceWrapper) UpdatecreditNote

func (w *ServerInterfaceWrapper) UpdatecreditNote(ctx echo.Context) error

UpdatecreditNote converts echo context to params.

func (*ServerInterfaceWrapper) VoucherEnshrine

func (w *ServerInterfaceWrapper) VoucherEnshrine(ctx echo.Context) error

VoucherEnshrine converts echo context to params.

func (*ServerInterfaceWrapper) VoucherFactorySaveVoucher

func (w *ServerInterfaceWrapper) VoucherFactorySaveVoucher(ctx echo.Context) error

VoucherFactorySaveVoucher converts echo context to params.

func (*ServerInterfaceWrapper) VoucherResetToDraft

func (w *ServerInterfaceWrapper) VoucherResetToDraft(ctx echo.Context) error

VoucherResetToDraft converts echo context to params.

func (*ServerInterfaceWrapper) VoucherResetToOpen

func (w *ServerInterfaceWrapper) VoucherResetToOpen(ctx echo.Context) error

VoucherResetToOpen converts echo context to params.

func (*ServerInterfaceWrapper) VoucherUploadFile

func (w *ServerInterfaceWrapper) VoucherUploadFile(ctx echo.Context) error

VoucherUploadFile converts echo context to params.

Jump to

Keyboard shortcuts

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