odoo

package module
v1.12.1 Latest Latest
Warning

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

Go to latest
Published: Nov 27, 2023 License: Apache-2.0 Imports: 7 Imported by: 2

README

go-odoo

An Odoo API client enabling Go programs to interact with Odoo in a simple and uniform way.

GitHub license GoDoc Go Report Card GitHub issues

Usage

Generate your models

Define the environment variables to be able to connect to your odoo instance :

(Don't set ODOO_MODELS if you want all your models to be generated)

export ODOO_ADMIN=admin
export ODOO_PASSWORD=password
export ODOO_DATABASE=odoo
export ODOO_URL=http://localhost:8069
export ODOO_MODELS="crm.lead"

ODOO_REPO_PATH is the path where the repository will be downloaded (by default its GOPATH):

export ODOO_REPO_PATH=$(echo $GOPATH | awk -F ':' '{ print $1 }')/src/bitbucket.org/long174/go-odoo

Download library and generate models :

go get bitbucket.org/long174/go-odoo
cd $ODOO_REPO_PATH
ls | grep -v "conversion.go\|generator\|go.mod\|go-odoo-generator\|go.sum\|ir_model_fields.go\|ir_model.go\|LICENSE\|odoo.go\|README.md\|types.go\|version.go" // keep only go-odoo core files
go generate

That's it ! Your models have been generated !

Current generated models
Core models

Core models are ir_model.go and ir_model_fields.go since there are used to generate models.

It is highly recommanded to not remove them, since you would not be able to generate models again.

Custom skilld-labs models

All others models (not core one) are specific to skilld-labs usage. They use our own odoo instance which is version 11. (note that models structure changed between odoo major versions).

If you're ok to work with those models, you can use this library instance, if not you should fork the repository and generate you own models by following steps above.

Enjoy coding!

(All exemples on this README are based on model crm.lead)

package main

import (
	odoo "bitbucket.org/long174/go-odoo"
)

func main() {
	c, err := odoo.NewClient(&odoo.ClientConfig{
		Admin:    "admin",
		Password: "password",
		Database: "odoo",
		URL:      "http://localhost:8069",
	})
	if err != nil {
		log.Fatal(err)
	}
	crm := &odoo.CrmLead{
		Name: odoo.NewString("my first opportunity"),
	}
	if id, err := c.CreateCrmLead(crm); err != nil {
		log.Fatal(err)
	} else {
		fmt.Printf("the id of the new crm.lead is %d", id)
	}
}

Models

Generated models contains high level functions to interact with models in an easy and golang way. It covers the most common usage and contains for each models those functions :

Create
func (c *Client) CreateCrmLead(cl *CrmLead) (int64, error) {}
Update
func (c *Client) UpdateCrmLead(cl *CrmLead) error {}
func (c *Client) UpdateCrmLeads(ids []int64, cl *CrmLead) error {}
Delete
func (c *Client) DeleteCrmLead(id int64) error {}
func (c *Client) DeleteCrmLeads(ids []int64) error {}
Get
func (c *Client) GetCrmLead(id int64) (*CrmLead, error) {}
func (c *Client) GetCrmLeads(ids []int64) (*CrmLeads, error) {}
Find

Find is powerful and allow you to query a model and filter results. Criteria and Options

func (c *Client) FindCrmLead(criteria *Criteria) (*CrmLead, error) {}
func (c *Client) FindCrmLeads(criteria *Criteria, options *Options) (*CrmLeads, error) {}
Conversion

Generated models can be converted to Many2One easily.

func (cl *CrmLead) Many2One() *Many2One {}

Types

The library contains custom types to improve the usability :

Basic types
func NewString(v string) *String {}
func (s *String) Get() string {}

func NewInt(v int64) *Int {}
func (i *Int) Get() int64 {}

func NewBool(v bool) *Bool {}
func (b *Bool) Get() bool {}

func NewSelection(v interface{}) *Selection {}
func (s *Selection) Get() (interface{}) {}

func NewTime(v time.Time) *Time {}
func (t *Time) Get() time.Time {}

func NewFloat(v float64) *Float {}
func (f *Float) Get() float64 {}
Relational types
func NewMany2One(id int64, name string) *Many2One {}
func (m *Many2One) Get() int64 {}

func NewRelation() *Relation {}
func (r *Relation) Get() []int64 {}

one2many and many2many are represented by the Relation type and allow you to execute special actions as defined here.

Criteria and Options

Criteria is a set of criterion and allow you to query models. More informations

Options allow you to filter results.

cls, err := c.FindCrmLeads(odoo.NewCriteria().Add("user_id.name", "=", "John Doe"), odoo.NewOptions().Limit(2))

Low level functions

All high level functions are based on basic odoo webservices functions.

These functions give you more flexibility but less usability. We recommand you to use models functions (high level).

Here are available low level functions :

func (c *Client) Create(model string, values interface{}) (int64, error) {}
func (c *Client) Update(model string, ids []int64, values interface{}) error {}
func (c *Client) Delete(model string, ids []int64) error {}
func (c *Client) SearchRead(model string, criteria *Criteria, options *Options, elem interface{}) error {}
func (c *Client) Read(model string, ids []int64, options *Options, elem interface{}) error {}
func (c *Client) Count(model string, criteria *Criteria, options *Options) (int64, error) {}
func (c *Client) Search(model string, criteria *Criteria, options *Options) ([]int64, error) {}
func (c *Client) FieldsGet(model string, options *Options) (map[string]interface{}, error) {}
func (c *Client) ExecuteKw(method, model string, args []interface{}, options *Options) (interface{}, error) {}

Todo

  • Tests
  • Modular template

Issues

Contributors

Antoine Huret (https://github.com/ahuret)

Jean-Baptiste Guerraz (https://github.com/jbguerraz)

Documentation

Overview

Package odoo contains client code of library

Index

Constants

View Source
const AccountAccountModel = "account.account"

AccountAccountModel is the odoo model name.

View Source
const AccountAccountTagModel = "account.account.tag"

AccountAccountTagModel is the odoo model name.

View Source
const AccountAccountTemplateModel = "account.account.template"

AccountAccountTemplateModel is the odoo model name.

View Source
const AccountAccountTypeModel = "account.account.type"

AccountAccountTypeModel is the odoo model name.

View Source
const AccountAccrualAccountingWizardModel = "account.accrual.accounting.wizard"

AccountAccrualAccountingWizardModel is the odoo model name.

View Source
const AccountAnalyticAccountModel = "account.analytic.account"

AccountAnalyticAccountModel is the odoo model name.

View Source
const AccountAnalyticDistributionModel = "account.analytic.distribution"

AccountAnalyticDistributionModel is the odoo model name.

View Source
const AccountAnalyticGroupModel = "account.analytic.group"

AccountAnalyticGroupModel is the odoo model name.

View Source
const AccountAnalyticLineModel = "account.analytic.line"

AccountAnalyticLineModel is the odoo model name.

View Source
const AccountAnalyticTagModel = "account.analytic.tag"

AccountAnalyticTagModel is the odoo model name.

View Source
const AccountBankStatementCashboxModel = "account.bank.statement.cashbox"

AccountBankStatementCashboxModel is the odoo model name.

View Source
const AccountBankStatementClosebalanceModel = "account.bank.statement.closebalance"

AccountBankStatementClosebalanceModel is the odoo model name.

View Source
const AccountBankStatementImportJournalCreationModel = "account.bank.statement.import.journal.creation"

AccountBankStatementImportJournalCreationModel is the odoo model name.

View Source
const AccountBankStatementImportModel = "account.bank.statement.import"

AccountBankStatementImportModel is the odoo model name.

View Source
const AccountBankStatementLineModel = "account.bank.statement.line"

AccountBankStatementLineModel is the odoo model name.

View Source
const AccountBankStatementModel = "account.bank.statement"

AccountBankStatementModel is the odoo model name.

View Source
const AccountCashRoundingModel = "account.cash.rounding"

AccountCashRoundingModel is the odoo model name.

View Source
const AccountCashboxLineModel = "account.cashbox.line"

AccountCashboxLineModel is the odoo model name.

View Source
const AccountChartTemplateModel = "account.chart.template"

AccountChartTemplateModel is the odoo model name.

View Source
const AccountCommonJournalReportModel = "account.common.journal.report"

AccountCommonJournalReportModel is the odoo model name.

View Source
const AccountCommonReportModel = "account.common.report"

AccountCommonReportModel is the odoo model name.

View Source
const AccountFinancialYearOpModel = "account.financial.year.op"

AccountFinancialYearOpModel is the odoo model name.

View Source
const AccountFiscalPositionAccountModel = "account.fiscal.position.account"

AccountFiscalPositionAccountModel is the odoo model name.

View Source
const AccountFiscalPositionAccountTemplateModel = "account.fiscal.position.account.template"

AccountFiscalPositionAccountTemplateModel is the odoo model name.

View Source
const AccountFiscalPositionModel = "account.fiscal.position"

AccountFiscalPositionModel is the odoo model name.

View Source
const AccountFiscalPositionTaxModel = "account.fiscal.position.tax"

AccountFiscalPositionTaxModel is the odoo model name.

View Source
const AccountFiscalPositionTaxTemplateModel = "account.fiscal.position.tax.template"

AccountFiscalPositionTaxTemplateModel is the odoo model name.

View Source
const AccountFiscalPositionTemplateModel = "account.fiscal.position.template"

AccountFiscalPositionTemplateModel is the odoo model name.

View Source
const AccountFiscalYearModel = "account.fiscal.year"

AccountFiscalYearModel is the odoo model name.

View Source
const AccountFullReconcileModel = "account.full.reconcile"

AccountFullReconcileModel is the odoo model name.

View Source
const AccountGroupModel = "account.group"

AccountGroupModel is the odoo model name.

View Source
const AccountIncotermsModel = "account.incoterms"

AccountIncotermsModel is the odoo model name.

View Source
const AccountInvoiceReportModel = "account.invoice.report"

AccountInvoiceReportModel is the odoo model name.

View Source
const AccountInvoiceSendModel = "account.invoice.send"

AccountInvoiceSendModel is the odoo model name.

View Source
const AccountJournalGroupModel = "account.journal.group"

AccountJournalGroupModel is the odoo model name.

View Source
const AccountJournalModel = "account.journal"

AccountJournalModel is the odoo model name.

View Source
const AccountMoveLineModel = "account.move.line"

AccountMoveLineModel is the odoo model name.

View Source
const AccountMoveModel = "account.move"

AccountMoveModel is the odoo model name.

View Source
const AccountMoveReversalModel = "account.move.reversal"

AccountMoveReversalModel is the odoo model name.

View Source
const AccountPartialReconcileModel = "account.partial.reconcile"

AccountPartialReconcileModel is the odoo model name.

View Source
const AccountPaymentMethodModel = "account.payment.method"

AccountPaymentMethodModel is the odoo model name.

View Source
const AccountPaymentModel = "account.payment"

AccountPaymentModel is the odoo model name.

View Source
const AccountPaymentRegisterModel = "account.payment.register"

AccountPaymentRegisterModel is the odoo model name.

View Source
const AccountPaymentTermLineModel = "account.payment.term.line"

AccountPaymentTermLineModel is the odoo model name.

View Source
const AccountPaymentTermModel = "account.payment.term"

AccountPaymentTermModel is the odoo model name.

View Source
const AccountPrintJournalModel = "account.print.journal"

AccountPrintJournalModel is the odoo model name.

View Source
const AccountReconcileModelModel = "account.reconcile.model"

AccountReconcileModelModel is the odoo model name.

View Source
const AccountReconcileModelTemplateModel = "account.reconcile.model.template"

AccountReconcileModelTemplateModel is the odoo model name.

View Source
const AccountReconciliationWidgetModel = "account.reconciliation.widget"

AccountReconciliationWidgetModel is the odoo model name.

View Source
const AccountRootModel = "account.root"

AccountRootModel is the odoo model name.

View Source
const AccountSetupBankManualConfigModel = "account.setup.bank.manual.config"

AccountSetupBankManualConfigModel is the odoo model name.

View Source
const AccountTaxGroupModel = "account.tax.group"

AccountTaxGroupModel is the odoo model name.

View Source
const AccountTaxModel = "account.tax"

AccountTaxModel is the odoo model name.

View Source
const AccountTaxRepartitionLineModel = "account.tax.repartition.line"

AccountTaxRepartitionLineModel is the odoo model name.

View Source
const AccountTaxRepartitionLineTemplateModel = "account.tax.repartition.line.template"

AccountTaxRepartitionLineTemplateModel is the odoo model name.

View Source
const AccountTaxReportLineModel = "account.tax.report.line"

AccountTaxReportLineModel is the odoo model name.

View Source
const AccountTaxTemplateModel = "account.tax.template"

AccountTaxTemplateModel is the odoo model name.

View Source
const AccountUnreconcileModel = "account.unreconcile"

AccountUnreconcileModel is the odoo model name.

View Source
const BarcodeNomenclatureModel = "barcode.nomenclature"

BarcodeNomenclatureModel is the odoo model name.

View Source
const BarcodeRuleModel = "barcode.rule"

BarcodeRuleModel is the odoo model name.

View Source
const BarcodesBarcodeEventsMixinModel = "barcodes.barcode_events_mixin"

BarcodesBarcodeEventsMixinModel is the odoo model name.

View Source
const BaseDocumentLayoutModel = "base.document.layout"

BaseDocumentLayoutModel is the odoo model name.

View Source
const BaseImportImportModel = "base_import.import"

BaseImportImportModel is the odoo model name.

View Source
const BaseImportMappingModel = "base_import.mapping"

BaseImportMappingModel is the odoo model name.

View Source
const BaseImportTestsModelsCharModel = "base_import.tests.models.char"

BaseImportTestsModelsCharModel is the odoo model name.

View Source
const BaseImportTestsModelsCharNoreadonlyModel = "base_import.tests.models.char.noreadonly"

BaseImportTestsModelsCharNoreadonlyModel is the odoo model name.

View Source
const BaseImportTestsModelsCharReadonlyModel = "base_import.tests.models.char.readonly"

BaseImportTestsModelsCharReadonlyModel is the odoo model name.

View Source
const BaseImportTestsModelsCharRequiredModel = "base_import.tests.models.char.required"

BaseImportTestsModelsCharRequiredModel is the odoo model name.

View Source
const BaseImportTestsModelsCharStatesModel = "base_import.tests.models.char.states"

BaseImportTestsModelsCharStatesModel is the odoo model name.

View Source
const BaseImportTestsModelsCharStillreadonlyModel = "base_import.tests.models.char.stillreadonly"

BaseImportTestsModelsCharStillreadonlyModel is the odoo model name.

View Source
const BaseImportTestsModelsComplexModel = "base_import.tests.models.complex"

BaseImportTestsModelsComplexModel is the odoo model name.

View Source
const BaseImportTestsModelsFloatModel = "base_import.tests.models.float"

BaseImportTestsModelsFloatModel is the odoo model name.

View Source
const BaseImportTestsModelsM2OModel = "base_import.tests.models.m2o"

BaseImportTestsModelsM2OModel is the odoo model name.

View Source
const BaseImportTestsModelsM2ORelatedModel = "base_import.tests.models.m2o.related"

BaseImportTestsModelsM2ORelatedModel is the odoo model name.

View Source
const BaseImportTestsModelsM2ORequiredModel = "base_import.tests.models.m2o.required"

BaseImportTestsModelsM2ORequiredModel is the odoo model name.

View Source
const BaseImportTestsModelsM2ORequiredRelatedModel = "base_import.tests.models.m2o.required.related"

BaseImportTestsModelsM2ORequiredRelatedModel is the odoo model name.

View Source
const BaseImportTestsModelsO2MChildModel = "base_import.tests.models.o2m.child"

BaseImportTestsModelsO2MChildModel is the odoo model name.

View Source
const BaseImportTestsModelsO2MModel = "base_import.tests.models.o2m"

BaseImportTestsModelsO2MModel is the odoo model name.

View Source
const BaseImportTestsModelsPreviewModel = "base_import.tests.models.preview"

BaseImportTestsModelsPreviewModel is the odoo model name.

View Source
const BaseLanguageExportModel = "base.language.export"

BaseLanguageExportModel is the odoo model name.

View Source
const BaseLanguageImportModel = "base.language.import"

BaseLanguageImportModel is the odoo model name.

View Source
const BaseLanguageInstallModel = "base.language.install"

BaseLanguageInstallModel is the odoo model name.

View Source
const BaseModel = "base"

BaseModel is the odoo model name.

View Source
const BaseModuleUninstallModel = "base.module.uninstall"

BaseModuleUninstallModel is the odoo model name.

View Source
const BaseModuleUpdateModel = "base.module.update"

BaseModuleUpdateModel is the odoo model name.

View Source
const BaseModuleUpgradeModel = "base.module.upgrade"

BaseModuleUpgradeModel is the odoo model name.

View Source
const BasePartnerMergeAutomaticWizardModel = "base.partner.merge.automatic.wizard"

BasePartnerMergeAutomaticWizardModel is the odoo model name.

View Source
const BasePartnerMergeLineModel = "base.partner.merge.line"

BasePartnerMergeLineModel is the odoo model name.

View Source
const BaseUpdateTranslationsModel = "base.update.translations"

BaseUpdateTranslationsModel is the odoo model name.

View Source
const BlogBlogModel = "blog.blog"

BlogBlogModel is the odoo model name.

View Source
const BlogPostModel = "blog.post"

BlogPostModel is the odoo model name.

View Source
const BlogTagCategoryModel = "blog.tag.category"

BlogTagCategoryModel is the odoo model name.

View Source
const BlogTagModel = "blog.tag"

BlogTagModel is the odoo model name.

View Source
const BoardBoardModel = "board.board"

BoardBoardModel is the odoo model name.

View Source
const BusBusModel = "bus.bus"

BusBusModel is the odoo model name.

View Source
const BusPresenceModel = "bus.presence"

BusPresenceModel is the odoo model name.

View Source
const CalendarAlarmManagerModel = "calendar.alarm_manager"

CalendarAlarmManagerModel is the odoo model name.

View Source
const CalendarAlarmModel = "calendar.alarm"

CalendarAlarmModel is the odoo model name.

View Source
const CalendarAttendeeModel = "calendar.attendee"

CalendarAttendeeModel is the odoo model name.

View Source
const CalendarContactsModel = "calendar.contacts"

CalendarContactsModel is the odoo model name.

View Source
const CalendarEventModel = "calendar.event"

CalendarEventModel is the odoo model name.

View Source
const CalendarEventTypeModel = "calendar.event.type"

CalendarEventTypeModel is the odoo model name.

View Source
const CashBoxOutModel = "cash.box.out"

CashBoxOutModel is the odoo model name.

View Source
const ChangePasswordUserModel = "change.password.user"

ChangePasswordUserModel is the odoo model name.

View Source
const ChangePasswordWizardModel = "change.password.wizard"

ChangePasswordWizardModel is the odoo model name.

View Source
const CmsArticleModel = "cms.article"

CmsArticleModel is the odoo model name.

View Source
const CrmActivityReportModel = "crm.activity.report"

CrmActivityReportModel is the odoo model name.

View Source
const CrmLead2OpportunityPartnerMassModel = "crm.lead2opportunity.partner.mass"

CrmLead2OpportunityPartnerMassModel is the odoo model name.

View Source
const CrmLead2OpportunityPartnerModel = "crm.lead2opportunity.partner"

CrmLead2OpportunityPartnerModel is the odoo model name.

View Source
const CrmLeadLostModel = "crm.lead.lost"

CrmLeadLostModel is the odoo model name.

View Source
const CrmLeadModel = "crm.lead"

CrmLeadModel is the odoo model name.

View Source
const CrmLeadScoringFrequencyFieldModel = "crm.lead.scoring.frequency.field"

CrmLeadScoringFrequencyFieldModel is the odoo model name.

View Source
const CrmLeadScoringFrequencyModel = "crm.lead.scoring.frequency"

CrmLeadScoringFrequencyModel is the odoo model name.

View Source
const CrmLeadTagModel = "crm.lead.tag"

CrmLeadTagModel is the odoo model name.

View Source
const CrmLostReasonModel = "crm.lost.reason"

CrmLostReasonModel is the odoo model name.

View Source
const CrmMergeOpportunityModel = "crm.merge.opportunity"

CrmMergeOpportunityModel is the odoo model name.

View Source
const CrmPartnerBindingModel = "crm.partner.binding"

CrmPartnerBindingModel is the odoo model name.

View Source
const CrmQuotationPartnerModel = "crm.quotation.partner"

CrmQuotationPartnerModel is the odoo model name.

View Source
const CrmStageModel = "crm.stage"

CrmStageModel is the odoo model name.

View Source
const CrmTeamModel = "crm.team"

CrmTeamModel is the odoo model name.

View Source
const DecimalPrecisionModel = "decimal.precision"

DecimalPrecisionModel is the odoo model name.

View Source
const DigestDigestModel = "digest.digest"

DigestDigestModel is the odoo model name.

View Source
const DigestTipModel = "digest.tip"

DigestTipModel is the odoo model name.

View Source
const EmailTemplatePreviewModel = "email_template.preview"

EmailTemplatePreviewModel is the odoo model name.

View Source
const EventConfirmModel = "event.confirm"

EventConfirmModel is the odoo model name.

View Source
const EventEventConfiguratorModel = "event.event.configurator"

EventEventConfiguratorModel is the odoo model name.

View Source
const EventEventModel = "event.event"

EventEventModel is the odoo model name.

View Source
const EventEventTicketModel = "event.event.ticket"

EventEventTicketModel is the odoo model name.

View Source
const EventMailModel = "event.mail"

EventMailModel is the odoo model name.

View Source
const EventMailRegistrationModel = "event.mail.registration"

EventMailRegistrationModel is the odoo model name.

View Source
const EventRegistrationModel = "event.registration"

EventRegistrationModel is the odoo model name.

View Source
const EventTypeMailModel = "event.type.mail"

EventTypeMailModel is the odoo model name.

View Source
const EventTypeModel = "event.type"

EventTypeModel is the odoo model name.

View Source
const FetchmailServerModel = "fetchmail.server"

FetchmailServerModel is the odoo model name.

View Source
const FormatAddressMixinModel = "format.address.mixin"

FormatAddressMixinModel is the odoo model name.

View Source
const GamificationBadgeModel = "gamification.badge"

GamificationBadgeModel is the odoo model name.

View Source
const GamificationBadgeUserModel = "gamification.badge.user"

GamificationBadgeUserModel is the odoo model name.

View Source
const GamificationBadgeUserWizardModel = "gamification.badge.user.wizard"

GamificationBadgeUserWizardModel is the odoo model name.

View Source
const GamificationChallengeLineModel = "gamification.challenge.line"

GamificationChallengeLineModel is the odoo model name.

View Source
const GamificationChallengeModel = "gamification.challenge"

GamificationChallengeModel is the odoo model name.

View Source
const GamificationGoalDefinitionModel = "gamification.goal.definition"

GamificationGoalDefinitionModel is the odoo model name.

View Source
const GamificationGoalModel = "gamification.goal"

GamificationGoalModel is the odoo model name.

View Source
const GamificationGoalWizardModel = "gamification.goal.wizard"

GamificationGoalWizardModel is the odoo model name.

View Source
const GamificationKarmaRankModel = "gamification.karma.rank"

GamificationKarmaRankModel is the odoo model name.

View Source
const HrApplicantCategoryModel = "hr.applicant.category"

HrApplicantCategoryModel is the odoo model name.

View Source
const HrApplicantModel = "hr.applicant"

HrApplicantModel is the odoo model name.

View Source
const HrAttendanceModel = "hr.attendance"

HrAttendanceModel is the odoo model name.

View Source
const HrContractModel = "hr.contract"

HrContractModel is the odoo model name.

View Source
const HrDepartmentModel = "hr.department"

HrDepartmentModel is the odoo model name.

View Source
const HrDepartureWizardModel = "hr.departure.wizard"

HrDepartureWizardModel is the odoo model name.

View Source
const HrEmployeeBaseModel = "hr.employee.base"

HrEmployeeBaseModel is the odoo model name.

View Source
const HrEmployeeCategoryModel = "hr.employee.category"

HrEmployeeCategoryModel is the odoo model name.

View Source
const HrEmployeeModel = "hr.employee"

HrEmployeeModel is the odoo model name.

View Source
const HrEmployeePublicModel = "hr.employee.public"

HrEmployeePublicModel is the odoo model name.

View Source
const HrExpenseModel = "hr.expense"

HrExpenseModel is the odoo model name.

View Source
const HrExpenseRefuseWizardModel = "hr.expense.refuse.wizard"

HrExpenseRefuseWizardModel is the odoo model name.

View Source
const HrExpenseSheetModel = "hr.expense.sheet"

HrExpenseSheetModel is the odoo model name.

View Source
const HrExpenseSheetRegisterPaymentWizardModel = "hr.expense.sheet.register.payment.wizard"

HrExpenseSheetRegisterPaymentWizardModel is the odoo model name.

View Source
const HrHolidaysSummaryEmployeeModel = "hr.holidays.summary.employee"

HrHolidaysSummaryEmployeeModel is the odoo model name.

View Source
const HrJobModel = "hr.job"

HrJobModel is the odoo model name.

View Source
const HrLeaveAllocationModel = "hr.leave.allocation"

HrLeaveAllocationModel is the odoo model name.

View Source
const HrLeaveModel = "hr.leave"

HrLeaveModel is the odoo model name.

View Source
const HrLeaveReportCalendarModel = "hr.leave.report.calendar"

HrLeaveReportCalendarModel is the odoo model name.

View Source
const HrLeaveReportModel = "hr.leave.report"

HrLeaveReportModel is the odoo model name.

View Source
const HrLeaveTypeModel = "hr.leave.type"

HrLeaveTypeModel is the odoo model name.

View Source
const HrPlanActivityTypeModel = "hr.plan.activity.type"

HrPlanActivityTypeModel is the odoo model name.

View Source
const HrPlanModel = "hr.plan"

HrPlanModel is the odoo model name.

View Source
const HrPlanWizardModel = "hr.plan.wizard"

HrPlanWizardModel is the odoo model name.

View Source
const HrRecruitmentDegreeModel = "hr.recruitment.degree"

HrRecruitmentDegreeModel is the odoo model name.

View Source
const HrRecruitmentSourceModel = "hr.recruitment.source"

HrRecruitmentSourceModel is the odoo model name.

View Source
const HrRecruitmentStageModel = "hr.recruitment.stage"

HrRecruitmentStageModel is the odoo model name.

View Source
const IapAccountModel = "iap.account"

IapAccountModel is the odoo model name.

View Source
const ImLivechatChannelModel = "im_livechat.channel"

ImLivechatChannelModel is the odoo model name.

View Source
const ImLivechatChannelRuleModel = "im_livechat.channel.rule"

ImLivechatChannelRuleModel is the odoo model name.

View Source
const ImLivechatReportChannelModel = "im_livechat.report.channel"

ImLivechatReportChannelModel is the odoo model name.

View Source
const ImLivechatReportOperatorModel = "im_livechat.report.operator"

ImLivechatReportOperatorModel is the odoo model name.

View Source
const ImageMixinModel = "image.mixin"

ImageMixinModel is the odoo model name.

View Source
const IrActionsActUrlModel = "ir.actions.act_url"

IrActionsActUrlModel is the odoo model name.

View Source
const IrActionsActWindowCloseModel = "ir.actions.act_window_close"

IrActionsActWindowCloseModel is the odoo model name.

View Source
const IrActionsActWindowModel = "ir.actions.act_window"

IrActionsActWindowModel is the odoo model name.

View Source
const IrActionsActWindowViewModel = "ir.actions.act_window.view"

IrActionsActWindowViewModel is the odoo model name.

View Source
const IrActionsActionsModel = "ir.actions.actions"

IrActionsActionsModel is the odoo model name.

View Source
const IrActionsClientModel = "ir.actions.client"

IrActionsClientModel is the odoo model name.

View Source
const IrActionsReportModel = "ir.actions.report"

IrActionsReportModel is the odoo model name.

View Source
const IrActionsServerModel = "ir.actions.server"

IrActionsServerModel is the odoo model name.

View Source
const IrActionsTodoModel = "ir.actions.todo"

IrActionsTodoModel is the odoo model name.

View Source
const IrAttachmentModel = "ir.attachment"

IrAttachmentModel is the odoo model name.

View Source
const IrAutovacuumModel = "ir.autovacuum"

IrAutovacuumModel is the odoo model name.

View Source
const IrConfigParameterModel = "ir.config_parameter"

IrConfigParameterModel is the odoo model name.

View Source
const IrCronModel = "ir.cron"

IrCronModel is the odoo model name.

View Source
const IrDefaultModel = "ir.default"

IrDefaultModel is the odoo model name.

View Source
const IrDemoFailureModel = "ir.demo_failure"

IrDemoFailureModel is the odoo model name.

View Source
const IrDemoFailureWizardModel = "ir.demo_failure.wizard"

IrDemoFailureWizardModel is the odoo model name.

View Source
const IrDemoModel = "ir.demo"

IrDemoModel is the odoo model name.

View Source
const IrExportsLineModel = "ir.exports.line"

IrExportsLineModel is the odoo model name.

View Source
const IrExportsModel = "ir.exports"

IrExportsModel is the odoo model name.

View Source
const IrFieldsConverterModel = "ir.fields.converter"

IrFieldsConverterModel is the odoo model name.

View Source
const IrFiltersModel = "ir.filters"

IrFiltersModel is the odoo model name.

View Source
const IrHttpModel = "ir.http"

IrHttpModel is the odoo model name.

View Source
const IrLoggingModel = "ir.logging"

IrLoggingModel is the odoo model name.

View Source
const IrMailServerModel = "ir.mail_server"

IrMailServerModel is the odoo model name.

View Source
const IrModelAccessModel = "ir.model.access"

IrModelAccessModel is the odoo model name.

View Source
const IrModelConstraintModel = "ir.model.constraint"

IrModelConstraintModel is the odoo model name.

View Source
const IrModelDataModel = "ir.model.data"

IrModelDataModel is the odoo model name.

View Source
const IrModelFieldsModel = "ir.model.fields"

IrModelFieldsModel is the odoo model name.

View Source
const IrModelFieldsSelectionModel = "ir.model.fields.selection"

IrModelFieldsSelectionModel is the odoo model name.

View Source
const IrModelModel = "ir.model"

IrModelModel is the odoo model name.

View Source
const IrModelRelationModel = "ir.model.relation"

IrModelRelationModel is the odoo model name.

View Source
const IrModuleCategoryModel = "ir.module.category"

IrModuleCategoryModel is the odoo model name.

View Source
const IrModuleModuleDependencyModel = "ir.module.module.dependency"

IrModuleModuleDependencyModel is the odoo model name.

View Source
const IrModuleModuleExclusionModel = "ir.module.module.exclusion"

IrModuleModuleExclusionModel is the odoo model name.

View Source
const IrModuleModuleModel = "ir.module.module"

IrModuleModuleModel is the odoo model name.

View Source
const IrPropertyModel = "ir.property"

IrPropertyModel is the odoo model name.

View Source
const IrQwebFieldBarcodeModel = "ir.qweb.field.barcode"

IrQwebFieldBarcodeModel is the odoo model name.

View Source
const IrQwebFieldContactModel = "ir.qweb.field.contact"

IrQwebFieldContactModel is the odoo model name.

View Source
const IrQwebFieldDateModel = "ir.qweb.field.date"

IrQwebFieldDateModel is the odoo model name.

View Source
const IrQwebFieldDatetimeModel = "ir.qweb.field.datetime"

IrQwebFieldDatetimeModel is the odoo model name.

View Source
const IrQwebFieldDurationModel = "ir.qweb.field.duration"

IrQwebFieldDurationModel is the odoo model name.

View Source
const IrQwebFieldFloatModel = "ir.qweb.field.float"

IrQwebFieldFloatModel is the odoo model name.

View Source
const IrQwebFieldFloatTimeModel = "ir.qweb.field.float_time"

IrQwebFieldFloatTimeModel is the odoo model name.

View Source
const IrQwebFieldHtmlModel = "ir.qweb.field.html"

IrQwebFieldHtmlModel is the odoo model name.

View Source
const IrQwebFieldImageModel = "ir.qweb.field.image"

IrQwebFieldImageModel is the odoo model name.

View Source
const IrQwebFieldIntegerModel = "ir.qweb.field.integer"

IrQwebFieldIntegerModel is the odoo model name.

View Source
const IrQwebFieldMany2ManyModel = "ir.qweb.field.many2many"

IrQwebFieldMany2ManyModel is the odoo model name.

View Source
const IrQwebFieldMany2OneModel = "ir.qweb.field.many2one"

IrQwebFieldMany2OneModel is the odoo model name.

View Source
const IrQwebFieldModel = "ir.qweb.field"

IrQwebFieldModel is the odoo model name.

View Source
const IrQwebFieldMonetaryModel = "ir.qweb.field.monetary"

IrQwebFieldMonetaryModel is the odoo model name.

View Source
const IrQwebFieldQwebModel = "ir.qweb.field.qweb"

IrQwebFieldQwebModel is the odoo model name.

View Source
const IrQwebFieldRelativeModel = "ir.qweb.field.relative"

IrQwebFieldRelativeModel is the odoo model name.

View Source
const IrQwebFieldSelectionModel = "ir.qweb.field.selection"

IrQwebFieldSelectionModel is the odoo model name.

View Source
const IrQwebFieldTextModel = "ir.qweb.field.text"

IrQwebFieldTextModel is the odoo model name.

View Source
const IrQwebModel = "ir.qweb"

IrQwebModel is the odoo model name.

View Source
const IrRuleModel = "ir.rule"

IrRuleModel is the odoo model name.

View Source
const IrSequenceDateRangeModel = "ir.sequence.date_range"

IrSequenceDateRangeModel is the odoo model name.

View Source
const IrSequenceModel = "ir.sequence"

IrSequenceModel is the odoo model name.

View Source
const IrServerObjectLinesModel = "ir.server.object.lines"

IrServerObjectLinesModel is the odoo model name.

View Source
const IrTranslationModel = "ir.translation"

IrTranslationModel is the odoo model name.

View Source
const IrUiMenuModel = "ir.ui.menu"

IrUiMenuModel is the odoo model name.

View Source
const IrUiViewCustomModel = "ir.ui.view.custom"

IrUiViewCustomModel is the odoo model name.

View Source
const IrUiViewModel = "ir.ui.view"

IrUiViewModel is the odoo model name.

View Source
const LinkTrackerClickModel = "link.tracker.click"

LinkTrackerClickModel is the odoo model name.

View Source
const LinkTrackerCodeModel = "link.tracker.code"

LinkTrackerCodeModel is the odoo model name.

View Source
const LinkTrackerModel = "link.tracker"

LinkTrackerModel is the odoo model name.

View Source
const MailActivityMixinModel = "mail.activity.mixin"

MailActivityMixinModel is the odoo model name.

View Source
const MailActivityModel = "mail.activity"

MailActivityModel is the odoo model name.

View Source
const MailActivityTypeModel = "mail.activity.type"

MailActivityTypeModel is the odoo model name.

View Source
const MailAddressMixinModel = "mail.address.mixin"

MailAddressMixinModel is the odoo model name.

View Source
const MailAliasMixinModel = "mail.alias.mixin"

MailAliasMixinModel is the odoo model name.

View Source
const MailAliasModel = "mail.alias"

MailAliasModel is the odoo model name.

View Source
const MailBlacklistModel = "mail.blacklist"

MailBlacklistModel is the odoo model name.

View Source
const MailBotModel = "mail.bot"

MailBotModel is the odoo model name.

View Source
const MailChannelModel = "mail.channel"

MailChannelModel is the odoo model name.

View Source
const MailChannelPartnerModel = "mail.channel.partner"

MailChannelPartnerModel is the odoo model name.

View Source
const MailComposeMessageModel = "mail.compose.message"

MailComposeMessageModel is the odoo model name.

View Source
const MailFollowersModel = "mail.followers"

MailFollowersModel is the odoo model name.

View Source
const MailMailModel = "mail.mail"

MailMailModel is the odoo model name.

View Source
const MailMessageModel = "mail.message"

MailMessageModel is the odoo model name.

View Source
const MailMessageSubtypeModel = "mail.message.subtype"

MailMessageSubtypeModel is the odoo model name.

View Source
const MailModerationModel = "mail.moderation"

MailModerationModel is the odoo model name.

View Source
const MailNotificationModel = "mail.notification"

MailNotificationModel is the odoo model name.

View Source
const MailResendCancelModel = "mail.resend.cancel"

MailResendCancelModel is the odoo model name.

View Source
const MailResendMessageModel = "mail.resend.message"

MailResendMessageModel is the odoo model name.

View Source
const MailResendPartnerModel = "mail.resend.partner"

MailResendPartnerModel is the odoo model name.

View Source
const MailShortcodeModel = "mail.shortcode"

MailShortcodeModel is the odoo model name.

View Source
const MailTemplateModel = "mail.template"

MailTemplateModel is the odoo model name.

View Source
const MailThreadBlacklistModel = "mail.thread.blacklist"

MailThreadBlacklistModel is the odoo model name.

View Source
const MailThreadCcModel = "mail.thread.cc"

MailThreadCcModel is the odoo model name.

View Source
const MailThreadModel = "mail.thread"

MailThreadModel is the odoo model name.

View Source
const MailThreadPhoneModel = "mail.thread.phone"

MailThreadPhoneModel is the odoo model name.

View Source
const MailTrackingValueModel = "mail.tracking.value"

MailTrackingValueModel is the odoo model name.

View Source
const MailWizardInviteModel = "mail.wizard.invite"

MailWizardInviteModel is the odoo model name.

View Source
const MailingContactModel = "mailing.contact"

MailingContactModel is the odoo model name.

View Source
const MailingContactSubscriptionModel = "mailing.contact.subscription"

MailingContactSubscriptionModel is the odoo model name.

View Source
const MailingListMergeModel = "mailing.list.merge"

MailingListMergeModel is the odoo model name.

View Source
const MailingListModel = "mailing.list"

MailingListModel is the odoo model name.

View Source
const MailingMailingModel = "mailing.mailing"

MailingMailingModel is the odoo model name.

View Source
const MailingMailingScheduleDateModel = "mailing.mailing.schedule.date"

MailingMailingScheduleDateModel is the odoo model name.

View Source
const MailingTraceModel = "mailing.trace"

MailingTraceModel is the odoo model name.

View Source
const MailingTraceReportModel = "mailing.trace.report"

MailingTraceReportModel is the odoo model name.

View Source
const NoteNoteModel = "note.note"

NoteNoteModel is the odoo model name.

View Source
const NoteStageModel = "note.stage"

NoteStageModel is the odoo model name.

View Source
const NoteTagModel = "note.tag"

NoteTagModel is the odoo model name.

View Source
const OpenacademyBundleModel = "openacademy.bundle"

OpenacademyBundleModel is the odoo model name.

View Source
const OpenacademyCourseModel = "openacademy.course"

OpenacademyCourseModel is the odoo model name.

View Source
const OpenacademySessionModel = "openacademy.session"

OpenacademySessionModel is the odoo model name.

View Source
const OpenacademyWizardModel = "openacademy.wizard"

OpenacademyWizardModel is the odoo model name.

View Source
const PaymentAcquirerModel = "payment.acquirer"

PaymentAcquirerModel is the odoo model name.

View Source
const PaymentAcquirerOnboardingWizardModel = "payment.acquirer.onboarding.wizard"

PaymentAcquirerOnboardingWizardModel is the odoo model name.

View Source
const PaymentIconModel = "payment.icon"

PaymentIconModel is the odoo model name.

View Source
const PaymentLinkWizardModel = "payment.link.wizard"

PaymentLinkWizardModel is the odoo model name.

View Source
const PaymentTokenModel = "payment.token"

PaymentTokenModel is the odoo model name.

View Source
const PaymentTransactionModel = "payment.transaction"

PaymentTransactionModel is the odoo model name.

View Source
const PhoneBlacklistModel = "phone.blacklist"

PhoneBlacklistModel is the odoo model name.

View Source
const PhoneValidationMixinModel = "phone.validation.mixin"

PhoneValidationMixinModel is the odoo model name.

View Source
const PortalMixinModel = "portal.mixin"

PortalMixinModel is the odoo model name.

View Source
const PortalShareModel = "portal.share"

PortalShareModel is the odoo model name.

View Source
const PortalWizardModel = "portal.wizard"

PortalWizardModel is the odoo model name.

View Source
const PortalWizardUserModel = "portal.wizard.user"

PortalWizardUserModel is the odoo model name.

View Source
const ProductAttributeCustomValueModel = "product.attribute.custom.value"

ProductAttributeCustomValueModel is the odoo model name.

View Source
const ProductAttributeModel = "product.attribute"

ProductAttributeModel is the odoo model name.

View Source
const ProductAttributeValueModel = "product.attribute.value"

ProductAttributeValueModel is the odoo model name.

View Source
const ProductCategoryModel = "product.category"

ProductCategoryModel is the odoo model name.

View Source
const ProductPackagingModel = "product.packaging"

ProductPackagingModel is the odoo model name.

View Source
const ProductPriceListModel = "product.price_list"

ProductPriceListModel is the odoo model name.

View Source
const ProductPricelistItemModel = "product.pricelist.item"

ProductPricelistItemModel is the odoo model name.

View Source
const ProductPricelistModel = "product.pricelist"

ProductPricelistModel is the odoo model name.

View Source
const ProductProductModel = "product.product"

ProductProductModel is the odoo model name.

View Source
const ProductSupplierinfoModel = "product.supplierinfo"

ProductSupplierinfoModel is the odoo model name.

View Source
const ProductTemplateAttributeExclusionModel = "product.template.attribute.exclusion"

ProductTemplateAttributeExclusionModel is the odoo model name.

View Source
const ProductTemplateAttributeLineModel = "product.template.attribute.line"

ProductTemplateAttributeLineModel is the odoo model name.

View Source
const ProductTemplateAttributeValueModel = "product.template.attribute.value"

ProductTemplateAttributeValueModel is the odoo model name.

View Source
const ProductTemplateModel = "product.template"

ProductTemplateModel is the odoo model name.

View Source
const ProjectProjectModel = "project.project"

ProjectProjectModel is the odoo model name.

View Source
const ProjectTagsModel = "project.tags"

ProjectTagsModel is the odoo model name.

View Source
const ProjectTaskModel = "project.task"

ProjectTaskModel is the odoo model name.

View Source
const ProjectTaskTypeModel = "project.task.type"

ProjectTaskTypeModel is the odoo model name.

View Source
const PublisherWarrantyContractModel = "publisher_warranty.contract"

PublisherWarrantyContractModel is the odoo model name.

View Source
const RatingMixinModel = "rating.mixin"

RatingMixinModel is the odoo model name.

View Source
const RatingParentMixinModel = "rating.parent.mixin"

RatingParentMixinModel is the odoo model name.

View Source
const RatingRatingModel = "rating.rating"

RatingRatingModel is the odoo model name.

View Source
const RegistrationEditorLineModel = "registration.editor.line"

RegistrationEditorLineModel is the odoo model name.

View Source
const RegistrationEditorModel = "registration.editor"

RegistrationEditorModel is the odoo model name.

View Source
const ReportAccountReportAgedpartnerbalanceModel = "report.account.report_agedpartnerbalance"

ReportAccountReportAgedpartnerbalanceModel is the odoo model name.

View Source
const ReportAccountReportHashIntegrityModel = "report.account.report_hash_integrity"

ReportAccountReportHashIntegrityModel is the odoo model name.

View Source
const ReportAccountReportInvoiceWithPaymentsModel = "report.account.report_invoice_with_payments"

ReportAccountReportInvoiceWithPaymentsModel is the odoo model name.

View Source
const ReportAccountReportJournalModel = "report.account.report_journal"

ReportAccountReportJournalModel is the odoo model name.

View Source
const ReportAllChannelsSalesModel = "report.all.channels.sales"

ReportAllChannelsSalesModel is the odoo model name.

View Source
const ReportBaseReportIrmodulereferenceModel = "report.base.report_irmodulereference"

ReportBaseReportIrmodulereferenceModel is the odoo model name.

View Source
const ReportHrHolidaysReportHolidayssummaryModel = "report.hr_holidays.report_holidayssummary"

ReportHrHolidaysReportHolidayssummaryModel is the odoo model name.

View Source
const ReportLayoutModel = "report.layout"

ReportLayoutModel is the odoo model name.

View Source
const ReportPaperformatModel = "report.paperformat"

ReportPaperformatModel is the odoo model name.

View Source
const ReportProductReportPricelistModel = "report.product.report_pricelist"

ReportProductReportPricelistModel is the odoo model name.

View Source
const ReportProjectTaskUserModel = "report.project.task.user"

ReportProjectTaskUserModel is the odoo model name.

View Source
const ReportSaleReportSaleproformaModel = "report.sale.report_saleproforma"

ReportSaleReportSaleproformaModel is the odoo model name.

View Source
const ResBankModel = "res.bank"

ResBankModel is the odoo model name.

View Source
const ResCompanyModel = "res.company"

ResCompanyModel is the odoo model name.

View Source
const ResConfigInstallerModel = "res.config.installer"

ResConfigInstallerModel is the odoo model name.

View Source
const ResConfigModel = "res.config"

ResConfigModel is the odoo model name.

View Source
const ResConfigSettingsModel = "res.config.settings"

ResConfigSettingsModel is the odoo model name.

View Source
const ResCountryGroupModel = "res.country.group"

ResCountryGroupModel is the odoo model name.

View Source
const ResCountryModel = "res.country"

ResCountryModel is the odoo model name.

View Source
const ResCountryStateModel = "res.country.state"

ResCountryStateModel is the odoo model name.

View Source
const ResCurrencyModel = "res.currency"

ResCurrencyModel is the odoo model name.

View Source
const ResCurrencyRateModel = "res.currency.rate"

ResCurrencyRateModel is the odoo model name.

View Source
const ResGroupsModel = "res.groups"

ResGroupsModel is the odoo model name.

View Source
const ResLangModel = "res.lang"

ResLangModel is the odoo model name.

View Source
const ResPartnerAutocompleteSyncModel = "res.partner.autocomplete.sync"

ResPartnerAutocompleteSyncModel is the odoo model name.

View Source
const ResPartnerBankModel = "res.partner.bank"

ResPartnerBankModel is the odoo model name.

View Source
const ResPartnerCategoryModel = "res.partner.category"

ResPartnerCategoryModel is the odoo model name.

View Source
const ResPartnerIndustryModel = "res.partner.industry"

ResPartnerIndustryModel is the odoo model name.

View Source
const ResPartnerModel = "res.partner"

ResPartnerModel is the odoo model name.

View Source
const ResPartnerTitleModel = "res.partner.title"

ResPartnerTitleModel is the odoo model name.

View Source
const ResUsersLogModel = "res.users.log"

ResUsersLogModel is the odoo model name.

View Source
const ResUsersModel = "res.users"

ResUsersModel is the odoo model name.

View Source
const ResetViewArchWizardModel = "reset.view.arch.wizard"

ResetViewArchWizardModel is the odoo model name.

View Source
const ResourceCalendarAttendanceModel = "resource.calendar.attendance"

ResourceCalendarAttendanceModel is the odoo model name.

View Source
const ResourceCalendarLeavesModel = "resource.calendar.leaves"

ResourceCalendarLeavesModel is the odoo model name.

View Source
const ResourceCalendarModel = "resource.calendar"

ResourceCalendarModel is the odoo model name.

View Source
const ResourceMixinModel = "resource.mixin"

ResourceMixinModel is the odoo model name.

View Source
const ResourceResourceModel = "resource.resource"

ResourceResourceModel is the odoo model name.

View Source
const SaleAdvancePaymentInvModel = "sale.advance.payment.inv"

SaleAdvancePaymentInvModel is the odoo model name.

View Source
const SaleOrderLineModel = "sale.order.line"

SaleOrderLineModel is the odoo model name.

View Source
const SaleOrderModel = "sale.order"

SaleOrderModel is the odoo model name.

View Source
const SaleOrderOptionModel = "sale.order.option"

SaleOrderOptionModel is the odoo model name.

View Source
const SaleOrderTemplateLineModel = "sale.order.template.line"

SaleOrderTemplateLineModel is the odoo model name.

View Source
const SaleOrderTemplateModel = "sale.order.template"

SaleOrderTemplateModel is the odoo model name.

View Source
const SaleOrderTemplateOptionModel = "sale.order.template.option"

SaleOrderTemplateOptionModel is the odoo model name.

View Source
const SalePaymentAcquirerOnboardingWizardModel = "sale.payment.acquirer.onboarding.wizard"

SalePaymentAcquirerOnboardingWizardModel is the odoo model name.

View Source
const SaleReportModel = "sale.report"

SaleReportModel is the odoo model name.

View Source
const SlideAnswerModel = "slide.answer"

SlideAnswerModel is the odoo model name.

View Source
const SlideAnswerUsersModel = "slide.answer_users"

SlideAnswerUsersModel is the odoo model name.

View Source
const SlideChannelInviteModel = "slide.channel.invite"

SlideChannelInviteModel is the odoo model name.

View Source
const SlideChannelModel = "slide.channel"

SlideChannelModel is the odoo model name.

View Source
const SlideChannelPartnerModel = "slide.channel.partner"

SlideChannelPartnerModel is the odoo model name.

View Source
const SlideChannelPricesModel = "slide.channel_prices"

SlideChannelPricesModel is the odoo model name.

View Source
const SlideChannelSchedulesModel = "slide.channel_schedules"

SlideChannelSchedulesModel is the odoo model name.

View Source
const SlideChannelSfcPricesModel = "slide.channel_sfc_prices"

SlideChannelSfcPricesModel is the odoo model name.

View Source
const SlideChannelTagGroupModel = "slide.channel.tag.group"

SlideChannelTagGroupModel is the odoo model name.

View Source
const SlideChannelTagModel = "slide.channel.tag"

SlideChannelTagModel is the odoo model name.

View Source
const SlideCourseTypeModel = "slide.course_type"

SlideCourseTypeModel is the odoo model name.

View Source
const SlideEmbedModel = "slide.embed"

SlideEmbedModel is the odoo model name.

View Source
const SlideQuestionModel = "slide.question"

SlideQuestionModel is the odoo model name.

View Source
const SlideSlideAttachmentModel = "slide.slide_attachment"

SlideSlideAttachmentModel is the odoo model name.

View Source
const SlideSlideLinkModel = "slide.slide.link"

SlideSlideLinkModel is the odoo model name.

View Source
const SlideSlideModel = "slide.slide"

SlideSlideModel is the odoo model name.

View Source
const SlideSlidePartnerModel = "slide.slide.partner"

SlideSlidePartnerModel is the odoo model name.

View Source
const SlideSlideScheduleModel = "slide.slide_schedule"

SlideSlideScheduleModel is the odoo model name.

View Source
const SlideTagModel = "slide.tag"

SlideTagModel is the odoo model name.

View Source
const SmsApiModel = "sms.api"

SmsApiModel is the odoo model name.

View Source
const SmsCancelModel = "sms.cancel"

SmsCancelModel is the odoo model name.

View Source
const SmsComposerModel = "sms.composer"

SmsComposerModel is the odoo model name.

View Source
const SmsResendModel = "sms.resend"

SmsResendModel is the odoo model name.

View Source
const SmsResendRecipientModel = "sms.resend.recipient"

SmsResendRecipientModel is the odoo model name.

View Source
const SmsSmsModel = "sms.sms"

SmsSmsModel is the odoo model name.

View Source
const SmsTemplateModel = "sms.template"

SmsTemplateModel is the odoo model name.

View Source
const SmsTemplatePreviewModel = "sms.template.preview"

SmsTemplatePreviewModel is the odoo model name.

View Source
const SnailmailLetterCancelModel = "snailmail.letter.cancel"

SnailmailLetterCancelModel is the odoo model name.

View Source
const SnailmailLetterFormatErrorModel = "snailmail.letter.format.error"

SnailmailLetterFormatErrorModel is the odoo model name.

View Source
const SnailmailLetterMissingRequiredFieldsModel = "snailmail.letter.missing.required.fields"

SnailmailLetterMissingRequiredFieldsModel is the odoo model name.

View Source
const SnailmailLetterModel = "snailmail.letter"

SnailmailLetterModel is the odoo model name.

View Source
const SurveyInviteModel = "survey.invite"

SurveyInviteModel is the odoo model name.

View Source
const SurveyLabelModel = "survey.label"

SurveyLabelModel is the odoo model name.

View Source
const SurveyQuestionModel = "survey.question"

SurveyQuestionModel is the odoo model name.

View Source
const SurveySurveyModel = "survey.survey"

SurveySurveyModel is the odoo model name.

View Source
const SurveyUserInputLineModel = "survey.user_input_line"

SurveyUserInputLineModel is the odoo model name.

View Source
const SurveyUserInputModel = "survey.user_input"

SurveyUserInputModel is the odoo model name.

View Source
const TaxAdjustmentsWizardModel = "tax.adjustments.wizard"

TaxAdjustmentsWizardModel is the odoo model name.

View Source
const ThemeIrAttachmentModel = "theme.ir.attachment"

ThemeIrAttachmentModel is the odoo model name.

View Source
const ThemeIrUiViewModel = "theme.ir.ui.view"

ThemeIrUiViewModel is the odoo model name.

View Source
const ThemeUtilsModel = "theme.utils"

ThemeUtilsModel is the odoo model name.

View Source
const ThemeWebsiteMenuModel = "theme.website.menu"

ThemeWebsiteMenuModel is the odoo model name.

View Source
const ThemeWebsitePageModel = "theme.website.page"

ThemeWebsitePageModel is the odoo model name.

View Source
const UomCategoryModel = "uom.category"

UomCategoryModel is the odoo model name.

View Source
const UomUomModel = "uom.uom"

UomUomModel is the odoo model name.

View Source
const UserPaymentModel = "user.payment"

UserPaymentModel is the odoo model name.

View Source
const UserProfileModel = "user.profile"

UserProfileModel is the odoo model name.

View Source
const UtmCampaignModel = "utm.campaign"

UtmCampaignModel is the odoo model name.

View Source
const UtmMediumModel = "utm.medium"

UtmMediumModel is the odoo model name.

View Source
const UtmMixinModel = "utm.mixin"

UtmMixinModel is the odoo model name.

View Source
const UtmSourceModel = "utm.source"

UtmSourceModel is the odoo model name.

View Source
const UtmStageModel = "utm.stage"

UtmStageModel is the odoo model name.

View Source
const UtmTagModel = "utm.tag"

UtmTagModel is the odoo model name.

View Source
const ValidateAccountMoveModel = "validate.account.move"

ValidateAccountMoveModel is the odoo model name.

View Source
const WebEditorAssetsModel = "web_editor.assets"

WebEditorAssetsModel is the odoo model name.

View Source
const WebEditorConverterTestSubModel = "web_editor.converter.test.sub"

WebEditorConverterTestSubModel is the odoo model name.

View Source
const WebTourTourModel = "web_tour.tour"

WebTourTourModel is the odoo model name.

View Source
const WebsiteMassMailingPopupModel = "website.mass_mailing.popup"

WebsiteMassMailingPopupModel is the odoo model name.

View Source
const WebsiteMenuModel = "website.menu"

WebsiteMenuModel is the odoo model name.

View Source
const WebsiteModel = "website"

WebsiteModel is the odoo model name.

View Source
const WebsiteMultiMixinModel = "website.multi.mixin"

WebsiteMultiMixinModel is the odoo model name.

View Source
const WebsitePageModel = "website.page"

WebsitePageModel is the odoo model name.

View Source
const WebsitePublishedMixinModel = "website.published.mixin"

WebsitePublishedMixinModel is the odoo model name.

View Source
const WebsitePublishedMultiMixinModel = "website.published.multi.mixin"

WebsitePublishedMultiMixinModel is the odoo model name.

View Source
const WebsiteRewriteModel = "website.rewrite"

WebsiteRewriteModel is the odoo model name.

View Source
const WebsiteRouteModel = "website.route"

WebsiteRouteModel is the odoo model name.

View Source
const WebsiteSeoMetadataModel = "website.seo.metadata"

WebsiteSeoMetadataModel is the odoo model name.

View Source
const WebsiteTrackModel = "website.track"

WebsiteTrackModel is the odoo model name.

View Source
const WebsiteVisitorModel = "website.visitor"

WebsiteVisitorModel is the odoo model name.

View Source
const WizardIrModelMenuCreateModel = "wizard.ir.model.menu.create"

WizardIrModelMenuCreateModel is the odoo model name.

Variables

This section is empty.

Functions

This section is empty.

Types

type AccountAccount

type AccountAccount struct {
	Code          *String    `xmlrpc:"code,omptempty"`
	CompanyId     *Many2One  `xmlrpc:"company_id,omptempty"`
	CreateDate    *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid     *Many2One  `xmlrpc:"create_uid,omptempty"`
	CurrencyId    *Many2One  `xmlrpc:"currency_id,omptempty"`
	Deprecated    *Bool      `xmlrpc:"deprecated,omptempty"`
	DisplayName   *String    `xmlrpc:"display_name,omptempty"`
	GroupId       *Many2One  `xmlrpc:"group_id,omptempty"`
	Id            *Int       `xmlrpc:"id,omptempty"`
	InternalGroup *Selection `xmlrpc:"internal_group,omptempty"`
	InternalType  *Selection `xmlrpc:"internal_type,omptempty"`
	LastUpdate    *Time      `xmlrpc:"__last_update,omptempty"`
	Name          *String    `xmlrpc:"name,omptempty"`
	Note          *String    `xmlrpc:"note,omptempty"`
	OpeningCredit *Float     `xmlrpc:"opening_credit,omptempty"`
	OpeningDebit  *Float     `xmlrpc:"opening_debit,omptempty"`
	Reconcile     *Bool      `xmlrpc:"reconcile,omptempty"`
	RootId        *Many2One  `xmlrpc:"root_id,omptempty"`
	TagIds        *Relation  `xmlrpc:"tag_ids,omptempty"`
	TaxIds        *Relation  `xmlrpc:"tax_ids,omptempty"`
	Used          *Bool      `xmlrpc:"used,omptempty"`
	UserTypeId    *Many2One  `xmlrpc:"user_type_id,omptempty"`
	WriteDate     *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid      *Many2One  `xmlrpc:"write_uid,omptempty"`
}

AccountAccount represents account.account model.

func (*AccountAccount) Many2One

func (aa *AccountAccount) Many2One() *Many2One

Many2One convert AccountAccount to *Many2One.

type AccountAccountTag

type AccountAccountTag struct {
	Active           *Bool      `xmlrpc:"active,omptempty"`
	Applicability    *Selection `xmlrpc:"applicability,omptempty"`
	Color            *Int       `xmlrpc:"color,omptempty"`
	CountryId        *Many2One  `xmlrpc:"country_id,omptempty"`
	CreateDate       *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid        *Many2One  `xmlrpc:"create_uid,omptempty"`
	DisplayName      *String    `xmlrpc:"display_name,omptempty"`
	Id               *Int       `xmlrpc:"id,omptempty"`
	LastUpdate       *Time      `xmlrpc:"__last_update,omptempty"`
	Name             *String    `xmlrpc:"name,omptempty"`
	TaxNegate        *Bool      `xmlrpc:"tax_negate,omptempty"`
	TaxReportLineIds *Relation  `xmlrpc:"tax_report_line_ids,omptempty"`
	WriteDate        *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid         *Many2One  `xmlrpc:"write_uid,omptempty"`
}

AccountAccountTag represents account.account.tag model.

func (*AccountAccountTag) Many2One

func (aat *AccountAccountTag) Many2One() *Many2One

Many2One convert AccountAccountTag to *Many2One.

type AccountAccountTags

type AccountAccountTags []AccountAccountTag

AccountAccountTags represents array of account.account.tag model.

type AccountAccountTemplate

type AccountAccountTemplate struct {
	ChartTemplateId *Many2One `xmlrpc:"chart_template_id,omptempty"`
	Code            *String   `xmlrpc:"code,omptempty"`
	CreateDate      *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid       *Many2One `xmlrpc:"create_uid,omptempty"`
	CurrencyId      *Many2One `xmlrpc:"currency_id,omptempty"`
	DisplayName     *String   `xmlrpc:"display_name,omptempty"`
	GroupId         *Many2One `xmlrpc:"group_id,omptempty"`
	Id              *Int      `xmlrpc:"id,omptempty"`
	LastUpdate      *Time     `xmlrpc:"__last_update,omptempty"`
	Name            *String   `xmlrpc:"name,omptempty"`
	Nocreate        *Bool     `xmlrpc:"nocreate,omptempty"`
	Note            *String   `xmlrpc:"note,omptempty"`
	Reconcile       *Bool     `xmlrpc:"reconcile,omptempty"`
	RootId          *Many2One `xmlrpc:"root_id,omptempty"`
	TagIds          *Relation `xmlrpc:"tag_ids,omptempty"`
	TaxIds          *Relation `xmlrpc:"tax_ids,omptempty"`
	UserTypeId      *Many2One `xmlrpc:"user_type_id,omptempty"`
	WriteDate       *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid        *Many2One `xmlrpc:"write_uid,omptempty"`
}

AccountAccountTemplate represents account.account.template model.

func (*AccountAccountTemplate) Many2One

func (aat *AccountAccountTemplate) Many2One() *Many2One

Many2One convert AccountAccountTemplate to *Many2One.

type AccountAccountTemplates

type AccountAccountTemplates []AccountAccountTemplate

AccountAccountTemplates represents array of account.account.template model.

type AccountAccountType

type AccountAccountType struct {
	CreateDate            *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid             *Many2One  `xmlrpc:"create_uid,omptempty"`
	DisplayName           *String    `xmlrpc:"display_name,omptempty"`
	Id                    *Int       `xmlrpc:"id,omptempty"`
	IncludeInitialBalance *Bool      `xmlrpc:"include_initial_balance,omptempty"`
	InternalGroup         *Selection `xmlrpc:"internal_group,omptempty"`
	LastUpdate            *Time      `xmlrpc:"__last_update,omptempty"`
	Name                  *String    `xmlrpc:"name,omptempty"`
	Note                  *String    `xmlrpc:"note,omptempty"`
	Type                  *Selection `xmlrpc:"type,omptempty"`
	WriteDate             *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid              *Many2One  `xmlrpc:"write_uid,omptempty"`
}

AccountAccountType represents account.account.type model.

func (*AccountAccountType) Many2One

func (aat *AccountAccountType) Many2One() *Many2One

Many2One convert AccountAccountType to *Many2One.

type AccountAccountTypes

type AccountAccountTypes []AccountAccountType

AccountAccountTypes represents array of account.account.type model.

type AccountAccounts

type AccountAccounts []AccountAccount

AccountAccounts represents array of account.account model.

type AccountAccrualAccountingWizard

type AccountAccrualAccountingWizard struct {
	AccountType           *Selection `xmlrpc:"account_type,omptempty"`
	ActiveMoveLineIds     *Relation  `xmlrpc:"active_move_line_ids,omptempty"`
	CompanyCurrencyId     *Many2One  `xmlrpc:"company_currency_id,omptempty"`
	CompanyId             *Many2One  `xmlrpc:"company_id,omptempty"`
	CreateDate            *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid             *Many2One  `xmlrpc:"create_uid,omptempty"`
	Date                  *Time      `xmlrpc:"date,omptempty"`
	DisplayName           *String    `xmlrpc:"display_name,omptempty"`
	ExpenseAccrualAccount *Many2One  `xmlrpc:"expense_accrual_account,omptempty"`
	Id                    *Int       `xmlrpc:"id,omptempty"`
	JournalId             *Many2One  `xmlrpc:"journal_id,omptempty"`
	LastUpdate            *Time      `xmlrpc:"__last_update,omptempty"`
	Percentage            *Float     `xmlrpc:"percentage,omptempty"`
	RevenueAccrualAccount *Many2One  `xmlrpc:"revenue_accrual_account,omptempty"`
	TotalAmount           *Float     `xmlrpc:"total_amount,omptempty"`
	WriteDate             *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid              *Many2One  `xmlrpc:"write_uid,omptempty"`
}

AccountAccrualAccountingWizard represents account.accrual.accounting.wizard model.

func (*AccountAccrualAccountingWizard) Many2One

func (aaaw *AccountAccrualAccountingWizard) Many2One() *Many2One

Many2One convert AccountAccrualAccountingWizard to *Many2One.

type AccountAccrualAccountingWizards

type AccountAccrualAccountingWizards []AccountAccrualAccountingWizard

AccountAccrualAccountingWizards represents array of account.accrual.accounting.wizard model.

type AccountAnalyticAccount

type AccountAnalyticAccount struct {
	Active                   *Bool     `xmlrpc:"active,omptempty"`
	Balance                  *Float    `xmlrpc:"balance,omptempty"`
	Code                     *String   `xmlrpc:"code,omptempty"`
	CompanyId                *Many2One `xmlrpc:"company_id,omptempty"`
	CreateDate               *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid                *Many2One `xmlrpc:"create_uid,omptempty"`
	Credit                   *Float    `xmlrpc:"credit,omptempty"`
	CurrencyId               *Many2One `xmlrpc:"currency_id,omptempty"`
	Debit                    *Float    `xmlrpc:"debit,omptempty"`
	DisplayName              *String   `xmlrpc:"display_name,omptempty"`
	GroupId                  *Many2One `xmlrpc:"group_id,omptempty"`
	Id                       *Int      `xmlrpc:"id,omptempty"`
	LastUpdate               *Time     `xmlrpc:"__last_update,omptempty"`
	LineIds                  *Relation `xmlrpc:"line_ids,omptempty"`
	MessageAttachmentCount   *Int      `xmlrpc:"message_attachment_count,omptempty"`
	MessageChannelIds        *Relation `xmlrpc:"message_channel_ids,omptempty"`
	MessageFollowerIds       *Relation `xmlrpc:"message_follower_ids,omptempty"`
	MessageHasError          *Bool     `xmlrpc:"message_has_error,omptempty"`
	MessageHasErrorCounter   *Int      `xmlrpc:"message_has_error_counter,omptempty"`
	MessageHasSmsError       *Bool     `xmlrpc:"message_has_sms_error,omptempty"`
	MessageIds               *Relation `xmlrpc:"message_ids,omptempty"`
	MessageIsFollower        *Bool     `xmlrpc:"message_is_follower,omptempty"`
	MessageMainAttachmentId  *Many2One `xmlrpc:"message_main_attachment_id,omptempty"`
	MessageNeedaction        *Bool     `xmlrpc:"message_needaction,omptempty"`
	MessageNeedactionCounter *Int      `xmlrpc:"message_needaction_counter,omptempty"`
	MessagePartnerIds        *Relation `xmlrpc:"message_partner_ids,omptempty"`
	MessageUnread            *Bool     `xmlrpc:"message_unread,omptempty"`
	MessageUnreadCounter     *Int      `xmlrpc:"message_unread_counter,omptempty"`
	Name                     *String   `xmlrpc:"name,omptempty"`
	PartnerId                *Many2One `xmlrpc:"partner_id,omptempty"`
	ProjectCount             *Int      `xmlrpc:"project_count,omptempty"`
	ProjectIds               *Relation `xmlrpc:"project_ids,omptempty"`
	WebsiteMessageIds        *Relation `xmlrpc:"website_message_ids,omptempty"`
	WriteDate                *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid                 *Many2One `xmlrpc:"write_uid,omptempty"`
}

AccountAnalyticAccount represents account.analytic.account model.

func (*AccountAnalyticAccount) Many2One

func (aaa *AccountAnalyticAccount) Many2One() *Many2One

Many2One convert AccountAnalyticAccount to *Many2One.

type AccountAnalyticAccounts

type AccountAnalyticAccounts []AccountAnalyticAccount

AccountAnalyticAccounts represents array of account.analytic.account model.

type AccountAnalyticDistribution

type AccountAnalyticDistribution struct {
	AccountId   *Many2One `xmlrpc:"account_id,omptempty"`
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	Name        *String   `xmlrpc:"name,omptempty"`
	Percentage  *Float    `xmlrpc:"percentage,omptempty"`
	TagId       *Many2One `xmlrpc:"tag_id,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

AccountAnalyticDistribution represents account.analytic.distribution model.

func (*AccountAnalyticDistribution) Many2One

func (aad *AccountAnalyticDistribution) Many2One() *Many2One

Many2One convert AccountAnalyticDistribution to *Many2One.

type AccountAnalyticDistributions

type AccountAnalyticDistributions []AccountAnalyticDistribution

AccountAnalyticDistributions represents array of account.analytic.distribution model.

type AccountAnalyticGroup

type AccountAnalyticGroup struct {
	ChildrenIds  *Relation `xmlrpc:"children_ids,omptempty"`
	CompanyId    *Many2One `xmlrpc:"company_id,omptempty"`
	CompleteName *String   `xmlrpc:"complete_name,omptempty"`
	CreateDate   *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid    *Many2One `xmlrpc:"create_uid,omptempty"`
	Description  *String   `xmlrpc:"description,omptempty"`
	DisplayName  *String   `xmlrpc:"display_name,omptempty"`
	Id           *Int      `xmlrpc:"id,omptempty"`
	LastUpdate   *Time     `xmlrpc:"__last_update,omptempty"`
	Name         *String   `xmlrpc:"name,omptempty"`
	ParentId     *Many2One `xmlrpc:"parent_id,omptempty"`
	ParentPath   *String   `xmlrpc:"parent_path,omptempty"`
	WriteDate    *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid     *Many2One `xmlrpc:"write_uid,omptempty"`
}

AccountAnalyticGroup represents account.analytic.group model.

func (*AccountAnalyticGroup) Many2One

func (aag *AccountAnalyticGroup) Many2One() *Many2One

Many2One convert AccountAnalyticGroup to *Many2One.

type AccountAnalyticGroups

type AccountAnalyticGroups []AccountAnalyticGroup

AccountAnalyticGroups represents array of account.analytic.group model.

type AccountAnalyticLine

type AccountAnalyticLine struct {
	AccountId            *Many2One `xmlrpc:"account_id,omptempty"`
	Amount               *Float    `xmlrpc:"amount,omptempty"`
	Code                 *String   `xmlrpc:"code,omptempty"`
	CompanyId            *Many2One `xmlrpc:"company_id,omptempty"`
	CreateDate           *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid            *Many2One `xmlrpc:"create_uid,omptempty"`
	CurrencyId           *Many2One `xmlrpc:"currency_id,omptempty"`
	Date                 *Time     `xmlrpc:"date,omptempty"`
	DisplayName          *String   `xmlrpc:"display_name,omptempty"`
	GeneralAccountId     *Many2One `xmlrpc:"general_account_id,omptempty"`
	GroupId              *Many2One `xmlrpc:"group_id,omptempty"`
	Id                   *Int      `xmlrpc:"id,omptempty"`
	LastUpdate           *Time     `xmlrpc:"__last_update,omptempty"`
	MoveId               *Many2One `xmlrpc:"move_id,omptempty"`
	Name                 *String   `xmlrpc:"name,omptempty"`
	PartnerId            *Many2One `xmlrpc:"partner_id,omptempty"`
	ProductId            *Many2One `xmlrpc:"product_id,omptempty"`
	ProductUomCategoryId *Many2One `xmlrpc:"product_uom_category_id,omptempty"`
	ProductUomId         *Many2One `xmlrpc:"product_uom_id,omptempty"`
	Ref                  *String   `xmlrpc:"ref,omptempty"`
	SoLine               *Many2One `xmlrpc:"so_line,omptempty"`
	TagIds               *Relation `xmlrpc:"tag_ids,omptempty"`
	UnitAmount           *Float    `xmlrpc:"unit_amount,omptempty"`
	UserId               *Many2One `xmlrpc:"user_id,omptempty"`
	WriteDate            *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid             *Many2One `xmlrpc:"write_uid,omptempty"`
}

AccountAnalyticLine represents account.analytic.line model.

func (*AccountAnalyticLine) Many2One

func (aal *AccountAnalyticLine) Many2One() *Many2One

Many2One convert AccountAnalyticLine to *Many2One.

type AccountAnalyticLines

type AccountAnalyticLines []AccountAnalyticLine

AccountAnalyticLines represents array of account.analytic.line model.

type AccountAnalyticTag

type AccountAnalyticTag struct {
	Active                     *Bool     `xmlrpc:"active,omptempty"`
	ActiveAnalyticDistribution *Bool     `xmlrpc:"active_analytic_distribution,omptempty"`
	AnalyticDistributionIds    *Relation `xmlrpc:"analytic_distribution_ids,omptempty"`
	Color                      *Int      `xmlrpc:"color,omptempty"`
	CompanyId                  *Many2One `xmlrpc:"company_id,omptempty"`
	CreateDate                 *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid                  *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName                *String   `xmlrpc:"display_name,omptempty"`
	Id                         *Int      `xmlrpc:"id,omptempty"`
	LastUpdate                 *Time     `xmlrpc:"__last_update,omptempty"`
	Name                       *String   `xmlrpc:"name,omptempty"`
	WriteDate                  *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid                   *Many2One `xmlrpc:"write_uid,omptempty"`
}

AccountAnalyticTag represents account.analytic.tag model.

func (*AccountAnalyticTag) Many2One

func (aat *AccountAnalyticTag) Many2One() *Many2One

Many2One convert AccountAnalyticTag to *Many2One.

type AccountAnalyticTags

type AccountAnalyticTags []AccountAnalyticTag

AccountAnalyticTags represents array of account.analytic.tag model.

type AccountBankStatement

type AccountBankStatement struct {
	AccountingDate           *Time      `xmlrpc:"accounting_date,omptempty"`
	AllLinesReconciled       *Bool      `xmlrpc:"all_lines_reconciled,omptempty"`
	BalanceEnd               *Float     `xmlrpc:"balance_end,omptempty"`
	BalanceEndReal           *Float     `xmlrpc:"balance_end_real,omptempty"`
	BalanceStart             *Float     `xmlrpc:"balance_start,omptempty"`
	CashboxEndId             *Many2One  `xmlrpc:"cashbox_end_id,omptempty"`
	CashboxStartId           *Many2One  `xmlrpc:"cashbox_start_id,omptempty"`
	CompanyId                *Many2One  `xmlrpc:"company_id,omptempty"`
	CreateDate               *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid                *Many2One  `xmlrpc:"create_uid,omptempty"`
	CurrencyId               *Many2One  `xmlrpc:"currency_id,omptempty"`
	Date                     *Time      `xmlrpc:"date,omptempty"`
	DateDone                 *Time      `xmlrpc:"date_done,omptempty"`
	Difference               *Float     `xmlrpc:"difference,omptempty"`
	DisplayName              *String    `xmlrpc:"display_name,omptempty"`
	Id                       *Int       `xmlrpc:"id,omptempty"`
	IsDifferenceZero         *Bool      `xmlrpc:"is_difference_zero,omptempty"`
	JournalId                *Many2One  `xmlrpc:"journal_id,omptempty"`
	JournalType              *Selection `xmlrpc:"journal_type,omptempty"`
	LastUpdate               *Time      `xmlrpc:"__last_update,omptempty"`
	LineIds                  *Relation  `xmlrpc:"line_ids,omptempty"`
	MessageAttachmentCount   *Int       `xmlrpc:"message_attachment_count,omptempty"`
	MessageChannelIds        *Relation  `xmlrpc:"message_channel_ids,omptempty"`
	MessageFollowerIds       *Relation  `xmlrpc:"message_follower_ids,omptempty"`
	MessageHasError          *Bool      `xmlrpc:"message_has_error,omptempty"`
	MessageHasErrorCounter   *Int       `xmlrpc:"message_has_error_counter,omptempty"`
	MessageHasSmsError       *Bool      `xmlrpc:"message_has_sms_error,omptempty"`
	MessageIds               *Relation  `xmlrpc:"message_ids,omptempty"`
	MessageIsFollower        *Bool      `xmlrpc:"message_is_follower,omptempty"`
	MessageMainAttachmentId  *Many2One  `xmlrpc:"message_main_attachment_id,omptempty"`
	MessageNeedaction        *Bool      `xmlrpc:"message_needaction,omptempty"`
	MessageNeedactionCounter *Int       `xmlrpc:"message_needaction_counter,omptempty"`
	MessagePartnerIds        *Relation  `xmlrpc:"message_partner_ids,omptempty"`
	MessageUnread            *Bool      `xmlrpc:"message_unread,omptempty"`
	MessageUnreadCounter     *Int       `xmlrpc:"message_unread_counter,omptempty"`
	MoveLineCount            *Int       `xmlrpc:"move_line_count,omptempty"`
	MoveLineIds              *Relation  `xmlrpc:"move_line_ids,omptempty"`
	Name                     *String    `xmlrpc:"name,omptempty"`
	Reference                *String    `xmlrpc:"reference,omptempty"`
	State                    *Selection `xmlrpc:"state,omptempty"`
	TotalEntryEncoding       *Float     `xmlrpc:"total_entry_encoding,omptempty"`
	UserId                   *Many2One  `xmlrpc:"user_id,omptempty"`
	WebsiteMessageIds        *Relation  `xmlrpc:"website_message_ids,omptempty"`
	WriteDate                *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid                 *Many2One  `xmlrpc:"write_uid,omptempty"`
}

AccountBankStatement represents account.bank.statement model.

func (*AccountBankStatement) Many2One

func (abs *AccountBankStatement) Many2One() *Many2One

Many2One convert AccountBankStatement to *Many2One.

type AccountBankStatementCashbox

type AccountBankStatementCashbox struct {
	CashboxLinesIds  *Relation `xmlrpc:"cashbox_lines_ids,omptempty"`
	CreateDate       *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid        *Many2One `xmlrpc:"create_uid,omptempty"`
	CurrencyId       *Many2One `xmlrpc:"currency_id,omptempty"`
	DisplayName      *String   `xmlrpc:"display_name,omptempty"`
	EndBankStmtIds   *Relation `xmlrpc:"end_bank_stmt_ids,omptempty"`
	Id               *Int      `xmlrpc:"id,omptempty"`
	LastUpdate       *Time     `xmlrpc:"__last_update,omptempty"`
	StartBankStmtIds *Relation `xmlrpc:"start_bank_stmt_ids,omptempty"`
	Total            *Float    `xmlrpc:"total,omptempty"`
	WriteDate        *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid         *Many2One `xmlrpc:"write_uid,omptempty"`
}

AccountBankStatementCashbox represents account.bank.statement.cashbox model.

func (*AccountBankStatementCashbox) Many2One

func (absc *AccountBankStatementCashbox) Many2One() *Many2One

Many2One convert AccountBankStatementCashbox to *Many2One.

type AccountBankStatementCashboxs

type AccountBankStatementCashboxs []AccountBankStatementCashbox

AccountBankStatementCashboxs represents array of account.bank.statement.cashbox model.

type AccountBankStatementClosebalance

type AccountBankStatementClosebalance struct {
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

AccountBankStatementClosebalance represents account.bank.statement.closebalance model.

func (*AccountBankStatementClosebalance) Many2One

func (absc *AccountBankStatementClosebalance) Many2One() *Many2One

Many2One convert AccountBankStatementClosebalance to *Many2One.

type AccountBankStatementClosebalances

type AccountBankStatementClosebalances []AccountBankStatementClosebalance

AccountBankStatementClosebalances represents array of account.bank.statement.closebalance model.

type AccountBankStatementImport

type AccountBankStatementImport struct {
	AttachmentIds *Relation `xmlrpc:"attachment_ids,omptempty"`
	CreateDate    *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid     *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName   *String   `xmlrpc:"display_name,omptempty"`
	Id            *Int      `xmlrpc:"id,omptempty"`
	LastUpdate    *Time     `xmlrpc:"__last_update,omptempty"`
	WriteDate     *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid      *Many2One `xmlrpc:"write_uid,omptempty"`
}

AccountBankStatementImport represents account.bank.statement.import model.

func (*AccountBankStatementImport) Many2One

func (absi *AccountBankStatementImport) Many2One() *Many2One

Many2One convert AccountBankStatementImport to *Many2One.

type AccountBankStatementImportJournalCreation

type AccountBankStatementImportJournalCreation struct {
	AccountControlIds           *Relation  `xmlrpc:"account_control_ids,omptempty"`
	Active                      *Bool      `xmlrpc:"active,omptempty"`
	ActivityDateDeadline        *Time      `xmlrpc:"activity_date_deadline,omptempty"`
	ActivityExceptionDecoration *Selection `xmlrpc:"activity_exception_decoration,omptempty"`
	ActivityExceptionIcon       *String    `xmlrpc:"activity_exception_icon,omptempty"`
	ActivityIds                 *Relation  `xmlrpc:"activity_ids,omptempty"`
	ActivityState               *Selection `xmlrpc:"activity_state,omptempty"`
	ActivitySummary             *String    `xmlrpc:"activity_summary,omptempty"`
	ActivityTypeId              *Many2One  `xmlrpc:"activity_type_id,omptempty"`
	ActivityUserId              *Many2One  `xmlrpc:"activity_user_id,omptempty"`
	AliasDomain                 *String    `xmlrpc:"alias_domain,omptempty"`
	AliasId                     *Many2One  `xmlrpc:"alias_id,omptempty"`
	AliasName                   *String    `xmlrpc:"alias_name,omptempty"`
	AtLeastOneInbound           *Bool      `xmlrpc:"at_least_one_inbound,omptempty"`
	AtLeastOneOutbound          *Bool      `xmlrpc:"at_least_one_outbound,omptempty"`
	BankAccNumber               *String    `xmlrpc:"bank_acc_number,omptempty"`
	BankAccountId               *Many2One  `xmlrpc:"bank_account_id,omptempty"`
	BankId                      *Many2One  `xmlrpc:"bank_id,omptempty"`
	BankStatementsSource        *Selection `xmlrpc:"bank_statements_source,omptempty"`
	Code                        *String    `xmlrpc:"code,omptempty"`
	Color                       *Int       `xmlrpc:"color,omptempty"`
	CompanyId                   *Many2One  `xmlrpc:"company_id,omptempty"`
	CompanyPartnerId            *Many2One  `xmlrpc:"company_partner_id,omptempty"`
	CreateDate                  *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid                   *Many2One  `xmlrpc:"create_uid,omptempty"`
	CurrencyId                  *Many2One  `xmlrpc:"currency_id,omptempty"`
	DefaultCreditAccountId      *Many2One  `xmlrpc:"default_credit_account_id,omptempty"`
	DefaultDebitAccountId       *Many2One  `xmlrpc:"default_debit_account_id,omptempty"`
	DisplayName                 *String    `xmlrpc:"display_name,omptempty"`
	Id                          *Int       `xmlrpc:"id,omptempty"`
	InboundPaymentMethodIds     *Relation  `xmlrpc:"inbound_payment_method_ids,omptempty"`
	InvoiceReferenceModel       *Selection `xmlrpc:"invoice_reference_model,omptempty"`
	InvoiceReferenceType        *Selection `xmlrpc:"invoice_reference_type,omptempty"`
	JournalGroupIds             *Relation  `xmlrpc:"journal_group_ids,omptempty"`
	JournalId                   *Many2One  `xmlrpc:"journal_id,omptempty"`
	JsonActivityData            *String    `xmlrpc:"json_activity_data,omptempty"`
	KanbanDashboard             *String    `xmlrpc:"kanban_dashboard,omptempty"`
	KanbanDashboardGraph        *String    `xmlrpc:"kanban_dashboard_graph,omptempty"`
	LastUpdate                  *Time      `xmlrpc:"__last_update,omptempty"`
	LossAccountId               *Many2One  `xmlrpc:"loss_account_id,omptempty"`
	MessageAttachmentCount      *Int       `xmlrpc:"message_attachment_count,omptempty"`
	MessageChannelIds           *Relation  `xmlrpc:"message_channel_ids,omptempty"`
	MessageFollowerIds          *Relation  `xmlrpc:"message_follower_ids,omptempty"`
	MessageHasError             *Bool      `xmlrpc:"message_has_error,omptempty"`
	MessageHasErrorCounter      *Int       `xmlrpc:"message_has_error_counter,omptempty"`
	MessageHasSmsError          *Bool      `xmlrpc:"message_has_sms_error,omptempty"`
	MessageIds                  *Relation  `xmlrpc:"message_ids,omptempty"`
	MessageIsFollower           *Bool      `xmlrpc:"message_is_follower,omptempty"`
	MessageMainAttachmentId     *Many2One  `xmlrpc:"message_main_attachment_id,omptempty"`
	MessageNeedaction           *Bool      `xmlrpc:"message_needaction,omptempty"`
	MessageNeedactionCounter    *Int       `xmlrpc:"message_needaction_counter,omptempty"`
	MessagePartnerIds           *Relation  `xmlrpc:"message_partner_ids,omptempty"`
	MessageUnread               *Bool      `xmlrpc:"message_unread,omptempty"`
	MessageUnreadCounter        *Int       `xmlrpc:"message_unread_counter,omptempty"`
	Name                        *String    `xmlrpc:"name,omptempty"`
	OutboundPaymentMethodIds    *Relation  `xmlrpc:"outbound_payment_method_ids,omptempty"`
	PostAt                      *Selection `xmlrpc:"post_at,omptempty"`
	ProfitAccountId             *Many2One  `xmlrpc:"profit_account_id,omptempty"`
	RefundSequence              *Bool      `xmlrpc:"refund_sequence,omptempty"`
	RefundSequenceId            *Many2One  `xmlrpc:"refund_sequence_id,omptempty"`
	RefundSequenceNumberNext    *Int       `xmlrpc:"refund_sequence_number_next,omptempty"`
	RestrictModeHashTable       *Bool      `xmlrpc:"restrict_mode_hash_table,omptempty"`
	SecureSequenceId            *Many2One  `xmlrpc:"secure_sequence_id,omptempty"`
	Sequence                    *Int       `xmlrpc:"sequence,omptempty"`
	SequenceId                  *Many2One  `xmlrpc:"sequence_id,omptempty"`
	SequenceNumberNext          *Int       `xmlrpc:"sequence_number_next,omptempty"`
	ShowOnDashboard             *Bool      `xmlrpc:"show_on_dashboard,omptempty"`
	Type                        *Selection `xmlrpc:"type,omptempty"`
	TypeControlIds              *Relation  `xmlrpc:"type_control_ids,omptempty"`
	WebsiteMessageIds           *Relation  `xmlrpc:"website_message_ids,omptempty"`
	WriteDate                   *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid                    *Many2One  `xmlrpc:"write_uid,omptempty"`
}

AccountBankStatementImportJournalCreation represents account.bank.statement.import.journal.creation model.

func (*AccountBankStatementImportJournalCreation) Many2One

Many2One convert AccountBankStatementImportJournalCreation to *Many2One.

type AccountBankStatementImportJournalCreations

type AccountBankStatementImportJournalCreations []AccountBankStatementImportJournalCreation

AccountBankStatementImportJournalCreations represents array of account.bank.statement.import.journal.creation model.

type AccountBankStatementImports

type AccountBankStatementImports []AccountBankStatementImport

AccountBankStatementImports represents array of account.bank.statement.import model.

type AccountBankStatementLine

type AccountBankStatementLine struct {
	AccountId         *Many2One  `xmlrpc:"account_id,omptempty"`
	AccountNumber     *String    `xmlrpc:"account_number,omptempty"`
	Amount            *Float     `xmlrpc:"amount,omptempty"`
	AmountCurrency    *Float     `xmlrpc:"amount_currency,omptempty"`
	BankAccountId     *Many2One  `xmlrpc:"bank_account_id,omptempty"`
	CompanyId         *Many2One  `xmlrpc:"company_id,omptempty"`
	CreateDate        *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid         *Many2One  `xmlrpc:"create_uid,omptempty"`
	CurrencyId        *Many2One  `xmlrpc:"currency_id,omptempty"`
	Date              *Time      `xmlrpc:"date,omptempty"`
	DisplayName       *String    `xmlrpc:"display_name,omptempty"`
	Id                *Int       `xmlrpc:"id,omptempty"`
	JournalCurrencyId *Many2One  `xmlrpc:"journal_currency_id,omptempty"`
	JournalEntryIds   *Relation  `xmlrpc:"journal_entry_ids,omptempty"`
	JournalId         *Many2One  `xmlrpc:"journal_id,omptempty"`
	LastUpdate        *Time      `xmlrpc:"__last_update,omptempty"`
	MoveName          *String    `xmlrpc:"move_name,omptempty"`
	Name              *String    `xmlrpc:"name,omptempty"`
	Note              *String    `xmlrpc:"note,omptempty"`
	PartnerId         *Many2One  `xmlrpc:"partner_id,omptempty"`
	PartnerName       *String    `xmlrpc:"partner_name,omptempty"`
	Ref               *String    `xmlrpc:"ref,omptempty"`
	Sequence          *Int       `xmlrpc:"sequence,omptempty"`
	State             *Selection `xmlrpc:"state,omptempty"`
	StatementId       *Many2One  `xmlrpc:"statement_id,omptempty"`
	TransactionType   *String    `xmlrpc:"transaction_type,omptempty"`
	UniqueImportId    *String    `xmlrpc:"unique_import_id,omptempty"`
	WriteDate         *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid          *Many2One  `xmlrpc:"write_uid,omptempty"`
}

AccountBankStatementLine represents account.bank.statement.line model.

func (*AccountBankStatementLine) Many2One

func (absl *AccountBankStatementLine) Many2One() *Many2One

Many2One convert AccountBankStatementLine to *Many2One.

type AccountBankStatementLines

type AccountBankStatementLines []AccountBankStatementLine

AccountBankStatementLines represents array of account.bank.statement.line model.

type AccountBankStatements

type AccountBankStatements []AccountBankStatement

AccountBankStatements represents array of account.bank.statement model.

type AccountCashRounding

type AccountCashRounding struct {
	AccountId      *Many2One  `xmlrpc:"account_id,omptempty"`
	CompanyId      *Many2One  `xmlrpc:"company_id,omptempty"`
	CreateDate     *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid      *Many2One  `xmlrpc:"create_uid,omptempty"`
	DisplayName    *String    `xmlrpc:"display_name,omptempty"`
	Id             *Int       `xmlrpc:"id,omptempty"`
	LastUpdate     *Time      `xmlrpc:"__last_update,omptempty"`
	Name           *String    `xmlrpc:"name,omptempty"`
	Rounding       *Float     `xmlrpc:"rounding,omptempty"`
	RoundingMethod *Selection `xmlrpc:"rounding_method,omptempty"`
	Strategy       *Selection `xmlrpc:"strategy,omptempty"`
	WriteDate      *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid       *Many2One  `xmlrpc:"write_uid,omptempty"`
}

AccountCashRounding represents account.cash.rounding model.

func (*AccountCashRounding) Many2One

func (acr *AccountCashRounding) Many2One() *Many2One

Many2One convert AccountCashRounding to *Many2One.

type AccountCashRoundings

type AccountCashRoundings []AccountCashRounding

AccountCashRoundings represents array of account.cash.rounding model.

type AccountCashboxLine

type AccountCashboxLine struct {
	CashboxId   *Many2One `xmlrpc:"cashbox_id,omptempty"`
	CoinValue   *Float    `xmlrpc:"coin_value,omptempty"`
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	CurrencyId  *Many2One `xmlrpc:"currency_id,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	Number      *Int      `xmlrpc:"number,omptempty"`
	Subtotal    *Float    `xmlrpc:"subtotal,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

AccountCashboxLine represents account.cashbox.line model.

func (*AccountCashboxLine) Many2One

func (acl *AccountCashboxLine) Many2One() *Many2One

Many2One convert AccountCashboxLine to *Many2One.

type AccountCashboxLines

type AccountCashboxLines []AccountCashboxLine

AccountCashboxLines represents array of account.cashbox.line model.

type AccountChartTemplate

type AccountChartTemplate struct {
	AccountIds                            *Relation `xmlrpc:"account_ids,omptempty"`
	BankAccountCodePrefix                 *String   `xmlrpc:"bank_account_code_prefix,omptempty"`
	CashAccountCodePrefix                 *String   `xmlrpc:"cash_account_code_prefix,omptempty"`
	CodeDigits                            *Int      `xmlrpc:"code_digits,omptempty"`
	CompleteTaxSet                        *Bool     `xmlrpc:"complete_tax_set,omptempty"`
	CreateDate                            *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid                             *Many2One `xmlrpc:"create_uid,omptempty"`
	CurrencyId                            *Many2One `xmlrpc:"currency_id,omptempty"`
	DefaultCashDifferenceExpenseAccountId *Many2One `xmlrpc:"default_cash_difference_expense_account_id,omptempty"`
	DefaultCashDifferenceIncomeAccountId  *Many2One `xmlrpc:"default_cash_difference_income_account_id,omptempty"`
	DefaultPosReceivableAccountId         *Many2One `xmlrpc:"default_pos_receivable_account_id,omptempty"`
	DisplayName                           *String   `xmlrpc:"display_name,omptempty"`
	ExpenseCurrencyExchangeAccountId      *Many2One `xmlrpc:"expense_currency_exchange_account_id,omptempty"`
	Id                                    *Int      `xmlrpc:"id,omptempty"`
	IncomeCurrencyExchangeAccountId       *Many2One `xmlrpc:"income_currency_exchange_account_id,omptempty"`
	LastUpdate                            *Time     `xmlrpc:"__last_update,omptempty"`
	Name                                  *String   `xmlrpc:"name,omptempty"`
	ParentId                              *Many2One `xmlrpc:"parent_id,omptempty"`
	PropertyAccountExpenseCategId         *Many2One `xmlrpc:"property_account_expense_categ_id,omptempty"`
	PropertyAccountExpenseId              *Many2One `xmlrpc:"property_account_expense_id,omptempty"`
	PropertyAccountIncomeCategId          *Many2One `xmlrpc:"property_account_income_categ_id,omptempty"`
	PropertyAccountIncomeId               *Many2One `xmlrpc:"property_account_income_id,omptempty"`
	PropertyAccountPayableId              *Many2One `xmlrpc:"property_account_payable_id,omptempty"`
	PropertyAccountReceivableId           *Many2One `xmlrpc:"property_account_receivable_id,omptempty"`
	PropertyAdvanceTaxPaymentAccountId    *Many2One `xmlrpc:"property_advance_tax_payment_account_id,omptempty"`
	PropertyStockAccountInputCategId      *Many2One `xmlrpc:"property_stock_account_input_categ_id,omptempty"`
	PropertyStockAccountOutputCategId     *Many2One `xmlrpc:"property_stock_account_output_categ_id,omptempty"`
	PropertyStockValuationAccountId       *Many2One `xmlrpc:"property_stock_valuation_account_id,omptempty"`
	PropertyTaxPayableAccountId           *Many2One `xmlrpc:"property_tax_payable_account_id,omptempty"`
	PropertyTaxReceivableAccountId        *Many2One `xmlrpc:"property_tax_receivable_account_id,omptempty"`
	TaxTemplateIds                        *Relation `xmlrpc:"tax_template_ids,omptempty"`
	TransferAccountCodePrefix             *String   `xmlrpc:"transfer_account_code_prefix,omptempty"`
	UseAngloSaxon                         *Bool     `xmlrpc:"use_anglo_saxon,omptempty"`
	Visible                               *Bool     `xmlrpc:"visible,omptempty"`
	WriteDate                             *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid                              *Many2One `xmlrpc:"write_uid,omptempty"`
}

AccountChartTemplate represents account.chart.template model.

func (*AccountChartTemplate) Many2One

func (act *AccountChartTemplate) Many2One() *Many2One

Many2One convert AccountChartTemplate to *Many2One.

type AccountChartTemplates

type AccountChartTemplates []AccountChartTemplate

AccountChartTemplates represents array of account.chart.template model.

type AccountCommonJournalReport

type AccountCommonJournalReport struct {
	AmountCurrency *Bool      `xmlrpc:"amount_currency,omptempty"`
	CompanyId      *Many2One  `xmlrpc:"company_id,omptempty"`
	CreateDate     *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid      *Many2One  `xmlrpc:"create_uid,omptempty"`
	DateFrom       *Time      `xmlrpc:"date_from,omptempty"`
	DateTo         *Time      `xmlrpc:"date_to,omptempty"`
	DisplayName    *String    `xmlrpc:"display_name,omptempty"`
	Id             *Int       `xmlrpc:"id,omptempty"`
	JournalIds     *Relation  `xmlrpc:"journal_ids,omptempty"`
	LastUpdate     *Time      `xmlrpc:"__last_update,omptempty"`
	TargetMove     *Selection `xmlrpc:"target_move,omptempty"`
	WriteDate      *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid       *Many2One  `xmlrpc:"write_uid,omptempty"`
}

AccountCommonJournalReport represents account.common.journal.report model.

func (*AccountCommonJournalReport) Many2One

func (acjr *AccountCommonJournalReport) Many2One() *Many2One

Many2One convert AccountCommonJournalReport to *Many2One.

type AccountCommonJournalReports

type AccountCommonJournalReports []AccountCommonJournalReport

AccountCommonJournalReports represents array of account.common.journal.report model.

type AccountCommonReport

type AccountCommonReport struct {
	CompanyId   *Many2One  `xmlrpc:"company_id,omptempty"`
	CreateDate  *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One  `xmlrpc:"create_uid,omptempty"`
	DateFrom    *Time      `xmlrpc:"date_from,omptempty"`
	DateTo      *Time      `xmlrpc:"date_to,omptempty"`
	DisplayName *String    `xmlrpc:"display_name,omptempty"`
	Id          *Int       `xmlrpc:"id,omptempty"`
	JournalIds  *Relation  `xmlrpc:"journal_ids,omptempty"`
	LastUpdate  *Time      `xmlrpc:"__last_update,omptempty"`
	TargetMove  *Selection `xmlrpc:"target_move,omptempty"`
	WriteDate   *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One  `xmlrpc:"write_uid,omptempty"`
}

AccountCommonReport represents account.common.report model.

func (*AccountCommonReport) Many2One

func (acr *AccountCommonReport) Many2One() *Many2One

Many2One convert AccountCommonReport to *Many2One.

type AccountCommonReports

type AccountCommonReports []AccountCommonReport

AccountCommonReports represents array of account.common.report model.

type AccountFinancialYearOp

type AccountFinancialYearOp struct {
	CompanyId           *Many2One  `xmlrpc:"company_id,omptempty"`
	CreateDate          *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid           *Many2One  `xmlrpc:"create_uid,omptempty"`
	DisplayName         *String    `xmlrpc:"display_name,omptempty"`
	FiscalyearLastDay   *Int       `xmlrpc:"fiscalyear_last_day,omptempty"`
	FiscalyearLastMonth *Selection `xmlrpc:"fiscalyear_last_month,omptempty"`
	Id                  *Int       `xmlrpc:"id,omptempty"`
	LastUpdate          *Time      `xmlrpc:"__last_update,omptempty"`
	OpeningDate         *Time      `xmlrpc:"opening_date,omptempty"`
	OpeningMovePosted   *Bool      `xmlrpc:"opening_move_posted,omptempty"`
	WriteDate           *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid            *Many2One  `xmlrpc:"write_uid,omptempty"`
}

AccountFinancialYearOp represents account.financial.year.op model.

func (*AccountFinancialYearOp) Many2One

func (afyo *AccountFinancialYearOp) Many2One() *Many2One

Many2One convert AccountFinancialYearOp to *Many2One.

type AccountFinancialYearOps

type AccountFinancialYearOps []AccountFinancialYearOp

AccountFinancialYearOps represents array of account.financial.year.op model.

type AccountFiscalPosition

type AccountFiscalPosition struct {
	AccountIds     *Relation `xmlrpc:"account_ids,omptempty"`
	Active         *Bool     `xmlrpc:"active,omptempty"`
	AutoApply      *Bool     `xmlrpc:"auto_apply,omptempty"`
	CompanyId      *Many2One `xmlrpc:"company_id,omptempty"`
	CountryGroupId *Many2One `xmlrpc:"country_group_id,omptempty"`
	CountryId      *Many2One `xmlrpc:"country_id,omptempty"`
	CreateDate     *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid      *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName    *String   `xmlrpc:"display_name,omptempty"`
	Id             *Int      `xmlrpc:"id,omptempty"`
	LastUpdate     *Time     `xmlrpc:"__last_update,omptempty"`
	Name           *String   `xmlrpc:"name,omptempty"`
	Note           *String   `xmlrpc:"note,omptempty"`
	Sequence       *Int      `xmlrpc:"sequence,omptempty"`
	StateIds       *Relation `xmlrpc:"state_ids,omptempty"`
	StatesCount    *Int      `xmlrpc:"states_count,omptempty"`
	TaxIds         *Relation `xmlrpc:"tax_ids,omptempty"`
	VatRequired    *Bool     `xmlrpc:"vat_required,omptempty"`
	WriteDate      *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid       *Many2One `xmlrpc:"write_uid,omptempty"`
	ZipFrom        *String   `xmlrpc:"zip_from,omptempty"`
	ZipTo          *String   `xmlrpc:"zip_to,omptempty"`
}

AccountFiscalPosition represents account.fiscal.position model.

func (*AccountFiscalPosition) Many2One

func (afp *AccountFiscalPosition) Many2One() *Many2One

Many2One convert AccountFiscalPosition to *Many2One.

type AccountFiscalPositionAccount

type AccountFiscalPositionAccount struct {
	AccountDestId *Many2One `xmlrpc:"account_dest_id,omptempty"`
	AccountSrcId  *Many2One `xmlrpc:"account_src_id,omptempty"`
	CreateDate    *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid     *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName   *String   `xmlrpc:"display_name,omptempty"`
	Id            *Int      `xmlrpc:"id,omptempty"`
	LastUpdate    *Time     `xmlrpc:"__last_update,omptempty"`
	PositionId    *Many2One `xmlrpc:"position_id,omptempty"`
	WriteDate     *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid      *Many2One `xmlrpc:"write_uid,omptempty"`
}

AccountFiscalPositionAccount represents account.fiscal.position.account model.

func (*AccountFiscalPositionAccount) Many2One

func (afpa *AccountFiscalPositionAccount) Many2One() *Many2One

Many2One convert AccountFiscalPositionAccount to *Many2One.

type AccountFiscalPositionAccountTemplate

type AccountFiscalPositionAccountTemplate struct {
	AccountDestId *Many2One `xmlrpc:"account_dest_id,omptempty"`
	AccountSrcId  *Many2One `xmlrpc:"account_src_id,omptempty"`
	CreateDate    *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid     *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName   *String   `xmlrpc:"display_name,omptempty"`
	Id            *Int      `xmlrpc:"id,omptempty"`
	LastUpdate    *Time     `xmlrpc:"__last_update,omptempty"`
	PositionId    *Many2One `xmlrpc:"position_id,omptempty"`
	WriteDate     *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid      *Many2One `xmlrpc:"write_uid,omptempty"`
}

AccountFiscalPositionAccountTemplate represents account.fiscal.position.account.template model.

func (*AccountFiscalPositionAccountTemplate) Many2One

Many2One convert AccountFiscalPositionAccountTemplate to *Many2One.

type AccountFiscalPositionAccountTemplates

type AccountFiscalPositionAccountTemplates []AccountFiscalPositionAccountTemplate

AccountFiscalPositionAccountTemplates represents array of account.fiscal.position.account.template model.

type AccountFiscalPositionAccounts

type AccountFiscalPositionAccounts []AccountFiscalPositionAccount

AccountFiscalPositionAccounts represents array of account.fiscal.position.account model.

type AccountFiscalPositionTax

type AccountFiscalPositionTax struct {
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	PositionId  *Many2One `xmlrpc:"position_id,omptempty"`
	TaxDestId   *Many2One `xmlrpc:"tax_dest_id,omptempty"`
	TaxSrcId    *Many2One `xmlrpc:"tax_src_id,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

AccountFiscalPositionTax represents account.fiscal.position.tax model.

func (*AccountFiscalPositionTax) Many2One

func (afpt *AccountFiscalPositionTax) Many2One() *Many2One

Many2One convert AccountFiscalPositionTax to *Many2One.

type AccountFiscalPositionTaxTemplate

type AccountFiscalPositionTaxTemplate struct {
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	PositionId  *Many2One `xmlrpc:"position_id,omptempty"`
	TaxDestId   *Many2One `xmlrpc:"tax_dest_id,omptempty"`
	TaxSrcId    *Many2One `xmlrpc:"tax_src_id,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

AccountFiscalPositionTaxTemplate represents account.fiscal.position.tax.template model.

func (*AccountFiscalPositionTaxTemplate) Many2One

func (afptt *AccountFiscalPositionTaxTemplate) Many2One() *Many2One

Many2One convert AccountFiscalPositionTaxTemplate to *Many2One.

type AccountFiscalPositionTaxTemplates

type AccountFiscalPositionTaxTemplates []AccountFiscalPositionTaxTemplate

AccountFiscalPositionTaxTemplates represents array of account.fiscal.position.tax.template model.

type AccountFiscalPositionTaxs

type AccountFiscalPositionTaxs []AccountFiscalPositionTax

AccountFiscalPositionTaxs represents array of account.fiscal.position.tax model.

type AccountFiscalPositionTemplate

type AccountFiscalPositionTemplate struct {
	AccountIds      *Relation `xmlrpc:"account_ids,omptempty"`
	AutoApply       *Bool     `xmlrpc:"auto_apply,omptempty"`
	ChartTemplateId *Many2One `xmlrpc:"chart_template_id,omptempty"`
	CountryGroupId  *Many2One `xmlrpc:"country_group_id,omptempty"`
	CountryId       *Many2One `xmlrpc:"country_id,omptempty"`
	CreateDate      *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid       *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName     *String   `xmlrpc:"display_name,omptempty"`
	Id              *Int      `xmlrpc:"id,omptempty"`
	LastUpdate      *Time     `xmlrpc:"__last_update,omptempty"`
	Name            *String   `xmlrpc:"name,omptempty"`
	Note            *String   `xmlrpc:"note,omptempty"`
	Sequence        *Int      `xmlrpc:"sequence,omptempty"`
	StateIds        *Relation `xmlrpc:"state_ids,omptempty"`
	TaxIds          *Relation `xmlrpc:"tax_ids,omptempty"`
	VatRequired     *Bool     `xmlrpc:"vat_required,omptempty"`
	WriteDate       *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid        *Many2One `xmlrpc:"write_uid,omptempty"`
	ZipFrom         *String   `xmlrpc:"zip_from,omptempty"`
	ZipTo           *String   `xmlrpc:"zip_to,omptempty"`
}

AccountFiscalPositionTemplate represents account.fiscal.position.template model.

func (*AccountFiscalPositionTemplate) Many2One

func (afpt *AccountFiscalPositionTemplate) Many2One() *Many2One

Many2One convert AccountFiscalPositionTemplate to *Many2One.

type AccountFiscalPositionTemplates

type AccountFiscalPositionTemplates []AccountFiscalPositionTemplate

AccountFiscalPositionTemplates represents array of account.fiscal.position.template model.

type AccountFiscalPositions

type AccountFiscalPositions []AccountFiscalPosition

AccountFiscalPositions represents array of account.fiscal.position model.

type AccountFiscalYear

type AccountFiscalYear struct {
	CompanyId   *Many2One `xmlrpc:"company_id,omptempty"`
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DateFrom    *Time     `xmlrpc:"date_from,omptempty"`
	DateTo      *Time     `xmlrpc:"date_to,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	Name        *String   `xmlrpc:"name,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

AccountFiscalYear represents account.fiscal.year model.

func (*AccountFiscalYear) Many2One

func (afy *AccountFiscalYear) Many2One() *Many2One

Many2One convert AccountFiscalYear to *Many2One.

type AccountFiscalYears

type AccountFiscalYears []AccountFiscalYear

AccountFiscalYears represents array of account.fiscal.year model.

type AccountFullReconcile

type AccountFullReconcile struct {
	CreateDate          *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid           *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName         *String   `xmlrpc:"display_name,omptempty"`
	ExchangeMoveId      *Many2One `xmlrpc:"exchange_move_id,omptempty"`
	Id                  *Int      `xmlrpc:"id,omptempty"`
	LastUpdate          *Time     `xmlrpc:"__last_update,omptempty"`
	Name                *String   `xmlrpc:"name,omptempty"`
	PartialReconcileIds *Relation `xmlrpc:"partial_reconcile_ids,omptempty"`
	ReconciledLineIds   *Relation `xmlrpc:"reconciled_line_ids,omptempty"`
	WriteDate           *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid            *Many2One `xmlrpc:"write_uid,omptempty"`
}

AccountFullReconcile represents account.full.reconcile model.

func (*AccountFullReconcile) Many2One

func (afr *AccountFullReconcile) Many2One() *Many2One

Many2One convert AccountFullReconcile to *Many2One.

type AccountFullReconciles

type AccountFullReconciles []AccountFullReconcile

AccountFullReconciles represents array of account.full.reconcile model.

type AccountGroup

type AccountGroup struct {
	CodePrefix  *String   `xmlrpc:"code_prefix,omptempty"`
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	Name        *String   `xmlrpc:"name,omptempty"`
	ParentId    *Many2One `xmlrpc:"parent_id,omptempty"`
	ParentPath  *String   `xmlrpc:"parent_path,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

AccountGroup represents account.group model.

func (*AccountGroup) Many2One

func (ag *AccountGroup) Many2One() *Many2One

Many2One convert AccountGroup to *Many2One.

type AccountGroups

type AccountGroups []AccountGroup

AccountGroups represents array of account.group model.

type AccountIncoterms

type AccountIncoterms struct {
	Active      *Bool     `xmlrpc:"active,omptempty"`
	Code        *String   `xmlrpc:"code,omptempty"`
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	Name        *String   `xmlrpc:"name,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

AccountIncoterms represents account.incoterms model.

func (*AccountIncoterms) Many2One

func (ai *AccountIncoterms) Many2One() *Many2One

Many2One convert AccountIncoterms to *Many2One.

type AccountIncotermss

type AccountIncotermss []AccountIncoterms

AccountIncotermss represents array of account.incoterms model.

type AccountInvoiceReport

type AccountInvoiceReport struct {
	AccountId            *Many2One  `xmlrpc:"account_id,omptempty"`
	AmountTotal          *Float     `xmlrpc:"amount_total,omptempty"`
	AnalyticAccountId    *Many2One  `xmlrpc:"analytic_account_id,omptempty"`
	CommercialPartnerId  *Many2One  `xmlrpc:"commercial_partner_id,omptempty"`
	CompanyId            *Many2One  `xmlrpc:"company_id,omptempty"`
	CountryId            *Many2One  `xmlrpc:"country_id,omptempty"`
	CurrencyId           *Many2One  `xmlrpc:"currency_id,omptempty"`
	DisplayName          *String    `xmlrpc:"display_name,omptempty"`
	FiscalPositionId     *Many2One  `xmlrpc:"fiscal_position_id,omptempty"`
	Id                   *Int       `xmlrpc:"id,omptempty"`
	InvoiceDate          *Time      `xmlrpc:"invoice_date,omptempty"`
	InvoiceDateDue       *Time      `xmlrpc:"invoice_date_due,omptempty"`
	InvoicePartnerBankId *Many2One  `xmlrpc:"invoice_partner_bank_id,omptempty"`
	InvoicePaymentState  *Selection `xmlrpc:"invoice_payment_state,omptempty"`
	InvoicePaymentTermId *Many2One  `xmlrpc:"invoice_payment_term_id,omptempty"`
	InvoiceUserId        *Many2One  `xmlrpc:"invoice_user_id,omptempty"`
	JournalId            *Many2One  `xmlrpc:"journal_id,omptempty"`
	LastUpdate           *Time      `xmlrpc:"__last_update,omptempty"`
	MoveId               *Many2One  `xmlrpc:"move_id,omptempty"`
	Name                 *String    `xmlrpc:"name,omptempty"`
	NbrLines             *Int       `xmlrpc:"nbr_lines,omptempty"`
	PartnerId            *Many2One  `xmlrpc:"partner_id,omptempty"`
	PriceAverage         *Float     `xmlrpc:"price_average,omptempty"`
	PriceSubtotal        *Float     `xmlrpc:"price_subtotal,omptempty"`
	ProductCategId       *Many2One  `xmlrpc:"product_categ_id,omptempty"`
	ProductId            *Many2One  `xmlrpc:"product_id,omptempty"`
	ProductUomId         *Many2One  `xmlrpc:"product_uom_id,omptempty"`
	Quantity             *Float     `xmlrpc:"quantity,omptempty"`
	Residual             *Float     `xmlrpc:"residual,omptempty"`
	State                *Selection `xmlrpc:"state,omptempty"`
	TeamId               *Many2One  `xmlrpc:"team_id,omptempty"`
	Type                 *Selection `xmlrpc:"type,omptempty"`
}

AccountInvoiceReport represents account.invoice.report model.

func (*AccountInvoiceReport) Many2One

func (air *AccountInvoiceReport) Many2One() *Many2One

Many2One convert AccountInvoiceReport to *Many2One.

type AccountInvoiceReports

type AccountInvoiceReports []AccountInvoiceReport

AccountInvoiceReports represents array of account.invoice.report model.

type AccountInvoiceSend

type AccountInvoiceSend struct {
	ActiveDomain        *String    `xmlrpc:"active_domain,omptempty"`
	AddSign             *Bool      `xmlrpc:"add_sign,omptempty"`
	AttachmentIds       *Relation  `xmlrpc:"attachment_ids,omptempty"`
	AuthorId            *Many2One  `xmlrpc:"author_id,omptempty"`
	AutoDelete          *Bool      `xmlrpc:"auto_delete,omptempty"`
	AutoDeleteMessage   *Bool      `xmlrpc:"auto_delete_message,omptempty"`
	Body                *String    `xmlrpc:"body,omptempty"`
	CampaignId          *Many2One  `xmlrpc:"campaign_id,omptempty"`
	ComposerId          *Many2One  `xmlrpc:"composer_id,omptempty"`
	CompositionMode     *Selection `xmlrpc:"composition_mode,omptempty"`
	CreateDate          *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid           *Many2One  `xmlrpc:"create_uid,omptempty"`
	DisplayName         *String    `xmlrpc:"display_name,omptempty"`
	EmailFrom           *String    `xmlrpc:"email_from,omptempty"`
	Id                  *Int       `xmlrpc:"id,omptempty"`
	InvalidAddresses    *Int       `xmlrpc:"invalid_addresses,omptempty"`
	InvalidInvoiceIds   *Relation  `xmlrpc:"invalid_invoice_ids,omptempty"`
	InvoiceIds          *Relation  `xmlrpc:"invoice_ids,omptempty"`
	InvoiceWithoutEmail *String    `xmlrpc:"invoice_without_email,omptempty"`
	IsEmail             *Bool      `xmlrpc:"is_email,omptempty"`
	IsLog               *Bool      `xmlrpc:"is_log,omptempty"`
	IsPrint             *Bool      `xmlrpc:"is_print,omptempty"`
	LastUpdate          *Time      `xmlrpc:"__last_update,omptempty"`
	Layout              *String    `xmlrpc:"layout,omptempty"`
	MailActivityTypeId  *Many2One  `xmlrpc:"mail_activity_type_id,omptempty"`
	MailingListIds      *Relation  `xmlrpc:"mailing_list_ids,omptempty"`
	MailServerId        *Many2One  `xmlrpc:"mail_server_id,omptempty"`
	MassMailingId       *Many2One  `xmlrpc:"mass_mailing_id,omptempty"`
	MassMailingName     *String    `xmlrpc:"mass_mailing_name,omptempty"`
	MessageType         *Selection `xmlrpc:"message_type,omptempty"`
	Model               *String    `xmlrpc:"model,omptempty"`
	NoAutoThread        *Bool      `xmlrpc:"no_auto_thread,omptempty"`
	Notify              *Bool      `xmlrpc:"notify,omptempty"`
	ParentId            *Many2One  `xmlrpc:"parent_id,omptempty"`
	PartnerId           *Many2One  `xmlrpc:"partner_id,omptempty"`
	PartnerIds          *Relation  `xmlrpc:"partner_ids,omptempty"`
	Printed             *Bool      `xmlrpc:"printed,omptempty"`
	RecordName          *String    `xmlrpc:"record_name,omptempty"`
	ReplyTo             *String    `xmlrpc:"reply_to,omptempty"`
	ResId               *Int       `xmlrpc:"res_id,omptempty"`
	SnailmailCost       *Float     `xmlrpc:"snailmail_cost,omptempty"`
	SnailmailIsLetter   *Bool      `xmlrpc:"snailmail_is_letter,omptempty"`
	Subject             *String    `xmlrpc:"subject,omptempty"`
	SubtypeId           *Many2One  `xmlrpc:"subtype_id,omptempty"`
	TemplateId          *Many2One  `xmlrpc:"template_id,omptempty"`
	UseActiveDomain     *Bool      `xmlrpc:"use_active_domain,omptempty"`
	WriteDate           *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid            *Many2One  `xmlrpc:"write_uid,omptempty"`
}

AccountInvoiceSend represents account.invoice.send model.

func (*AccountInvoiceSend) Many2One

func (ais *AccountInvoiceSend) Many2One() *Many2One

Many2One convert AccountInvoiceSend to *Many2One.

type AccountInvoiceSends

type AccountInvoiceSends []AccountInvoiceSend

AccountInvoiceSends represents array of account.invoice.send model.

type AccountJournal

type AccountJournal struct {
	AccountControlIds           *Relation  `xmlrpc:"account_control_ids,omptempty"`
	Active                      *Bool      `xmlrpc:"active,omptempty"`
	ActivityDateDeadline        *Time      `xmlrpc:"activity_date_deadline,omptempty"`
	ActivityExceptionDecoration *Selection `xmlrpc:"activity_exception_decoration,omptempty"`
	ActivityExceptionIcon       *String    `xmlrpc:"activity_exception_icon,omptempty"`
	ActivityIds                 *Relation  `xmlrpc:"activity_ids,omptempty"`
	ActivityState               *Selection `xmlrpc:"activity_state,omptempty"`
	ActivitySummary             *String    `xmlrpc:"activity_summary,omptempty"`
	ActivityTypeId              *Many2One  `xmlrpc:"activity_type_id,omptempty"`
	ActivityUserId              *Many2One  `xmlrpc:"activity_user_id,omptempty"`
	AliasDomain                 *String    `xmlrpc:"alias_domain,omptempty"`
	AliasId                     *Many2One  `xmlrpc:"alias_id,omptempty"`
	AliasName                   *String    `xmlrpc:"alias_name,omptempty"`
	AtLeastOneInbound           *Bool      `xmlrpc:"at_least_one_inbound,omptempty"`
	AtLeastOneOutbound          *Bool      `xmlrpc:"at_least_one_outbound,omptempty"`
	BankAccNumber               *String    `xmlrpc:"bank_acc_number,omptempty"`
	BankAccountId               *Many2One  `xmlrpc:"bank_account_id,omptempty"`
	BankId                      *Many2One  `xmlrpc:"bank_id,omptempty"`
	BankStatementsSource        *Selection `xmlrpc:"bank_statements_source,omptempty"`
	Code                        *String    `xmlrpc:"code,omptempty"`
	Color                       *Int       `xmlrpc:"color,omptempty"`
	CompanyId                   *Many2One  `xmlrpc:"company_id,omptempty"`
	CompanyPartnerId            *Many2One  `xmlrpc:"company_partner_id,omptempty"`
	CreateDate                  *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid                   *Many2One  `xmlrpc:"create_uid,omptempty"`
	CurrencyId                  *Many2One  `xmlrpc:"currency_id,omptempty"`
	DefaultCreditAccountId      *Many2One  `xmlrpc:"default_credit_account_id,omptempty"`
	DefaultDebitAccountId       *Many2One  `xmlrpc:"default_debit_account_id,omptempty"`
	DisplayName                 *String    `xmlrpc:"display_name,omptempty"`
	Id                          *Int       `xmlrpc:"id,omptempty"`
	InboundPaymentMethodIds     *Relation  `xmlrpc:"inbound_payment_method_ids,omptempty"`
	InvoiceReferenceModel       *Selection `xmlrpc:"invoice_reference_model,omptempty"`
	InvoiceReferenceType        *Selection `xmlrpc:"invoice_reference_type,omptempty"`
	JournalGroupIds             *Relation  `xmlrpc:"journal_group_ids,omptempty"`
	JsonActivityData            *String    `xmlrpc:"json_activity_data,omptempty"`
	KanbanDashboard             *String    `xmlrpc:"kanban_dashboard,omptempty"`
	KanbanDashboardGraph        *String    `xmlrpc:"kanban_dashboard_graph,omptempty"`
	LastUpdate                  *Time      `xmlrpc:"__last_update,omptempty"`
	LossAccountId               *Many2One  `xmlrpc:"loss_account_id,omptempty"`
	MessageAttachmentCount      *Int       `xmlrpc:"message_attachment_count,omptempty"`
	MessageChannelIds           *Relation  `xmlrpc:"message_channel_ids,omptempty"`
	MessageFollowerIds          *Relation  `xmlrpc:"message_follower_ids,omptempty"`
	MessageHasError             *Bool      `xmlrpc:"message_has_error,omptempty"`
	MessageHasErrorCounter      *Int       `xmlrpc:"message_has_error_counter,omptempty"`
	MessageHasSmsError          *Bool      `xmlrpc:"message_has_sms_error,omptempty"`
	MessageIds                  *Relation  `xmlrpc:"message_ids,omptempty"`
	MessageIsFollower           *Bool      `xmlrpc:"message_is_follower,omptempty"`
	MessageMainAttachmentId     *Many2One  `xmlrpc:"message_main_attachment_id,omptempty"`
	MessageNeedaction           *Bool      `xmlrpc:"message_needaction,omptempty"`
	MessageNeedactionCounter    *Int       `xmlrpc:"message_needaction_counter,omptempty"`
	MessagePartnerIds           *Relation  `xmlrpc:"message_partner_ids,omptempty"`
	MessageUnread               *Bool      `xmlrpc:"message_unread,omptempty"`
	MessageUnreadCounter        *Int       `xmlrpc:"message_unread_counter,omptempty"`
	Name                        *String    `xmlrpc:"name,omptempty"`
	OutboundPaymentMethodIds    *Relation  `xmlrpc:"outbound_payment_method_ids,omptempty"`
	PostAt                      *Selection `xmlrpc:"post_at,omptempty"`
	ProfitAccountId             *Many2One  `xmlrpc:"profit_account_id,omptempty"`
	RefundSequence              *Bool      `xmlrpc:"refund_sequence,omptempty"`
	RefundSequenceId            *Many2One  `xmlrpc:"refund_sequence_id,omptempty"`
	RefundSequenceNumberNext    *Int       `xmlrpc:"refund_sequence_number_next,omptempty"`
	RestrictModeHashTable       *Bool      `xmlrpc:"restrict_mode_hash_table,omptempty"`
	SecureSequenceId            *Many2One  `xmlrpc:"secure_sequence_id,omptempty"`
	Sequence                    *Int       `xmlrpc:"sequence,omptempty"`
	SequenceId                  *Many2One  `xmlrpc:"sequence_id,omptempty"`
	SequenceNumberNext          *Int       `xmlrpc:"sequence_number_next,omptempty"`
	ShowOnDashboard             *Bool      `xmlrpc:"show_on_dashboard,omptempty"`
	Type                        *Selection `xmlrpc:"type,omptempty"`
	TypeControlIds              *Relation  `xmlrpc:"type_control_ids,omptempty"`
	WebsiteMessageIds           *Relation  `xmlrpc:"website_message_ids,omptempty"`
	WriteDate                   *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid                    *Many2One  `xmlrpc:"write_uid,omptempty"`
}

AccountJournal represents account.journal model.

func (*AccountJournal) Many2One

func (aj *AccountJournal) Many2One() *Many2One

Many2One convert AccountJournal to *Many2One.

type AccountJournalGroup

type AccountJournalGroup struct {
	CompanyId          *Many2One `xmlrpc:"company_id,omptempty"`
	CreateDate         *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid          *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName        *String   `xmlrpc:"display_name,omptempty"`
	ExcludedJournalIds *Relation `xmlrpc:"excluded_journal_ids,omptempty"`
	Id                 *Int      `xmlrpc:"id,omptempty"`
	LastUpdate         *Time     `xmlrpc:"__last_update,omptempty"`
	Name               *String   `xmlrpc:"name,omptempty"`
	Sequence           *Int      `xmlrpc:"sequence,omptempty"`
	WriteDate          *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid           *Many2One `xmlrpc:"write_uid,omptempty"`
}

AccountJournalGroup represents account.journal.group model.

func (*AccountJournalGroup) Many2One

func (ajg *AccountJournalGroup) Many2One() *Many2One

Many2One convert AccountJournalGroup to *Many2One.

type AccountJournalGroups

type AccountJournalGroups []AccountJournalGroup

AccountJournalGroups represents array of account.journal.group model.

type AccountJournals

type AccountJournals []AccountJournal

AccountJournals represents array of account.journal model.

type AccountMove

type AccountMove struct {
	AccessToken                           *String    `xmlrpc:"access_token,omptempty"`
	AccessUrl                             *String    `xmlrpc:"access_url,omptempty"`
	AccessWarning                         *String    `xmlrpc:"access_warning,omptempty"`
	ActivityDateDeadline                  *Time      `xmlrpc:"activity_date_deadline,omptempty"`
	ActivityExceptionDecoration           *Selection `xmlrpc:"activity_exception_decoration,omptempty"`
	ActivityExceptionIcon                 *String    `xmlrpc:"activity_exception_icon,omptempty"`
	ActivityIds                           *Relation  `xmlrpc:"activity_ids,omptempty"`
	ActivityState                         *Selection `xmlrpc:"activity_state,omptempty"`
	ActivitySummary                       *String    `xmlrpc:"activity_summary,omptempty"`
	ActivityTypeId                        *Many2One  `xmlrpc:"activity_type_id,omptempty"`
	ActivityUserId                        *Many2One  `xmlrpc:"activity_user_id,omptempty"`
	AmountByGroup                         *String    `xmlrpc:"amount_by_group,omptempty"`
	AmountResidual                        *Float     `xmlrpc:"amount_residual,omptempty"`
	AmountResidualSigned                  *Float     `xmlrpc:"amount_residual_signed,omptempty"`
	AmountTax                             *Float     `xmlrpc:"amount_tax,omptempty"`
	AmountTaxSigned                       *Float     `xmlrpc:"amount_tax_signed,omptempty"`
	AmountTotal                           *Float     `xmlrpc:"amount_total,omptempty"`
	AmountTotalSigned                     *Float     `xmlrpc:"amount_total_signed,omptempty"`
	AmountUntaxed                         *Float     `xmlrpc:"amount_untaxed,omptempty"`
	AmountUntaxedSigned                   *Float     `xmlrpc:"amount_untaxed_signed,omptempty"`
	AuthorizedTransactionIds              *Relation  `xmlrpc:"authorized_transaction_ids,omptempty"`
	AutoPost                              *Bool      `xmlrpc:"auto_post,omptempty"`
	BankPartnerId                         *Many2One  `xmlrpc:"bank_partner_id,omptempty"`
	CampaignId                            *Many2One  `xmlrpc:"campaign_id,omptempty"`
	CommercialPartnerId                   *Many2One  `xmlrpc:"commercial_partner_id,omptempty"`
	CompanyCurrencyId                     *Many2One  `xmlrpc:"company_currency_id,omptempty"`
	CompanyId                             *Many2One  `xmlrpc:"company_id,omptempty"`
	CreateDate                            *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid                             *Many2One  `xmlrpc:"create_uid,omptempty"`
	CurrencyId                            *Many2One  `xmlrpc:"currency_id,omptempty"`
	Date                                  *Time      `xmlrpc:"date,omptempty"`
	DisplayName                           *String    `xmlrpc:"display_name,omptempty"`
	FiscalPositionId                      *Many2One  `xmlrpc:"fiscal_position_id,omptempty"`
	HasReconciledEntries                  *Bool      `xmlrpc:"has_reconciled_entries,omptempty"`
	Id                                    *Int       `xmlrpc:"id,omptempty"`
	InalterableHash                       *String    `xmlrpc:"inalterable_hash,omptempty"`
	InvoiceCashRoundingId                 *Many2One  `xmlrpc:"invoice_cash_rounding_id,omptempty"`
	InvoiceDate                           *Time      `xmlrpc:"invoice_date,omptempty"`
	InvoiceDateDue                        *Time      `xmlrpc:"invoice_date_due,omptempty"`
	InvoiceFilterTypeDomain               *String    `xmlrpc:"invoice_filter_type_domain,omptempty"`
	InvoiceHasMatchingSuspenseAmount      *Bool      `xmlrpc:"invoice_has_matching_suspense_amount,omptempty"`
	InvoiceHasOutstanding                 *Bool      `xmlrpc:"invoice_has_outstanding,omptempty"`
	InvoiceIncotermId                     *Many2One  `xmlrpc:"invoice_incoterm_id,omptempty"`
	InvoiceLineIds                        *Relation  `xmlrpc:"invoice_line_ids,omptempty"`
	InvoiceOrigin                         *String    `xmlrpc:"invoice_origin,omptempty"`
	InvoiceOutstandingCreditsDebitsWidget *String    `xmlrpc:"invoice_outstanding_credits_debits_widget,omptempty"`
	InvoicePartnerBankId                  *Many2One  `xmlrpc:"invoice_partner_bank_id,omptempty"`
	InvoicePartnerDisplayName             *String    `xmlrpc:"invoice_partner_display_name,omptempty"`
	InvoicePartnerIcon                    *String    `xmlrpc:"invoice_partner_icon,omptempty"`
	InvoicePaymentRef                     *String    `xmlrpc:"invoice_payment_ref,omptempty"`
	InvoicePaymentState                   *Selection `xmlrpc:"invoice_payment_state,omptempty"`
	InvoicePaymentsWidget                 *String    `xmlrpc:"invoice_payments_widget,omptempty"`
	InvoicePaymentTermId                  *Many2One  `xmlrpc:"invoice_payment_term_id,omptempty"`
	InvoiceSent                           *Bool      `xmlrpc:"invoice_sent,omptempty"`
	InvoiceSequenceNumberNext             *String    `xmlrpc:"invoice_sequence_number_next,omptempty"`
	InvoiceSequenceNumberNextPrefix       *String    `xmlrpc:"invoice_sequence_number_next_prefix,omptempty"`
	InvoiceSourceEmail                    *String    `xmlrpc:"invoice_source_email,omptempty"`
	InvoiceUserId                         *Many2One  `xmlrpc:"invoice_user_id,omptempty"`
	InvoiceVendorBillId                   *Many2One  `xmlrpc:"invoice_vendor_bill_id,omptempty"`
	JournalId                             *Many2One  `xmlrpc:"journal_id,omptempty"`
	L10NSgPermitNumber                    *String    `xmlrpc:"l10n_sg_permit_number,omptempty"`
	L10NSgPermitNumberDate                *Time      `xmlrpc:"l10n_sg_permit_number_date,omptempty"`
	LastUpdate                            *Time      `xmlrpc:"__last_update,omptempty"`
	LineIds                               *Relation  `xmlrpc:"line_ids,omptempty"`
	MediumId                              *Many2One  `xmlrpc:"medium_id,omptempty"`
	MessageAttachmentCount                *Int       `xmlrpc:"message_attachment_count,omptempty"`
	MessageChannelIds                     *Relation  `xmlrpc:"message_channel_ids,omptempty"`
	MessageFollowerIds                    *Relation  `xmlrpc:"message_follower_ids,omptempty"`
	MessageHasError                       *Bool      `xmlrpc:"message_has_error,omptempty"`
	MessageHasErrorCounter                *Int       `xmlrpc:"message_has_error_counter,omptempty"`
	MessageHasSmsError                    *Bool      `xmlrpc:"message_has_sms_error,omptempty"`
	MessageIds                            *Relation  `xmlrpc:"message_ids,omptempty"`
	MessageIsFollower                     *Bool      `xmlrpc:"message_is_follower,omptempty"`
	MessageMainAttachmentId               *Many2One  `xmlrpc:"message_main_attachment_id,omptempty"`
	MessageNeedaction                     *Bool      `xmlrpc:"message_needaction,omptempty"`
	MessageNeedactionCounter              *Int       `xmlrpc:"message_needaction_counter,omptempty"`
	MessagePartnerIds                     *Relation  `xmlrpc:"message_partner_ids,omptempty"`
	MessageUnread                         *Bool      `xmlrpc:"message_unread,omptempty"`
	MessageUnreadCounter                  *Int       `xmlrpc:"message_unread_counter,omptempty"`
	Name                                  *String    `xmlrpc:"name,omptempty"`
	Narration                             *String    `xmlrpc:"narration,omptempty"`
	PartnerId                             *Many2One  `xmlrpc:"partner_id,omptempty"`
	PartnerShippingId                     *Many2One  `xmlrpc:"partner_shipping_id,omptempty"`
	Ref                                   *String    `xmlrpc:"ref,omptempty"`
	RestrictModeHashTable                 *Bool      `xmlrpc:"restrict_mode_hash_table,omptempty"`
	ReversalMoveId                        *Relation  `xmlrpc:"reversal_move_id,omptempty"`
	ReversedEntryId                       *Many2One  `xmlrpc:"reversed_entry_id,omptempty"`
	SecureSequenceNumber                  *Int       `xmlrpc:"secure_sequence_number,omptempty"`
	SourceId                              *Many2One  `xmlrpc:"source_id,omptempty"`
	State                                 *Selection `xmlrpc:"state,omptempty"`
	StringToHash                          *String    `xmlrpc:"string_to_hash,omptempty"`
	TaxCashBasisRecId                     *Many2One  `xmlrpc:"tax_cash_basis_rec_id,omptempty"`
	TaxLockDateMessage                    *String    `xmlrpc:"tax_lock_date_message,omptempty"`
	TeamId                                *Many2One  `xmlrpc:"team_id,omptempty"`
	ToCheck                               *Bool      `xmlrpc:"to_check,omptempty"`
	TransactionIds                        *Relation  `xmlrpc:"transaction_ids,omptempty"`
	Type                                  *Selection `xmlrpc:"type,omptempty"`
	TypeName                              *String    `xmlrpc:"type_name,omptempty"`
	UserId                                *Many2One  `xmlrpc:"user_id,omptempty"`
	WebsiteMessageIds                     *Relation  `xmlrpc:"website_message_ids,omptempty"`
	WriteDate                             *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid                              *Many2One  `xmlrpc:"write_uid,omptempty"`
}

AccountMove represents account.move model.

func (*AccountMove) Many2One

func (am *AccountMove) Many2One() *Many2One

Many2One convert AccountMove to *Many2One.

type AccountMoveLine

type AccountMoveLine struct {
	AccountId              *Many2One  `xmlrpc:"account_id,omptempty"`
	AccountInternalType    *Selection `xmlrpc:"account_internal_type,omptempty"`
	AccountRootId          *Many2One  `xmlrpc:"account_root_id,omptempty"`
	AlwaysSetCurrencyId    *Many2One  `xmlrpc:"always_set_currency_id,omptempty"`
	AmountCurrency         *Float     `xmlrpc:"amount_currency,omptempty"`
	AmountResidual         *Float     `xmlrpc:"amount_residual,omptempty"`
	AmountResidualCurrency *Float     `xmlrpc:"amount_residual_currency,omptempty"`
	AnalyticAccountId      *Many2One  `xmlrpc:"analytic_account_id,omptempty"`
	AnalyticLineIds        *Relation  `xmlrpc:"analytic_line_ids,omptempty"`
	AnalyticTagIds         *Relation  `xmlrpc:"analytic_tag_ids,omptempty"`
	Balance                *Float     `xmlrpc:"balance,omptempty"`
	Blocked                *Bool      `xmlrpc:"blocked,omptempty"`
	CompanyCurrencyId      *Many2One  `xmlrpc:"company_currency_id,omptempty"`
	CompanyId              *Many2One  `xmlrpc:"company_id,omptempty"`
	CountryId              *Many2One  `xmlrpc:"country_id,omptempty"`
	CreateDate             *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid              *Many2One  `xmlrpc:"create_uid,omptempty"`
	Credit                 *Float     `xmlrpc:"credit,omptempty"`
	CurrencyId             *Many2One  `xmlrpc:"currency_id,omptempty"`
	Date                   *Time      `xmlrpc:"date,omptempty"`
	DateMaturity           *Time      `xmlrpc:"date_maturity,omptempty"`
	Debit                  *Float     `xmlrpc:"debit,omptempty"`
	Discount               *Float     `xmlrpc:"discount,omptempty"`
	DisplayName            *String    `xmlrpc:"display_name,omptempty"`
	DisplayType            *Selection `xmlrpc:"display_type,omptempty"`
	ExcludeFromInvoiceTab  *Bool      `xmlrpc:"exclude_from_invoice_tab,omptempty"`
	ExpenseId              *Many2One  `xmlrpc:"expense_id,omptempty"`
	FullReconcileId        *Many2One  `xmlrpc:"full_reconcile_id,omptempty"`
	Id                     *Int       `xmlrpc:"id,omptempty"`
	IsRoundingLine         *Bool      `xmlrpc:"is_rounding_line,omptempty"`
	JournalId              *Many2One  `xmlrpc:"journal_id,omptempty"`
	LastUpdate             *Time      `xmlrpc:"__last_update,omptempty"`
	MatchedCreditIds       *Relation  `xmlrpc:"matched_credit_ids,omptempty"`
	MatchedDebitIds        *Relation  `xmlrpc:"matched_debit_ids,omptempty"`
	MoveId                 *Many2One  `xmlrpc:"move_id,omptempty"`
	MoveName               *String    `xmlrpc:"move_name,omptempty"`
	Name                   *String    `xmlrpc:"name,omptempty"`
	ParentState            *Selection `xmlrpc:"parent_state,omptempty"`
	PartnerId              *Many2One  `xmlrpc:"partner_id,omptempty"`
	PaymentId              *Many2One  `xmlrpc:"payment_id,omptempty"`
	PriceSubtotal          *Float     `xmlrpc:"price_subtotal,omptempty"`
	PriceTotal             *Float     `xmlrpc:"price_total,omptempty"`
	PriceUnit              *Float     `xmlrpc:"price_unit,omptempty"`
	ProductId              *Many2One  `xmlrpc:"product_id,omptempty"`
	ProductUomId           *Many2One  `xmlrpc:"product_uom_id,omptempty"`
	Quantity               *Float     `xmlrpc:"quantity,omptempty"`
	RecomputeTaxLine       *Bool      `xmlrpc:"recompute_tax_line,omptempty"`
	Reconciled             *Bool      `xmlrpc:"reconciled,omptempty"`
	ReconcileModelId       *Many2One  `xmlrpc:"reconcile_model_id,omptempty"`
	Ref                    *String    `xmlrpc:"ref,omptempty"`
	SaleLineIds            *Relation  `xmlrpc:"sale_line_ids,omptempty"`
	Sequence               *Int       `xmlrpc:"sequence,omptempty"`
	StatementId            *Many2One  `xmlrpc:"statement_id,omptempty"`
	StatementLineId        *Many2One  `xmlrpc:"statement_line_id,omptempty"`
	TagIds                 *Relation  `xmlrpc:"tag_ids,omptempty"`
	TaxAudit               *String    `xmlrpc:"tax_audit,omptempty"`
	TaxBaseAmount          *Float     `xmlrpc:"tax_base_amount,omptempty"`
	TaxExigible            *Bool      `xmlrpc:"tax_exigible,omptempty"`
	TaxGroupId             *Many2One  `xmlrpc:"tax_group_id,omptempty"`
	TaxIds                 *Relation  `xmlrpc:"tax_ids,omptempty"`
	TaxLineId              *Many2One  `xmlrpc:"tax_line_id,omptempty"`
	TaxRepartitionLineId   *Many2One  `xmlrpc:"tax_repartition_line_id,omptempty"`
	WriteDate              *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid               *Many2One  `xmlrpc:"write_uid,omptempty"`
}

AccountMoveLine represents account.move.line model.

func (*AccountMoveLine) Many2One

func (aml *AccountMoveLine) Many2One() *Many2One

Many2One convert AccountMoveLine to *Many2One.

type AccountMoveLines

type AccountMoveLines []AccountMoveLine

AccountMoveLines represents array of account.move.line model.

type AccountMoveReversal

type AccountMoveReversal struct {
	CreateDate   *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid    *Many2One  `xmlrpc:"create_uid,omptempty"`
	CurrencyId   *Many2One  `xmlrpc:"currency_id,omptempty"`
	Date         *Time      `xmlrpc:"date,omptempty"`
	DisplayName  *String    `xmlrpc:"display_name,omptempty"`
	Id           *Int       `xmlrpc:"id,omptempty"`
	JournalId    *Many2One  `xmlrpc:"journal_id,omptempty"`
	LastUpdate   *Time      `xmlrpc:"__last_update,omptempty"`
	MoveId       *Many2One  `xmlrpc:"move_id,omptempty"`
	MoveType     *String    `xmlrpc:"move_type,omptempty"`
	Reason       *String    `xmlrpc:"reason,omptempty"`
	RefundMethod *Selection `xmlrpc:"refund_method,omptempty"`
	Residual     *Float     `xmlrpc:"residual,omptempty"`
	WriteDate    *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid     *Many2One  `xmlrpc:"write_uid,omptempty"`
}

AccountMoveReversal represents account.move.reversal model.

func (*AccountMoveReversal) Many2One

func (amr *AccountMoveReversal) Many2One() *Many2One

Many2One convert AccountMoveReversal to *Many2One.

type AccountMoveReversals

type AccountMoveReversals []AccountMoveReversal

AccountMoveReversals represents array of account.move.reversal model.

type AccountMoves

type AccountMoves []AccountMove

AccountMoves represents array of account.move model.

type AccountPartialReconcile

type AccountPartialReconcile struct {
	Amount            *Float    `xmlrpc:"amount,omptempty"`
	AmountCurrency    *Float    `xmlrpc:"amount_currency,omptempty"`
	CompanyCurrencyId *Many2One `xmlrpc:"company_currency_id,omptempty"`
	CompanyId         *Many2One `xmlrpc:"company_id,omptempty"`
	CreateDate        *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid         *Many2One `xmlrpc:"create_uid,omptempty"`
	CreditMoveId      *Many2One `xmlrpc:"credit_move_id,omptempty"`
	CurrencyId        *Many2One `xmlrpc:"currency_id,omptempty"`
	DebitMoveId       *Many2One `xmlrpc:"debit_move_id,omptempty"`
	DisplayName       *String   `xmlrpc:"display_name,omptempty"`
	FullReconcileId   *Many2One `xmlrpc:"full_reconcile_id,omptempty"`
	Id                *Int      `xmlrpc:"id,omptempty"`
	LastUpdate        *Time     `xmlrpc:"__last_update,omptempty"`
	MaxDate           *Time     `xmlrpc:"max_date,omptempty"`
	WriteDate         *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid          *Many2One `xmlrpc:"write_uid,omptempty"`
}

AccountPartialReconcile represents account.partial.reconcile model.

func (*AccountPartialReconcile) Many2One

func (apr *AccountPartialReconcile) Many2One() *Many2One

Many2One convert AccountPartialReconcile to *Many2One.

type AccountPartialReconciles

type AccountPartialReconciles []AccountPartialReconcile

AccountPartialReconciles represents array of account.partial.reconcile model.

type AccountPayment

type AccountPayment struct {
	ActivityDateDeadline        *Time      `xmlrpc:"activity_date_deadline,omptempty"`
	ActivityExceptionDecoration *Selection `xmlrpc:"activity_exception_decoration,omptempty"`
	ActivityExceptionIcon       *String    `xmlrpc:"activity_exception_icon,omptempty"`
	ActivityIds                 *Relation  `xmlrpc:"activity_ids,omptempty"`
	ActivityState               *Selection `xmlrpc:"activity_state,omptempty"`
	ActivitySummary             *String    `xmlrpc:"activity_summary,omptempty"`
	ActivityTypeId              *Many2One  `xmlrpc:"activity_type_id,omptempty"`
	ActivityUserId              *Many2One  `xmlrpc:"activity_user_id,omptempty"`
	Amount                      *Float     `xmlrpc:"amount,omptempty"`
	Communication               *String    `xmlrpc:"communication,omptempty"`
	CompanyId                   *Many2One  `xmlrpc:"company_id,omptempty"`
	CreateDate                  *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid                   *Many2One  `xmlrpc:"create_uid,omptempty"`
	CurrencyId                  *Many2One  `xmlrpc:"currency_id,omptempty"`
	DestinationAccountId        *Many2One  `xmlrpc:"destination_account_id,omptempty"`
	DestinationJournalId        *Many2One  `xmlrpc:"destination_journal_id,omptempty"`
	DisplayName                 *String    `xmlrpc:"display_name,omptempty"`
	HasInvoices                 *Bool      `xmlrpc:"has_invoices,omptempty"`
	HidePaymentMethod           *Bool      `xmlrpc:"hide_payment_method,omptempty"`
	Id                          *Int       `xmlrpc:"id,omptempty"`
	InvoiceIds                  *Relation  `xmlrpc:"invoice_ids,omptempty"`
	JournalId                   *Many2One  `xmlrpc:"journal_id,omptempty"`
	LastUpdate                  *Time      `xmlrpc:"__last_update,omptempty"`
	MessageAttachmentCount      *Int       `xmlrpc:"message_attachment_count,omptempty"`
	MessageChannelIds           *Relation  `xmlrpc:"message_channel_ids,omptempty"`
	MessageFollowerIds          *Relation  `xmlrpc:"message_follower_ids,omptempty"`
	MessageHasError             *Bool      `xmlrpc:"message_has_error,omptempty"`
	MessageHasErrorCounter      *Int       `xmlrpc:"message_has_error_counter,omptempty"`
	MessageHasSmsError          *Bool      `xmlrpc:"message_has_sms_error,omptempty"`
	MessageIds                  *Relation  `xmlrpc:"message_ids,omptempty"`
	MessageIsFollower           *Bool      `xmlrpc:"message_is_follower,omptempty"`
	MessageMainAttachmentId     *Many2One  `xmlrpc:"message_main_attachment_id,omptempty"`
	MessageNeedaction           *Bool      `xmlrpc:"message_needaction,omptempty"`
	MessageNeedactionCounter    *Int       `xmlrpc:"message_needaction_counter,omptempty"`
	MessagePartnerIds           *Relation  `xmlrpc:"message_partner_ids,omptempty"`
	MessageUnread               *Bool      `xmlrpc:"message_unread,omptempty"`
	MessageUnreadCounter        *Int       `xmlrpc:"message_unread_counter,omptempty"`
	MoveLineIds                 *Relation  `xmlrpc:"move_line_ids,omptempty"`
	MoveName                    *String    `xmlrpc:"move_name,omptempty"`
	MoveReconciled              *Bool      `xmlrpc:"move_reconciled,omptempty"`
	Name                        *String    `xmlrpc:"name,omptempty"`
	PartnerBankAccountId        *Many2One  `xmlrpc:"partner_bank_account_id,omptempty"`
	PartnerId                   *Many2One  `xmlrpc:"partner_id,omptempty"`
	PartnerType                 *Selection `xmlrpc:"partner_type,omptempty"`
	PaymentDate                 *Time      `xmlrpc:"payment_date,omptempty"`
	PaymentDifference           *Float     `xmlrpc:"payment_difference,omptempty"`
	PaymentDifferenceHandling   *Selection `xmlrpc:"payment_difference_handling,omptempty"`
	PaymentMethodCode           *String    `xmlrpc:"payment_method_code,omptempty"`
	PaymentMethodId             *Many2One  `xmlrpc:"payment_method_id,omptempty"`
	PaymentReference            *String    `xmlrpc:"payment_reference,omptempty"`
	PaymentTokenId              *Many2One  `xmlrpc:"payment_token_id,omptempty"`
	PaymentTransactionId        *Many2One  `xmlrpc:"payment_transaction_id,omptempty"`
	PaymentType                 *Selection `xmlrpc:"payment_type,omptempty"`
	ReconciledInvoiceIds        *Relation  `xmlrpc:"reconciled_invoice_ids,omptempty"`
	ReconciledInvoicesCount     *Int       `xmlrpc:"reconciled_invoices_count,omptempty"`
	RequirePartnerBankAccount   *Bool      `xmlrpc:"require_partner_bank_account,omptempty"`
	ShowPartnerBankAccount      *Bool      `xmlrpc:"show_partner_bank_account,omptempty"`
	State                       *Selection `xmlrpc:"state,omptempty"`
	WebsiteMessageIds           *Relation  `xmlrpc:"website_message_ids,omptempty"`
	WriteDate                   *Time      `xmlrpc:"write_date,omptempty"`
	WriteoffAccountId           *Many2One  `xmlrpc:"writeoff_account_id,omptempty"`
	WriteoffLabel               *String    `xmlrpc:"writeoff_label,omptempty"`
	WriteUid                    *Many2One  `xmlrpc:"write_uid,omptempty"`
}

AccountPayment represents account.payment model.

func (*AccountPayment) Many2One

func (ap *AccountPayment) Many2One() *Many2One

Many2One convert AccountPayment to *Many2One.

type AccountPaymentMethod

type AccountPaymentMethod struct {
	Code        *String    `xmlrpc:"code,omptempty"`
	CreateDate  *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One  `xmlrpc:"create_uid,omptempty"`
	DisplayName *String    `xmlrpc:"display_name,omptempty"`
	Id          *Int       `xmlrpc:"id,omptempty"`
	LastUpdate  *Time      `xmlrpc:"__last_update,omptempty"`
	Name        *String    `xmlrpc:"name,omptempty"`
	PaymentType *Selection `xmlrpc:"payment_type,omptempty"`
	WriteDate   *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One  `xmlrpc:"write_uid,omptempty"`
}

AccountPaymentMethod represents account.payment.method model.

func (*AccountPaymentMethod) Many2One

func (apm *AccountPaymentMethod) Many2One() *Many2One

Many2One convert AccountPaymentMethod to *Many2One.

type AccountPaymentMethods

type AccountPaymentMethods []AccountPaymentMethod

AccountPaymentMethods represents array of account.payment.method model.

type AccountPaymentRegister

type AccountPaymentRegister struct {
	CreateDate      *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid       *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName     *String   `xmlrpc:"display_name,omptempty"`
	GroupPayment    *Bool     `xmlrpc:"group_payment,omptempty"`
	Id              *Int      `xmlrpc:"id,omptempty"`
	InvoiceIds      *Relation `xmlrpc:"invoice_ids,omptempty"`
	JournalId       *Many2One `xmlrpc:"journal_id,omptempty"`
	LastUpdate      *Time     `xmlrpc:"__last_update,omptempty"`
	PaymentDate     *Time     `xmlrpc:"payment_date,omptempty"`
	PaymentMethodId *Many2One `xmlrpc:"payment_method_id,omptempty"`
	WriteDate       *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid        *Many2One `xmlrpc:"write_uid,omptempty"`
}

AccountPaymentRegister represents account.payment.register model.

func (*AccountPaymentRegister) Many2One

func (apr *AccountPaymentRegister) Many2One() *Many2One

Many2One convert AccountPaymentRegister to *Many2One.

type AccountPaymentRegisters

type AccountPaymentRegisters []AccountPaymentRegister

AccountPaymentRegisters represents array of account.payment.register model.

type AccountPaymentTerm

type AccountPaymentTerm struct {
	Active      *Bool     `xmlrpc:"active,omptempty"`
	CompanyId   *Many2One `xmlrpc:"company_id,omptempty"`
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	LineIds     *Relation `xmlrpc:"line_ids,omptempty"`
	Name        *String   `xmlrpc:"name,omptempty"`
	Note        *String   `xmlrpc:"note,omptempty"`
	Sequence    *Int      `xmlrpc:"sequence,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

AccountPaymentTerm represents account.payment.term model.

func (*AccountPaymentTerm) Many2One

func (apt *AccountPaymentTerm) Many2One() *Many2One

Many2One convert AccountPaymentTerm to *Many2One.

type AccountPaymentTermLine

type AccountPaymentTermLine struct {
	CreateDate    *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid     *Many2One  `xmlrpc:"create_uid,omptempty"`
	DayOfTheMonth *Int       `xmlrpc:"day_of_the_month,omptempty"`
	Days          *Int       `xmlrpc:"days,omptempty"`
	DisplayName   *String    `xmlrpc:"display_name,omptempty"`
	Id            *Int       `xmlrpc:"id,omptempty"`
	LastUpdate    *Time      `xmlrpc:"__last_update,omptempty"`
	Option        *Selection `xmlrpc:"option,omptempty"`
	PaymentId     *Many2One  `xmlrpc:"payment_id,omptempty"`
	Sequence      *Int       `xmlrpc:"sequence,omptempty"`
	Value         *Selection `xmlrpc:"value,omptempty"`
	ValueAmount   *Float     `xmlrpc:"value_amount,omptempty"`
	WriteDate     *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid      *Many2One  `xmlrpc:"write_uid,omptempty"`
}

AccountPaymentTermLine represents account.payment.term.line model.

func (*AccountPaymentTermLine) Many2One

func (aptl *AccountPaymentTermLine) Many2One() *Many2One

Many2One convert AccountPaymentTermLine to *Many2One.

type AccountPaymentTermLines

type AccountPaymentTermLines []AccountPaymentTermLine

AccountPaymentTermLines represents array of account.payment.term.line model.

type AccountPaymentTerms

type AccountPaymentTerms []AccountPaymentTerm

AccountPaymentTerms represents array of account.payment.term model.

type AccountPayments

type AccountPayments []AccountPayment

AccountPayments represents array of account.payment model.

type AccountPrintJournal

type AccountPrintJournal struct {
	AmountCurrency *Bool      `xmlrpc:"amount_currency,omptempty"`
	CompanyId      *Many2One  `xmlrpc:"company_id,omptempty"`
	CreateDate     *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid      *Many2One  `xmlrpc:"create_uid,omptempty"`
	DateFrom       *Time      `xmlrpc:"date_from,omptempty"`
	DateTo         *Time      `xmlrpc:"date_to,omptempty"`
	DisplayName    *String    `xmlrpc:"display_name,omptempty"`
	Id             *Int       `xmlrpc:"id,omptempty"`
	JournalIds     *Relation  `xmlrpc:"journal_ids,omptempty"`
	LastUpdate     *Time      `xmlrpc:"__last_update,omptempty"`
	SortSelection  *Selection `xmlrpc:"sort_selection,omptempty"`
	TargetMove     *Selection `xmlrpc:"target_move,omptempty"`
	WriteDate      *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid       *Many2One  `xmlrpc:"write_uid,omptempty"`
}

AccountPrintJournal represents account.print.journal model.

func (*AccountPrintJournal) Many2One

func (apj *AccountPrintJournal) Many2One() *Many2One

Many2One convert AccountPrintJournal to *Many2One.

type AccountPrintJournals

type AccountPrintJournals []AccountPrintJournal

AccountPrintJournals represents array of account.print.journal model.

type AccountReconcileModel

type AccountReconcileModel struct {
	AccountId                  *Many2One  `xmlrpc:"account_id,omptempty"`
	Amount                     *Float     `xmlrpc:"amount,omptempty"`
	AmountFromLabelRegex       *String    `xmlrpc:"amount_from_label_regex,omptempty"`
	AmountType                 *Selection `xmlrpc:"amount_type,omptempty"`
	AnalyticAccountId          *Many2One  `xmlrpc:"analytic_account_id,omptempty"`
	AnalyticTagIds             *Relation  `xmlrpc:"analytic_tag_ids,omptempty"`
	AutoReconcile              *Bool      `xmlrpc:"auto_reconcile,omptempty"`
	CompanyId                  *Many2One  `xmlrpc:"company_id,omptempty"`
	CreateDate                 *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid                  *Many2One  `xmlrpc:"create_uid,omptempty"`
	DecimalSeparator           *String    `xmlrpc:"decimal_separator,omptempty"`
	DisplayName                *String    `xmlrpc:"display_name,omptempty"`
	ForceSecondTaxIncluded     *Bool      `xmlrpc:"force_second_tax_included,omptempty"`
	ForceTaxIncluded           *Bool      `xmlrpc:"force_tax_included,omptempty"`
	HasSecondLine              *Bool      `xmlrpc:"has_second_line,omptempty"`
	Id                         *Int       `xmlrpc:"id,omptempty"`
	JournalId                  *Many2One  `xmlrpc:"journal_id,omptempty"`
	Label                      *String    `xmlrpc:"label,omptempty"`
	LastUpdate                 *Time      `xmlrpc:"__last_update,omptempty"`
	MatchAmount                *Selection `xmlrpc:"match_amount,omptempty"`
	MatchAmountMax             *Float     `xmlrpc:"match_amount_max,omptempty"`
	MatchAmountMin             *Float     `xmlrpc:"match_amount_min,omptempty"`
	MatchJournalIds            *Relation  `xmlrpc:"match_journal_ids,omptempty"`
	MatchLabel                 *Selection `xmlrpc:"match_label,omptempty"`
	MatchLabelParam            *String    `xmlrpc:"match_label_param,omptempty"`
	MatchNature                *Selection `xmlrpc:"match_nature,omptempty"`
	MatchNote                  *Selection `xmlrpc:"match_note,omptempty"`
	MatchNoteParam             *String    `xmlrpc:"match_note_param,omptempty"`
	MatchPartner               *Bool      `xmlrpc:"match_partner,omptempty"`
	MatchPartnerCategoryIds    *Relation  `xmlrpc:"match_partner_category_ids,omptempty"`
	MatchPartnerIds            *Relation  `xmlrpc:"match_partner_ids,omptempty"`
	MatchSameCurrency          *Bool      `xmlrpc:"match_same_currency,omptempty"`
	MatchTotalAmount           *Bool      `xmlrpc:"match_total_amount,omptempty"`
	MatchTotalAmountParam      *Float     `xmlrpc:"match_total_amount_param,omptempty"`
	MatchTransactionType       *Selection `xmlrpc:"match_transaction_type,omptempty"`
	MatchTransactionTypeParam  *String    `xmlrpc:"match_transaction_type_param,omptempty"`
	Name                       *String    `xmlrpc:"name,omptempty"`
	NumberEntries              *Int       `xmlrpc:"number_entries,omptempty"`
	RuleType                   *Selection `xmlrpc:"rule_type,omptempty"`
	SecondAccountId            *Many2One  `xmlrpc:"second_account_id,omptempty"`
	SecondAmount               *Float     `xmlrpc:"second_amount,omptempty"`
	SecondAmountFromLabelRegex *String    `xmlrpc:"second_amount_from_label_regex,omptempty"`
	SecondAmountType           *Selection `xmlrpc:"second_amount_type,omptempty"`
	SecondAnalyticAccountId    *Many2One  `xmlrpc:"second_analytic_account_id,omptempty"`
	SecondAnalyticTagIds       *Relation  `xmlrpc:"second_analytic_tag_ids,omptempty"`
	SecondJournalId            *Many2One  `xmlrpc:"second_journal_id,omptempty"`
	SecondLabel                *String    `xmlrpc:"second_label,omptempty"`
	SecondTaxIds               *Relation  `xmlrpc:"second_tax_ids,omptempty"`
	Sequence                   *Int       `xmlrpc:"sequence,omptempty"`
	ShowForceTaxIncluded       *Bool      `xmlrpc:"show_force_tax_included,omptempty"`
	ShowSecondForceTaxIncluded *Bool      `xmlrpc:"show_second_force_tax_included,omptempty"`
	TaxIds                     *Relation  `xmlrpc:"tax_ids,omptempty"`
	ToCheck                    *Bool      `xmlrpc:"to_check,omptempty"`
	WriteDate                  *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid                   *Many2One  `xmlrpc:"write_uid,omptempty"`
}

AccountReconcileModel represents account.reconcile.model model.

func (*AccountReconcileModel) Many2One

func (arm *AccountReconcileModel) Many2One() *Many2One

Many2One convert AccountReconcileModel to *Many2One.

type AccountReconcileModelTemplate

type AccountReconcileModelTemplate struct {
	AccountId                  *Many2One  `xmlrpc:"account_id,omptempty"`
	Amount                     *Float     `xmlrpc:"amount,omptempty"`
	AmountFromLabelRegex       *String    `xmlrpc:"amount_from_label_regex,omptempty"`
	AmountType                 *Selection `xmlrpc:"amount_type,omptempty"`
	AutoReconcile              *Bool      `xmlrpc:"auto_reconcile,omptempty"`
	ChartTemplateId            *Many2One  `xmlrpc:"chart_template_id,omptempty"`
	CreateDate                 *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid                  *Many2One  `xmlrpc:"create_uid,omptempty"`
	DecimalSeparator           *String    `xmlrpc:"decimal_separator,omptempty"`
	DisplayName                *String    `xmlrpc:"display_name,omptempty"`
	ForceSecondTaxIncluded     *Bool      `xmlrpc:"force_second_tax_included,omptempty"`
	ForceTaxIncluded           *Bool      `xmlrpc:"force_tax_included,omptempty"`
	HasSecondLine              *Bool      `xmlrpc:"has_second_line,omptempty"`
	Id                         *Int       `xmlrpc:"id,omptempty"`
	Label                      *String    `xmlrpc:"label,omptempty"`
	LastUpdate                 *Time      `xmlrpc:"__last_update,omptempty"`
	MatchAmount                *Selection `xmlrpc:"match_amount,omptempty"`
	MatchAmountMax             *Float     `xmlrpc:"match_amount_max,omptempty"`
	MatchAmountMin             *Float     `xmlrpc:"match_amount_min,omptempty"`
	MatchJournalIds            *Relation  `xmlrpc:"match_journal_ids,omptempty"`
	MatchLabel                 *Selection `xmlrpc:"match_label,omptempty"`
	MatchLabelParam            *String    `xmlrpc:"match_label_param,omptempty"`
	MatchNature                *Selection `xmlrpc:"match_nature,omptempty"`
	MatchNote                  *Selection `xmlrpc:"match_note,omptempty"`
	MatchNoteParam             *String    `xmlrpc:"match_note_param,omptempty"`
	MatchPartner               *Bool      `xmlrpc:"match_partner,omptempty"`
	MatchPartnerCategoryIds    *Relation  `xmlrpc:"match_partner_category_ids,omptempty"`
	MatchPartnerIds            *Relation  `xmlrpc:"match_partner_ids,omptempty"`
	MatchSameCurrency          *Bool      `xmlrpc:"match_same_currency,omptempty"`
	MatchTotalAmount           *Bool      `xmlrpc:"match_total_amount,omptempty"`
	MatchTotalAmountParam      *Float     `xmlrpc:"match_total_amount_param,omptempty"`
	MatchTransactionType       *Selection `xmlrpc:"match_transaction_type,omptempty"`
	MatchTransactionTypeParam  *String    `xmlrpc:"match_transaction_type_param,omptempty"`
	Name                       *String    `xmlrpc:"name,omptempty"`
	RuleType                   *Selection `xmlrpc:"rule_type,omptempty"`
	SecondAccountId            *Many2One  `xmlrpc:"second_account_id,omptempty"`
	SecondAmount               *Float     `xmlrpc:"second_amount,omptempty"`
	SecondAmountFromLabelRegex *String    `xmlrpc:"second_amount_from_label_regex,omptempty"`
	SecondAmountType           *Selection `xmlrpc:"second_amount_type,omptempty"`
	SecondLabel                *String    `xmlrpc:"second_label,omptempty"`
	SecondTaxIds               *Relation  `xmlrpc:"second_tax_ids,omptempty"`
	Sequence                   *Int       `xmlrpc:"sequence,omptempty"`
	TaxIds                     *Relation  `xmlrpc:"tax_ids,omptempty"`
	ToCheck                    *Bool      `xmlrpc:"to_check,omptempty"`
	WriteDate                  *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid                   *Many2One  `xmlrpc:"write_uid,omptempty"`
}

AccountReconcileModelTemplate represents account.reconcile.model.template model.

func (*AccountReconcileModelTemplate) Many2One

func (armt *AccountReconcileModelTemplate) Many2One() *Many2One

Many2One convert AccountReconcileModelTemplate to *Many2One.

type AccountReconcileModelTemplates

type AccountReconcileModelTemplates []AccountReconcileModelTemplate

AccountReconcileModelTemplates represents array of account.reconcile.model.template model.

type AccountReconcileModels

type AccountReconcileModels []AccountReconcileModel

AccountReconcileModels represents array of account.reconcile.model model.

type AccountReconciliationWidget

type AccountReconciliationWidget struct {
	DisplayName *String `xmlrpc:"display_name,omptempty"`
	Id          *Int    `xmlrpc:"id,omptempty"`
	LastUpdate  *Time   `xmlrpc:"__last_update,omptempty"`
}

AccountReconciliationWidget represents account.reconciliation.widget model.

func (*AccountReconciliationWidget) Many2One

func (arw *AccountReconciliationWidget) Many2One() *Many2One

Many2One convert AccountReconciliationWidget to *Many2One.

type AccountReconciliationWidgets

type AccountReconciliationWidgets []AccountReconciliationWidget

AccountReconciliationWidgets represents array of account.reconciliation.widget model.

type AccountRoot

type AccountRoot struct {
	CompanyId   *Many2One `xmlrpc:"company_id,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	Name        *String   `xmlrpc:"name,omptempty"`
	ParentId    *Many2One `xmlrpc:"parent_id,omptempty"`
}

AccountRoot represents account.root model.

func (*AccountRoot) Many2One

func (ar *AccountRoot) Many2One() *Many2One

Many2One convert AccountRoot to *Many2One.

type AccountRoots

type AccountRoots []AccountRoot

AccountRoots represents array of account.root model.

type AccountSetupBankManualConfig

type AccountSetupBankManualConfig struct {
	AccHolderName             *String    `xmlrpc:"acc_holder_name,omptempty"`
	AccNumber                 *String    `xmlrpc:"acc_number,omptempty"`
	AccType                   *Selection `xmlrpc:"acc_type,omptempty"`
	BankBic                   *String    `xmlrpc:"bank_bic,omptempty"`
	BankId                    *Many2One  `xmlrpc:"bank_id,omptempty"`
	BankName                  *String    `xmlrpc:"bank_name,omptempty"`
	CompanyId                 *Many2One  `xmlrpc:"company_id,omptempty"`
	CreateDate                *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid                 *Many2One  `xmlrpc:"create_uid,omptempty"`
	CurrencyId                *Many2One  `xmlrpc:"currency_id,omptempty"`
	DisplayName               *String    `xmlrpc:"display_name,omptempty"`
	Id                        *Int       `xmlrpc:"id,omptempty"`
	JournalId                 *Relation  `xmlrpc:"journal_id,omptempty"`
	LastUpdate                *Time      `xmlrpc:"__last_update,omptempty"`
	LinkedJournalId           *Many2One  `xmlrpc:"linked_journal_id,omptempty"`
	NewJournalCode            *String    `xmlrpc:"new_journal_code,omptempty"`
	NewJournalName            *String    `xmlrpc:"new_journal_name,omptempty"`
	NumJournalsWithoutAccount *Int       `xmlrpc:"num_journals_without_account,omptempty"`
	PartnerId                 *Many2One  `xmlrpc:"partner_id,omptempty"`
	QrCodeValid               *Bool      `xmlrpc:"qr_code_valid,omptempty"`
	RelatedAccType            *Selection `xmlrpc:"related_acc_type,omptempty"`
	ResPartnerBankId          *Many2One  `xmlrpc:"res_partner_bank_id,omptempty"`
	SanitizedAccNumber        *String    `xmlrpc:"sanitized_acc_number,omptempty"`
	Sequence                  *Int       `xmlrpc:"sequence,omptempty"`
	WriteDate                 *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid                  *Many2One  `xmlrpc:"write_uid,omptempty"`
}

AccountSetupBankManualConfig represents account.setup.bank.manual.config model.

func (*AccountSetupBankManualConfig) Many2One

func (asbmc *AccountSetupBankManualConfig) Many2One() *Many2One

Many2One convert AccountSetupBankManualConfig to *Many2One.

type AccountSetupBankManualConfigs

type AccountSetupBankManualConfigs []AccountSetupBankManualConfig

AccountSetupBankManualConfigs represents array of account.setup.bank.manual.config model.

type AccountTax

type AccountTax struct {
	Active                       *Bool      `xmlrpc:"active,omptempty"`
	Amount                       *Float     `xmlrpc:"amount,omptempty"`
	AmountType                   *Selection `xmlrpc:"amount_type,omptempty"`
	Analytic                     *Bool      `xmlrpc:"analytic,omptempty"`
	CashBasisBaseAccountId       *Many2One  `xmlrpc:"cash_basis_base_account_id,omptempty"`
	CashBasisTransitionAccountId *Many2One  `xmlrpc:"cash_basis_transition_account_id,omptempty"`
	ChildrenTaxIds               *Relation  `xmlrpc:"children_tax_ids,omptempty"`
	CompanyId                    *Many2One  `xmlrpc:"company_id,omptempty"`
	CountryId                    *Many2One  `xmlrpc:"country_id,omptempty"`
	CreateDate                   *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid                    *Many2One  `xmlrpc:"create_uid,omptempty"`
	Description                  *String    `xmlrpc:"description,omptempty"`
	DisplayName                  *String    `xmlrpc:"display_name,omptempty"`
	HideTaxExigibility           *Bool      `xmlrpc:"hide_tax_exigibility,omptempty"`
	Id                           *Int       `xmlrpc:"id,omptempty"`
	IncludeBaseAmount            *Bool      `xmlrpc:"include_base_amount,omptempty"`
	InvoiceRepartitionLineIds    *Relation  `xmlrpc:"invoice_repartition_line_ids,omptempty"`
	LastUpdate                   *Time      `xmlrpc:"__last_update,omptempty"`
	Name                         *String    `xmlrpc:"name,omptempty"`
	PriceInclude                 *Bool      `xmlrpc:"price_include,omptempty"`
	RefundRepartitionLineIds     *Relation  `xmlrpc:"refund_repartition_line_ids,omptempty"`
	Sequence                     *Int       `xmlrpc:"sequence,omptempty"`
	TaxExigibility               *Selection `xmlrpc:"tax_exigibility,omptempty"`
	TaxGroupId                   *Many2One  `xmlrpc:"tax_group_id,omptempty"`
	TypeTaxUse                   *Selection `xmlrpc:"type_tax_use,omptempty"`
	WriteDate                    *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid                     *Many2One  `xmlrpc:"write_uid,omptempty"`
}

AccountTax represents account.tax model.

func (*AccountTax) Many2One

func (at *AccountTax) Many2One() *Many2One

Many2One convert AccountTax to *Many2One.

type AccountTaxGroup

type AccountTaxGroup struct {
	CreateDate                         *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid                          *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName                        *String   `xmlrpc:"display_name,omptempty"`
	Id                                 *Int      `xmlrpc:"id,omptempty"`
	LastUpdate                         *Time     `xmlrpc:"__last_update,omptempty"`
	Name                               *String   `xmlrpc:"name,omptempty"`
	PropertyAdvanceTaxPaymentAccountId *Many2One `xmlrpc:"property_advance_tax_payment_account_id,omptempty"`
	PropertyTaxPayableAccountId        *Many2One `xmlrpc:"property_tax_payable_account_id,omptempty"`
	PropertyTaxReceivableAccountId     *Many2One `xmlrpc:"property_tax_receivable_account_id,omptempty"`
	Sequence                           *Int      `xmlrpc:"sequence,omptempty"`
	WriteDate                          *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid                           *Many2One `xmlrpc:"write_uid,omptempty"`
}

AccountTaxGroup represents account.tax.group model.

func (*AccountTaxGroup) Many2One

func (atg *AccountTaxGroup) Many2One() *Many2One

Many2One convert AccountTaxGroup to *Many2One.

type AccountTaxGroups

type AccountTaxGroups []AccountTaxGroup

AccountTaxGroups represents array of account.tax.group model.

type AccountTaxRepartitionLine

type AccountTaxRepartitionLine struct {
	AccountId       *Many2One  `xmlrpc:"account_id,omptempty"`
	CompanyId       *Many2One  `xmlrpc:"company_id,omptempty"`
	CountryId       *Many2One  `xmlrpc:"country_id,omptempty"`
	CreateDate      *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid       *Many2One  `xmlrpc:"create_uid,omptempty"`
	DisplayName     *String    `xmlrpc:"display_name,omptempty"`
	Factor          *Float     `xmlrpc:"factor,omptempty"`
	FactorPercent   *Float     `xmlrpc:"factor_percent,omptempty"`
	Id              *Int       `xmlrpc:"id,omptempty"`
	InvoiceTaxId    *Many2One  `xmlrpc:"invoice_tax_id,omptempty"`
	LastUpdate      *Time      `xmlrpc:"__last_update,omptempty"`
	RefundTaxId     *Many2One  `xmlrpc:"refund_tax_id,omptempty"`
	RepartitionType *Selection `xmlrpc:"repartition_type,omptempty"`
	Sequence        *Int       `xmlrpc:"sequence,omptempty"`
	TagIds          *Relation  `xmlrpc:"tag_ids,omptempty"`
	TaxId           *Many2One  `xmlrpc:"tax_id,omptempty"`
	WriteDate       *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid        *Many2One  `xmlrpc:"write_uid,omptempty"`
}

AccountTaxRepartitionLine represents account.tax.repartition.line model.

func (*AccountTaxRepartitionLine) Many2One

func (atrl *AccountTaxRepartitionLine) Many2One() *Many2One

Many2One convert AccountTaxRepartitionLine to *Many2One.

type AccountTaxRepartitionLineTemplate

type AccountTaxRepartitionLineTemplate struct {
	AccountId          *Many2One  `xmlrpc:"account_id,omptempty"`
	CreateDate         *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid          *Many2One  `xmlrpc:"create_uid,omptempty"`
	DisplayName        *String    `xmlrpc:"display_name,omptempty"`
	FactorPercent      *Float     `xmlrpc:"factor_percent,omptempty"`
	Id                 *Int       `xmlrpc:"id,omptempty"`
	InvoiceTaxId       *Many2One  `xmlrpc:"invoice_tax_id,omptempty"`
	LastUpdate         *Time      `xmlrpc:"__last_update,omptempty"`
	MinusReportLineIds *Relation  `xmlrpc:"minus_report_line_ids,omptempty"`
	PlusReportLineIds  *Relation  `xmlrpc:"plus_report_line_ids,omptempty"`
	RefundTaxId        *Many2One  `xmlrpc:"refund_tax_id,omptempty"`
	RepartitionType    *Selection `xmlrpc:"repartition_type,omptempty"`
	TagIds             *Relation  `xmlrpc:"tag_ids,omptempty"`
	WriteDate          *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid           *Many2One  `xmlrpc:"write_uid,omptempty"`
}

AccountTaxRepartitionLineTemplate represents account.tax.repartition.line.template model.

func (*AccountTaxRepartitionLineTemplate) Many2One

func (atrlt *AccountTaxRepartitionLineTemplate) Many2One() *Many2One

Many2One convert AccountTaxRepartitionLineTemplate to *Many2One.

type AccountTaxRepartitionLineTemplates

type AccountTaxRepartitionLineTemplates []AccountTaxRepartitionLineTemplate

AccountTaxRepartitionLineTemplates represents array of account.tax.repartition.line.template model.

type AccountTaxRepartitionLines

type AccountTaxRepartitionLines []AccountTaxRepartitionLine

AccountTaxRepartitionLines represents array of account.tax.repartition.line model.

type AccountTaxReportLine

type AccountTaxReportLine struct {
	ChildrenLineIds *Relation `xmlrpc:"children_line_ids,omptempty"`
	Code            *String   `xmlrpc:"code,omptempty"`
	CountryId       *Many2One `xmlrpc:"country_id,omptempty"`
	CreateDate      *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid       *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName     *String   `xmlrpc:"display_name,omptempty"`
	Formula         *String   `xmlrpc:"formula,omptempty"`
	Id              *Int      `xmlrpc:"id,omptempty"`
	LastUpdate      *Time     `xmlrpc:"__last_update,omptempty"`
	Name            *String   `xmlrpc:"name,omptempty"`
	ParentId        *Many2One `xmlrpc:"parent_id,omptempty"`
	ParentPath      *String   `xmlrpc:"parent_path,omptempty"`
	ReportActionId  *Many2One `xmlrpc:"report_action_id,omptempty"`
	Sequence        *Int      `xmlrpc:"sequence,omptempty"`
	TagIds          *Relation `xmlrpc:"tag_ids,omptempty"`
	TagName         *String   `xmlrpc:"tag_name,omptempty"`
	WriteDate       *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid        *Many2One `xmlrpc:"write_uid,omptempty"`
}

AccountTaxReportLine represents account.tax.report.line model.

func (*AccountTaxReportLine) Many2One

func (atrl *AccountTaxReportLine) Many2One() *Many2One

Many2One convert AccountTaxReportLine to *Many2One.

type AccountTaxReportLines

type AccountTaxReportLines []AccountTaxReportLine

AccountTaxReportLines represents array of account.tax.report.line model.

type AccountTaxTemplate

type AccountTaxTemplate struct {
	Active                       *Bool      `xmlrpc:"active,omptempty"`
	Amount                       *Float     `xmlrpc:"amount,omptempty"`
	AmountType                   *Selection `xmlrpc:"amount_type,omptempty"`
	Analytic                     *Bool      `xmlrpc:"analytic,omptempty"`
	CashBasisBaseAccountId       *Many2One  `xmlrpc:"cash_basis_base_account_id,omptempty"`
	CashBasisTransitionAccountId *Many2One  `xmlrpc:"cash_basis_transition_account_id,omptempty"`
	ChartTemplateId              *Many2One  `xmlrpc:"chart_template_id,omptempty"`
	ChildrenTaxIds               *Relation  `xmlrpc:"children_tax_ids,omptempty"`
	CreateDate                   *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid                    *Many2One  `xmlrpc:"create_uid,omptempty"`
	Description                  *String    `xmlrpc:"description,omptempty"`
	DisplayName                  *String    `xmlrpc:"display_name,omptempty"`
	Id                           *Int       `xmlrpc:"id,omptempty"`
	IncludeBaseAmount            *Bool      `xmlrpc:"include_base_amount,omptempty"`
	InvoiceRepartitionLineIds    *Relation  `xmlrpc:"invoice_repartition_line_ids,omptempty"`
	LastUpdate                   *Time      `xmlrpc:"__last_update,omptempty"`
	Name                         *String    `xmlrpc:"name,omptempty"`
	PriceInclude                 *Bool      `xmlrpc:"price_include,omptempty"`
	RefundRepartitionLineIds     *Relation  `xmlrpc:"refund_repartition_line_ids,omptempty"`
	Sequence                     *Int       `xmlrpc:"sequence,omptempty"`
	TaxExigibility               *Selection `xmlrpc:"tax_exigibility,omptempty"`
	TaxGroupId                   *Many2One  `xmlrpc:"tax_group_id,omptempty"`
	TypeTaxUse                   *Selection `xmlrpc:"type_tax_use,omptempty"`
	WriteDate                    *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid                     *Many2One  `xmlrpc:"write_uid,omptempty"`
}

AccountTaxTemplate represents account.tax.template model.

func (*AccountTaxTemplate) Many2One

func (att *AccountTaxTemplate) Many2One() *Many2One

Many2One convert AccountTaxTemplate to *Many2One.

type AccountTaxTemplates

type AccountTaxTemplates []AccountTaxTemplate

AccountTaxTemplates represents array of account.tax.template model.

type AccountTaxs

type AccountTaxs []AccountTax

AccountTaxs represents array of account.tax model.

type AccountUnreconcile

type AccountUnreconcile struct {
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

AccountUnreconcile represents account.unreconcile model.

func (*AccountUnreconcile) Many2One

func (au *AccountUnreconcile) Many2One() *Many2One

Many2One convert AccountUnreconcile to *Many2One.

type AccountUnreconciles

type AccountUnreconciles []AccountUnreconcile

AccountUnreconciles represents array of account.unreconcile model.

type BarcodeNomenclature

type BarcodeNomenclature struct {
	CreateDate  *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One  `xmlrpc:"create_uid,omptempty"`
	DisplayName *String    `xmlrpc:"display_name,omptempty"`
	Id          *Int       `xmlrpc:"id,omptempty"`
	LastUpdate  *Time      `xmlrpc:"__last_update,omptempty"`
	Name        *String    `xmlrpc:"name,omptempty"`
	RuleIds     *Relation  `xmlrpc:"rule_ids,omptempty"`
	UpcEanConv  *Selection `xmlrpc:"upc_ean_conv,omptempty"`
	WriteDate   *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One  `xmlrpc:"write_uid,omptempty"`
}

BarcodeNomenclature represents barcode.nomenclature model.

func (*BarcodeNomenclature) Many2One

func (bn *BarcodeNomenclature) Many2One() *Many2One

Many2One convert BarcodeNomenclature to *Many2One.

type BarcodeNomenclatures

type BarcodeNomenclatures []BarcodeNomenclature

BarcodeNomenclatures represents array of barcode.nomenclature model.

type BarcodeRule

type BarcodeRule struct {
	Alias                 *String    `xmlrpc:"alias,omptempty"`
	BarcodeNomenclatureId *Many2One  `xmlrpc:"barcode_nomenclature_id,omptempty"`
	CreateDate            *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid             *Many2One  `xmlrpc:"create_uid,omptempty"`
	DisplayName           *String    `xmlrpc:"display_name,omptempty"`
	Encoding              *Selection `xmlrpc:"encoding,omptempty"`
	Id                    *Int       `xmlrpc:"id,omptempty"`
	LastUpdate            *Time      `xmlrpc:"__last_update,omptempty"`
	Name                  *String    `xmlrpc:"name,omptempty"`
	Pattern               *String    `xmlrpc:"pattern,omptempty"`
	Sequence              *Int       `xmlrpc:"sequence,omptempty"`
	Type                  *Selection `xmlrpc:"type,omptempty"`
	WriteDate             *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid              *Many2One  `xmlrpc:"write_uid,omptempty"`
}

BarcodeRule represents barcode.rule model.

func (*BarcodeRule) Many2One

func (br *BarcodeRule) Many2One() *Many2One

Many2One convert BarcodeRule to *Many2One.

type BarcodeRules

type BarcodeRules []BarcodeRule

BarcodeRules represents array of barcode.rule model.

type BarcodesBarcodeEventsMixin

type BarcodesBarcodeEventsMixin struct {
	BarcodeScanned *String `xmlrpc:"_barcode_scanned,omptempty"`
	DisplayName    *String `xmlrpc:"display_name,omptempty"`
	Id             *Int    `xmlrpc:"id,omptempty"`
	LastUpdate     *Time   `xmlrpc:"__last_update,omptempty"`
}

BarcodesBarcodeEventsMixin represents barcodes.barcode_events_mixin model.

func (*BarcodesBarcodeEventsMixin) Many2One

func (bb *BarcodesBarcodeEventsMixin) Many2One() *Many2One

Many2One convert BarcodesBarcodeEventsMixin to *Many2One.

type BarcodesBarcodeEventsMixins

type BarcodesBarcodeEventsMixins []BarcodesBarcodeEventsMixin

BarcodesBarcodeEventsMixins represents array of barcodes.barcode_events_mixin model.

type Base

type Base struct {
	DisplayName *String `xmlrpc:"display_name,omptempty"`
	Id          *Int    `xmlrpc:"id,omptempty"`
	LastUpdate  *Time   `xmlrpc:"__last_update,omptempty"`
}

Base represents base model.

func (*Base) Many2One

func (b *Base) Many2One() *Many2One

Many2One convert Base to *Many2One.

type BaseDocumentLayout

type BaseDocumentLayout struct {
	CompanyId              *Many2One  `xmlrpc:"company_id,omptempty"`
	CreateDate             *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid              *Many2One  `xmlrpc:"create_uid,omptempty"`
	CustomColors           *Bool      `xmlrpc:"custom_colors,omptempty"`
	DisplayName            *String    `xmlrpc:"display_name,omptempty"`
	ExternalReportLayoutId *Many2One  `xmlrpc:"external_report_layout_id,omptempty"`
	Font                   *Selection `xmlrpc:"font,omptempty"`
	Id                     *Int       `xmlrpc:"id,omptempty"`
	LastUpdate             *Time      `xmlrpc:"__last_update,omptempty"`
	LogoPrimaryColor       *String    `xmlrpc:"logo_primary_color,omptempty"`
	LogoSecondaryColor     *String    `xmlrpc:"logo_secondary_color,omptempty"`
	PaperformatId          *Many2One  `xmlrpc:"paperformat_id,omptempty"`
	Preview                *String    `xmlrpc:"preview,omptempty"`
	PrimaryColor           *String    `xmlrpc:"primary_color,omptempty"`
	ReportFooter           *String    `xmlrpc:"report_footer,omptempty"`
	ReportHeader           *String    `xmlrpc:"report_header,omptempty"`
	ReportLayoutId         *Many2One  `xmlrpc:"report_layout_id,omptempty"`
	SecondaryColor         *String    `xmlrpc:"secondary_color,omptempty"`
	WriteDate              *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid               *Many2One  `xmlrpc:"write_uid,omptempty"`
}

BaseDocumentLayout represents base.document.layout model.

func (*BaseDocumentLayout) Many2One

func (bdl *BaseDocumentLayout) Many2One() *Many2One

Many2One convert BaseDocumentLayout to *Many2One.

type BaseDocumentLayouts

type BaseDocumentLayouts []BaseDocumentLayout

BaseDocumentLayouts represents array of base.document.layout model.

type BaseImportImport

type BaseImportImport struct {
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	File        *String   `xmlrpc:"file,omptempty"`
	FileName    *String   `xmlrpc:"file_name,omptempty"`
	FileType    *String   `xmlrpc:"file_type,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	ResModel    *String   `xmlrpc:"res_model,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

BaseImportImport represents base_import.import model.

func (*BaseImportImport) Many2One

func (bi *BaseImportImport) Many2One() *Many2One

Many2One convert BaseImportImport to *Many2One.

type BaseImportImports

type BaseImportImports []BaseImportImport

BaseImportImports represents array of base_import.import model.

type BaseImportMapping

type BaseImportMapping struct {
	ColumnName  *String   `xmlrpc:"column_name,omptempty"`
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	FieldName   *String   `xmlrpc:"field_name,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	ResModel    *String   `xmlrpc:"res_model,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

BaseImportMapping represents base_import.mapping model.

func (*BaseImportMapping) Many2One

func (bm *BaseImportMapping) Many2One() *Many2One

Many2One convert BaseImportMapping to *Many2One.

type BaseImportMappings

type BaseImportMappings []BaseImportMapping

BaseImportMappings represents array of base_import.mapping model.

type BaseImportTestsModelsChar

type BaseImportTestsModelsChar struct {
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	Value       *String   `xmlrpc:"value,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

BaseImportTestsModelsChar represents base_import.tests.models.char model.

func (*BaseImportTestsModelsChar) Many2One

func (btmc *BaseImportTestsModelsChar) Many2One() *Many2One

Many2One convert BaseImportTestsModelsChar to *Many2One.

type BaseImportTestsModelsCharNoreadonly

type BaseImportTestsModelsCharNoreadonly struct {
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	Value       *String   `xmlrpc:"value,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

BaseImportTestsModelsCharNoreadonly represents base_import.tests.models.char.noreadonly model.

func (*BaseImportTestsModelsCharNoreadonly) Many2One

func (btmcn *BaseImportTestsModelsCharNoreadonly) Many2One() *Many2One

Many2One convert BaseImportTestsModelsCharNoreadonly to *Many2One.

type BaseImportTestsModelsCharNoreadonlys

type BaseImportTestsModelsCharNoreadonlys []BaseImportTestsModelsCharNoreadonly

BaseImportTestsModelsCharNoreadonlys represents array of base_import.tests.models.char.noreadonly model.

type BaseImportTestsModelsCharReadonly

type BaseImportTestsModelsCharReadonly struct {
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	Value       *String   `xmlrpc:"value,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

BaseImportTestsModelsCharReadonly represents base_import.tests.models.char.readonly model.

func (*BaseImportTestsModelsCharReadonly) Many2One

func (btmcr *BaseImportTestsModelsCharReadonly) Many2One() *Many2One

Many2One convert BaseImportTestsModelsCharReadonly to *Many2One.

type BaseImportTestsModelsCharReadonlys

type BaseImportTestsModelsCharReadonlys []BaseImportTestsModelsCharReadonly

BaseImportTestsModelsCharReadonlys represents array of base_import.tests.models.char.readonly model.

type BaseImportTestsModelsCharRequired

type BaseImportTestsModelsCharRequired struct {
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	Value       *String   `xmlrpc:"value,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

BaseImportTestsModelsCharRequired represents base_import.tests.models.char.required model.

func (*BaseImportTestsModelsCharRequired) Many2One

func (btmcr *BaseImportTestsModelsCharRequired) Many2One() *Many2One

Many2One convert BaseImportTestsModelsCharRequired to *Many2One.

type BaseImportTestsModelsCharRequireds

type BaseImportTestsModelsCharRequireds []BaseImportTestsModelsCharRequired

BaseImportTestsModelsCharRequireds represents array of base_import.tests.models.char.required model.

type BaseImportTestsModelsCharStates

type BaseImportTestsModelsCharStates struct {
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	Value       *String   `xmlrpc:"value,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

BaseImportTestsModelsCharStates represents base_import.tests.models.char.states model.

func (*BaseImportTestsModelsCharStates) Many2One

func (btmcs *BaseImportTestsModelsCharStates) Many2One() *Many2One

Many2One convert BaseImportTestsModelsCharStates to *Many2One.

type BaseImportTestsModelsCharStatess

type BaseImportTestsModelsCharStatess []BaseImportTestsModelsCharStates

BaseImportTestsModelsCharStatess represents array of base_import.tests.models.char.states model.

type BaseImportTestsModelsCharStillreadonly

type BaseImportTestsModelsCharStillreadonly struct {
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	Value       *String   `xmlrpc:"value,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

BaseImportTestsModelsCharStillreadonly represents base_import.tests.models.char.stillreadonly model.

func (*BaseImportTestsModelsCharStillreadonly) Many2One

Many2One convert BaseImportTestsModelsCharStillreadonly to *Many2One.

type BaseImportTestsModelsCharStillreadonlys

type BaseImportTestsModelsCharStillreadonlys []BaseImportTestsModelsCharStillreadonly

BaseImportTestsModelsCharStillreadonlys represents array of base_import.tests.models.char.stillreadonly model.

type BaseImportTestsModelsChars

type BaseImportTestsModelsChars []BaseImportTestsModelsChar

BaseImportTestsModelsChars represents array of base_import.tests.models.char model.

type BaseImportTestsModelsComplex

type BaseImportTestsModelsComplex struct {
	C           *String   `xmlrpc:"c,omptempty"`
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	CurrencyId  *Many2One `xmlrpc:"currency_id,omptempty"`
	D           *Time     `xmlrpc:"d,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Dt          *Time     `xmlrpc:"dt,omptempty"`
	F           *Float    `xmlrpc:"f,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	M           *Float    `xmlrpc:"m,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

BaseImportTestsModelsComplex represents base_import.tests.models.complex model.

func (*BaseImportTestsModelsComplex) Many2One

func (btmc *BaseImportTestsModelsComplex) Many2One() *Many2One

Many2One convert BaseImportTestsModelsComplex to *Many2One.

type BaseImportTestsModelsComplexs

type BaseImportTestsModelsComplexs []BaseImportTestsModelsComplex

BaseImportTestsModelsComplexs represents array of base_import.tests.models.complex model.

type BaseImportTestsModelsFloat

type BaseImportTestsModelsFloat struct {
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	CurrencyId  *Many2One `xmlrpc:"currency_id,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	Value       *Float    `xmlrpc:"value,omptempty"`
	Value2      *Float    `xmlrpc:"value2,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

BaseImportTestsModelsFloat represents base_import.tests.models.float model.

func (*BaseImportTestsModelsFloat) Many2One

func (btmf *BaseImportTestsModelsFloat) Many2One() *Many2One

Many2One convert BaseImportTestsModelsFloat to *Many2One.

type BaseImportTestsModelsFloats

type BaseImportTestsModelsFloats []BaseImportTestsModelsFloat

BaseImportTestsModelsFloats represents array of base_import.tests.models.float model.

type BaseImportTestsModelsM2O

type BaseImportTestsModelsM2O struct {
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	Value       *Many2One `xmlrpc:"value,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

BaseImportTestsModelsM2O represents base_import.tests.models.m2o model.

func (*BaseImportTestsModelsM2O) Many2One

func (btmm *BaseImportTestsModelsM2O) Many2One() *Many2One

Many2One convert BaseImportTestsModelsM2O to *Many2One.

type BaseImportTestsModelsM2ORelated

type BaseImportTestsModelsM2ORelated struct {
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	Value       *Int      `xmlrpc:"value,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

BaseImportTestsModelsM2ORelated represents base_import.tests.models.m2o.related model.

func (*BaseImportTestsModelsM2ORelated) Many2One

func (btmmr *BaseImportTestsModelsM2ORelated) Many2One() *Many2One

Many2One convert BaseImportTestsModelsM2ORelated to *Many2One.

type BaseImportTestsModelsM2ORelateds

type BaseImportTestsModelsM2ORelateds []BaseImportTestsModelsM2ORelated

BaseImportTestsModelsM2ORelateds represents array of base_import.tests.models.m2o.related model.

type BaseImportTestsModelsM2ORequired

type BaseImportTestsModelsM2ORequired struct {
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	Value       *Many2One `xmlrpc:"value,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

BaseImportTestsModelsM2ORequired represents base_import.tests.models.m2o.required model.

func (*BaseImportTestsModelsM2ORequired) Many2One

func (btmmr *BaseImportTestsModelsM2ORequired) Many2One() *Many2One

Many2One convert BaseImportTestsModelsM2ORequired to *Many2One.

type BaseImportTestsModelsM2ORequiredRelated

type BaseImportTestsModelsM2ORequiredRelated struct {
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	Value       *Int      `xmlrpc:"value,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

BaseImportTestsModelsM2ORequiredRelated represents base_import.tests.models.m2o.required.related model.

func (*BaseImportTestsModelsM2ORequiredRelated) Many2One

Many2One convert BaseImportTestsModelsM2ORequiredRelated to *Many2One.

type BaseImportTestsModelsM2ORequiredRelateds

type BaseImportTestsModelsM2ORequiredRelateds []BaseImportTestsModelsM2ORequiredRelated

BaseImportTestsModelsM2ORequiredRelateds represents array of base_import.tests.models.m2o.required.related model.

type BaseImportTestsModelsM2ORequireds

type BaseImportTestsModelsM2ORequireds []BaseImportTestsModelsM2ORequired

BaseImportTestsModelsM2ORequireds represents array of base_import.tests.models.m2o.required model.

type BaseImportTestsModelsM2Os

type BaseImportTestsModelsM2Os []BaseImportTestsModelsM2O

BaseImportTestsModelsM2Os represents array of base_import.tests.models.m2o model.

type BaseImportTestsModelsO2M

type BaseImportTestsModelsO2M struct {
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	Name        *String   `xmlrpc:"name,omptempty"`
	Value       *Relation `xmlrpc:"value,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

BaseImportTestsModelsO2M represents base_import.tests.models.o2m model.

func (*BaseImportTestsModelsO2M) Many2One

func (btmo *BaseImportTestsModelsO2M) Many2One() *Many2One

Many2One convert BaseImportTestsModelsO2M to *Many2One.

type BaseImportTestsModelsO2MChild

type BaseImportTestsModelsO2MChild struct {
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	ParentId    *Many2One `xmlrpc:"parent_id,omptempty"`
	Value       *Int      `xmlrpc:"value,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

BaseImportTestsModelsO2MChild represents base_import.tests.models.o2m.child model.

func (*BaseImportTestsModelsO2MChild) Many2One

func (btmoc *BaseImportTestsModelsO2MChild) Many2One() *Many2One

Many2One convert BaseImportTestsModelsO2MChild to *Many2One.

type BaseImportTestsModelsO2MChilds

type BaseImportTestsModelsO2MChilds []BaseImportTestsModelsO2MChild

BaseImportTestsModelsO2MChilds represents array of base_import.tests.models.o2m.child model.

type BaseImportTestsModelsO2Ms

type BaseImportTestsModelsO2Ms []BaseImportTestsModelsO2M

BaseImportTestsModelsO2Ms represents array of base_import.tests.models.o2m model.

type BaseImportTestsModelsPreview

type BaseImportTestsModelsPreview struct {
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	Name        *String   `xmlrpc:"name,omptempty"`
	Othervalue  *Int      `xmlrpc:"othervalue,omptempty"`
	Somevalue   *Int      `xmlrpc:"somevalue,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

BaseImportTestsModelsPreview represents base_import.tests.models.preview model.

func (*BaseImportTestsModelsPreview) Many2One

func (btmp *BaseImportTestsModelsPreview) Many2One() *Many2One

Many2One convert BaseImportTestsModelsPreview to *Many2One.

type BaseImportTestsModelsPreviews

type BaseImportTestsModelsPreviews []BaseImportTestsModelsPreview

BaseImportTestsModelsPreviews represents array of base_import.tests.models.preview model.

type BaseLanguageExport

type BaseLanguageExport struct {
	CreateDate  *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One  `xmlrpc:"create_uid,omptempty"`
	Data        *String    `xmlrpc:"data,omptempty"`
	DisplayName *String    `xmlrpc:"display_name,omptempty"`
	Format      *Selection `xmlrpc:"format,omptempty"`
	Id          *Int       `xmlrpc:"id,omptempty"`
	Lang        *Selection `xmlrpc:"lang,omptempty"`
	LastUpdate  *Time      `xmlrpc:"__last_update,omptempty"`
	Modules     *Relation  `xmlrpc:"modules,omptempty"`
	Name        *String    `xmlrpc:"name,omptempty"`
	State       *Selection `xmlrpc:"state,omptempty"`
	WriteDate   *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One  `xmlrpc:"write_uid,omptempty"`
}

BaseLanguageExport represents base.language.export model.

func (*BaseLanguageExport) Many2One

func (ble *BaseLanguageExport) Many2One() *Many2One

Many2One convert BaseLanguageExport to *Many2One.

type BaseLanguageExports

type BaseLanguageExports []BaseLanguageExport

BaseLanguageExports represents array of base.language.export model.

type BaseLanguageImport

type BaseLanguageImport struct {
	Code        *String   `xmlrpc:"code,omptempty"`
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	Data        *String   `xmlrpc:"data,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Filename    *String   `xmlrpc:"filename,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	Name        *String   `xmlrpc:"name,omptempty"`
	Overwrite   *Bool     `xmlrpc:"overwrite,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

BaseLanguageImport represents base.language.import model.

func (*BaseLanguageImport) Many2One

func (bli *BaseLanguageImport) Many2One() *Many2One

Many2One convert BaseLanguageImport to *Many2One.

type BaseLanguageImports

type BaseLanguageImports []BaseLanguageImport

BaseLanguageImports represents array of base.language.import model.

type BaseLanguageInstall

type BaseLanguageInstall struct {
	CreateDate  *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One  `xmlrpc:"create_uid,omptempty"`
	DisplayName *String    `xmlrpc:"display_name,omptempty"`
	Id          *Int       `xmlrpc:"id,omptempty"`
	Lang        *Selection `xmlrpc:"lang,omptempty"`
	LastUpdate  *Time      `xmlrpc:"__last_update,omptempty"`
	Overwrite   *Bool      `xmlrpc:"overwrite,omptempty"`
	State       *Selection `xmlrpc:"state,omptempty"`
	WebsiteIds  *Relation  `xmlrpc:"website_ids,omptempty"`
	WriteDate   *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One  `xmlrpc:"write_uid,omptempty"`
}

BaseLanguageInstall represents base.language.install model.

func (*BaseLanguageInstall) Many2One

func (bli *BaseLanguageInstall) Many2One() *Many2One

Many2One convert BaseLanguageInstall to *Many2One.

type BaseLanguageInstalls

type BaseLanguageInstalls []BaseLanguageInstall

BaseLanguageInstalls represents array of base.language.install model.

type BaseModuleUninstall

type BaseModuleUninstall struct {
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	ModelIds    *Relation `xmlrpc:"model_ids,omptempty"`
	ModuleId    *Many2One `xmlrpc:"module_id,omptempty"`
	ModuleIds   *Relation `xmlrpc:"module_ids,omptempty"`
	ShowAll     *Bool     `xmlrpc:"show_all,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

BaseModuleUninstall represents base.module.uninstall model.

func (*BaseModuleUninstall) Many2One

func (bmu *BaseModuleUninstall) Many2One() *Many2One

Many2One convert BaseModuleUninstall to *Many2One.

type BaseModuleUninstalls

type BaseModuleUninstalls []BaseModuleUninstall

BaseModuleUninstalls represents array of base.module.uninstall model.

type BaseModuleUpdate

type BaseModuleUpdate struct {
	Added       *Int       `xmlrpc:"added,omptempty"`
	CreateDate  *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One  `xmlrpc:"create_uid,omptempty"`
	DisplayName *String    `xmlrpc:"display_name,omptempty"`
	Id          *Int       `xmlrpc:"id,omptempty"`
	LastUpdate  *Time      `xmlrpc:"__last_update,omptempty"`
	State       *Selection `xmlrpc:"state,omptempty"`
	Updated     *Int       `xmlrpc:"updated,omptempty"`
	WriteDate   *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One  `xmlrpc:"write_uid,omptempty"`
}

BaseModuleUpdate represents base.module.update model.

func (*BaseModuleUpdate) Many2One

func (bmu *BaseModuleUpdate) Many2One() *Many2One

Many2One convert BaseModuleUpdate to *Many2One.

type BaseModuleUpdates

type BaseModuleUpdates []BaseModuleUpdate

BaseModuleUpdates represents array of base.module.update model.

type BaseModuleUpgrade

type BaseModuleUpgrade struct {
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	ModuleInfo  *String   `xmlrpc:"module_info,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

BaseModuleUpgrade represents base.module.upgrade model.

func (*BaseModuleUpgrade) Many2One

func (bmu *BaseModuleUpgrade) Many2One() *Many2One

Many2One convert BaseModuleUpgrade to *Many2One.

type BaseModuleUpgrades

type BaseModuleUpgrades []BaseModuleUpgrade

BaseModuleUpgrades represents array of base.module.upgrade model.

type BasePartnerMergeAutomaticWizard

type BasePartnerMergeAutomaticWizard struct {
	CreateDate         *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid          *Many2One  `xmlrpc:"create_uid,omptempty"`
	CurrentLineId      *Many2One  `xmlrpc:"current_line_id,omptempty"`
	DisplayName        *String    `xmlrpc:"display_name,omptempty"`
	DstPartnerId       *Many2One  `xmlrpc:"dst_partner_id,omptempty"`
	ExcludeContact     *Bool      `xmlrpc:"exclude_contact,omptempty"`
	ExcludeJournalItem *Bool      `xmlrpc:"exclude_journal_item,omptempty"`
	GroupByEmail       *Bool      `xmlrpc:"group_by_email,omptempty"`
	GroupByIsCompany   *Bool      `xmlrpc:"group_by_is_company,omptempty"`
	GroupByName        *Bool      `xmlrpc:"group_by_name,omptempty"`
	GroupByParentId    *Bool      `xmlrpc:"group_by_parent_id,omptempty"`
	GroupByVat         *Bool      `xmlrpc:"group_by_vat,omptempty"`
	Id                 *Int       `xmlrpc:"id,omptempty"`
	LastUpdate         *Time      `xmlrpc:"__last_update,omptempty"`
	LineIds            *Relation  `xmlrpc:"line_ids,omptempty"`
	MaximumGroup       *Int       `xmlrpc:"maximum_group,omptempty"`
	NumberGroup        *Int       `xmlrpc:"number_group,omptempty"`
	PartnerIds         *Relation  `xmlrpc:"partner_ids,omptempty"`
	State              *Selection `xmlrpc:"state,omptempty"`
	WriteDate          *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid           *Many2One  `xmlrpc:"write_uid,omptempty"`
}

BasePartnerMergeAutomaticWizard represents base.partner.merge.automatic.wizard model.

func (*BasePartnerMergeAutomaticWizard) Many2One

func (bpmaw *BasePartnerMergeAutomaticWizard) Many2One() *Many2One

Many2One convert BasePartnerMergeAutomaticWizard to *Many2One.

type BasePartnerMergeAutomaticWizards

type BasePartnerMergeAutomaticWizards []BasePartnerMergeAutomaticWizard

BasePartnerMergeAutomaticWizards represents array of base.partner.merge.automatic.wizard model.

type BasePartnerMergeLine

type BasePartnerMergeLine struct {
	AggrIds     *String   `xmlrpc:"aggr_ids,omptempty"`
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	MinId       *Int      `xmlrpc:"min_id,omptempty"`
	WizardId    *Many2One `xmlrpc:"wizard_id,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

BasePartnerMergeLine represents base.partner.merge.line model.

func (*BasePartnerMergeLine) Many2One

func (bpml *BasePartnerMergeLine) Many2One() *Many2One

Many2One convert BasePartnerMergeLine to *Many2One.

type BasePartnerMergeLines

type BasePartnerMergeLines []BasePartnerMergeLine

BasePartnerMergeLines represents array of base.partner.merge.line model.

type BaseUpdateTranslations

type BaseUpdateTranslations struct {
	CreateDate  *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One  `xmlrpc:"create_uid,omptempty"`
	DisplayName *String    `xmlrpc:"display_name,omptempty"`
	Id          *Int       `xmlrpc:"id,omptempty"`
	Lang        *Selection `xmlrpc:"lang,omptempty"`
	LastUpdate  *Time      `xmlrpc:"__last_update,omptempty"`
	WriteDate   *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One  `xmlrpc:"write_uid,omptempty"`
}

BaseUpdateTranslations represents base.update.translations model.

func (*BaseUpdateTranslations) Many2One

func (but *BaseUpdateTranslations) Many2One() *Many2One

Many2One convert BaseUpdateTranslations to *Many2One.

type BaseUpdateTranslationss

type BaseUpdateTranslationss []BaseUpdateTranslations

BaseUpdateTranslationss represents array of base.update.translations model.

type Bases

type Bases []Base

Bases represents array of base model.

type BlogBlog

type BlogBlog struct {
	Active                   *Bool     `xmlrpc:"active,omptempty"`
	Content                  *String   `xmlrpc:"content,omptempty"`
	CoverProperties          *String   `xmlrpc:"cover_properties,omptempty"`
	CreateDate               *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid                *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName              *String   `xmlrpc:"display_name,omptempty"`
	Id                       *Int      `xmlrpc:"id,omptempty"`
	IsSeoOptimized           *Bool     `xmlrpc:"is_seo_optimized,omptempty"`
	LastUpdate               *Time     `xmlrpc:"__last_update,omptempty"`
	MessageAttachmentCount   *Int      `xmlrpc:"message_attachment_count,omptempty"`
	MessageChannelIds        *Relation `xmlrpc:"message_channel_ids,omptempty"`
	MessageFollowerIds       *Relation `xmlrpc:"message_follower_ids,omptempty"`
	MessageHasError          *Bool     `xmlrpc:"message_has_error,omptempty"`
	MessageHasErrorCounter   *Int      `xmlrpc:"message_has_error_counter,omptempty"`
	MessageHasSmsError       *Bool     `xmlrpc:"message_has_sms_error,omptempty"`
	MessageIds               *Relation `xmlrpc:"message_ids,omptempty"`
	MessageIsFollower        *Bool     `xmlrpc:"message_is_follower,omptempty"`
	MessageMainAttachmentId  *Many2One `xmlrpc:"message_main_attachment_id,omptempty"`
	MessageNeedaction        *Bool     `xmlrpc:"message_needaction,omptempty"`
	MessageNeedactionCounter *Int      `xmlrpc:"message_needaction_counter,omptempty"`
	MessagePartnerIds        *Relation `xmlrpc:"message_partner_ids,omptempty"`
	MessageUnread            *Bool     `xmlrpc:"message_unread,omptempty"`
	MessageUnreadCounter     *Int      `xmlrpc:"message_unread_counter,omptempty"`
	Name                     *String   `xmlrpc:"name,omptempty"`
	Subtitle                 *String   `xmlrpc:"subtitle,omptempty"`
	WebsiteId                *Many2One `xmlrpc:"website_id,omptempty"`
	WebsiteMessageIds        *Relation `xmlrpc:"website_message_ids,omptempty"`
	WebsiteMetaDescription   *String   `xmlrpc:"website_meta_description,omptempty"`
	WebsiteMetaKeywords      *String   `xmlrpc:"website_meta_keywords,omptempty"`
	WebsiteMetaOgImg         *String   `xmlrpc:"website_meta_og_img,omptempty"`
	WebsiteMetaTitle         *String   `xmlrpc:"website_meta_title,omptempty"`
	WriteDate                *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid                 *Many2One `xmlrpc:"write_uid,omptempty"`
}

BlogBlog represents blog.blog model.

func (*BlogBlog) Many2One

func (bb *BlogBlog) Many2One() *Many2One

Many2One convert BlogBlog to *Many2One.

type BlogBlogs

type BlogBlogs []BlogBlog

BlogBlogs represents array of blog.blog model.

type BlogPost

type BlogPost struct {
	Active                   *Bool     `xmlrpc:"active,omptempty"`
	AuthorAvatar             *String   `xmlrpc:"author_avatar,omptempty"`
	AuthorId                 *Many2One `xmlrpc:"author_id,omptempty"`
	BlogId                   *Many2One `xmlrpc:"blog_id,omptempty"`
	CanPublish               *Bool     `xmlrpc:"can_publish,omptempty"`
	Content                  *String   `xmlrpc:"content,omptempty"`
	CoverProperties          *String   `xmlrpc:"cover_properties,omptempty"`
	CreateDate               *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid                *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName              *String   `xmlrpc:"display_name,omptempty"`
	Id                       *Int      `xmlrpc:"id,omptempty"`
	IsPublished              *Bool     `xmlrpc:"is_published,omptempty"`
	IsSeoOptimized           *Bool     `xmlrpc:"is_seo_optimized,omptempty"`
	LastUpdate               *Time     `xmlrpc:"__last_update,omptempty"`
	MessageAttachmentCount   *Int      `xmlrpc:"message_attachment_count,omptempty"`
	MessageChannelIds        *Relation `xmlrpc:"message_channel_ids,omptempty"`
	MessageFollowerIds       *Relation `xmlrpc:"message_follower_ids,omptempty"`
	MessageHasError          *Bool     `xmlrpc:"message_has_error,omptempty"`
	MessageHasErrorCounter   *Int      `xmlrpc:"message_has_error_counter,omptempty"`
	MessageHasSmsError       *Bool     `xmlrpc:"message_has_sms_error,omptempty"`
	MessageIds               *Relation `xmlrpc:"message_ids,omptempty"`
	MessageIsFollower        *Bool     `xmlrpc:"message_is_follower,omptempty"`
	MessageMainAttachmentId  *Many2One `xmlrpc:"message_main_attachment_id,omptempty"`
	MessageNeedaction        *Bool     `xmlrpc:"message_needaction,omptempty"`
	MessageNeedactionCounter *Int      `xmlrpc:"message_needaction_counter,omptempty"`
	MessagePartnerIds        *Relation `xmlrpc:"message_partner_ids,omptempty"`
	MessageUnread            *Bool     `xmlrpc:"message_unread,omptempty"`
	MessageUnreadCounter     *Int      `xmlrpc:"message_unread_counter,omptempty"`
	Name                     *String   `xmlrpc:"name,omptempty"`
	PostDate                 *Time     `xmlrpc:"post_date,omptempty"`
	PublishedDate            *Time     `xmlrpc:"published_date,omptempty"`
	Subtitle                 *String   `xmlrpc:"subtitle,omptempty"`
	TagIds                   *Relation `xmlrpc:"tag_ids,omptempty"`
	Teaser                   *String   `xmlrpc:"teaser,omptempty"`
	TeaserManual             *String   `xmlrpc:"teaser_manual,omptempty"`
	Visits                   *Int      `xmlrpc:"visits,omptempty"`
	WebsiteId                *Many2One `xmlrpc:"website_id,omptempty"`
	WebsiteMessageIds        *Relation `xmlrpc:"website_message_ids,omptempty"`
	WebsiteMetaDescription   *String   `xmlrpc:"website_meta_description,omptempty"`
	WebsiteMetaKeywords      *String   `xmlrpc:"website_meta_keywords,omptempty"`
	WebsiteMetaOgImg         *String   `xmlrpc:"website_meta_og_img,omptempty"`
	WebsiteMetaTitle         *String   `xmlrpc:"website_meta_title,omptempty"`
	WebsitePublished         *Bool     `xmlrpc:"website_published,omptempty"`
	WebsiteUrl               *String   `xmlrpc:"website_url,omptempty"`
	WriteDate                *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid                 *Many2One `xmlrpc:"write_uid,omptempty"`
}

BlogPost represents blog.post model.

func (*BlogPost) Many2One

func (bp *BlogPost) Many2One() *Many2One

Many2One convert BlogPost to *Many2One.

type BlogPosts

type BlogPosts []BlogPost

BlogPosts represents array of blog.post model.

type BlogTag

type BlogTag struct {
	CategoryId             *Many2One `xmlrpc:"category_id,omptempty"`
	CreateDate             *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid              *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName            *String   `xmlrpc:"display_name,omptempty"`
	Id                     *Int      `xmlrpc:"id,omptempty"`
	IsSeoOptimized         *Bool     `xmlrpc:"is_seo_optimized,omptempty"`
	LastUpdate             *Time     `xmlrpc:"__last_update,omptempty"`
	Name                   *String   `xmlrpc:"name,omptempty"`
	PostIds                *Relation `xmlrpc:"post_ids,omptempty"`
	WebsiteMetaDescription *String   `xmlrpc:"website_meta_description,omptempty"`
	WebsiteMetaKeywords    *String   `xmlrpc:"website_meta_keywords,omptempty"`
	WebsiteMetaOgImg       *String   `xmlrpc:"website_meta_og_img,omptempty"`
	WebsiteMetaTitle       *String   `xmlrpc:"website_meta_title,omptempty"`
	WriteDate              *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid               *Many2One `xmlrpc:"write_uid,omptempty"`
}

BlogTag represents blog.tag model.

func (*BlogTag) Many2One

func (bt *BlogTag) Many2One() *Many2One

Many2One convert BlogTag to *Many2One.

type BlogTagCategory

type BlogTagCategory struct {
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	Name        *String   `xmlrpc:"name,omptempty"`
	TagIds      *Relation `xmlrpc:"tag_ids,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

BlogTagCategory represents blog.tag.category model.

func (*BlogTagCategory) Many2One

func (btc *BlogTagCategory) Many2One() *Many2One

Many2One convert BlogTagCategory to *Many2One.

type BlogTagCategorys

type BlogTagCategorys []BlogTagCategory

BlogTagCategorys represents array of blog.tag.category model.

type BlogTags

type BlogTags []BlogTag

BlogTags represents array of blog.tag model.

type BoardBoard

type BoardBoard struct {
	DisplayName *String `xmlrpc:"display_name,omptempty"`
	Id          *Int    `xmlrpc:"id,omptempty"`
	LastUpdate  *Time   `xmlrpc:"__last_update,omptempty"`
}

BoardBoard represents board.board model.

func (*BoardBoard) Many2One

func (bb *BoardBoard) Many2One() *Many2One

Many2One convert BoardBoard to *Many2One.

type BoardBoards

type BoardBoards []BoardBoard

BoardBoards represents array of board.board model.

type Bool

type Bool struct {
	// contains filtered or unexported fields
}

Bool is a bool wrapper

func NewBool

func NewBool(v bool) *Bool

NewBool creates a new *Bool.

func (*Bool) Get

func (b *Bool) Get() bool

Get *Bool value.

type BusBus

type BusBus struct {
	Channel     *String   `xmlrpc:"channel,omptempty"`
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	Message     *String   `xmlrpc:"message,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

BusBus represents bus.bus model.

func (*BusBus) Many2One

func (bb *BusBus) Many2One() *Many2One

Many2One convert BusBus to *Many2One.

type BusBuss

type BusBuss []BusBus

BusBuss represents array of bus.bus model.

type BusPresence

type BusPresence struct {
	DisplayName  *String    `xmlrpc:"display_name,omptempty"`
	Id           *Int       `xmlrpc:"id,omptempty"`
	LastPoll     *Time      `xmlrpc:"last_poll,omptempty"`
	LastPresence *Time      `xmlrpc:"last_presence,omptempty"`
	LastUpdate   *Time      `xmlrpc:"__last_update,omptempty"`
	Status       *Selection `xmlrpc:"status,omptempty"`
	UserId       *Many2One  `xmlrpc:"user_id,omptempty"`
}

BusPresence represents bus.presence model.

func (*BusPresence) Many2One

func (bp *BusPresence) Many2One() *Many2One

Many2One convert BusPresence to *Many2One.

type BusPresences

type BusPresences []BusPresence

BusPresences represents array of bus.presence model.

type CalendarAlarm

type CalendarAlarm struct {
	AlarmType       *Selection `xmlrpc:"alarm_type,omptempty"`
	CreateDate      *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid       *Many2One  `xmlrpc:"create_uid,omptempty"`
	DisplayName     *String    `xmlrpc:"display_name,omptempty"`
	Duration        *Int       `xmlrpc:"duration,omptempty"`
	DurationMinutes *Int       `xmlrpc:"duration_minutes,omptempty"`
	Id              *Int       `xmlrpc:"id,omptempty"`
	Interval        *Selection `xmlrpc:"interval,omptempty"`
	LastUpdate      *Time      `xmlrpc:"__last_update,omptempty"`
	Name            *String    `xmlrpc:"name,omptempty"`
	WriteDate       *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid        *Many2One  `xmlrpc:"write_uid,omptempty"`
}

CalendarAlarm represents calendar.alarm model.

func (*CalendarAlarm) Many2One

func (ca *CalendarAlarm) Many2One() *Many2One

Many2One convert CalendarAlarm to *Many2One.

type CalendarAlarmManager

type CalendarAlarmManager struct {
	DisplayName *String `xmlrpc:"display_name,omptempty"`
	Id          *Int    `xmlrpc:"id,omptempty"`
	LastUpdate  *Time   `xmlrpc:"__last_update,omptempty"`
}

CalendarAlarmManager represents calendar.alarm_manager model.

func (*CalendarAlarmManager) Many2One

func (ca *CalendarAlarmManager) Many2One() *Many2One

Many2One convert CalendarAlarmManager to *Many2One.

type CalendarAlarmManagers

type CalendarAlarmManagers []CalendarAlarmManager

CalendarAlarmManagers represents array of calendar.alarm_manager model.

type CalendarAlarms

type CalendarAlarms []CalendarAlarm

CalendarAlarms represents array of calendar.alarm model.

type CalendarAttendee

type CalendarAttendee struct {
	AccessToken  *String    `xmlrpc:"access_token,omptempty"`
	Availability *Selection `xmlrpc:"availability,omptempty"`
	CommonName   *String    `xmlrpc:"common_name,omptempty"`
	CreateDate   *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid    *Many2One  `xmlrpc:"create_uid,omptempty"`
	DisplayName  *String    `xmlrpc:"display_name,omptempty"`
	Email        *String    `xmlrpc:"email,omptempty"`
	EventId      *Many2One  `xmlrpc:"event_id,omptempty"`
	Id           *Int       `xmlrpc:"id,omptempty"`
	LastUpdate   *Time      `xmlrpc:"__last_update,omptempty"`
	PartnerId    *Many2One  `xmlrpc:"partner_id,omptempty"`
	State        *Selection `xmlrpc:"state,omptempty"`
	WriteDate    *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid     *Many2One  `xmlrpc:"write_uid,omptempty"`
}

CalendarAttendee represents calendar.attendee model.

func (*CalendarAttendee) Many2One

func (ca *CalendarAttendee) Many2One() *Many2One

Many2One convert CalendarAttendee to *Many2One.

type CalendarAttendees

type CalendarAttendees []CalendarAttendee

CalendarAttendees represents array of calendar.attendee model.

type CalendarContacts

type CalendarContacts struct {
	Active      *Bool     `xmlrpc:"active,omptempty"`
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	PartnerId   *Many2One `xmlrpc:"partner_id,omptempty"`
	UserId      *Many2One `xmlrpc:"user_id,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

CalendarContacts represents calendar.contacts model.

func (*CalendarContacts) Many2One

func (cc *CalendarContacts) Many2One() *Many2One

Many2One convert CalendarContacts to *Many2One.

type CalendarContactss

type CalendarContactss []CalendarContacts

CalendarContactss represents array of calendar.contacts model.

type CalendarEvent

type CalendarEvent struct {
	Active                   *Bool      `xmlrpc:"active,omptempty"`
	ActivityIds              *Relation  `xmlrpc:"activity_ids,omptempty"`
	AlarmIds                 *Relation  `xmlrpc:"alarm_ids,omptempty"`
	Allday                   *Bool      `xmlrpc:"allday,omptempty"`
	ApplicantId              *Many2One  `xmlrpc:"applicant_id,omptempty"`
	AttendeeIds              *Relation  `xmlrpc:"attendee_ids,omptempty"`
	AttendeeStatus           *Selection `xmlrpc:"attendee_status,omptempty"`
	Byday                    *Selection `xmlrpc:"byday,omptempty"`
	CategIds                 *Relation  `xmlrpc:"categ_ids,omptempty"`
	Count                    *Int       `xmlrpc:"count,omptempty"`
	CreateDate               *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid                *Many2One  `xmlrpc:"create_uid,omptempty"`
	Day                      *Int       `xmlrpc:"day,omptempty"`
	Description              *String    `xmlrpc:"description,omptempty"`
	DisplayName              *String    `xmlrpc:"display_name,omptempty"`
	DisplayStart             *String    `xmlrpc:"display_start,omptempty"`
	DisplayTime              *String    `xmlrpc:"display_time,omptempty"`
	Duration                 *Float     `xmlrpc:"duration,omptempty"`
	EndType                  *Selection `xmlrpc:"end_type,omptempty"`
	EventTz                  *Selection `xmlrpc:"event_tz,omptempty"`
	FinalDate                *Time      `xmlrpc:"final_date,omptempty"`
	Fr                       *Bool      `xmlrpc:"fr,omptempty"`
	Id                       *Int       `xmlrpc:"id,omptempty"`
	Interval                 *Int       `xmlrpc:"interval,omptempty"`
	IsAttendee               *Bool      `xmlrpc:"is_attendee,omptempty"`
	IsHighlighted            *Bool      `xmlrpc:"is_highlighted,omptempty"`
	LastUpdate               *Time      `xmlrpc:"__last_update,omptempty"`
	Location                 *String    `xmlrpc:"location,omptempty"`
	MessageAttachmentCount   *Int       `xmlrpc:"message_attachment_count,omptempty"`
	MessageChannelIds        *Relation  `xmlrpc:"message_channel_ids,omptempty"`
	MessageFollowerIds       *Relation  `xmlrpc:"message_follower_ids,omptempty"`
	MessageHasError          *Bool      `xmlrpc:"message_has_error,omptempty"`
	MessageHasErrorCounter   *Int       `xmlrpc:"message_has_error_counter,omptempty"`
	MessageHasSmsError       *Bool      `xmlrpc:"message_has_sms_error,omptempty"`
	MessageIds               *Relation  `xmlrpc:"message_ids,omptempty"`
	MessageIsFollower        *Bool      `xmlrpc:"message_is_follower,omptempty"`
	MessageMainAttachmentId  *Many2One  `xmlrpc:"message_main_attachment_id,omptempty"`
	MessageNeedaction        *Bool      `xmlrpc:"message_needaction,omptempty"`
	MessageNeedactionCounter *Int       `xmlrpc:"message_needaction_counter,omptempty"`
	MessagePartnerIds        *Relation  `xmlrpc:"message_partner_ids,omptempty"`
	MessageUnread            *Bool      `xmlrpc:"message_unread,omptempty"`
	MessageUnreadCounter     *Int       `xmlrpc:"message_unread_counter,omptempty"`
	Mo                       *Bool      `xmlrpc:"mo,omptempty"`
	MonthBy                  *Selection `xmlrpc:"month_by,omptempty"`
	Name                     *String    `xmlrpc:"name,omptempty"`
	OpportunityId            *Many2One  `xmlrpc:"opportunity_id,omptempty"`
	PartnerId                *Many2One  `xmlrpc:"partner_id,omptempty"`
	PartnerIds               *Relation  `xmlrpc:"partner_ids,omptempty"`
	Privacy                  *Selection `xmlrpc:"privacy,omptempty"`
	Recurrency               *Bool      `xmlrpc:"recurrency,omptempty"`
	RecurrentId              *Int       `xmlrpc:"recurrent_id,omptempty"`
	RecurrentIdDate          *Time      `xmlrpc:"recurrent_id_date,omptempty"`
	ResId                    *Int       `xmlrpc:"res_id,omptempty"`
	ResModel                 *String    `xmlrpc:"res_model,omptempty"`
	ResModelId               *Many2One  `xmlrpc:"res_model_id,omptempty"`
	Rrule                    *String    `xmlrpc:"rrule,omptempty"`
	RruleType                *Selection `xmlrpc:"rrule_type,omptempty"`
	Sa                       *Bool      `xmlrpc:"sa,omptempty"`
	ShowAs                   *Selection `xmlrpc:"show_as,omptempty"`
	Start                    *Time      `xmlrpc:"start,omptempty"`
	StartDate                *Time      `xmlrpc:"start_date,omptempty"`
	StartDatetime            *Time      `xmlrpc:"start_datetime,omptempty"`
	State                    *Selection `xmlrpc:"state,omptempty"`
	Stop                     *Time      `xmlrpc:"stop,omptempty"`
	StopDate                 *Time      `xmlrpc:"stop_date,omptempty"`
	StopDatetime             *Time      `xmlrpc:"stop_datetime,omptempty"`
	Su                       *Bool      `xmlrpc:"su,omptempty"`
	Th                       *Bool      `xmlrpc:"th,omptempty"`
	Tu                       *Bool      `xmlrpc:"tu,omptempty"`
	UserId                   *Many2One  `xmlrpc:"user_id,omptempty"`
	We                       *Bool      `xmlrpc:"we,omptempty"`
	WebsiteMessageIds        *Relation  `xmlrpc:"website_message_ids,omptempty"`
	WeekList                 *Selection `xmlrpc:"week_list,omptempty"`
	WriteDate                *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid                 *Many2One  `xmlrpc:"write_uid,omptempty"`
}

CalendarEvent represents calendar.event model.

func (*CalendarEvent) Many2One

func (ce *CalendarEvent) Many2One() *Many2One

Many2One convert CalendarEvent to *Many2One.

type CalendarEventType

type CalendarEventType struct {
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	Name        *String   `xmlrpc:"name,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

CalendarEventType represents calendar.event.type model.

func (*CalendarEventType) Many2One

func (cet *CalendarEventType) Many2One() *Many2One

Many2One convert CalendarEventType to *Many2One.

type CalendarEventTypes

type CalendarEventTypes []CalendarEventType

CalendarEventTypes represents array of calendar.event.type model.

type CalendarEvents

type CalendarEvents []CalendarEvent

CalendarEvents represents array of calendar.event model.

type CashBoxOut

type CashBoxOut struct {
	Amount      *Float    `xmlrpc:"amount,omptempty"`
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	Name        *String   `xmlrpc:"name,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

CashBoxOut represents cash.box.out model.

func (*CashBoxOut) Many2One

func (cbo *CashBoxOut) Many2One() *Many2One

Many2One convert CashBoxOut to *Many2One.

type CashBoxOuts

type CashBoxOuts []CashBoxOut

CashBoxOuts represents array of cash.box.out model.

type ChangePasswordUser

type ChangePasswordUser struct {
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	NewPasswd   *String   `xmlrpc:"new_passwd,omptempty"`
	UserId      *Many2One `xmlrpc:"user_id,omptempty"`
	UserLogin   *String   `xmlrpc:"user_login,omptempty"`
	WizardId    *Many2One `xmlrpc:"wizard_id,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

ChangePasswordUser represents change.password.user model.

func (*ChangePasswordUser) Many2One

func (cpu *ChangePasswordUser) Many2One() *Many2One

Many2One convert ChangePasswordUser to *Many2One.

type ChangePasswordUsers

type ChangePasswordUsers []ChangePasswordUser

ChangePasswordUsers represents array of change.password.user model.

type ChangePasswordWizard

type ChangePasswordWizard struct {
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	UserIds     *Relation `xmlrpc:"user_ids,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

ChangePasswordWizard represents change.password.wizard model.

func (*ChangePasswordWizard) Many2One

func (cpw *ChangePasswordWizard) Many2One() *Many2One

Many2One convert ChangePasswordWizard to *Many2One.

type ChangePasswordWizards

type ChangePasswordWizards []ChangePasswordWizard

ChangePasswordWizards represents array of change.password.wizard model.

type Client

type Client struct {
	// contains filtered or unexported fields
}

Client provides high and low level functions to interact with odoo

func NewClient

func NewClient(cfg *ClientConfig) (*Client, error)

NewClient creates a new *Client.

func (*Client) Close

func (c *Client) Close()

Close closes all opened client connections.

func (*Client) Count

func (c *Client) Count(model string, criteria *Criteria, options *Options) (int64, error)

Count model records matching with *Criteria. https://www.odoo.com/documentation/13.0/webservices/odoo.html#count-records

func (*Client) Create

func (c *Client) Create(model string, values interface{}) (int64, error)

Create a new model. https://www.odoo.com/documentation/13.0/webservices/odoo.html#create-records

func (*Client) CreateAccountAccount

func (c *Client) CreateAccountAccount(aa *AccountAccount) (int64, error)

CreateAccountAccount creates a new account.account model and returns its id.

func (*Client) CreateAccountAccountTag

func (c *Client) CreateAccountAccountTag(aat *AccountAccountTag) (int64, error)

CreateAccountAccountTag creates a new account.account.tag model and returns its id.

func (*Client) CreateAccountAccountTemplate

func (c *Client) CreateAccountAccountTemplate(aat *AccountAccountTemplate) (int64, error)

CreateAccountAccountTemplate creates a new account.account.template model and returns its id.

func (*Client) CreateAccountAccountType

func (c *Client) CreateAccountAccountType(aat *AccountAccountType) (int64, error)

CreateAccountAccountType creates a new account.account.type model and returns its id.

func (*Client) CreateAccountAccrualAccountingWizard

func (c *Client) CreateAccountAccrualAccountingWizard(aaaw *AccountAccrualAccountingWizard) (int64, error)

CreateAccountAccrualAccountingWizard creates a new account.accrual.accounting.wizard model and returns its id.

func (*Client) CreateAccountAnalyticAccount

func (c *Client) CreateAccountAnalyticAccount(aaa *AccountAnalyticAccount) (int64, error)

CreateAccountAnalyticAccount creates a new account.analytic.account model and returns its id.

func (*Client) CreateAccountAnalyticDistribution

func (c *Client) CreateAccountAnalyticDistribution(aad *AccountAnalyticDistribution) (int64, error)

CreateAccountAnalyticDistribution creates a new account.analytic.distribution model and returns its id.

func (*Client) CreateAccountAnalyticGroup

func (c *Client) CreateAccountAnalyticGroup(aag *AccountAnalyticGroup) (int64, error)

CreateAccountAnalyticGroup creates a new account.analytic.group model and returns its id.

func (*Client) CreateAccountAnalyticLine

func (c *Client) CreateAccountAnalyticLine(aal *AccountAnalyticLine) (int64, error)

CreateAccountAnalyticLine creates a new account.analytic.line model and returns its id.

func (*Client) CreateAccountAnalyticTag

func (c *Client) CreateAccountAnalyticTag(aat *AccountAnalyticTag) (int64, error)

CreateAccountAnalyticTag creates a new account.analytic.tag model and returns its id.

func (*Client) CreateAccountBankStatement

func (c *Client) CreateAccountBankStatement(abs *AccountBankStatement) (int64, error)

CreateAccountBankStatement creates a new account.bank.statement model and returns its id.

func (*Client) CreateAccountBankStatementCashbox

func (c *Client) CreateAccountBankStatementCashbox(absc *AccountBankStatementCashbox) (int64, error)

CreateAccountBankStatementCashbox creates a new account.bank.statement.cashbox model and returns its id.

func (*Client) CreateAccountBankStatementClosebalance

func (c *Client) CreateAccountBankStatementClosebalance(absc *AccountBankStatementClosebalance) (int64, error)

CreateAccountBankStatementClosebalance creates a new account.bank.statement.closebalance model and returns its id.

func (*Client) CreateAccountBankStatementImport

func (c *Client) CreateAccountBankStatementImport(absi *AccountBankStatementImport) (int64, error)

CreateAccountBankStatementImport creates a new account.bank.statement.import model and returns its id.

func (*Client) CreateAccountBankStatementImportJournalCreation

func (c *Client) CreateAccountBankStatementImportJournalCreation(absijc *AccountBankStatementImportJournalCreation) (int64, error)

CreateAccountBankStatementImportJournalCreation creates a new account.bank.statement.import.journal.creation model and returns its id.

func (*Client) CreateAccountBankStatementLine

func (c *Client) CreateAccountBankStatementLine(absl *AccountBankStatementLine) (int64, error)

CreateAccountBankStatementLine creates a new account.bank.statement.line model and returns its id.

func (*Client) CreateAccountCashRounding

func (c *Client) CreateAccountCashRounding(acr *AccountCashRounding) (int64, error)

CreateAccountCashRounding creates a new account.cash.rounding model and returns its id.

func (*Client) CreateAccountCashboxLine

func (c *Client) CreateAccountCashboxLine(acl *AccountCashboxLine) (int64, error)

CreateAccountCashboxLine creates a new account.cashbox.line model and returns its id.

func (*Client) CreateAccountChartTemplate

func (c *Client) CreateAccountChartTemplate(act *AccountChartTemplate) (int64, error)

CreateAccountChartTemplate creates a new account.chart.template model and returns its id.

func (*Client) CreateAccountCommonJournalReport

func (c *Client) CreateAccountCommonJournalReport(acjr *AccountCommonJournalReport) (int64, error)

CreateAccountCommonJournalReport creates a new account.common.journal.report model and returns its id.

func (*Client) CreateAccountCommonReport

func (c *Client) CreateAccountCommonReport(acr *AccountCommonReport) (int64, error)

CreateAccountCommonReport creates a new account.common.report model and returns its id.

func (*Client) CreateAccountFinancialYearOp

func (c *Client) CreateAccountFinancialYearOp(afyo *AccountFinancialYearOp) (int64, error)

CreateAccountFinancialYearOp creates a new account.financial.year.op model and returns its id.

func (*Client) CreateAccountFiscalPosition

func (c *Client) CreateAccountFiscalPosition(afp *AccountFiscalPosition) (int64, error)

CreateAccountFiscalPosition creates a new account.fiscal.position model and returns its id.

func (*Client) CreateAccountFiscalPositionAccount

func (c *Client) CreateAccountFiscalPositionAccount(afpa *AccountFiscalPositionAccount) (int64, error)

CreateAccountFiscalPositionAccount creates a new account.fiscal.position.account model and returns its id.

func (*Client) CreateAccountFiscalPositionAccountTemplate

func (c *Client) CreateAccountFiscalPositionAccountTemplate(afpat *AccountFiscalPositionAccountTemplate) (int64, error)

CreateAccountFiscalPositionAccountTemplate creates a new account.fiscal.position.account.template model and returns its id.

func (*Client) CreateAccountFiscalPositionTax

func (c *Client) CreateAccountFiscalPositionTax(afpt *AccountFiscalPositionTax) (int64, error)

CreateAccountFiscalPositionTax creates a new account.fiscal.position.tax model and returns its id.

func (*Client) CreateAccountFiscalPositionTaxTemplate

func (c *Client) CreateAccountFiscalPositionTaxTemplate(afptt *AccountFiscalPositionTaxTemplate) (int64, error)

CreateAccountFiscalPositionTaxTemplate creates a new account.fiscal.position.tax.template model and returns its id.

func (*Client) CreateAccountFiscalPositionTemplate

func (c *Client) CreateAccountFiscalPositionTemplate(afpt *AccountFiscalPositionTemplate) (int64, error)

CreateAccountFiscalPositionTemplate creates a new account.fiscal.position.template model and returns its id.

func (*Client) CreateAccountFiscalYear

func (c *Client) CreateAccountFiscalYear(afy *AccountFiscalYear) (int64, error)

CreateAccountFiscalYear creates a new account.fiscal.year model and returns its id.

func (*Client) CreateAccountFullReconcile

func (c *Client) CreateAccountFullReconcile(afr *AccountFullReconcile) (int64, error)

CreateAccountFullReconcile creates a new account.full.reconcile model and returns its id.

func (*Client) CreateAccountGroup

func (c *Client) CreateAccountGroup(ag *AccountGroup) (int64, error)

CreateAccountGroup creates a new account.group model and returns its id.

func (*Client) CreateAccountIncoterms

func (c *Client) CreateAccountIncoterms(ai *AccountIncoterms) (int64, error)

CreateAccountIncoterms creates a new account.incoterms model and returns its id.

func (*Client) CreateAccountInvoiceReport

func (c *Client) CreateAccountInvoiceReport(air *AccountInvoiceReport) (int64, error)

CreateAccountInvoiceReport creates a new account.invoice.report model and returns its id.

func (*Client) CreateAccountInvoiceSend

func (c *Client) CreateAccountInvoiceSend(ais *AccountInvoiceSend) (int64, error)

CreateAccountInvoiceSend creates a new account.invoice.send model and returns its id.

func (*Client) CreateAccountJournal

func (c *Client) CreateAccountJournal(aj *AccountJournal) (int64, error)

CreateAccountJournal creates a new account.journal model and returns its id.

func (*Client) CreateAccountJournalGroup

func (c *Client) CreateAccountJournalGroup(ajg *AccountJournalGroup) (int64, error)

CreateAccountJournalGroup creates a new account.journal.group model and returns its id.

func (*Client) CreateAccountMove

func (c *Client) CreateAccountMove(am *AccountMove) (int64, error)

CreateAccountMove creates a new account.move model and returns its id.

func (*Client) CreateAccountMoveLine

func (c *Client) CreateAccountMoveLine(aml *AccountMoveLine) (int64, error)

CreateAccountMoveLine creates a new account.move.line model and returns its id.

func (*Client) CreateAccountMoveReversal

func (c *Client) CreateAccountMoveReversal(amr *AccountMoveReversal) (int64, error)

CreateAccountMoveReversal creates a new account.move.reversal model and returns its id.

func (*Client) CreateAccountPartialReconcile

func (c *Client) CreateAccountPartialReconcile(apr *AccountPartialReconcile) (int64, error)

CreateAccountPartialReconcile creates a new account.partial.reconcile model and returns its id.

func (*Client) CreateAccountPayment

func (c *Client) CreateAccountPayment(ap *AccountPayment) (int64, error)

CreateAccountPayment creates a new account.payment model and returns its id.

func (*Client) CreateAccountPaymentMethod

func (c *Client) CreateAccountPaymentMethod(apm *AccountPaymentMethod) (int64, error)

CreateAccountPaymentMethod creates a new account.payment.method model and returns its id.

func (*Client) CreateAccountPaymentRegister

func (c *Client) CreateAccountPaymentRegister(apr *AccountPaymentRegister) (int64, error)

CreateAccountPaymentRegister creates a new account.payment.register model and returns its id.

func (*Client) CreateAccountPaymentTerm

func (c *Client) CreateAccountPaymentTerm(apt *AccountPaymentTerm) (int64, error)

CreateAccountPaymentTerm creates a new account.payment.term model and returns its id.

func (*Client) CreateAccountPaymentTermLine

func (c *Client) CreateAccountPaymentTermLine(aptl *AccountPaymentTermLine) (int64, error)

CreateAccountPaymentTermLine creates a new account.payment.term.line model and returns its id.

func (*Client) CreateAccountPrintJournal

func (c *Client) CreateAccountPrintJournal(apj *AccountPrintJournal) (int64, error)

CreateAccountPrintJournal creates a new account.print.journal model and returns its id.

func (*Client) CreateAccountReconcileModel

func (c *Client) CreateAccountReconcileModel(arm *AccountReconcileModel) (int64, error)

CreateAccountReconcileModel creates a new account.reconcile.model model and returns its id.

func (*Client) CreateAccountReconcileModelTemplate

func (c *Client) CreateAccountReconcileModelTemplate(armt *AccountReconcileModelTemplate) (int64, error)

CreateAccountReconcileModelTemplate creates a new account.reconcile.model.template model and returns its id.

func (*Client) CreateAccountReconciliationWidget

func (c *Client) CreateAccountReconciliationWidget(arw *AccountReconciliationWidget) (int64, error)

CreateAccountReconciliationWidget creates a new account.reconciliation.widget model and returns its id.

func (*Client) CreateAccountRoot

func (c *Client) CreateAccountRoot(ar *AccountRoot) (int64, error)

CreateAccountRoot creates a new account.root model and returns its id.

func (*Client) CreateAccountSetupBankManualConfig

func (c *Client) CreateAccountSetupBankManualConfig(asbmc *AccountSetupBankManualConfig) (int64, error)

CreateAccountSetupBankManualConfig creates a new account.setup.bank.manual.config model and returns its id.

func (*Client) CreateAccountTax

func (c *Client) CreateAccountTax(at *AccountTax) (int64, error)

CreateAccountTax creates a new account.tax model and returns its id.

func (*Client) CreateAccountTaxGroup

func (c *Client) CreateAccountTaxGroup(atg *AccountTaxGroup) (int64, error)

CreateAccountTaxGroup creates a new account.tax.group model and returns its id.

func (*Client) CreateAccountTaxRepartitionLine

func (c *Client) CreateAccountTaxRepartitionLine(atrl *AccountTaxRepartitionLine) (int64, error)

CreateAccountTaxRepartitionLine creates a new account.tax.repartition.line model and returns its id.

func (*Client) CreateAccountTaxRepartitionLineTemplate

func (c *Client) CreateAccountTaxRepartitionLineTemplate(atrlt *AccountTaxRepartitionLineTemplate) (int64, error)

CreateAccountTaxRepartitionLineTemplate creates a new account.tax.repartition.line.template model and returns its id.

func (*Client) CreateAccountTaxReportLine

func (c *Client) CreateAccountTaxReportLine(atrl *AccountTaxReportLine) (int64, error)

CreateAccountTaxReportLine creates a new account.tax.report.line model and returns its id.

func (*Client) CreateAccountTaxTemplate

func (c *Client) CreateAccountTaxTemplate(att *AccountTaxTemplate) (int64, error)

CreateAccountTaxTemplate creates a new account.tax.template model and returns its id.

func (*Client) CreateAccountUnreconcile

func (c *Client) CreateAccountUnreconcile(au *AccountUnreconcile) (int64, error)

CreateAccountUnreconcile creates a new account.unreconcile model and returns its id.

func (*Client) CreateBarcodeNomenclature

func (c *Client) CreateBarcodeNomenclature(bn *BarcodeNomenclature) (int64, error)

CreateBarcodeNomenclature creates a new barcode.nomenclature model and returns its id.

func (*Client) CreateBarcodeRule

func (c *Client) CreateBarcodeRule(br *BarcodeRule) (int64, error)

CreateBarcodeRule creates a new barcode.rule model and returns its id.

func (*Client) CreateBarcodesBarcodeEventsMixin

func (c *Client) CreateBarcodesBarcodeEventsMixin(bb *BarcodesBarcodeEventsMixin) (int64, error)

CreateBarcodesBarcodeEventsMixin creates a new barcodes.barcode_events_mixin model and returns its id.

func (*Client) CreateBase

func (c *Client) CreateBase(b *Base) (int64, error)

CreateBase creates a new base model and returns its id.

func (*Client) CreateBaseDocumentLayout

func (c *Client) CreateBaseDocumentLayout(bdl *BaseDocumentLayout) (int64, error)

CreateBaseDocumentLayout creates a new base.document.layout model and returns its id.

func (*Client) CreateBaseImportImport

func (c *Client) CreateBaseImportImport(bi *BaseImportImport) (int64, error)

CreateBaseImportImport creates a new base_import.import model and returns its id.

func (*Client) CreateBaseImportMapping

func (c *Client) CreateBaseImportMapping(bm *BaseImportMapping) (int64, error)

CreateBaseImportMapping creates a new base_import.mapping model and returns its id.

func (*Client) CreateBaseImportTestsModelsChar

func (c *Client) CreateBaseImportTestsModelsChar(btmc *BaseImportTestsModelsChar) (int64, error)

CreateBaseImportTestsModelsChar creates a new base_import.tests.models.char model and returns its id.

func (*Client) CreateBaseImportTestsModelsCharNoreadonly

func (c *Client) CreateBaseImportTestsModelsCharNoreadonly(btmcn *BaseImportTestsModelsCharNoreadonly) (int64, error)

CreateBaseImportTestsModelsCharNoreadonly creates a new base_import.tests.models.char.noreadonly model and returns its id.

func (*Client) CreateBaseImportTestsModelsCharReadonly

func (c *Client) CreateBaseImportTestsModelsCharReadonly(btmcr *BaseImportTestsModelsCharReadonly) (int64, error)

CreateBaseImportTestsModelsCharReadonly creates a new base_import.tests.models.char.readonly model and returns its id.

func (*Client) CreateBaseImportTestsModelsCharRequired

func (c *Client) CreateBaseImportTestsModelsCharRequired(btmcr *BaseImportTestsModelsCharRequired) (int64, error)

CreateBaseImportTestsModelsCharRequired creates a new base_import.tests.models.char.required model and returns its id.

func (*Client) CreateBaseImportTestsModelsCharStates

func (c *Client) CreateBaseImportTestsModelsCharStates(btmcs *BaseImportTestsModelsCharStates) (int64, error)

CreateBaseImportTestsModelsCharStates creates a new base_import.tests.models.char.states model and returns its id.

func (*Client) CreateBaseImportTestsModelsCharStillreadonly

func (c *Client) CreateBaseImportTestsModelsCharStillreadonly(btmcs *BaseImportTestsModelsCharStillreadonly) (int64, error)

CreateBaseImportTestsModelsCharStillreadonly creates a new base_import.tests.models.char.stillreadonly model and returns its id.

func (*Client) CreateBaseImportTestsModelsComplex

func (c *Client) CreateBaseImportTestsModelsComplex(btmc *BaseImportTestsModelsComplex) (int64, error)

CreateBaseImportTestsModelsComplex creates a new base_import.tests.models.complex model and returns its id.

func (*Client) CreateBaseImportTestsModelsFloat

func (c *Client) CreateBaseImportTestsModelsFloat(btmf *BaseImportTestsModelsFloat) (int64, error)

CreateBaseImportTestsModelsFloat creates a new base_import.tests.models.float model and returns its id.

func (*Client) CreateBaseImportTestsModelsM2O

func (c *Client) CreateBaseImportTestsModelsM2O(btmm *BaseImportTestsModelsM2O) (int64, error)

CreateBaseImportTestsModelsM2O creates a new base_import.tests.models.m2o model and returns its id.

func (*Client) CreateBaseImportTestsModelsM2ORelated

func (c *Client) CreateBaseImportTestsModelsM2ORelated(btmmr *BaseImportTestsModelsM2ORelated) (int64, error)

CreateBaseImportTestsModelsM2ORelated creates a new base_import.tests.models.m2o.related model and returns its id.

func (*Client) CreateBaseImportTestsModelsM2ORequired

func (c *Client) CreateBaseImportTestsModelsM2ORequired(btmmr *BaseImportTestsModelsM2ORequired) (int64, error)

CreateBaseImportTestsModelsM2ORequired creates a new base_import.tests.models.m2o.required model and returns its id.

func (*Client) CreateBaseImportTestsModelsM2ORequiredRelated

func (c *Client) CreateBaseImportTestsModelsM2ORequiredRelated(btmmrr *BaseImportTestsModelsM2ORequiredRelated) (int64, error)

CreateBaseImportTestsModelsM2ORequiredRelated creates a new base_import.tests.models.m2o.required.related model and returns its id.

func (*Client) CreateBaseImportTestsModelsO2M

func (c *Client) CreateBaseImportTestsModelsO2M(btmo *BaseImportTestsModelsO2M) (int64, error)

CreateBaseImportTestsModelsO2M creates a new base_import.tests.models.o2m model and returns its id.

func (*Client) CreateBaseImportTestsModelsO2MChild

func (c *Client) CreateBaseImportTestsModelsO2MChild(btmoc *BaseImportTestsModelsO2MChild) (int64, error)

CreateBaseImportTestsModelsO2MChild creates a new base_import.tests.models.o2m.child model and returns its id.

func (*Client) CreateBaseImportTestsModelsPreview

func (c *Client) CreateBaseImportTestsModelsPreview(btmp *BaseImportTestsModelsPreview) (int64, error)

CreateBaseImportTestsModelsPreview creates a new base_import.tests.models.preview model and returns its id.

func (*Client) CreateBaseLanguageExport

func (c *Client) CreateBaseLanguageExport(ble *BaseLanguageExport) (int64, error)

CreateBaseLanguageExport creates a new base.language.export model and returns its id.

func (*Client) CreateBaseLanguageImport

func (c *Client) CreateBaseLanguageImport(bli *BaseLanguageImport) (int64, error)

CreateBaseLanguageImport creates a new base.language.import model and returns its id.

func (*Client) CreateBaseLanguageInstall

func (c *Client) CreateBaseLanguageInstall(bli *BaseLanguageInstall) (int64, error)

CreateBaseLanguageInstall creates a new base.language.install model and returns its id.

func (*Client) CreateBaseModuleUninstall

func (c *Client) CreateBaseModuleUninstall(bmu *BaseModuleUninstall) (int64, error)

CreateBaseModuleUninstall creates a new base.module.uninstall model and returns its id.

func (*Client) CreateBaseModuleUpdate

func (c *Client) CreateBaseModuleUpdate(bmu *BaseModuleUpdate) (int64, error)

CreateBaseModuleUpdate creates a new base.module.update model and returns its id.

func (*Client) CreateBaseModuleUpgrade

func (c *Client) CreateBaseModuleUpgrade(bmu *BaseModuleUpgrade) (int64, error)

CreateBaseModuleUpgrade creates a new base.module.upgrade model and returns its id.

func (*Client) CreateBasePartnerMergeAutomaticWizard

func (c *Client) CreateBasePartnerMergeAutomaticWizard(bpmaw *BasePartnerMergeAutomaticWizard) (int64, error)

CreateBasePartnerMergeAutomaticWizard creates a new base.partner.merge.automatic.wizard model and returns its id.

func (*Client) CreateBasePartnerMergeLine

func (c *Client) CreateBasePartnerMergeLine(bpml *BasePartnerMergeLine) (int64, error)

CreateBasePartnerMergeLine creates a new base.partner.merge.line model and returns its id.

func (*Client) CreateBaseUpdateTranslations

func (c *Client) CreateBaseUpdateTranslations(but *BaseUpdateTranslations) (int64, error)

CreateBaseUpdateTranslations creates a new base.update.translations model and returns its id.

func (*Client) CreateBlogBlog

func (c *Client) CreateBlogBlog(bb *BlogBlog) (int64, error)

CreateBlogBlog creates a new blog.blog model and returns its id.

func (*Client) CreateBlogPost

func (c *Client) CreateBlogPost(bp *BlogPost) (int64, error)

CreateBlogPost creates a new blog.post model and returns its id.

func (*Client) CreateBlogTag

func (c *Client) CreateBlogTag(bt *BlogTag) (int64, error)

CreateBlogTag creates a new blog.tag model and returns its id.

func (*Client) CreateBlogTagCategory

func (c *Client) CreateBlogTagCategory(btc *BlogTagCategory) (int64, error)

CreateBlogTagCategory creates a new blog.tag.category model and returns its id.

func (*Client) CreateBoardBoard

func (c *Client) CreateBoardBoard(bb *BoardBoard) (int64, error)

CreateBoardBoard creates a new board.board model and returns its id.

func (*Client) CreateBusBus

func (c *Client) CreateBusBus(bb *BusBus) (int64, error)

CreateBusBus creates a new bus.bus model and returns its id.

func (*Client) CreateBusPresence

func (c *Client) CreateBusPresence(bp *BusPresence) (int64, error)

CreateBusPresence creates a new bus.presence model and returns its id.

func (*Client) CreateCalendarAlarm

func (c *Client) CreateCalendarAlarm(ca *CalendarAlarm) (int64, error)

CreateCalendarAlarm creates a new calendar.alarm model and returns its id.

func (*Client) CreateCalendarAlarmManager

func (c *Client) CreateCalendarAlarmManager(ca *CalendarAlarmManager) (int64, error)

CreateCalendarAlarmManager creates a new calendar.alarm_manager model and returns its id.

func (*Client) CreateCalendarAttendee

func (c *Client) CreateCalendarAttendee(ca *CalendarAttendee) (int64, error)

CreateCalendarAttendee creates a new calendar.attendee model and returns its id.

func (*Client) CreateCalendarContacts

func (c *Client) CreateCalendarContacts(cc *CalendarContacts) (int64, error)

CreateCalendarContacts creates a new calendar.contacts model and returns its id.

func (*Client) CreateCalendarEvent

func (c *Client) CreateCalendarEvent(ce *CalendarEvent) (int64, error)

CreateCalendarEvent creates a new calendar.event model and returns its id.

func (*Client) CreateCalendarEventType

func (c *Client) CreateCalendarEventType(cet *CalendarEventType) (int64, error)

CreateCalendarEventType creates a new calendar.event.type model and returns its id.

func (*Client) CreateCashBoxOut

func (c *Client) CreateCashBoxOut(cbo *CashBoxOut) (int64, error)

CreateCashBoxOut creates a new cash.box.out model and returns its id.

func (*Client) CreateChangePasswordUser

func (c *Client) CreateChangePasswordUser(cpu *ChangePasswordUser) (int64, error)

CreateChangePasswordUser creates a new change.password.user model and returns its id.

func (*Client) CreateChangePasswordWizard

func (c *Client) CreateChangePasswordWizard(cpw *ChangePasswordWizard) (int64, error)

CreateChangePasswordWizard creates a new change.password.wizard model and returns its id.

func (*Client) CreateCmsArticle

func (c *Client) CreateCmsArticle(ca *CmsArticle) (int64, error)

CreateCmsArticle creates a new cms.article model and returns its id.

func (*Client) CreateCrmActivityReport

func (c *Client) CreateCrmActivityReport(car *CrmActivityReport) (int64, error)

CreateCrmActivityReport creates a new crm.activity.report model and returns its id.

func (*Client) CreateCrmLead

func (c *Client) CreateCrmLead(cl *CrmLead) (int64, error)

CreateCrmLead creates a new crm.lead model and returns its id.

func (*Client) CreateCrmLead2OpportunityPartner

func (c *Client) CreateCrmLead2OpportunityPartner(clp *CrmLead2OpportunityPartner) (int64, error)

CreateCrmLead2OpportunityPartner creates a new crm.lead2opportunity.partner model and returns its id.

func (*Client) CreateCrmLead2OpportunityPartnerMass

func (c *Client) CreateCrmLead2OpportunityPartnerMass(clpm *CrmLead2OpportunityPartnerMass) (int64, error)

CreateCrmLead2OpportunityPartnerMass creates a new crm.lead2opportunity.partner.mass model and returns its id.

func (*Client) CreateCrmLeadLost

func (c *Client) CreateCrmLeadLost(cll *CrmLeadLost) (int64, error)

CreateCrmLeadLost creates a new crm.lead.lost model and returns its id.

func (*Client) CreateCrmLeadScoringFrequency

func (c *Client) CreateCrmLeadScoringFrequency(clsf *CrmLeadScoringFrequency) (int64, error)

CreateCrmLeadScoringFrequency creates a new crm.lead.scoring.frequency model and returns its id.

func (*Client) CreateCrmLeadScoringFrequencyField

func (c *Client) CreateCrmLeadScoringFrequencyField(clsff *CrmLeadScoringFrequencyField) (int64, error)

CreateCrmLeadScoringFrequencyField creates a new crm.lead.scoring.frequency.field model and returns its id.

func (*Client) CreateCrmLeadTag

func (c *Client) CreateCrmLeadTag(clt *CrmLeadTag) (int64, error)

CreateCrmLeadTag creates a new crm.lead.tag model and returns its id.

func (*Client) CreateCrmLostReason

func (c *Client) CreateCrmLostReason(clr *CrmLostReason) (int64, error)

CreateCrmLostReason creates a new crm.lost.reason model and returns its id.

func (*Client) CreateCrmMergeOpportunity

func (c *Client) CreateCrmMergeOpportunity(cmo *CrmMergeOpportunity) (int64, error)

CreateCrmMergeOpportunity creates a new crm.merge.opportunity model and returns its id.

func (*Client) CreateCrmPartnerBinding

func (c *Client) CreateCrmPartnerBinding(cpb *CrmPartnerBinding) (int64, error)

CreateCrmPartnerBinding creates a new crm.partner.binding model and returns its id.

func (*Client) CreateCrmQuotationPartner

func (c *Client) CreateCrmQuotationPartner(cqp *CrmQuotationPartner) (int64, error)

CreateCrmQuotationPartner creates a new crm.quotation.partner model and returns its id.

func (*Client) CreateCrmStage

func (c *Client) CreateCrmStage(cs *CrmStage) (int64, error)

CreateCrmStage creates a new crm.stage model and returns its id.

func (*Client) CreateCrmTeam

func (c *Client) CreateCrmTeam(ct *CrmTeam) (int64, error)

CreateCrmTeam creates a new crm.team model and returns its id.

func (*Client) CreateDecimalPrecision

func (c *Client) CreateDecimalPrecision(dp *DecimalPrecision) (int64, error)

CreateDecimalPrecision creates a new decimal.precision model and returns its id.

func (*Client) CreateDigestDigest

func (c *Client) CreateDigestDigest(dd *DigestDigest) (int64, error)

CreateDigestDigest creates a new digest.digest model and returns its id.

func (*Client) CreateDigestTip

func (c *Client) CreateDigestTip(dt *DigestTip) (int64, error)

CreateDigestTip creates a new digest.tip model and returns its id.

func (*Client) CreateEmailTemplatePreview

func (c *Client) CreateEmailTemplatePreview(ep *EmailTemplatePreview) (int64, error)

CreateEmailTemplatePreview creates a new email_template.preview model and returns its id.

func (*Client) CreateEventConfirm

func (c *Client) CreateEventConfirm(ec *EventConfirm) (int64, error)

CreateEventConfirm creates a new event.confirm model and returns its id.

func (*Client) CreateEventEvent

func (c *Client) CreateEventEvent(ee *EventEvent) (int64, error)

CreateEventEvent creates a new event.event model and returns its id.

func (*Client) CreateEventEventConfigurator

func (c *Client) CreateEventEventConfigurator(eec *EventEventConfigurator) (int64, error)

CreateEventEventConfigurator creates a new event.event.configurator model and returns its id.

func (*Client) CreateEventEventTicket

func (c *Client) CreateEventEventTicket(eet *EventEventTicket) (int64, error)

CreateEventEventTicket creates a new event.event.ticket model and returns its id.

func (*Client) CreateEventMail

func (c *Client) CreateEventMail(em *EventMail) (int64, error)

CreateEventMail creates a new event.mail model and returns its id.

func (*Client) CreateEventMailRegistration

func (c *Client) CreateEventMailRegistration(emr *EventMailRegistration) (int64, error)

CreateEventMailRegistration creates a new event.mail.registration model and returns its id.

func (*Client) CreateEventRegistration

func (c *Client) CreateEventRegistration(er *EventRegistration) (int64, error)

CreateEventRegistration creates a new event.registration model and returns its id.

func (*Client) CreateEventType

func (c *Client) CreateEventType(et *EventType) (int64, error)

CreateEventType creates a new event.type model and returns its id.

func (*Client) CreateEventTypeMail

func (c *Client) CreateEventTypeMail(etm *EventTypeMail) (int64, error)

CreateEventTypeMail creates a new event.type.mail model and returns its id.

func (*Client) CreateFetchmailServer

func (c *Client) CreateFetchmailServer(fs *FetchmailServer) (int64, error)

CreateFetchmailServer creates a new fetchmail.server model and returns its id.

func (*Client) CreateFormatAddressMixin

func (c *Client) CreateFormatAddressMixin(fam *FormatAddressMixin) (int64, error)

CreateFormatAddressMixin creates a new format.address.mixin model and returns its id.

func (*Client) CreateGamificationBadge

func (c *Client) CreateGamificationBadge(gb *GamificationBadge) (int64, error)

CreateGamificationBadge creates a new gamification.badge model and returns its id.

func (*Client) CreateGamificationBadgeUser

func (c *Client) CreateGamificationBadgeUser(gbu *GamificationBadgeUser) (int64, error)

CreateGamificationBadgeUser creates a new gamification.badge.user model and returns its id.

func (*Client) CreateGamificationBadgeUserWizard

func (c *Client) CreateGamificationBadgeUserWizard(gbuw *GamificationBadgeUserWizard) (int64, error)

CreateGamificationBadgeUserWizard creates a new gamification.badge.user.wizard model and returns its id.

func (*Client) CreateGamificationChallenge

func (c *Client) CreateGamificationChallenge(gc *GamificationChallenge) (int64, error)

CreateGamificationChallenge creates a new gamification.challenge model and returns its id.

func (*Client) CreateGamificationChallengeLine

func (c *Client) CreateGamificationChallengeLine(gcl *GamificationChallengeLine) (int64, error)

CreateGamificationChallengeLine creates a new gamification.challenge.line model and returns its id.

func (*Client) CreateGamificationGoal

func (c *Client) CreateGamificationGoal(gg *GamificationGoal) (int64, error)

CreateGamificationGoal creates a new gamification.goal model and returns its id.

func (*Client) CreateGamificationGoalDefinition

func (c *Client) CreateGamificationGoalDefinition(ggd *GamificationGoalDefinition) (int64, error)

CreateGamificationGoalDefinition creates a new gamification.goal.definition model and returns its id.

func (*Client) CreateGamificationGoalWizard

func (c *Client) CreateGamificationGoalWizard(ggw *GamificationGoalWizard) (int64, error)

CreateGamificationGoalWizard creates a new gamification.goal.wizard model and returns its id.

func (*Client) CreateGamificationKarmaRank

func (c *Client) CreateGamificationKarmaRank(gkr *GamificationKarmaRank) (int64, error)

CreateGamificationKarmaRank creates a new gamification.karma.rank model and returns its id.

func (*Client) CreateHrApplicant

func (c *Client) CreateHrApplicant(ha *HrApplicant) (int64, error)

CreateHrApplicant creates a new hr.applicant model and returns its id.

func (*Client) CreateHrApplicantCategory

func (c *Client) CreateHrApplicantCategory(hac *HrApplicantCategory) (int64, error)

CreateHrApplicantCategory creates a new hr.applicant.category model and returns its id.

func (*Client) CreateHrAttendance

func (c *Client) CreateHrAttendance(ha *HrAttendance) (int64, error)

CreateHrAttendance creates a new hr.attendance model and returns its id.

func (*Client) CreateHrContract

func (c *Client) CreateHrContract(hc *HrContract) (int64, error)

CreateHrContract creates a new hr.contract model and returns its id.

func (*Client) CreateHrDepartment

func (c *Client) CreateHrDepartment(hd *HrDepartment) (int64, error)

CreateHrDepartment creates a new hr.department model and returns its id.

func (*Client) CreateHrDepartureWizard

func (c *Client) CreateHrDepartureWizard(hdw *HrDepartureWizard) (int64, error)

CreateHrDepartureWizard creates a new hr.departure.wizard model and returns its id.

func (*Client) CreateHrEmployee

func (c *Client) CreateHrEmployee(he *HrEmployee) (int64, error)

CreateHrEmployee creates a new hr.employee model and returns its id.

func (*Client) CreateHrEmployeeBase

func (c *Client) CreateHrEmployeeBase(heb *HrEmployeeBase) (int64, error)

CreateHrEmployeeBase creates a new hr.employee.base model and returns its id.

func (*Client) CreateHrEmployeeCategory

func (c *Client) CreateHrEmployeeCategory(hec *HrEmployeeCategory) (int64, error)

CreateHrEmployeeCategory creates a new hr.employee.category model and returns its id.

func (*Client) CreateHrEmployeePublic

func (c *Client) CreateHrEmployeePublic(hep *HrEmployeePublic) (int64, error)

CreateHrEmployeePublic creates a new hr.employee.public model and returns its id.

func (*Client) CreateHrExpense

func (c *Client) CreateHrExpense(he *HrExpense) (int64, error)

CreateHrExpense creates a new hr.expense model and returns its id.

func (*Client) CreateHrExpenseRefuseWizard

func (c *Client) CreateHrExpenseRefuseWizard(herw *HrExpenseRefuseWizard) (int64, error)

CreateHrExpenseRefuseWizard creates a new hr.expense.refuse.wizard model and returns its id.

func (*Client) CreateHrExpenseSheet

func (c *Client) CreateHrExpenseSheet(hes *HrExpenseSheet) (int64, error)

CreateHrExpenseSheet creates a new hr.expense.sheet model and returns its id.

func (*Client) CreateHrExpenseSheetRegisterPaymentWizard

func (c *Client) CreateHrExpenseSheetRegisterPaymentWizard(hesrpw *HrExpenseSheetRegisterPaymentWizard) (int64, error)

CreateHrExpenseSheetRegisterPaymentWizard creates a new hr.expense.sheet.register.payment.wizard model and returns its id.

func (*Client) CreateHrHolidaysSummaryEmployee

func (c *Client) CreateHrHolidaysSummaryEmployee(hhse *HrHolidaysSummaryEmployee) (int64, error)

CreateHrHolidaysSummaryEmployee creates a new hr.holidays.summary.employee model and returns its id.

func (*Client) CreateHrJob

func (c *Client) CreateHrJob(hj *HrJob) (int64, error)

CreateHrJob creates a new hr.job model and returns its id.

func (*Client) CreateHrLeave

func (c *Client) CreateHrLeave(hl *HrLeave) (int64, error)

CreateHrLeave creates a new hr.leave model and returns its id.

func (*Client) CreateHrLeaveAllocation

func (c *Client) CreateHrLeaveAllocation(hla *HrLeaveAllocation) (int64, error)

CreateHrLeaveAllocation creates a new hr.leave.allocation model and returns its id.

func (*Client) CreateHrLeaveReport

func (c *Client) CreateHrLeaveReport(hlr *HrLeaveReport) (int64, error)

CreateHrLeaveReport creates a new hr.leave.report model and returns its id.

func (*Client) CreateHrLeaveReportCalendar

func (c *Client) CreateHrLeaveReportCalendar(hlrc *HrLeaveReportCalendar) (int64, error)

CreateHrLeaveReportCalendar creates a new hr.leave.report.calendar model and returns its id.

func (*Client) CreateHrLeaveType

func (c *Client) CreateHrLeaveType(hlt *HrLeaveType) (int64, error)

CreateHrLeaveType creates a new hr.leave.type model and returns its id.

func (*Client) CreateHrPlan

func (c *Client) CreateHrPlan(hp *HrPlan) (int64, error)

CreateHrPlan creates a new hr.plan model and returns its id.

func (*Client) CreateHrPlanActivityType

func (c *Client) CreateHrPlanActivityType(hpat *HrPlanActivityType) (int64, error)

CreateHrPlanActivityType creates a new hr.plan.activity.type model and returns its id.

func (*Client) CreateHrPlanWizard

func (c *Client) CreateHrPlanWizard(hpw *HrPlanWizard) (int64, error)

CreateHrPlanWizard creates a new hr.plan.wizard model and returns its id.

func (*Client) CreateHrRecruitmentDegree

func (c *Client) CreateHrRecruitmentDegree(hrd *HrRecruitmentDegree) (int64, error)

CreateHrRecruitmentDegree creates a new hr.recruitment.degree model and returns its id.

func (*Client) CreateHrRecruitmentSource

func (c *Client) CreateHrRecruitmentSource(hrs *HrRecruitmentSource) (int64, error)

CreateHrRecruitmentSource creates a new hr.recruitment.source model and returns its id.

func (*Client) CreateHrRecruitmentStage

func (c *Client) CreateHrRecruitmentStage(hrs *HrRecruitmentStage) (int64, error)

CreateHrRecruitmentStage creates a new hr.recruitment.stage model and returns its id.

func (*Client) CreateIapAccount

func (c *Client) CreateIapAccount(ia *IapAccount) (int64, error)

CreateIapAccount creates a new iap.account model and returns its id.

func (*Client) CreateImLivechatChannel

func (c *Client) CreateImLivechatChannel(ic *ImLivechatChannel) (int64, error)

CreateImLivechatChannel creates a new im_livechat.channel model and returns its id.

func (*Client) CreateImLivechatChannelRule

func (c *Client) CreateImLivechatChannelRule(icr *ImLivechatChannelRule) (int64, error)

CreateImLivechatChannelRule creates a new im_livechat.channel.rule model and returns its id.

func (*Client) CreateImLivechatReportChannel

func (c *Client) CreateImLivechatReportChannel(irc *ImLivechatReportChannel) (int64, error)

CreateImLivechatReportChannel creates a new im_livechat.report.channel model and returns its id.

func (*Client) CreateImLivechatReportOperator

func (c *Client) CreateImLivechatReportOperator(iro *ImLivechatReportOperator) (int64, error)

CreateImLivechatReportOperator creates a new im_livechat.report.operator model and returns its id.

func (*Client) CreateImageMixin

func (c *Client) CreateImageMixin(im *ImageMixin) (int64, error)

CreateImageMixin creates a new image.mixin model and returns its id.

func (*Client) CreateIrActionsActUrl

func (c *Client) CreateIrActionsActUrl(iaa *IrActionsActUrl) (int64, error)

CreateIrActionsActUrl creates a new ir.actions.act_url model and returns its id.

func (*Client) CreateIrActionsActWindow

func (c *Client) CreateIrActionsActWindow(iaa *IrActionsActWindow) (int64, error)

CreateIrActionsActWindow creates a new ir.actions.act_window model and returns its id.

func (*Client) CreateIrActionsActWindowClose

func (c *Client) CreateIrActionsActWindowClose(iaa *IrActionsActWindowClose) (int64, error)

CreateIrActionsActWindowClose creates a new ir.actions.act_window_close model and returns its id.

func (*Client) CreateIrActionsActWindowView

func (c *Client) CreateIrActionsActWindowView(iaav *IrActionsActWindowView) (int64, error)

CreateIrActionsActWindowView creates a new ir.actions.act_window.view model and returns its id.

func (*Client) CreateIrActionsActions

func (c *Client) CreateIrActionsActions(iaa *IrActionsActions) (int64, error)

CreateIrActionsActions creates a new ir.actions.actions model and returns its id.

func (*Client) CreateIrActionsClient

func (c *Client) CreateIrActionsClient(iac *IrActionsClient) (int64, error)

CreateIrActionsClient creates a new ir.actions.client model and returns its id.

func (*Client) CreateIrActionsReport

func (c *Client) CreateIrActionsReport(iar *IrActionsReport) (int64, error)

CreateIrActionsReport creates a new ir.actions.report model and returns its id.

func (*Client) CreateIrActionsServer

func (c *Client) CreateIrActionsServer(ias *IrActionsServer) (int64, error)

CreateIrActionsServer creates a new ir.actions.server model and returns its id.

func (*Client) CreateIrActionsTodo

func (c *Client) CreateIrActionsTodo(iat *IrActionsTodo) (int64, error)

CreateIrActionsTodo creates a new ir.actions.todo model and returns its id.

func (*Client) CreateIrAttachment

func (c *Client) CreateIrAttachment(ia *IrAttachment) (int64, error)

CreateIrAttachment creates a new ir.attachment model and returns its id.

func (*Client) CreateIrAutovacuum

func (c *Client) CreateIrAutovacuum(ia *IrAutovacuum) (int64, error)

CreateIrAutovacuum creates a new ir.autovacuum model and returns its id.

func (*Client) CreateIrConfigParameter

func (c *Client) CreateIrConfigParameter(ic *IrConfigParameter) (int64, error)

CreateIrConfigParameter creates a new ir.config_parameter model and returns its id.

func (*Client) CreateIrCron

func (c *Client) CreateIrCron(ic *IrCron) (int64, error)

CreateIrCron creates a new ir.cron model and returns its id.

func (*Client) CreateIrDefault

func (c *Client) CreateIrDefault(ID *IrDefault) (int64, error)

CreateIrDefault creates a new ir.default model and returns its id.

func (*Client) CreateIrDemo

func (c *Client) CreateIrDemo(ID *IrDemo) (int64, error)

CreateIrDemo creates a new ir.demo model and returns its id.

func (*Client) CreateIrDemoFailure

func (c *Client) CreateIrDemoFailure(ID *IrDemoFailure) (int64, error)

CreateIrDemoFailure creates a new ir.demo_failure model and returns its id.

func (*Client) CreateIrDemoFailureWizard

func (c *Client) CreateIrDemoFailureWizard(idw *IrDemoFailureWizard) (int64, error)

CreateIrDemoFailureWizard creates a new ir.demo_failure.wizard model and returns its id.

func (*Client) CreateIrExports

func (c *Client) CreateIrExports(ie *IrExports) (int64, error)

CreateIrExports creates a new ir.exports model and returns its id.

func (*Client) CreateIrExportsLine

func (c *Client) CreateIrExportsLine(iel *IrExportsLine) (int64, error)

CreateIrExportsLine creates a new ir.exports.line model and returns its id.

func (*Client) CreateIrFieldsConverter

func (c *Client) CreateIrFieldsConverter(ifc *IrFieldsConverter) (int64, error)

CreateIrFieldsConverter creates a new ir.fields.converter model and returns its id.

func (*Client) CreateIrFilters

func (c *Client) CreateIrFilters(IF *IrFilters) (int64, error)

CreateIrFilters creates a new ir.filters model and returns its id.

func (*Client) CreateIrHttp

func (c *Client) CreateIrHttp(ih *IrHttp) (int64, error)

CreateIrHttp creates a new ir.http model and returns its id.

func (*Client) CreateIrLogging

func (c *Client) CreateIrLogging(il *IrLogging) (int64, error)

CreateIrLogging creates a new ir.logging model and returns its id.

func (*Client) CreateIrMailServer

func (c *Client) CreateIrMailServer(im *IrMailServer) (int64, error)

CreateIrMailServer creates a new ir.mail_server model and returns its id.

func (*Client) CreateIrModel

func (c *Client) CreateIrModel(im *IrModel) (int64, error)

CreateIrModel creates a new ir.model model and returns its id.

func (*Client) CreateIrModelAccess

func (c *Client) CreateIrModelAccess(ima *IrModelAccess) (int64, error)

CreateIrModelAccess creates a new ir.model.access model and returns its id.

func (*Client) CreateIrModelConstraint

func (c *Client) CreateIrModelConstraint(imc *IrModelConstraint) (int64, error)

CreateIrModelConstraint creates a new ir.model.constraint model and returns its id.

func (*Client) CreateIrModelData

func (c *Client) CreateIrModelData(imd *IrModelData) (int64, error)

CreateIrModelData creates a new ir.model.data model and returns its id.

func (*Client) CreateIrModelFields

func (c *Client) CreateIrModelFields(imf *IrModelFields) (int64, error)

CreateIrModelFields creates a new ir.model.fields model and returns its id.

func (*Client) CreateIrModelFieldsSelection

func (c *Client) CreateIrModelFieldsSelection(imfs *IrModelFieldsSelection) (int64, error)

CreateIrModelFieldsSelection creates a new ir.model.fields.selection model and returns its id.

func (*Client) CreateIrModelRelation

func (c *Client) CreateIrModelRelation(imr *IrModelRelation) (int64, error)

CreateIrModelRelation creates a new ir.model.relation model and returns its id.

func (*Client) CreateIrModuleCategory

func (c *Client) CreateIrModuleCategory(imc *IrModuleCategory) (int64, error)

CreateIrModuleCategory creates a new ir.module.category model and returns its id.

func (*Client) CreateIrModuleModule

func (c *Client) CreateIrModuleModule(imm *IrModuleModule) (int64, error)

CreateIrModuleModule creates a new ir.module.module model and returns its id.

func (*Client) CreateIrModuleModuleDependency

func (c *Client) CreateIrModuleModuleDependency(immd *IrModuleModuleDependency) (int64, error)

CreateIrModuleModuleDependency creates a new ir.module.module.dependency model and returns its id.

func (*Client) CreateIrModuleModuleExclusion

func (c *Client) CreateIrModuleModuleExclusion(imme *IrModuleModuleExclusion) (int64, error)

CreateIrModuleModuleExclusion creates a new ir.module.module.exclusion model and returns its id.

func (*Client) CreateIrProperty

func (c *Client) CreateIrProperty(ip *IrProperty) (int64, error)

CreateIrProperty creates a new ir.property model and returns its id.

func (*Client) CreateIrQweb

func (c *Client) CreateIrQweb(iq *IrQweb) (int64, error)

CreateIrQweb creates a new ir.qweb model and returns its id.

func (*Client) CreateIrQwebField

func (c *Client) CreateIrQwebField(iqf *IrQwebField) (int64, error)

CreateIrQwebField creates a new ir.qweb.field model and returns its id.

func (*Client) CreateIrQwebFieldBarcode

func (c *Client) CreateIrQwebFieldBarcode(iqfb *IrQwebFieldBarcode) (int64, error)

CreateIrQwebFieldBarcode creates a new ir.qweb.field.barcode model and returns its id.

func (*Client) CreateIrQwebFieldContact

func (c *Client) CreateIrQwebFieldContact(iqfc *IrQwebFieldContact) (int64, error)

CreateIrQwebFieldContact creates a new ir.qweb.field.contact model and returns its id.

func (*Client) CreateIrQwebFieldDate

func (c *Client) CreateIrQwebFieldDate(iqfd *IrQwebFieldDate) (int64, error)

CreateIrQwebFieldDate creates a new ir.qweb.field.date model and returns its id.

func (*Client) CreateIrQwebFieldDatetime

func (c *Client) CreateIrQwebFieldDatetime(iqfd *IrQwebFieldDatetime) (int64, error)

CreateIrQwebFieldDatetime creates a new ir.qweb.field.datetime model and returns its id.

func (*Client) CreateIrQwebFieldDuration

func (c *Client) CreateIrQwebFieldDuration(iqfd *IrQwebFieldDuration) (int64, error)

CreateIrQwebFieldDuration creates a new ir.qweb.field.duration model and returns its id.

func (*Client) CreateIrQwebFieldFloat

func (c *Client) CreateIrQwebFieldFloat(iqff *IrQwebFieldFloat) (int64, error)

CreateIrQwebFieldFloat creates a new ir.qweb.field.float model and returns its id.

func (*Client) CreateIrQwebFieldFloatTime

func (c *Client) CreateIrQwebFieldFloatTime(iqff *IrQwebFieldFloatTime) (int64, error)

CreateIrQwebFieldFloatTime creates a new ir.qweb.field.float_time model and returns its id.

func (*Client) CreateIrQwebFieldHtml

func (c *Client) CreateIrQwebFieldHtml(iqfh *IrQwebFieldHtml) (int64, error)

CreateIrQwebFieldHtml creates a new ir.qweb.field.html model and returns its id.

func (*Client) CreateIrQwebFieldImage

func (c *Client) CreateIrQwebFieldImage(iqfi *IrQwebFieldImage) (int64, error)

CreateIrQwebFieldImage creates a new ir.qweb.field.image model and returns its id.

func (*Client) CreateIrQwebFieldInteger

func (c *Client) CreateIrQwebFieldInteger(iqfi *IrQwebFieldInteger) (int64, error)

CreateIrQwebFieldInteger creates a new ir.qweb.field.integer model and returns its id.

func (*Client) CreateIrQwebFieldMany2Many

func (c *Client) CreateIrQwebFieldMany2Many(iqfm *IrQwebFieldMany2Many) (int64, error)

CreateIrQwebFieldMany2Many creates a new ir.qweb.field.many2many model and returns its id.

func (*Client) CreateIrQwebFieldMany2One

func (c *Client) CreateIrQwebFieldMany2One(iqfm *IrQwebFieldMany2One) (int64, error)

CreateIrQwebFieldMany2One creates a new ir.qweb.field.many2one model and returns its id.

func (*Client) CreateIrQwebFieldMonetary

func (c *Client) CreateIrQwebFieldMonetary(iqfm *IrQwebFieldMonetary) (int64, error)

CreateIrQwebFieldMonetary creates a new ir.qweb.field.monetary model and returns its id.

func (*Client) CreateIrQwebFieldQweb

func (c *Client) CreateIrQwebFieldQweb(iqfq *IrQwebFieldQweb) (int64, error)

CreateIrQwebFieldQweb creates a new ir.qweb.field.qweb model and returns its id.

func (*Client) CreateIrQwebFieldRelative

func (c *Client) CreateIrQwebFieldRelative(iqfr *IrQwebFieldRelative) (int64, error)

CreateIrQwebFieldRelative creates a new ir.qweb.field.relative model and returns its id.

func (*Client) CreateIrQwebFieldSelection

func (c *Client) CreateIrQwebFieldSelection(iqfs *IrQwebFieldSelection) (int64, error)

CreateIrQwebFieldSelection creates a new ir.qweb.field.selection model and returns its id.

func (*Client) CreateIrQwebFieldText

func (c *Client) CreateIrQwebFieldText(iqft *IrQwebFieldText) (int64, error)

CreateIrQwebFieldText creates a new ir.qweb.field.text model and returns its id.

func (*Client) CreateIrRule

func (c *Client) CreateIrRule(ir *IrRule) (int64, error)

CreateIrRule creates a new ir.rule model and returns its id.

func (*Client) CreateIrSequence

func (c *Client) CreateIrSequence(is *IrSequence) (int64, error)

CreateIrSequence creates a new ir.sequence model and returns its id.

func (*Client) CreateIrSequenceDateRange

func (c *Client) CreateIrSequenceDateRange(isd *IrSequenceDateRange) (int64, error)

CreateIrSequenceDateRange creates a new ir.sequence.date_range model and returns its id.

func (*Client) CreateIrServerObjectLines

func (c *Client) CreateIrServerObjectLines(isol *IrServerObjectLines) (int64, error)

CreateIrServerObjectLines creates a new ir.server.object.lines model and returns its id.

func (*Client) CreateIrTranslation

func (c *Client) CreateIrTranslation(it *IrTranslation) (int64, error)

CreateIrTranslation creates a new ir.translation model and returns its id.

func (*Client) CreateIrUiMenu

func (c *Client) CreateIrUiMenu(ium *IrUiMenu) (int64, error)

CreateIrUiMenu creates a new ir.ui.menu model and returns its id.

func (*Client) CreateIrUiView

func (c *Client) CreateIrUiView(iuv *IrUiView) (int64, error)

CreateIrUiView creates a new ir.ui.view model and returns its id.

func (*Client) CreateIrUiViewCustom

func (c *Client) CreateIrUiViewCustom(iuvc *IrUiViewCustom) (int64, error)

CreateIrUiViewCustom creates a new ir.ui.view.custom model and returns its id.

func (*Client) CreateLinkTracker

func (c *Client) CreateLinkTracker(lt *LinkTracker) (int64, error)

CreateLinkTracker creates a new link.tracker model and returns its id.

func (*Client) CreateLinkTrackerClick

func (c *Client) CreateLinkTrackerClick(ltc *LinkTrackerClick) (int64, error)

CreateLinkTrackerClick creates a new link.tracker.click model and returns its id.

func (*Client) CreateLinkTrackerCode

func (c *Client) CreateLinkTrackerCode(ltc *LinkTrackerCode) (int64, error)

CreateLinkTrackerCode creates a new link.tracker.code model and returns its id.

func (*Client) CreateMailActivity

func (c *Client) CreateMailActivity(ma *MailActivity) (int64, error)

CreateMailActivity creates a new mail.activity model and returns its id.

func (*Client) CreateMailActivityMixin

func (c *Client) CreateMailActivityMixin(mam *MailActivityMixin) (int64, error)

CreateMailActivityMixin creates a new mail.activity.mixin model and returns its id.

func (*Client) CreateMailActivityType

func (c *Client) CreateMailActivityType(mat *MailActivityType) (int64, error)

CreateMailActivityType creates a new mail.activity.type model and returns its id.

func (*Client) CreateMailAddressMixin

func (c *Client) CreateMailAddressMixin(mam *MailAddressMixin) (int64, error)

CreateMailAddressMixin creates a new mail.address.mixin model and returns its id.

func (*Client) CreateMailAlias

func (c *Client) CreateMailAlias(ma *MailAlias) (int64, error)

CreateMailAlias creates a new mail.alias model and returns its id.

func (*Client) CreateMailAliasMixin

func (c *Client) CreateMailAliasMixin(mam *MailAliasMixin) (int64, error)

CreateMailAliasMixin creates a new mail.alias.mixin model and returns its id.

func (*Client) CreateMailBlacklist

func (c *Client) CreateMailBlacklist(mb *MailBlacklist) (int64, error)

CreateMailBlacklist creates a new mail.blacklist model and returns its id.

func (*Client) CreateMailBot

func (c *Client) CreateMailBot(mb *MailBot) (int64, error)

CreateMailBot creates a new mail.bot model and returns its id.

func (*Client) CreateMailChannel

func (c *Client) CreateMailChannel(mc *MailChannel) (int64, error)

CreateMailChannel creates a new mail.channel model and returns its id.

func (*Client) CreateMailChannelPartner

func (c *Client) CreateMailChannelPartner(mcp *MailChannelPartner) (int64, error)

CreateMailChannelPartner creates a new mail.channel.partner model and returns its id.

func (*Client) CreateMailComposeMessage

func (c *Client) CreateMailComposeMessage(mcm *MailComposeMessage) (int64, error)

CreateMailComposeMessage creates a new mail.compose.message model and returns its id.

func (*Client) CreateMailFollowers

func (c *Client) CreateMailFollowers(mf *MailFollowers) (int64, error)

CreateMailFollowers creates a new mail.followers model and returns its id.

func (*Client) CreateMailMail

func (c *Client) CreateMailMail(mm *MailMail) (int64, error)

CreateMailMail creates a new mail.mail model and returns its id.

func (*Client) CreateMailMessage

func (c *Client) CreateMailMessage(mm *MailMessage) (int64, error)

CreateMailMessage creates a new mail.message model and returns its id.

func (*Client) CreateMailMessageSubtype

func (c *Client) CreateMailMessageSubtype(mms *MailMessageSubtype) (int64, error)

CreateMailMessageSubtype creates a new mail.message.subtype model and returns its id.

func (*Client) CreateMailModeration

func (c *Client) CreateMailModeration(mm *MailModeration) (int64, error)

CreateMailModeration creates a new mail.moderation model and returns its id.

func (*Client) CreateMailNotification

func (c *Client) CreateMailNotification(mn *MailNotification) (int64, error)

CreateMailNotification creates a new mail.notification model and returns its id.

func (*Client) CreateMailResendCancel

func (c *Client) CreateMailResendCancel(mrc *MailResendCancel) (int64, error)

CreateMailResendCancel creates a new mail.resend.cancel model and returns its id.

func (*Client) CreateMailResendMessage

func (c *Client) CreateMailResendMessage(mrm *MailResendMessage) (int64, error)

CreateMailResendMessage creates a new mail.resend.message model and returns its id.

func (*Client) CreateMailResendPartner

func (c *Client) CreateMailResendPartner(mrp *MailResendPartner) (int64, error)

CreateMailResendPartner creates a new mail.resend.partner model and returns its id.

func (*Client) CreateMailShortcode

func (c *Client) CreateMailShortcode(ms *MailShortcode) (int64, error)

CreateMailShortcode creates a new mail.shortcode model and returns its id.

func (*Client) CreateMailTemplate

func (c *Client) CreateMailTemplate(mt *MailTemplate) (int64, error)

CreateMailTemplate creates a new mail.template model and returns its id.

func (*Client) CreateMailThread

func (c *Client) CreateMailThread(mt *MailThread) (int64, error)

CreateMailThread creates a new mail.thread model and returns its id.

func (*Client) CreateMailThreadBlacklist

func (c *Client) CreateMailThreadBlacklist(mtb *MailThreadBlacklist) (int64, error)

CreateMailThreadBlacklist creates a new mail.thread.blacklist model and returns its id.

func (*Client) CreateMailThreadCc

func (c *Client) CreateMailThreadCc(mtc *MailThreadCc) (int64, error)

CreateMailThreadCc creates a new mail.thread.cc model and returns its id.

func (*Client) CreateMailThreadPhone

func (c *Client) CreateMailThreadPhone(mtp *MailThreadPhone) (int64, error)

CreateMailThreadPhone creates a new mail.thread.phone model and returns its id.

func (*Client) CreateMailTrackingValue

func (c *Client) CreateMailTrackingValue(mtv *MailTrackingValue) (int64, error)

CreateMailTrackingValue creates a new mail.tracking.value model and returns its id.

func (*Client) CreateMailWizardInvite

func (c *Client) CreateMailWizardInvite(mwi *MailWizardInvite) (int64, error)

CreateMailWizardInvite creates a new mail.wizard.invite model and returns its id.

func (*Client) CreateMailingContact

func (c *Client) CreateMailingContact(mc *MailingContact) (int64, error)

CreateMailingContact creates a new mailing.contact model and returns its id.

func (*Client) CreateMailingContactSubscription

func (c *Client) CreateMailingContactSubscription(mcs *MailingContactSubscription) (int64, error)

CreateMailingContactSubscription creates a new mailing.contact.subscription model and returns its id.

func (*Client) CreateMailingList

func (c *Client) CreateMailingList(ml *MailingList) (int64, error)

CreateMailingList creates a new mailing.list model and returns its id.

func (*Client) CreateMailingListMerge

func (c *Client) CreateMailingListMerge(mlm *MailingListMerge) (int64, error)

CreateMailingListMerge creates a new mailing.list.merge model and returns its id.

func (*Client) CreateMailingMailing

func (c *Client) CreateMailingMailing(mm *MailingMailing) (int64, error)

CreateMailingMailing creates a new mailing.mailing model and returns its id.

func (*Client) CreateMailingMailingScheduleDate

func (c *Client) CreateMailingMailingScheduleDate(mmsd *MailingMailingScheduleDate) (int64, error)

CreateMailingMailingScheduleDate creates a new mailing.mailing.schedule.date model and returns its id.

func (*Client) CreateMailingTrace

func (c *Client) CreateMailingTrace(mt *MailingTrace) (int64, error)

CreateMailingTrace creates a new mailing.trace model and returns its id.

func (*Client) CreateMailingTraceReport

func (c *Client) CreateMailingTraceReport(mtr *MailingTraceReport) (int64, error)

CreateMailingTraceReport creates a new mailing.trace.report model and returns its id.

func (*Client) CreateNoteNote

func (c *Client) CreateNoteNote(nn *NoteNote) (int64, error)

CreateNoteNote creates a new note.note model and returns its id.

func (*Client) CreateNoteStage

func (c *Client) CreateNoteStage(ns *NoteStage) (int64, error)

CreateNoteStage creates a new note.stage model and returns its id.

func (*Client) CreateNoteTag

func (c *Client) CreateNoteTag(nt *NoteTag) (int64, error)

CreateNoteTag creates a new note.tag model and returns its id.

func (*Client) CreateOpenacademyBundle

func (c *Client) CreateOpenacademyBundle(ob *OpenacademyBundle) (int64, error)

CreateOpenacademyBundle creates a new openacademy.bundle model and returns its id.

func (*Client) CreateOpenacademyCourse

func (c *Client) CreateOpenacademyCourse(oc *OpenacademyCourse) (int64, error)

CreateOpenacademyCourse creates a new openacademy.course model and returns its id.

func (*Client) CreateOpenacademySession

func (c *Client) CreateOpenacademySession(os *OpenacademySession) (int64, error)

CreateOpenacademySession creates a new openacademy.session model and returns its id.

func (*Client) CreateOpenacademyWizard

func (c *Client) CreateOpenacademyWizard(ow *OpenacademyWizard) (int64, error)

CreateOpenacademyWizard creates a new openacademy.wizard model and returns its id.

func (*Client) CreatePaymentAcquirer

func (c *Client) CreatePaymentAcquirer(pa *PaymentAcquirer) (int64, error)

CreatePaymentAcquirer creates a new payment.acquirer model and returns its id.

func (*Client) CreatePaymentAcquirerOnboardingWizard

func (c *Client) CreatePaymentAcquirerOnboardingWizard(paow *PaymentAcquirerOnboardingWizard) (int64, error)

CreatePaymentAcquirerOnboardingWizard creates a new payment.acquirer.onboarding.wizard model and returns its id.

func (*Client) CreatePaymentIcon

func (c *Client) CreatePaymentIcon(pi *PaymentIcon) (int64, error)

CreatePaymentIcon creates a new payment.icon model and returns its id.

func (*Client) CreatePaymentLinkWizard

func (c *Client) CreatePaymentLinkWizard(plw *PaymentLinkWizard) (int64, error)

CreatePaymentLinkWizard creates a new payment.link.wizard model and returns its id.

func (*Client) CreatePaymentToken

func (c *Client) CreatePaymentToken(pt *PaymentToken) (int64, error)

CreatePaymentToken creates a new payment.token model and returns its id.

func (*Client) CreatePaymentTransaction

func (c *Client) CreatePaymentTransaction(pt *PaymentTransaction) (int64, error)

CreatePaymentTransaction creates a new payment.transaction model and returns its id.

func (*Client) CreatePhoneBlacklist

func (c *Client) CreatePhoneBlacklist(pb *PhoneBlacklist) (int64, error)

CreatePhoneBlacklist creates a new phone.blacklist model and returns its id.

func (*Client) CreatePhoneValidationMixin

func (c *Client) CreatePhoneValidationMixin(pvm *PhoneValidationMixin) (int64, error)

CreatePhoneValidationMixin creates a new phone.validation.mixin model and returns its id.

func (*Client) CreatePortalMixin

func (c *Client) CreatePortalMixin(pm *PortalMixin) (int64, error)

CreatePortalMixin creates a new portal.mixin model and returns its id.

func (*Client) CreatePortalShare

func (c *Client) CreatePortalShare(ps *PortalShare) (int64, error)

CreatePortalShare creates a new portal.share model and returns its id.

func (*Client) CreatePortalWizard

func (c *Client) CreatePortalWizard(pw *PortalWizard) (int64, error)

CreatePortalWizard creates a new portal.wizard model and returns its id.

func (*Client) CreatePortalWizardUser

func (c *Client) CreatePortalWizardUser(pwu *PortalWizardUser) (int64, error)

CreatePortalWizardUser creates a new portal.wizard.user model and returns its id.

func (*Client) CreateProductAttribute

func (c *Client) CreateProductAttribute(pa *ProductAttribute) (int64, error)

CreateProductAttribute creates a new product.attribute model and returns its id.

func (*Client) CreateProductAttributeCustomValue

func (c *Client) CreateProductAttributeCustomValue(pacv *ProductAttributeCustomValue) (int64, error)

CreateProductAttributeCustomValue creates a new product.attribute.custom.value model and returns its id.

func (*Client) CreateProductAttributeValue

func (c *Client) CreateProductAttributeValue(pav *ProductAttributeValue) (int64, error)

CreateProductAttributeValue creates a new product.attribute.value model and returns its id.

func (*Client) CreateProductCategory

func (c *Client) CreateProductCategory(pc *ProductCategory) (int64, error)

CreateProductCategory creates a new product.category model and returns its id.

func (*Client) CreateProductPackaging

func (c *Client) CreateProductPackaging(pp *ProductPackaging) (int64, error)

CreateProductPackaging creates a new product.packaging model and returns its id.

func (*Client) CreateProductPriceList

func (c *Client) CreateProductPriceList(pp *ProductPriceList) (int64, error)

CreateProductPriceList creates a new product.price_list model and returns its id.

func (*Client) CreateProductPricelist

func (c *Client) CreateProductPricelist(pp *ProductPricelist) (int64, error)

CreateProductPricelist creates a new product.pricelist model and returns its id.

func (*Client) CreateProductPricelistItem

func (c *Client) CreateProductPricelistItem(ppi *ProductPricelistItem) (int64, error)

CreateProductPricelistItem creates a new product.pricelist.item model and returns its id.

func (*Client) CreateProductProduct

func (c *Client) CreateProductProduct(pp *ProductProduct) (int64, error)

CreateProductProduct creates a new product.product model and returns its id.

func (*Client) CreateProductSupplierinfo

func (c *Client) CreateProductSupplierinfo(ps *ProductSupplierinfo) (int64, error)

CreateProductSupplierinfo creates a new product.supplierinfo model and returns its id.

func (*Client) CreateProductTemplate

func (c *Client) CreateProductTemplate(pt *ProductTemplate) (int64, error)

CreateProductTemplate creates a new product.template model and returns its id.

func (*Client) CreateProductTemplateAttributeExclusion

func (c *Client) CreateProductTemplateAttributeExclusion(ptae *ProductTemplateAttributeExclusion) (int64, error)

CreateProductTemplateAttributeExclusion creates a new product.template.attribute.exclusion model and returns its id.

func (*Client) CreateProductTemplateAttributeLine

func (c *Client) CreateProductTemplateAttributeLine(ptal *ProductTemplateAttributeLine) (int64, error)

CreateProductTemplateAttributeLine creates a new product.template.attribute.line model and returns its id.

func (*Client) CreateProductTemplateAttributeValue

func (c *Client) CreateProductTemplateAttributeValue(ptav *ProductTemplateAttributeValue) (int64, error)

CreateProductTemplateAttributeValue creates a new product.template.attribute.value model and returns its id.

func (*Client) CreateProjectProject

func (c *Client) CreateProjectProject(pp *ProjectProject) (int64, error)

CreateProjectProject creates a new project.project model and returns its id.

func (*Client) CreateProjectTags

func (c *Client) CreateProjectTags(pt *ProjectTags) (int64, error)

CreateProjectTags creates a new project.tags model and returns its id.

func (*Client) CreateProjectTask

func (c *Client) CreateProjectTask(pt *ProjectTask) (int64, error)

CreateProjectTask creates a new project.task model and returns its id.

func (*Client) CreateProjectTaskType

func (c *Client) CreateProjectTaskType(ptt *ProjectTaskType) (int64, error)

CreateProjectTaskType creates a new project.task.type model and returns its id.

func (*Client) CreatePublisherWarrantyContract

func (c *Client) CreatePublisherWarrantyContract(pc *PublisherWarrantyContract) (int64, error)

CreatePublisherWarrantyContract creates a new publisher_warranty.contract model and returns its id.

func (*Client) CreateRatingMixin

func (c *Client) CreateRatingMixin(rm *RatingMixin) (int64, error)

CreateRatingMixin creates a new rating.mixin model and returns its id.

func (*Client) CreateRatingParentMixin

func (c *Client) CreateRatingParentMixin(rpm *RatingParentMixin) (int64, error)

CreateRatingParentMixin creates a new rating.parent.mixin model and returns its id.

func (*Client) CreateRatingRating

func (c *Client) CreateRatingRating(rr *RatingRating) (int64, error)

CreateRatingRating creates a new rating.rating model and returns its id.

func (*Client) CreateRegistrationEditor

func (c *Client) CreateRegistrationEditor(re *RegistrationEditor) (int64, error)

CreateRegistrationEditor creates a new registration.editor model and returns its id.

func (*Client) CreateRegistrationEditorLine

func (c *Client) CreateRegistrationEditorLine(rel *RegistrationEditorLine) (int64, error)

CreateRegistrationEditorLine creates a new registration.editor.line model and returns its id.

func (*Client) CreateReportAccountReportAgedpartnerbalance

func (c *Client) CreateReportAccountReportAgedpartnerbalance(rar *ReportAccountReportAgedpartnerbalance) (int64, error)

CreateReportAccountReportAgedpartnerbalance creates a new report.account.report_agedpartnerbalance model and returns its id.

func (*Client) CreateReportAccountReportHashIntegrity

func (c *Client) CreateReportAccountReportHashIntegrity(rar *ReportAccountReportHashIntegrity) (int64, error)

CreateReportAccountReportHashIntegrity creates a new report.account.report_hash_integrity model and returns its id.

func (*Client) CreateReportAccountReportInvoiceWithPayments

func (c *Client) CreateReportAccountReportInvoiceWithPayments(rar *ReportAccountReportInvoiceWithPayments) (int64, error)

CreateReportAccountReportInvoiceWithPayments creates a new report.account.report_invoice_with_payments model and returns its id.

func (*Client) CreateReportAccountReportJournal

func (c *Client) CreateReportAccountReportJournal(rar *ReportAccountReportJournal) (int64, error)

CreateReportAccountReportJournal creates a new report.account.report_journal model and returns its id.

func (*Client) CreateReportAllChannelsSales

func (c *Client) CreateReportAllChannelsSales(racs *ReportAllChannelsSales) (int64, error)

CreateReportAllChannelsSales creates a new report.all.channels.sales model and returns its id.

func (*Client) CreateReportBaseReportIrmodulereference

func (c *Client) CreateReportBaseReportIrmodulereference(rbr *ReportBaseReportIrmodulereference) (int64, error)

CreateReportBaseReportIrmodulereference creates a new report.base.report_irmodulereference model and returns its id.

func (*Client) CreateReportHrHolidaysReportHolidayssummary

func (c *Client) CreateReportHrHolidaysReportHolidayssummary(rhr *ReportHrHolidaysReportHolidayssummary) (int64, error)

CreateReportHrHolidaysReportHolidayssummary creates a new report.hr_holidays.report_holidayssummary model and returns its id.

func (*Client) CreateReportLayout

func (c *Client) CreateReportLayout(rl *ReportLayout) (int64, error)

CreateReportLayout creates a new report.layout model and returns its id.

func (*Client) CreateReportPaperformat

func (c *Client) CreateReportPaperformat(rp *ReportPaperformat) (int64, error)

CreateReportPaperformat creates a new report.paperformat model and returns its id.

func (*Client) CreateReportProductReportPricelist

func (c *Client) CreateReportProductReportPricelist(rpr *ReportProductReportPricelist) (int64, error)

CreateReportProductReportPricelist creates a new report.product.report_pricelist model and returns its id.

func (*Client) CreateReportProjectTaskUser

func (c *Client) CreateReportProjectTaskUser(rptu *ReportProjectTaskUser) (int64, error)

CreateReportProjectTaskUser creates a new report.project.task.user model and returns its id.

func (*Client) CreateReportSaleReportSaleproforma

func (c *Client) CreateReportSaleReportSaleproforma(rsr *ReportSaleReportSaleproforma) (int64, error)

CreateReportSaleReportSaleproforma creates a new report.sale.report_saleproforma model and returns its id.

func (*Client) CreateResBank

func (c *Client) CreateResBank(rb *ResBank) (int64, error)

CreateResBank creates a new res.bank model and returns its id.

func (*Client) CreateResCompany

func (c *Client) CreateResCompany(rc *ResCompany) (int64, error)

CreateResCompany creates a new res.company model and returns its id.

func (*Client) CreateResConfig

func (c *Client) CreateResConfig(rc *ResConfig) (int64, error)

CreateResConfig creates a new res.config model and returns its id.

func (*Client) CreateResConfigInstaller

func (c *Client) CreateResConfigInstaller(rci *ResConfigInstaller) (int64, error)

CreateResConfigInstaller creates a new res.config.installer model and returns its id.

func (*Client) CreateResConfigSettings

func (c *Client) CreateResConfigSettings(rcs *ResConfigSettings) (int64, error)

CreateResConfigSettings creates a new res.config.settings model and returns its id.

func (*Client) CreateResCountry

func (c *Client) CreateResCountry(rc *ResCountry) (int64, error)

CreateResCountry creates a new res.country model and returns its id.

func (*Client) CreateResCountryGroup

func (c *Client) CreateResCountryGroup(rcg *ResCountryGroup) (int64, error)

CreateResCountryGroup creates a new res.country.group model and returns its id.

func (*Client) CreateResCountryState

func (c *Client) CreateResCountryState(rcs *ResCountryState) (int64, error)

CreateResCountryState creates a new res.country.state model and returns its id.

func (*Client) CreateResCurrency

func (c *Client) CreateResCurrency(rc *ResCurrency) (int64, error)

CreateResCurrency creates a new res.currency model and returns its id.

func (*Client) CreateResCurrencyRate

func (c *Client) CreateResCurrencyRate(rcr *ResCurrencyRate) (int64, error)

CreateResCurrencyRate creates a new res.currency.rate model and returns its id.

func (*Client) CreateResGroups

func (c *Client) CreateResGroups(rg *ResGroups) (int64, error)

CreateResGroups creates a new res.groups model and returns its id.

func (*Client) CreateResLang

func (c *Client) CreateResLang(rl *ResLang) (int64, error)

CreateResLang creates a new res.lang model and returns its id.

func (*Client) CreateResPartner

func (c *Client) CreateResPartner(rp *ResPartner) (int64, error)

CreateResPartner creates a new res.partner model and returns its id.

func (*Client) CreateResPartnerAutocompleteSync

func (c *Client) CreateResPartnerAutocompleteSync(rpas *ResPartnerAutocompleteSync) (int64, error)

CreateResPartnerAutocompleteSync creates a new res.partner.autocomplete.sync model and returns its id.

func (*Client) CreateResPartnerBank

func (c *Client) CreateResPartnerBank(rpb *ResPartnerBank) (int64, error)

CreateResPartnerBank creates a new res.partner.bank model and returns its id.

func (*Client) CreateResPartnerCategory

func (c *Client) CreateResPartnerCategory(rpc *ResPartnerCategory) (int64, error)

CreateResPartnerCategory creates a new res.partner.category model and returns its id.

func (*Client) CreateResPartnerIndustry

func (c *Client) CreateResPartnerIndustry(rpi *ResPartnerIndustry) (int64, error)

CreateResPartnerIndustry creates a new res.partner.industry model and returns its id.

func (*Client) CreateResPartnerTitle

func (c *Client) CreateResPartnerTitle(rpt *ResPartnerTitle) (int64, error)

CreateResPartnerTitle creates a new res.partner.title model and returns its id.

func (*Client) CreateResUsers

func (c *Client) CreateResUsers(ru *ResUsers) (int64, error)

CreateResUsers creates a new res.users model and returns its id.

func (*Client) CreateResUsersLog

func (c *Client) CreateResUsersLog(rul *ResUsersLog) (int64, error)

CreateResUsersLog creates a new res.users.log model and returns its id.

func (*Client) CreateResUsersNoResetPassword

func (c *Client) CreateResUsersNoResetPassword(ru *ResUsers) (int64, error)

CreateResUsers creates a new res.users model and returns its id.

func (*Client) CreateResetViewArchWizard

func (c *Client) CreateResetViewArchWizard(rvaw *ResetViewArchWizard) (int64, error)

CreateResetViewArchWizard creates a new reset.view.arch.wizard model and returns its id.

func (*Client) CreateResourceCalendar

func (c *Client) CreateResourceCalendar(rc *ResourceCalendar) (int64, error)

CreateResourceCalendar creates a new resource.calendar model and returns its id.

func (*Client) CreateResourceCalendarAttendance

func (c *Client) CreateResourceCalendarAttendance(rca *ResourceCalendarAttendance) (int64, error)

CreateResourceCalendarAttendance creates a new resource.calendar.attendance model and returns its id.

func (*Client) CreateResourceCalendarLeaves

func (c *Client) CreateResourceCalendarLeaves(rcl *ResourceCalendarLeaves) (int64, error)

CreateResourceCalendarLeaves creates a new resource.calendar.leaves model and returns its id.

func (*Client) CreateResourceMixin

func (c *Client) CreateResourceMixin(rm *ResourceMixin) (int64, error)

CreateResourceMixin creates a new resource.mixin model and returns its id.

func (*Client) CreateResourceResource

func (c *Client) CreateResourceResource(rr *ResourceResource) (int64, error)

CreateResourceResource creates a new resource.resource model and returns its id.

func (*Client) CreateSaleAdvancePaymentInv

func (c *Client) CreateSaleAdvancePaymentInv(sapi *SaleAdvancePaymentInv) (int64, error)

CreateSaleAdvancePaymentInv creates a new sale.advance.payment.inv model and returns its id.

func (*Client) CreateSaleOrder

func (c *Client) CreateSaleOrder(so *SaleOrder) (int64, error)

CreateSaleOrder creates a new sale.order model and returns its id.

func (*Client) CreateSaleOrderLine

func (c *Client) CreateSaleOrderLine(sol *SaleOrderLine) (int64, error)

CreateSaleOrderLine creates a new sale.order.line model and returns its id.

func (*Client) CreateSaleOrderOption

func (c *Client) CreateSaleOrderOption(soo *SaleOrderOption) (int64, error)

CreateSaleOrderOption creates a new sale.order.option model and returns its id.

func (*Client) CreateSaleOrderTemplate

func (c *Client) CreateSaleOrderTemplate(sot *SaleOrderTemplate) (int64, error)

CreateSaleOrderTemplate creates a new sale.order.template model and returns its id.

func (*Client) CreateSaleOrderTemplateLine

func (c *Client) CreateSaleOrderTemplateLine(sotl *SaleOrderTemplateLine) (int64, error)

CreateSaleOrderTemplateLine creates a new sale.order.template.line model and returns its id.

func (*Client) CreateSaleOrderTemplateOption

func (c *Client) CreateSaleOrderTemplateOption(soto *SaleOrderTemplateOption) (int64, error)

CreateSaleOrderTemplateOption creates a new sale.order.template.option model and returns its id.

func (*Client) CreateSalePaymentAcquirerOnboardingWizard

func (c *Client) CreateSalePaymentAcquirerOnboardingWizard(spaow *SalePaymentAcquirerOnboardingWizard) (int64, error)

CreateSalePaymentAcquirerOnboardingWizard creates a new sale.payment.acquirer.onboarding.wizard model and returns its id.

func (*Client) CreateSaleReport

func (c *Client) CreateSaleReport(sr *SaleReport) (int64, error)

CreateSaleReport creates a new sale.report model and returns its id.

func (*Client) CreateSlideAnswer

func (c *Client) CreateSlideAnswer(sa *SlideAnswer) (int64, error)

CreateSlideAnswer creates a new slide.answer model and returns its id.

func (*Client) CreateSlideAnswerUsers

func (c *Client) CreateSlideAnswerUsers(sa *SlideAnswerUsers) (int64, error)

CreateSlideAnswerUsers creates a new slide.answer_users model and returns its id.

func (*Client) CreateSlideChannel

func (c *Client) CreateSlideChannel(sc *SlideChannel) (int64, error)

CreateSlideChannel creates a new slide.channel model and returns its id.

func (*Client) CreateSlideChannelInvite

func (c *Client) CreateSlideChannelInvite(sci *SlideChannelInvite) (int64, error)

CreateSlideChannelInvite creates a new slide.channel.invite model and returns its id.

func (*Client) CreateSlideChannelPartner

func (c *Client) CreateSlideChannelPartner(scp *SlideChannelPartner) (int64, error)

CreateSlideChannelPartner creates a new slide.channel.partner model and returns its id.

func (*Client) CreateSlideChannelPrices

func (c *Client) CreateSlideChannelPrices(sc *SlideChannelPrices) (int64, error)

CreateSlideChannelPrices creates a new slide.channel_prices model and returns its id.

func (*Client) CreateSlideChannelSchedules

func (c *Client) CreateSlideChannelSchedules(sc *SlideChannelSchedules) (int64, error)

CreateSlideChannelSchedules creates a new slide.channel_schedules model and returns its id.

func (*Client) CreateSlideChannelSfcPrices

func (c *Client) CreateSlideChannelSfcPrices(sc *SlideChannelSfcPrices) (int64, error)

CreateSlideChannelSfcPrices creates a new slide.channel_sfc_prices model and returns its id.

func (*Client) CreateSlideChannelTag

func (c *Client) CreateSlideChannelTag(sct *SlideChannelTag) (int64, error)

CreateSlideChannelTag creates a new slide.channel.tag model and returns its id.

func (*Client) CreateSlideChannelTagGroup

func (c *Client) CreateSlideChannelTagGroup(sctg *SlideChannelTagGroup) (int64, error)

CreateSlideChannelTagGroup creates a new slide.channel.tag.group model and returns its id.

func (*Client) CreateSlideCourseType

func (c *Client) CreateSlideCourseType(sc *SlideCourseType) (int64, error)

CreateSlideCourseType creates a new slide.course_type model and returns its id.

func (*Client) CreateSlideEmbed

func (c *Client) CreateSlideEmbed(se *SlideEmbed) (int64, error)

CreateSlideEmbed creates a new slide.embed model and returns its id.

func (*Client) CreateSlideQuestion

func (c *Client) CreateSlideQuestion(sq *SlideQuestion) (int64, error)

CreateSlideQuestion creates a new slide.question model and returns its id.

func (*Client) CreateSlideSlide

func (c *Client) CreateSlideSlide(ss *SlideSlide) (int64, error)

CreateSlideSlide creates a new slide.slide model and returns its id.

func (*Client) CreateSlideSlideAttachment

func (c *Client) CreateSlideSlideAttachment(ss *SlideSlideAttachment) (int64, error)

CreateSlideSlideAttachment creates a new slide.slide_attachment model and returns its id.

func (c *Client) CreateSlideSlideLink(ssl *SlideSlideLink) (int64, error)

CreateSlideSlideLink creates a new slide.slide.link model and returns its id.

func (*Client) CreateSlideSlidePartner

func (c *Client) CreateSlideSlidePartner(ssp *SlideSlidePartner) (int64, error)

CreateSlideSlidePartner creates a new slide.slide.partner model and returns its id.

func (*Client) CreateSlideSlideSchedule

func (c *Client) CreateSlideSlideSchedule(ss *SlideSlideSchedule) (int64, error)

CreateSlideSlideSchedule creates a new slide.slide_schedule model and returns its id.

func (*Client) CreateSlideTag

func (c *Client) CreateSlideTag(st *SlideTag) (int64, error)

CreateSlideTag creates a new slide.tag model and returns its id.

func (*Client) CreateSmsApi

func (c *Client) CreateSmsApi(sa *SmsApi) (int64, error)

CreateSmsApi creates a new sms.api model and returns its id.

func (*Client) CreateSmsCancel

func (c *Client) CreateSmsCancel(sc *SmsCancel) (int64, error)

CreateSmsCancel creates a new sms.cancel model and returns its id.

func (*Client) CreateSmsComposer

func (c *Client) CreateSmsComposer(sc *SmsComposer) (int64, error)

CreateSmsComposer creates a new sms.composer model and returns its id.

func (*Client) CreateSmsResend

func (c *Client) CreateSmsResend(sr *SmsResend) (int64, error)

CreateSmsResend creates a new sms.resend model and returns its id.

func (*Client) CreateSmsResendRecipient

func (c *Client) CreateSmsResendRecipient(srr *SmsResendRecipient) (int64, error)

CreateSmsResendRecipient creates a new sms.resend.recipient model and returns its id.

func (*Client) CreateSmsSms

func (c *Client) CreateSmsSms(ss *SmsSms) (int64, error)

CreateSmsSms creates a new sms.sms model and returns its id.

func (*Client) CreateSmsTemplate

func (c *Client) CreateSmsTemplate(st *SmsTemplate) (int64, error)

CreateSmsTemplate creates a new sms.template model and returns its id.

func (*Client) CreateSmsTemplatePreview

func (c *Client) CreateSmsTemplatePreview(stp *SmsTemplatePreview) (int64, error)

CreateSmsTemplatePreview creates a new sms.template.preview model and returns its id.

func (*Client) CreateSnailmailLetter

func (c *Client) CreateSnailmailLetter(sl *SnailmailLetter) (int64, error)

CreateSnailmailLetter creates a new snailmail.letter model and returns its id.

func (*Client) CreateSnailmailLetterCancel

func (c *Client) CreateSnailmailLetterCancel(slc *SnailmailLetterCancel) (int64, error)

CreateSnailmailLetterCancel creates a new snailmail.letter.cancel model and returns its id.

func (*Client) CreateSnailmailLetterFormatError

func (c *Client) CreateSnailmailLetterFormatError(slfe *SnailmailLetterFormatError) (int64, error)

CreateSnailmailLetterFormatError creates a new snailmail.letter.format.error model and returns its id.

func (*Client) CreateSnailmailLetterMissingRequiredFields

func (c *Client) CreateSnailmailLetterMissingRequiredFields(slmrf *SnailmailLetterMissingRequiredFields) (int64, error)

CreateSnailmailLetterMissingRequiredFields creates a new snailmail.letter.missing.required.fields model and returns its id.

func (*Client) CreateSurveyInvite

func (c *Client) CreateSurveyInvite(si *SurveyInvite) (int64, error)

CreateSurveyInvite creates a new survey.invite model and returns its id.

func (*Client) CreateSurveyLabel

func (c *Client) CreateSurveyLabel(sl *SurveyLabel) (int64, error)

CreateSurveyLabel creates a new survey.label model and returns its id.

func (*Client) CreateSurveyQuestion

func (c *Client) CreateSurveyQuestion(sq *SurveyQuestion) (int64, error)

CreateSurveyQuestion creates a new survey.question model and returns its id.

func (*Client) CreateSurveySurvey

func (c *Client) CreateSurveySurvey(ss *SurveySurvey) (int64, error)

CreateSurveySurvey creates a new survey.survey model and returns its id.

func (*Client) CreateSurveyUserInput

func (c *Client) CreateSurveyUserInput(su *SurveyUserInput) (int64, error)

CreateSurveyUserInput creates a new survey.user_input model and returns its id.

func (*Client) CreateSurveyUserInputLine

func (c *Client) CreateSurveyUserInputLine(su *SurveyUserInputLine) (int64, error)

CreateSurveyUserInputLine creates a new survey.user_input_line model and returns its id.

func (*Client) CreateTaxAdjustmentsWizard

func (c *Client) CreateTaxAdjustmentsWizard(taw *TaxAdjustmentsWizard) (int64, error)

CreateTaxAdjustmentsWizard creates a new tax.adjustments.wizard model and returns its id.

func (*Client) CreateThemeIrAttachment

func (c *Client) CreateThemeIrAttachment(tia *ThemeIrAttachment) (int64, error)

CreateThemeIrAttachment creates a new theme.ir.attachment model and returns its id.

func (*Client) CreateThemeIrUiView

func (c *Client) CreateThemeIrUiView(tiuv *ThemeIrUiView) (int64, error)

CreateThemeIrUiView creates a new theme.ir.ui.view model and returns its id.

func (*Client) CreateThemeUtils

func (c *Client) CreateThemeUtils(tu *ThemeUtils) (int64, error)

CreateThemeUtils creates a new theme.utils model and returns its id.

func (*Client) CreateThemeWebsiteMenu

func (c *Client) CreateThemeWebsiteMenu(twm *ThemeWebsiteMenu) (int64, error)

CreateThemeWebsiteMenu creates a new theme.website.menu model and returns its id.

func (*Client) CreateThemeWebsitePage

func (c *Client) CreateThemeWebsitePage(twp *ThemeWebsitePage) (int64, error)

CreateThemeWebsitePage creates a new theme.website.page model and returns its id.

func (*Client) CreateUomCategory

func (c *Client) CreateUomCategory(uc *UomCategory) (int64, error)

CreateUomCategory creates a new uom.category model and returns its id.

func (*Client) CreateUomUom

func (c *Client) CreateUomUom(uu *UomUom) (int64, error)

CreateUomUom creates a new uom.uom model and returns its id.

func (*Client) CreateUserPayment

func (c *Client) CreateUserPayment(up *UserPayment) (int64, error)

CreateUserPayment creates a new user.payment model and returns its id.

func (*Client) CreateUserProfile

func (c *Client) CreateUserProfile(up *UserProfile) (int64, error)

CreateUserProfile creates a new user.profile model and returns its id.

func (*Client) CreateUtmCampaign

func (c *Client) CreateUtmCampaign(uc *UtmCampaign) (int64, error)

CreateUtmCampaign creates a new utm.campaign model and returns its id.

func (*Client) CreateUtmMedium

func (c *Client) CreateUtmMedium(um *UtmMedium) (int64, error)

CreateUtmMedium creates a new utm.medium model and returns its id.

func (*Client) CreateUtmMixin

func (c *Client) CreateUtmMixin(um *UtmMixin) (int64, error)

CreateUtmMixin creates a new utm.mixin model and returns its id.

func (*Client) CreateUtmSource

func (c *Client) CreateUtmSource(us *UtmSource) (int64, error)

CreateUtmSource creates a new utm.source model and returns its id.

func (*Client) CreateUtmStage

func (c *Client) CreateUtmStage(us *UtmStage) (int64, error)

CreateUtmStage creates a new utm.stage model and returns its id.

func (*Client) CreateUtmTag

func (c *Client) CreateUtmTag(ut *UtmTag) (int64, error)

CreateUtmTag creates a new utm.tag model and returns its id.

func (*Client) CreateValidateAccountMove

func (c *Client) CreateValidateAccountMove(vam *ValidateAccountMove) (int64, error)

CreateValidateAccountMove creates a new validate.account.move model and returns its id.

func (*Client) CreateWebEditorAssets

func (c *Client) CreateWebEditorAssets(wa *WebEditorAssets) (int64, error)

CreateWebEditorAssets creates a new web_editor.assets model and returns its id.

func (*Client) CreateWebEditorConverterTestSub

func (c *Client) CreateWebEditorConverterTestSub(wcts *WebEditorConverterTestSub) (int64, error)

CreateWebEditorConverterTestSub creates a new web_editor.converter.test.sub model and returns its id.

func (*Client) CreateWebTourTour

func (c *Client) CreateWebTourTour(wt *WebTourTour) (int64, error)

CreateWebTourTour creates a new web_tour.tour model and returns its id.

func (*Client) CreateWebsite

func (c *Client) CreateWebsite(w *Website) (int64, error)

CreateWebsite creates a new website model and returns its id.

func (*Client) CreateWebsiteMassMailingPopup

func (c *Client) CreateWebsiteMassMailingPopup(wmp *WebsiteMassMailingPopup) (int64, error)

CreateWebsiteMassMailingPopup creates a new website.mass_mailing.popup model and returns its id.

func (*Client) CreateWebsiteMenu

func (c *Client) CreateWebsiteMenu(wm *WebsiteMenu) (int64, error)

CreateWebsiteMenu creates a new website.menu model and returns its id.

func (*Client) CreateWebsiteMultiMixin

func (c *Client) CreateWebsiteMultiMixin(wmm *WebsiteMultiMixin) (int64, error)

CreateWebsiteMultiMixin creates a new website.multi.mixin model and returns its id.

func (*Client) CreateWebsitePage

func (c *Client) CreateWebsitePage(wp *WebsitePage) (int64, error)

CreateWebsitePage creates a new website.page model and returns its id.

func (*Client) CreateWebsitePublishedMixin

func (c *Client) CreateWebsitePublishedMixin(wpm *WebsitePublishedMixin) (int64, error)

CreateWebsitePublishedMixin creates a new website.published.mixin model and returns its id.

func (*Client) CreateWebsitePublishedMultiMixin

func (c *Client) CreateWebsitePublishedMultiMixin(wpmm *WebsitePublishedMultiMixin) (int64, error)

CreateWebsitePublishedMultiMixin creates a new website.published.multi.mixin model and returns its id.

func (*Client) CreateWebsiteRewrite

func (c *Client) CreateWebsiteRewrite(wr *WebsiteRewrite) (int64, error)

CreateWebsiteRewrite creates a new website.rewrite model and returns its id.

func (*Client) CreateWebsiteRoute

func (c *Client) CreateWebsiteRoute(wr *WebsiteRoute) (int64, error)

CreateWebsiteRoute creates a new website.route model and returns its id.

func (*Client) CreateWebsiteSeoMetadata

func (c *Client) CreateWebsiteSeoMetadata(wsm *WebsiteSeoMetadata) (int64, error)

CreateWebsiteSeoMetadata creates a new website.seo.metadata model and returns its id.

func (*Client) CreateWebsiteTrack

func (c *Client) CreateWebsiteTrack(wt *WebsiteTrack) (int64, error)

CreateWebsiteTrack creates a new website.track model and returns its id.

func (*Client) CreateWebsiteVisitor

func (c *Client) CreateWebsiteVisitor(wv *WebsiteVisitor) (int64, error)

CreateWebsiteVisitor creates a new website.visitor model and returns its id.

func (*Client) CreateWithOption

func (c *Client) CreateWithOption(model string, values interface{}, options *Options) (int64, error)

func (*Client) CreateWizardIrModelMenuCreate

func (c *Client) CreateWizardIrModelMenuCreate(wimmc *WizardIrModelMenuCreate) (int64, error)

CreateWizardIrModelMenuCreate creates a new wizard.ir.model.menu.create model and returns its id.

func (*Client) Delete

func (c *Client) Delete(model string, ids []int64) error

Delete existing model row(s). https://www.odoo.com/documentation/13.0/webservices/odoo.html#delete-records

func (*Client) DeleteAccountAccount

func (c *Client) DeleteAccountAccount(id int64) error

DeleteAccountAccount deletes an existing account.account record.

func (*Client) DeleteAccountAccountTag

func (c *Client) DeleteAccountAccountTag(id int64) error

DeleteAccountAccountTag deletes an existing account.account.tag record.

func (*Client) DeleteAccountAccountTags

func (c *Client) DeleteAccountAccountTags(ids []int64) error

DeleteAccountAccountTags deletes existing account.account.tag records.

func (*Client) DeleteAccountAccountTemplate

func (c *Client) DeleteAccountAccountTemplate(id int64) error

DeleteAccountAccountTemplate deletes an existing account.account.template record.

func (*Client) DeleteAccountAccountTemplates

func (c *Client) DeleteAccountAccountTemplates(ids []int64) error

DeleteAccountAccountTemplates deletes existing account.account.template records.

func (*Client) DeleteAccountAccountType

func (c *Client) DeleteAccountAccountType(id int64) error

DeleteAccountAccountType deletes an existing account.account.type record.

func (*Client) DeleteAccountAccountTypes

func (c *Client) DeleteAccountAccountTypes(ids []int64) error

DeleteAccountAccountTypes deletes existing account.account.type records.

func (*Client) DeleteAccountAccounts

func (c *Client) DeleteAccountAccounts(ids []int64) error

DeleteAccountAccounts deletes existing account.account records.

func (*Client) DeleteAccountAccrualAccountingWizard

func (c *Client) DeleteAccountAccrualAccountingWizard(id int64) error

DeleteAccountAccrualAccountingWizard deletes an existing account.accrual.accounting.wizard record.

func (*Client) DeleteAccountAccrualAccountingWizards

func (c *Client) DeleteAccountAccrualAccountingWizards(ids []int64) error

DeleteAccountAccrualAccountingWizards deletes existing account.accrual.accounting.wizard records.

func (*Client) DeleteAccountAnalyticAccount

func (c *Client) DeleteAccountAnalyticAccount(id int64) error

DeleteAccountAnalyticAccount deletes an existing account.analytic.account record.

func (*Client) DeleteAccountAnalyticAccounts

func (c *Client) DeleteAccountAnalyticAccounts(ids []int64) error

DeleteAccountAnalyticAccounts deletes existing account.analytic.account records.

func (*Client) DeleteAccountAnalyticDistribution

func (c *Client) DeleteAccountAnalyticDistribution(id int64) error

DeleteAccountAnalyticDistribution deletes an existing account.analytic.distribution record.

func (*Client) DeleteAccountAnalyticDistributions

func (c *Client) DeleteAccountAnalyticDistributions(ids []int64) error

DeleteAccountAnalyticDistributions deletes existing account.analytic.distribution records.

func (*Client) DeleteAccountAnalyticGroup

func (c *Client) DeleteAccountAnalyticGroup(id int64) error

DeleteAccountAnalyticGroup deletes an existing account.analytic.group record.

func (*Client) DeleteAccountAnalyticGroups

func (c *Client) DeleteAccountAnalyticGroups(ids []int64) error

DeleteAccountAnalyticGroups deletes existing account.analytic.group records.

func (*Client) DeleteAccountAnalyticLine

func (c *Client) DeleteAccountAnalyticLine(id int64) error

DeleteAccountAnalyticLine deletes an existing account.analytic.line record.

func (*Client) DeleteAccountAnalyticLines

func (c *Client) DeleteAccountAnalyticLines(ids []int64) error

DeleteAccountAnalyticLines deletes existing account.analytic.line records.

func (*Client) DeleteAccountAnalyticTag

func (c *Client) DeleteAccountAnalyticTag(id int64) error

DeleteAccountAnalyticTag deletes an existing account.analytic.tag record.

func (*Client) DeleteAccountAnalyticTags

func (c *Client) DeleteAccountAnalyticTags(ids []int64) error

DeleteAccountAnalyticTags deletes existing account.analytic.tag records.

func (*Client) DeleteAccountBankStatement

func (c *Client) DeleteAccountBankStatement(id int64) error

DeleteAccountBankStatement deletes an existing account.bank.statement record.

func (*Client) DeleteAccountBankStatementCashbox

func (c *Client) DeleteAccountBankStatementCashbox(id int64) error

DeleteAccountBankStatementCashbox deletes an existing account.bank.statement.cashbox record.

func (*Client) DeleteAccountBankStatementCashboxs

func (c *Client) DeleteAccountBankStatementCashboxs(ids []int64) error

DeleteAccountBankStatementCashboxs deletes existing account.bank.statement.cashbox records.

func (*Client) DeleteAccountBankStatementClosebalance

func (c *Client) DeleteAccountBankStatementClosebalance(id int64) error

DeleteAccountBankStatementClosebalance deletes an existing account.bank.statement.closebalance record.

func (*Client) DeleteAccountBankStatementClosebalances

func (c *Client) DeleteAccountBankStatementClosebalances(ids []int64) error

DeleteAccountBankStatementClosebalances deletes existing account.bank.statement.closebalance records.

func (*Client) DeleteAccountBankStatementImport

func (c *Client) DeleteAccountBankStatementImport(id int64) error

DeleteAccountBankStatementImport deletes an existing account.bank.statement.import record.

func (*Client) DeleteAccountBankStatementImportJournalCreation

func (c *Client) DeleteAccountBankStatementImportJournalCreation(id int64) error

DeleteAccountBankStatementImportJournalCreation deletes an existing account.bank.statement.import.journal.creation record.

func (*Client) DeleteAccountBankStatementImportJournalCreations

func (c *Client) DeleteAccountBankStatementImportJournalCreations(ids []int64) error

DeleteAccountBankStatementImportJournalCreations deletes existing account.bank.statement.import.journal.creation records.

func (*Client) DeleteAccountBankStatementImports

func (c *Client) DeleteAccountBankStatementImports(ids []int64) error

DeleteAccountBankStatementImports deletes existing account.bank.statement.import records.

func (*Client) DeleteAccountBankStatementLine

func (c *Client) DeleteAccountBankStatementLine(id int64) error

DeleteAccountBankStatementLine deletes an existing account.bank.statement.line record.

func (*Client) DeleteAccountBankStatementLines

func (c *Client) DeleteAccountBankStatementLines(ids []int64) error

DeleteAccountBankStatementLines deletes existing account.bank.statement.line records.

func (*Client) DeleteAccountBankStatements

func (c *Client) DeleteAccountBankStatements(ids []int64) error

DeleteAccountBankStatements deletes existing account.bank.statement records.

func (*Client) DeleteAccountCashRounding

func (c *Client) DeleteAccountCashRounding(id int64) error

DeleteAccountCashRounding deletes an existing account.cash.rounding record.

func (*Client) DeleteAccountCashRoundings

func (c *Client) DeleteAccountCashRoundings(ids []int64) error

DeleteAccountCashRoundings deletes existing account.cash.rounding records.

func (*Client) DeleteAccountCashboxLine

func (c *Client) DeleteAccountCashboxLine(id int64) error

DeleteAccountCashboxLine deletes an existing account.cashbox.line record.

func (*Client) DeleteAccountCashboxLines

func (c *Client) DeleteAccountCashboxLines(ids []int64) error

DeleteAccountCashboxLines deletes existing account.cashbox.line records.

func (*Client) DeleteAccountChartTemplate

func (c *Client) DeleteAccountChartTemplate(id int64) error

DeleteAccountChartTemplate deletes an existing account.chart.template record.

func (*Client) DeleteAccountChartTemplates

func (c *Client) DeleteAccountChartTemplates(ids []int64) error

DeleteAccountChartTemplates deletes existing account.chart.template records.

func (*Client) DeleteAccountCommonJournalReport

func (c *Client) DeleteAccountCommonJournalReport(id int64) error

DeleteAccountCommonJournalReport deletes an existing account.common.journal.report record.

func (*Client) DeleteAccountCommonJournalReports

func (c *Client) DeleteAccountCommonJournalReports(ids []int64) error

DeleteAccountCommonJournalReports deletes existing account.common.journal.report records.

func (*Client) DeleteAccountCommonReport

func (c *Client) DeleteAccountCommonReport(id int64) error

DeleteAccountCommonReport deletes an existing account.common.report record.

func (*Client) DeleteAccountCommonReports

func (c *Client) DeleteAccountCommonReports(ids []int64) error

DeleteAccountCommonReports deletes existing account.common.report records.

func (*Client) DeleteAccountFinancialYearOp

func (c *Client) DeleteAccountFinancialYearOp(id int64) error

DeleteAccountFinancialYearOp deletes an existing account.financial.year.op record.

func (*Client) DeleteAccountFinancialYearOps

func (c *Client) DeleteAccountFinancialYearOps(ids []int64) error

DeleteAccountFinancialYearOps deletes existing account.financial.year.op records.

func (*Client) DeleteAccountFiscalPosition

func (c *Client) DeleteAccountFiscalPosition(id int64) error

DeleteAccountFiscalPosition deletes an existing account.fiscal.position record.

func (*Client) DeleteAccountFiscalPositionAccount

func (c *Client) DeleteAccountFiscalPositionAccount(id int64) error

DeleteAccountFiscalPositionAccount deletes an existing account.fiscal.position.account record.

func (*Client) DeleteAccountFiscalPositionAccountTemplate

func (c *Client) DeleteAccountFiscalPositionAccountTemplate(id int64) error

DeleteAccountFiscalPositionAccountTemplate deletes an existing account.fiscal.position.account.template record.

func (*Client) DeleteAccountFiscalPositionAccountTemplates

func (c *Client) DeleteAccountFiscalPositionAccountTemplates(ids []int64) error

DeleteAccountFiscalPositionAccountTemplates deletes existing account.fiscal.position.account.template records.

func (*Client) DeleteAccountFiscalPositionAccounts

func (c *Client) DeleteAccountFiscalPositionAccounts(ids []int64) error

DeleteAccountFiscalPositionAccounts deletes existing account.fiscal.position.account records.

func (*Client) DeleteAccountFiscalPositionTax

func (c *Client) DeleteAccountFiscalPositionTax(id int64) error

DeleteAccountFiscalPositionTax deletes an existing account.fiscal.position.tax record.

func (*Client) DeleteAccountFiscalPositionTaxTemplate

func (c *Client) DeleteAccountFiscalPositionTaxTemplate(id int64) error

DeleteAccountFiscalPositionTaxTemplate deletes an existing account.fiscal.position.tax.template record.

func (*Client) DeleteAccountFiscalPositionTaxTemplates

func (c *Client) DeleteAccountFiscalPositionTaxTemplates(ids []int64) error

DeleteAccountFiscalPositionTaxTemplates deletes existing account.fiscal.position.tax.template records.

func (*Client) DeleteAccountFiscalPositionTaxs

func (c *Client) DeleteAccountFiscalPositionTaxs(ids []int64) error

DeleteAccountFiscalPositionTaxs deletes existing account.fiscal.position.tax records.

func (*Client) DeleteAccountFiscalPositionTemplate

func (c *Client) DeleteAccountFiscalPositionTemplate(id int64) error

DeleteAccountFiscalPositionTemplate deletes an existing account.fiscal.position.template record.

func (*Client) DeleteAccountFiscalPositionTemplates

func (c *Client) DeleteAccountFiscalPositionTemplates(ids []int64) error

DeleteAccountFiscalPositionTemplates deletes existing account.fiscal.position.template records.

func (*Client) DeleteAccountFiscalPositions

func (c *Client) DeleteAccountFiscalPositions(ids []int64) error

DeleteAccountFiscalPositions deletes existing account.fiscal.position records.

func (*Client) DeleteAccountFiscalYear

func (c *Client) DeleteAccountFiscalYear(id int64) error

DeleteAccountFiscalYear deletes an existing account.fiscal.year record.

func (*Client) DeleteAccountFiscalYears

func (c *Client) DeleteAccountFiscalYears(ids []int64) error

DeleteAccountFiscalYears deletes existing account.fiscal.year records.

func (*Client) DeleteAccountFullReconcile

func (c *Client) DeleteAccountFullReconcile(id int64) error

DeleteAccountFullReconcile deletes an existing account.full.reconcile record.

func (*Client) DeleteAccountFullReconciles

func (c *Client) DeleteAccountFullReconciles(ids []int64) error

DeleteAccountFullReconciles deletes existing account.full.reconcile records.

func (*Client) DeleteAccountGroup

func (c *Client) DeleteAccountGroup(id int64) error

DeleteAccountGroup deletes an existing account.group record.

func (*Client) DeleteAccountGroups

func (c *Client) DeleteAccountGroups(ids []int64) error

DeleteAccountGroups deletes existing account.group records.

func (*Client) DeleteAccountIncoterms

func (c *Client) DeleteAccountIncoterms(id int64) error

DeleteAccountIncoterms deletes an existing account.incoterms record.

func (*Client) DeleteAccountIncotermss

func (c *Client) DeleteAccountIncotermss(ids []int64) error

DeleteAccountIncotermss deletes existing account.incoterms records.

func (*Client) DeleteAccountInvoiceReport

func (c *Client) DeleteAccountInvoiceReport(id int64) error

DeleteAccountInvoiceReport deletes an existing account.invoice.report record.

func (*Client) DeleteAccountInvoiceReports

func (c *Client) DeleteAccountInvoiceReports(ids []int64) error

DeleteAccountInvoiceReports deletes existing account.invoice.report records.

func (*Client) DeleteAccountInvoiceSend

func (c *Client) DeleteAccountInvoiceSend(id int64) error

DeleteAccountInvoiceSend deletes an existing account.invoice.send record.

func (*Client) DeleteAccountInvoiceSends

func (c *Client) DeleteAccountInvoiceSends(ids []int64) error

DeleteAccountInvoiceSends deletes existing account.invoice.send records.

func (*Client) DeleteAccountJournal

func (c *Client) DeleteAccountJournal(id int64) error

DeleteAccountJournal deletes an existing account.journal record.

func (*Client) DeleteAccountJournalGroup

func (c *Client) DeleteAccountJournalGroup(id int64) error

DeleteAccountJournalGroup deletes an existing account.journal.group record.

func (*Client) DeleteAccountJournalGroups

func (c *Client) DeleteAccountJournalGroups(ids []int64) error

DeleteAccountJournalGroups deletes existing account.journal.group records.

func (*Client) DeleteAccountJournals

func (c *Client) DeleteAccountJournals(ids []int64) error

DeleteAccountJournals deletes existing account.journal records.

func (*Client) DeleteAccountMove

func (c *Client) DeleteAccountMove(id int64) error

DeleteAccountMove deletes an existing account.move record.

func (*Client) DeleteAccountMoveLine

func (c *Client) DeleteAccountMoveLine(id int64) error

DeleteAccountMoveLine deletes an existing account.move.line record.

func (*Client) DeleteAccountMoveLines

func (c *Client) DeleteAccountMoveLines(ids []int64) error

DeleteAccountMoveLines deletes existing account.move.line records.

func (*Client) DeleteAccountMoveReversal

func (c *Client) DeleteAccountMoveReversal(id int64) error

DeleteAccountMoveReversal deletes an existing account.move.reversal record.

func (*Client) DeleteAccountMoveReversals

func (c *Client) DeleteAccountMoveReversals(ids []int64) error

DeleteAccountMoveReversals deletes existing account.move.reversal records.

func (*Client) DeleteAccountMoves

func (c *Client) DeleteAccountMoves(ids []int64) error

DeleteAccountMoves deletes existing account.move records.

func (*Client) DeleteAccountPartialReconcile

func (c *Client) DeleteAccountPartialReconcile(id int64) error

DeleteAccountPartialReconcile deletes an existing account.partial.reconcile record.

func (*Client) DeleteAccountPartialReconciles

func (c *Client) DeleteAccountPartialReconciles(ids []int64) error

DeleteAccountPartialReconciles deletes existing account.partial.reconcile records.

func (*Client) DeleteAccountPayment

func (c *Client) DeleteAccountPayment(id int64) error

DeleteAccountPayment deletes an existing account.payment record.

func (*Client) DeleteAccountPaymentMethod

func (c *Client) DeleteAccountPaymentMethod(id int64) error

DeleteAccountPaymentMethod deletes an existing account.payment.method record.

func (*Client) DeleteAccountPaymentMethods

func (c *Client) DeleteAccountPaymentMethods(ids []int64) error

DeleteAccountPaymentMethods deletes existing account.payment.method records.

func (*Client) DeleteAccountPaymentRegister

func (c *Client) DeleteAccountPaymentRegister(id int64) error

DeleteAccountPaymentRegister deletes an existing account.payment.register record.

func (*Client) DeleteAccountPaymentRegisters

func (c *Client) DeleteAccountPaymentRegisters(ids []int64) error

DeleteAccountPaymentRegisters deletes existing account.payment.register records.

func (*Client) DeleteAccountPaymentTerm

func (c *Client) DeleteAccountPaymentTerm(id int64) error

DeleteAccountPaymentTerm deletes an existing account.payment.term record.

func (*Client) DeleteAccountPaymentTermLine

func (c *Client) DeleteAccountPaymentTermLine(id int64) error

DeleteAccountPaymentTermLine deletes an existing account.payment.term.line record.

func (*Client) DeleteAccountPaymentTermLines

func (c *Client) DeleteAccountPaymentTermLines(ids []int64) error

DeleteAccountPaymentTermLines deletes existing account.payment.term.line records.

func (*Client) DeleteAccountPaymentTerms

func (c *Client) DeleteAccountPaymentTerms(ids []int64) error

DeleteAccountPaymentTerms deletes existing account.payment.term records.

func (*Client) DeleteAccountPayments

func (c *Client) DeleteAccountPayments(ids []int64) error

DeleteAccountPayments deletes existing account.payment records.

func (*Client) DeleteAccountPrintJournal

func (c *Client) DeleteAccountPrintJournal(id int64) error

DeleteAccountPrintJournal deletes an existing account.print.journal record.

func (*Client) DeleteAccountPrintJournals

func (c *Client) DeleteAccountPrintJournals(ids []int64) error

DeleteAccountPrintJournals deletes existing account.print.journal records.

func (*Client) DeleteAccountReconcileModel

func (c *Client) DeleteAccountReconcileModel(id int64) error

DeleteAccountReconcileModel deletes an existing account.reconcile.model record.

func (*Client) DeleteAccountReconcileModelTemplate

func (c *Client) DeleteAccountReconcileModelTemplate(id int64) error

DeleteAccountReconcileModelTemplate deletes an existing account.reconcile.model.template record.

func (*Client) DeleteAccountReconcileModelTemplates

func (c *Client) DeleteAccountReconcileModelTemplates(ids []int64) error

DeleteAccountReconcileModelTemplates deletes existing account.reconcile.model.template records.

func (*Client) DeleteAccountReconcileModels

func (c *Client) DeleteAccountReconcileModels(ids []int64) error

DeleteAccountReconcileModels deletes existing account.reconcile.model records.

func (*Client) DeleteAccountReconciliationWidget

func (c *Client) DeleteAccountReconciliationWidget(id int64) error

DeleteAccountReconciliationWidget deletes an existing account.reconciliation.widget record.

func (*Client) DeleteAccountReconciliationWidgets

func (c *Client) DeleteAccountReconciliationWidgets(ids []int64) error

DeleteAccountReconciliationWidgets deletes existing account.reconciliation.widget records.

func (*Client) DeleteAccountRoot

func (c *Client) DeleteAccountRoot(id int64) error

DeleteAccountRoot deletes an existing account.root record.

func (*Client) DeleteAccountRoots

func (c *Client) DeleteAccountRoots(ids []int64) error

DeleteAccountRoots deletes existing account.root records.

func (*Client) DeleteAccountSetupBankManualConfig

func (c *Client) DeleteAccountSetupBankManualConfig(id int64) error

DeleteAccountSetupBankManualConfig deletes an existing account.setup.bank.manual.config record.

func (*Client) DeleteAccountSetupBankManualConfigs

func (c *Client) DeleteAccountSetupBankManualConfigs(ids []int64) error

DeleteAccountSetupBankManualConfigs deletes existing account.setup.bank.manual.config records.

func (*Client) DeleteAccountTax

func (c *Client) DeleteAccountTax(id int64) error

DeleteAccountTax deletes an existing account.tax record.

func (*Client) DeleteAccountTaxGroup

func (c *Client) DeleteAccountTaxGroup(id int64) error

DeleteAccountTaxGroup deletes an existing account.tax.group record.

func (*Client) DeleteAccountTaxGroups

func (c *Client) DeleteAccountTaxGroups(ids []int64) error

DeleteAccountTaxGroups deletes existing account.tax.group records.

func (*Client) DeleteAccountTaxRepartitionLine

func (c *Client) DeleteAccountTaxRepartitionLine(id int64) error

DeleteAccountTaxRepartitionLine deletes an existing account.tax.repartition.line record.

func (*Client) DeleteAccountTaxRepartitionLineTemplate

func (c *Client) DeleteAccountTaxRepartitionLineTemplate(id int64) error

DeleteAccountTaxRepartitionLineTemplate deletes an existing account.tax.repartition.line.template record.

func (*Client) DeleteAccountTaxRepartitionLineTemplates

func (c *Client) DeleteAccountTaxRepartitionLineTemplates(ids []int64) error

DeleteAccountTaxRepartitionLineTemplates deletes existing account.tax.repartition.line.template records.

func (*Client) DeleteAccountTaxRepartitionLines

func (c *Client) DeleteAccountTaxRepartitionLines(ids []int64) error

DeleteAccountTaxRepartitionLines deletes existing account.tax.repartition.line records.

func (*Client) DeleteAccountTaxReportLine

func (c *Client) DeleteAccountTaxReportLine(id int64) error

DeleteAccountTaxReportLine deletes an existing account.tax.report.line record.

func (*Client) DeleteAccountTaxReportLines

func (c *Client) DeleteAccountTaxReportLines(ids []int64) error

DeleteAccountTaxReportLines deletes existing account.tax.report.line records.

func (*Client) DeleteAccountTaxTemplate

func (c *Client) DeleteAccountTaxTemplate(id int64) error

DeleteAccountTaxTemplate deletes an existing account.tax.template record.

func (*Client) DeleteAccountTaxTemplates

func (c *Client) DeleteAccountTaxTemplates(ids []int64) error

DeleteAccountTaxTemplates deletes existing account.tax.template records.

func (*Client) DeleteAccountTaxs

func (c *Client) DeleteAccountTaxs(ids []int64) error

DeleteAccountTaxs deletes existing account.tax records.

func (*Client) DeleteAccountUnreconcile

func (c *Client) DeleteAccountUnreconcile(id int64) error

DeleteAccountUnreconcile deletes an existing account.unreconcile record.

func (*Client) DeleteAccountUnreconciles

func (c *Client) DeleteAccountUnreconciles(ids []int64) error

DeleteAccountUnreconciles deletes existing account.unreconcile records.

func (*Client) DeleteBarcodeNomenclature

func (c *Client) DeleteBarcodeNomenclature(id int64) error

DeleteBarcodeNomenclature deletes an existing barcode.nomenclature record.

func (*Client) DeleteBarcodeNomenclatures

func (c *Client) DeleteBarcodeNomenclatures(ids []int64) error

DeleteBarcodeNomenclatures deletes existing barcode.nomenclature records.

func (*Client) DeleteBarcodeRule

func (c *Client) DeleteBarcodeRule(id int64) error

DeleteBarcodeRule deletes an existing barcode.rule record.

func (*Client) DeleteBarcodeRules

func (c *Client) DeleteBarcodeRules(ids []int64) error

DeleteBarcodeRules deletes existing barcode.rule records.

func (*Client) DeleteBarcodesBarcodeEventsMixin

func (c *Client) DeleteBarcodesBarcodeEventsMixin(id int64) error

DeleteBarcodesBarcodeEventsMixin deletes an existing barcodes.barcode_events_mixin record.

func (*Client) DeleteBarcodesBarcodeEventsMixins

func (c *Client) DeleteBarcodesBarcodeEventsMixins(ids []int64) error

DeleteBarcodesBarcodeEventsMixins deletes existing barcodes.barcode_events_mixin records.

func (*Client) DeleteBase

func (c *Client) DeleteBase(id int64) error

DeleteBase deletes an existing base record.

func (*Client) DeleteBaseDocumentLayout

func (c *Client) DeleteBaseDocumentLayout(id int64) error

DeleteBaseDocumentLayout deletes an existing base.document.layout record.

func (*Client) DeleteBaseDocumentLayouts

func (c *Client) DeleteBaseDocumentLayouts(ids []int64) error

DeleteBaseDocumentLayouts deletes existing base.document.layout records.

func (*Client) DeleteBaseImportImport

func (c *Client) DeleteBaseImportImport(id int64) error

DeleteBaseImportImport deletes an existing base_import.import record.

func (*Client) DeleteBaseImportImports

func (c *Client) DeleteBaseImportImports(ids []int64) error

DeleteBaseImportImports deletes existing base_import.import records.

func (*Client) DeleteBaseImportMapping

func (c *Client) DeleteBaseImportMapping(id int64) error

DeleteBaseImportMapping deletes an existing base_import.mapping record.

func (*Client) DeleteBaseImportMappings

func (c *Client) DeleteBaseImportMappings(ids []int64) error

DeleteBaseImportMappings deletes existing base_import.mapping records.

func (*Client) DeleteBaseImportTestsModelsChar

func (c *Client) DeleteBaseImportTestsModelsChar(id int64) error

DeleteBaseImportTestsModelsChar deletes an existing base_import.tests.models.char record.

func (*Client) DeleteBaseImportTestsModelsCharNoreadonly

func (c *Client) DeleteBaseImportTestsModelsCharNoreadonly(id int64) error

DeleteBaseImportTestsModelsCharNoreadonly deletes an existing base_import.tests.models.char.noreadonly record.

func (*Client) DeleteBaseImportTestsModelsCharNoreadonlys

func (c *Client) DeleteBaseImportTestsModelsCharNoreadonlys(ids []int64) error

DeleteBaseImportTestsModelsCharNoreadonlys deletes existing base_import.tests.models.char.noreadonly records.

func (*Client) DeleteBaseImportTestsModelsCharReadonly

func (c *Client) DeleteBaseImportTestsModelsCharReadonly(id int64) error

DeleteBaseImportTestsModelsCharReadonly deletes an existing base_import.tests.models.char.readonly record.

func (*Client) DeleteBaseImportTestsModelsCharReadonlys

func (c *Client) DeleteBaseImportTestsModelsCharReadonlys(ids []int64) error

DeleteBaseImportTestsModelsCharReadonlys deletes existing base_import.tests.models.char.readonly records.

func (*Client) DeleteBaseImportTestsModelsCharRequired

func (c *Client) DeleteBaseImportTestsModelsCharRequired(id int64) error

DeleteBaseImportTestsModelsCharRequired deletes an existing base_import.tests.models.char.required record.

func (*Client) DeleteBaseImportTestsModelsCharRequireds

func (c *Client) DeleteBaseImportTestsModelsCharRequireds(ids []int64) error

DeleteBaseImportTestsModelsCharRequireds deletes existing base_import.tests.models.char.required records.

func (*Client) DeleteBaseImportTestsModelsCharStates

func (c *Client) DeleteBaseImportTestsModelsCharStates(id int64) error

DeleteBaseImportTestsModelsCharStates deletes an existing base_import.tests.models.char.states record.

func (*Client) DeleteBaseImportTestsModelsCharStatess

func (c *Client) DeleteBaseImportTestsModelsCharStatess(ids []int64) error

DeleteBaseImportTestsModelsCharStatess deletes existing base_import.tests.models.char.states records.

func (*Client) DeleteBaseImportTestsModelsCharStillreadonly

func (c *Client) DeleteBaseImportTestsModelsCharStillreadonly(id int64) error

DeleteBaseImportTestsModelsCharStillreadonly deletes an existing base_import.tests.models.char.stillreadonly record.

func (*Client) DeleteBaseImportTestsModelsCharStillreadonlys

func (c *Client) DeleteBaseImportTestsModelsCharStillreadonlys(ids []int64) error

DeleteBaseImportTestsModelsCharStillreadonlys deletes existing base_import.tests.models.char.stillreadonly records.

func (*Client) DeleteBaseImportTestsModelsChars

func (c *Client) DeleteBaseImportTestsModelsChars(ids []int64) error

DeleteBaseImportTestsModelsChars deletes existing base_import.tests.models.char records.

func (*Client) DeleteBaseImportTestsModelsComplex

func (c *Client) DeleteBaseImportTestsModelsComplex(id int64) error

DeleteBaseImportTestsModelsComplex deletes an existing base_import.tests.models.complex record.

func (*Client) DeleteBaseImportTestsModelsComplexs

func (c *Client) DeleteBaseImportTestsModelsComplexs(ids []int64) error

DeleteBaseImportTestsModelsComplexs deletes existing base_import.tests.models.complex records.

func (*Client) DeleteBaseImportTestsModelsFloat

func (c *Client) DeleteBaseImportTestsModelsFloat(id int64) error

DeleteBaseImportTestsModelsFloat deletes an existing base_import.tests.models.float record.

func (*Client) DeleteBaseImportTestsModelsFloats

func (c *Client) DeleteBaseImportTestsModelsFloats(ids []int64) error

DeleteBaseImportTestsModelsFloats deletes existing base_import.tests.models.float records.

func (*Client) DeleteBaseImportTestsModelsM2O

func (c *Client) DeleteBaseImportTestsModelsM2O(id int64) error

DeleteBaseImportTestsModelsM2O deletes an existing base_import.tests.models.m2o record.

func (*Client) DeleteBaseImportTestsModelsM2ORelated

func (c *Client) DeleteBaseImportTestsModelsM2ORelated(id int64) error

DeleteBaseImportTestsModelsM2ORelated deletes an existing base_import.tests.models.m2o.related record.

func (*Client) DeleteBaseImportTestsModelsM2ORelateds

func (c *Client) DeleteBaseImportTestsModelsM2ORelateds(ids []int64) error

DeleteBaseImportTestsModelsM2ORelateds deletes existing base_import.tests.models.m2o.related records.

func (*Client) DeleteBaseImportTestsModelsM2ORequired

func (c *Client) DeleteBaseImportTestsModelsM2ORequired(id int64) error

DeleteBaseImportTestsModelsM2ORequired deletes an existing base_import.tests.models.m2o.required record.

func (*Client) DeleteBaseImportTestsModelsM2ORequiredRelated

func (c *Client) DeleteBaseImportTestsModelsM2ORequiredRelated(id int64) error

DeleteBaseImportTestsModelsM2ORequiredRelated deletes an existing base_import.tests.models.m2o.required.related record.

func (*Client) DeleteBaseImportTestsModelsM2ORequiredRelateds

func (c *Client) DeleteBaseImportTestsModelsM2ORequiredRelateds(ids []int64) error

DeleteBaseImportTestsModelsM2ORequiredRelateds deletes existing base_import.tests.models.m2o.required.related records.

func (*Client) DeleteBaseImportTestsModelsM2ORequireds

func (c *Client) DeleteBaseImportTestsModelsM2ORequireds(ids []int64) error

DeleteBaseImportTestsModelsM2ORequireds deletes existing base_import.tests.models.m2o.required records.

func (*Client) DeleteBaseImportTestsModelsM2Os

func (c *Client) DeleteBaseImportTestsModelsM2Os(ids []int64) error

DeleteBaseImportTestsModelsM2Os deletes existing base_import.tests.models.m2o records.

func (*Client) DeleteBaseImportTestsModelsO2M

func (c *Client) DeleteBaseImportTestsModelsO2M(id int64) error

DeleteBaseImportTestsModelsO2M deletes an existing base_import.tests.models.o2m record.

func (*Client) DeleteBaseImportTestsModelsO2MChild

func (c *Client) DeleteBaseImportTestsModelsO2MChild(id int64) error

DeleteBaseImportTestsModelsO2MChild deletes an existing base_import.tests.models.o2m.child record.

func (*Client) DeleteBaseImportTestsModelsO2MChilds

func (c *Client) DeleteBaseImportTestsModelsO2MChilds(ids []int64) error

DeleteBaseImportTestsModelsO2MChilds deletes existing base_import.tests.models.o2m.child records.

func (*Client) DeleteBaseImportTestsModelsO2Ms

func (c *Client) DeleteBaseImportTestsModelsO2Ms(ids []int64) error

DeleteBaseImportTestsModelsO2Ms deletes existing base_import.tests.models.o2m records.

func (*Client) DeleteBaseImportTestsModelsPreview

func (c *Client) DeleteBaseImportTestsModelsPreview(id int64) error

DeleteBaseImportTestsModelsPreview deletes an existing base_import.tests.models.preview record.

func (*Client) DeleteBaseImportTestsModelsPreviews

func (c *Client) DeleteBaseImportTestsModelsPreviews(ids []int64) error

DeleteBaseImportTestsModelsPreviews deletes existing base_import.tests.models.preview records.

func (*Client) DeleteBaseLanguageExport

func (c *Client) DeleteBaseLanguageExport(id int64) error

DeleteBaseLanguageExport deletes an existing base.language.export record.

func (*Client) DeleteBaseLanguageExports

func (c *Client) DeleteBaseLanguageExports(ids []int64) error

DeleteBaseLanguageExports deletes existing base.language.export records.

func (*Client) DeleteBaseLanguageImport

func (c *Client) DeleteBaseLanguageImport(id int64) error

DeleteBaseLanguageImport deletes an existing base.language.import record.

func (*Client) DeleteBaseLanguageImports

func (c *Client) DeleteBaseLanguageImports(ids []int64) error

DeleteBaseLanguageImports deletes existing base.language.import records.

func (*Client) DeleteBaseLanguageInstall

func (c *Client) DeleteBaseLanguageInstall(id int64) error

DeleteBaseLanguageInstall deletes an existing base.language.install record.

func (*Client) DeleteBaseLanguageInstalls

func (c *Client) DeleteBaseLanguageInstalls(ids []int64) error

DeleteBaseLanguageInstalls deletes existing base.language.install records.

func (*Client) DeleteBaseModuleUninstall

func (c *Client) DeleteBaseModuleUninstall(id int64) error

DeleteBaseModuleUninstall deletes an existing base.module.uninstall record.

func (*Client) DeleteBaseModuleUninstalls

func (c *Client) DeleteBaseModuleUninstalls(ids []int64) error

DeleteBaseModuleUninstalls deletes existing base.module.uninstall records.

func (*Client) DeleteBaseModuleUpdate

func (c *Client) DeleteBaseModuleUpdate(id int64) error

DeleteBaseModuleUpdate deletes an existing base.module.update record.

func (*Client) DeleteBaseModuleUpdates

func (c *Client) DeleteBaseModuleUpdates(ids []int64) error

DeleteBaseModuleUpdates deletes existing base.module.update records.

func (*Client) DeleteBaseModuleUpgrade

func (c *Client) DeleteBaseModuleUpgrade(id int64) error

DeleteBaseModuleUpgrade deletes an existing base.module.upgrade record.

func (*Client) DeleteBaseModuleUpgrades

func (c *Client) DeleteBaseModuleUpgrades(ids []int64) error

DeleteBaseModuleUpgrades deletes existing base.module.upgrade records.

func (*Client) DeleteBasePartnerMergeAutomaticWizard

func (c *Client) DeleteBasePartnerMergeAutomaticWizard(id int64) error

DeleteBasePartnerMergeAutomaticWizard deletes an existing base.partner.merge.automatic.wizard record.

func (*Client) DeleteBasePartnerMergeAutomaticWizards

func (c *Client) DeleteBasePartnerMergeAutomaticWizards(ids []int64) error

DeleteBasePartnerMergeAutomaticWizards deletes existing base.partner.merge.automatic.wizard records.

func (*Client) DeleteBasePartnerMergeLine

func (c *Client) DeleteBasePartnerMergeLine(id int64) error

DeleteBasePartnerMergeLine deletes an existing base.partner.merge.line record.

func (*Client) DeleteBasePartnerMergeLines

func (c *Client) DeleteBasePartnerMergeLines(ids []int64) error

DeleteBasePartnerMergeLines deletes existing base.partner.merge.line records.

func (*Client) DeleteBaseUpdateTranslations

func (c *Client) DeleteBaseUpdateTranslations(id int64) error

DeleteBaseUpdateTranslations deletes an existing base.update.translations record.

func (*Client) DeleteBaseUpdateTranslationss

func (c *Client) DeleteBaseUpdateTranslationss(ids []int64) error

DeleteBaseUpdateTranslationss deletes existing base.update.translations records.

func (*Client) DeleteBases

func (c *Client) DeleteBases(ids []int64) error

DeleteBases deletes existing base records.

func (*Client) DeleteBlogBlog

func (c *Client) DeleteBlogBlog(id int64) error

DeleteBlogBlog deletes an existing blog.blog record.

func (*Client) DeleteBlogBlogs

func (c *Client) DeleteBlogBlogs(ids []int64) error

DeleteBlogBlogs deletes existing blog.blog records.

func (*Client) DeleteBlogPost

func (c *Client) DeleteBlogPost(id int64) error

DeleteBlogPost deletes an existing blog.post record.

func (*Client) DeleteBlogPosts

func (c *Client) DeleteBlogPosts(ids []int64) error

DeleteBlogPosts deletes existing blog.post records.

func (*Client) DeleteBlogTag

func (c *Client) DeleteBlogTag(id int64) error

DeleteBlogTag deletes an existing blog.tag record.

func (*Client) DeleteBlogTagCategory

func (c *Client) DeleteBlogTagCategory(id int64) error

DeleteBlogTagCategory deletes an existing blog.tag.category record.

func (*Client) DeleteBlogTagCategorys

func (c *Client) DeleteBlogTagCategorys(ids []int64) error

DeleteBlogTagCategorys deletes existing blog.tag.category records.

func (*Client) DeleteBlogTags

func (c *Client) DeleteBlogTags(ids []int64) error

DeleteBlogTags deletes existing blog.tag records.

func (*Client) DeleteBoardBoard

func (c *Client) DeleteBoardBoard(id int64) error

DeleteBoardBoard deletes an existing board.board record.

func (*Client) DeleteBoardBoards

func (c *Client) DeleteBoardBoards(ids []int64) error

DeleteBoardBoards deletes existing board.board records.

func (*Client) DeleteBusBus

func (c *Client) DeleteBusBus(id int64) error

DeleteBusBus deletes an existing bus.bus record.

func (*Client) DeleteBusBuss

func (c *Client) DeleteBusBuss(ids []int64) error

DeleteBusBuss deletes existing bus.bus records.

func (*Client) DeleteBusPresence

func (c *Client) DeleteBusPresence(id int64) error

DeleteBusPresence deletes an existing bus.presence record.

func (*Client) DeleteBusPresences

func (c *Client) DeleteBusPresences(ids []int64) error

DeleteBusPresences deletes existing bus.presence records.

func (*Client) DeleteCalendarAlarm

func (c *Client) DeleteCalendarAlarm(id int64) error

DeleteCalendarAlarm deletes an existing calendar.alarm record.

func (*Client) DeleteCalendarAlarmManager

func (c *Client) DeleteCalendarAlarmManager(id int64) error

DeleteCalendarAlarmManager deletes an existing calendar.alarm_manager record.

func (*Client) DeleteCalendarAlarmManagers

func (c *Client) DeleteCalendarAlarmManagers(ids []int64) error

DeleteCalendarAlarmManagers deletes existing calendar.alarm_manager records.

func (*Client) DeleteCalendarAlarms

func (c *Client) DeleteCalendarAlarms(ids []int64) error

DeleteCalendarAlarms deletes existing calendar.alarm records.

func (*Client) DeleteCalendarAttendee

func (c *Client) DeleteCalendarAttendee(id int64) error

DeleteCalendarAttendee deletes an existing calendar.attendee record.

func (*Client) DeleteCalendarAttendees

func (c *Client) DeleteCalendarAttendees(ids []int64) error

DeleteCalendarAttendees deletes existing calendar.attendee records.

func (*Client) DeleteCalendarContacts

func (c *Client) DeleteCalendarContacts(id int64) error

DeleteCalendarContacts deletes an existing calendar.contacts record.

func (*Client) DeleteCalendarContactss

func (c *Client) DeleteCalendarContactss(ids []int64) error

DeleteCalendarContactss deletes existing calendar.contacts records.

func (*Client) DeleteCalendarEvent

func (c *Client) DeleteCalendarEvent(id int64) error

DeleteCalendarEvent deletes an existing calendar.event record.

func (*Client) DeleteCalendarEventType

func (c *Client) DeleteCalendarEventType(id int64) error

DeleteCalendarEventType deletes an existing calendar.event.type record.

func (*Client) DeleteCalendarEventTypes

func (c *Client) DeleteCalendarEventTypes(ids []int64) error

DeleteCalendarEventTypes deletes existing calendar.event.type records.

func (*Client) DeleteCalendarEvents

func (c *Client) DeleteCalendarEvents(ids []int64) error

DeleteCalendarEvents deletes existing calendar.event records.

func (*Client) DeleteCashBoxOut

func (c *Client) DeleteCashBoxOut(id int64) error

DeleteCashBoxOut deletes an existing cash.box.out record.

func (*Client) DeleteCashBoxOuts

func (c *Client) DeleteCashBoxOuts(ids []int64) error

DeleteCashBoxOuts deletes existing cash.box.out records.

func (*Client) DeleteChangePasswordUser

func (c *Client) DeleteChangePasswordUser(id int64) error

DeleteChangePasswordUser deletes an existing change.password.user record.

func (*Client) DeleteChangePasswordUsers

func (c *Client) DeleteChangePasswordUsers(ids []int64) error

DeleteChangePasswordUsers deletes existing change.password.user records.

func (*Client) DeleteChangePasswordWizard

func (c *Client) DeleteChangePasswordWizard(id int64) error

DeleteChangePasswordWizard deletes an existing change.password.wizard record.

func (*Client) DeleteChangePasswordWizards

func (c *Client) DeleteChangePasswordWizards(ids []int64) error

DeleteChangePasswordWizards deletes existing change.password.wizard records.

func (*Client) DeleteCmsArticle

func (c *Client) DeleteCmsArticle(id int64) error

DeleteCmsArticle deletes an existing cms.article record.

func (*Client) DeleteCmsArticles

func (c *Client) DeleteCmsArticles(ids []int64) error

DeleteCmsArticles deletes existing cms.article records.

func (*Client) DeleteCrmActivityReport

func (c *Client) DeleteCrmActivityReport(id int64) error

DeleteCrmActivityReport deletes an existing crm.activity.report record.

func (*Client) DeleteCrmActivityReports

func (c *Client) DeleteCrmActivityReports(ids []int64) error

DeleteCrmActivityReports deletes existing crm.activity.report records.

func (*Client) DeleteCrmLead

func (c *Client) DeleteCrmLead(id int64) error

DeleteCrmLead deletes an existing crm.lead record.

func (*Client) DeleteCrmLead2OpportunityPartner

func (c *Client) DeleteCrmLead2OpportunityPartner(id int64) error

DeleteCrmLead2OpportunityPartner deletes an existing crm.lead2opportunity.partner record.

func (*Client) DeleteCrmLead2OpportunityPartnerMass

func (c *Client) DeleteCrmLead2OpportunityPartnerMass(id int64) error

DeleteCrmLead2OpportunityPartnerMass deletes an existing crm.lead2opportunity.partner.mass record.

func (*Client) DeleteCrmLead2OpportunityPartnerMasss

func (c *Client) DeleteCrmLead2OpportunityPartnerMasss(ids []int64) error

DeleteCrmLead2OpportunityPartnerMasss deletes existing crm.lead2opportunity.partner.mass records.

func (*Client) DeleteCrmLead2OpportunityPartners

func (c *Client) DeleteCrmLead2OpportunityPartners(ids []int64) error

DeleteCrmLead2OpportunityPartners deletes existing crm.lead2opportunity.partner records.

func (*Client) DeleteCrmLeadLost

func (c *Client) DeleteCrmLeadLost(id int64) error

DeleteCrmLeadLost deletes an existing crm.lead.lost record.

func (*Client) DeleteCrmLeadLosts

func (c *Client) DeleteCrmLeadLosts(ids []int64) error

DeleteCrmLeadLosts deletes existing crm.lead.lost records.

func (*Client) DeleteCrmLeadScoringFrequency

func (c *Client) DeleteCrmLeadScoringFrequency(id int64) error

DeleteCrmLeadScoringFrequency deletes an existing crm.lead.scoring.frequency record.

func (*Client) DeleteCrmLeadScoringFrequencyField

func (c *Client) DeleteCrmLeadScoringFrequencyField(id int64) error

DeleteCrmLeadScoringFrequencyField deletes an existing crm.lead.scoring.frequency.field record.

func (*Client) DeleteCrmLeadScoringFrequencyFields

func (c *Client) DeleteCrmLeadScoringFrequencyFields(ids []int64) error

DeleteCrmLeadScoringFrequencyFields deletes existing crm.lead.scoring.frequency.field records.

func (*Client) DeleteCrmLeadScoringFrequencys

func (c *Client) DeleteCrmLeadScoringFrequencys(ids []int64) error

DeleteCrmLeadScoringFrequencys deletes existing crm.lead.scoring.frequency records.

func (*Client) DeleteCrmLeadTag

func (c *Client) DeleteCrmLeadTag(id int64) error

DeleteCrmLeadTag deletes an existing crm.lead.tag record.

func (*Client) DeleteCrmLeadTags

func (c *Client) DeleteCrmLeadTags(ids []int64) error

DeleteCrmLeadTags deletes existing crm.lead.tag records.

func (*Client) DeleteCrmLeads

func (c *Client) DeleteCrmLeads(ids []int64) error

DeleteCrmLeads deletes existing crm.lead records.

func (*Client) DeleteCrmLostReason

func (c *Client) DeleteCrmLostReason(id int64) error

DeleteCrmLostReason deletes an existing crm.lost.reason record.

func (*Client) DeleteCrmLostReasons

func (c *Client) DeleteCrmLostReasons(ids []int64) error

DeleteCrmLostReasons deletes existing crm.lost.reason records.

func (*Client) DeleteCrmMergeOpportunity

func (c *Client) DeleteCrmMergeOpportunity(id int64) error

DeleteCrmMergeOpportunity deletes an existing crm.merge.opportunity record.

func (*Client) DeleteCrmMergeOpportunitys

func (c *Client) DeleteCrmMergeOpportunitys(ids []int64) error

DeleteCrmMergeOpportunitys deletes existing crm.merge.opportunity records.

func (*Client) DeleteCrmPartnerBinding

func (c *Client) DeleteCrmPartnerBinding(id int64) error

DeleteCrmPartnerBinding deletes an existing crm.partner.binding record.

func (*Client) DeleteCrmPartnerBindings

func (c *Client) DeleteCrmPartnerBindings(ids []int64) error

DeleteCrmPartnerBindings deletes existing crm.partner.binding records.

func (*Client) DeleteCrmQuotationPartner

func (c *Client) DeleteCrmQuotationPartner(id int64) error

DeleteCrmQuotationPartner deletes an existing crm.quotation.partner record.

func (*Client) DeleteCrmQuotationPartners

func (c *Client) DeleteCrmQuotationPartners(ids []int64) error

DeleteCrmQuotationPartners deletes existing crm.quotation.partner records.

func (*Client) DeleteCrmStage

func (c *Client) DeleteCrmStage(id int64) error

DeleteCrmStage deletes an existing crm.stage record.

func (*Client) DeleteCrmStages

func (c *Client) DeleteCrmStages(ids []int64) error

DeleteCrmStages deletes existing crm.stage records.

func (*Client) DeleteCrmTeam

func (c *Client) DeleteCrmTeam(id int64) error

DeleteCrmTeam deletes an existing crm.team record.

func (*Client) DeleteCrmTeams

func (c *Client) DeleteCrmTeams(ids []int64) error

DeleteCrmTeams deletes existing crm.team records.

func (*Client) DeleteDecimalPrecision

func (c *Client) DeleteDecimalPrecision(id int64) error

DeleteDecimalPrecision deletes an existing decimal.precision record.

func (*Client) DeleteDecimalPrecisions

func (c *Client) DeleteDecimalPrecisions(ids []int64) error

DeleteDecimalPrecisions deletes existing decimal.precision records.

func (*Client) DeleteDigestDigest

func (c *Client) DeleteDigestDigest(id int64) error

DeleteDigestDigest deletes an existing digest.digest record.

func (*Client) DeleteDigestDigests

func (c *Client) DeleteDigestDigests(ids []int64) error

DeleteDigestDigests deletes existing digest.digest records.

func (*Client) DeleteDigestTip

func (c *Client) DeleteDigestTip(id int64) error

DeleteDigestTip deletes an existing digest.tip record.

func (*Client) DeleteDigestTips

func (c *Client) DeleteDigestTips(ids []int64) error

DeleteDigestTips deletes existing digest.tip records.

func (*Client) DeleteEmailTemplatePreview

func (c *Client) DeleteEmailTemplatePreview(id int64) error

DeleteEmailTemplatePreview deletes an existing email_template.preview record.

func (*Client) DeleteEmailTemplatePreviews

func (c *Client) DeleteEmailTemplatePreviews(ids []int64) error

DeleteEmailTemplatePreviews deletes existing email_template.preview records.

func (*Client) DeleteEventConfirm

func (c *Client) DeleteEventConfirm(id int64) error

DeleteEventConfirm deletes an existing event.confirm record.

func (*Client) DeleteEventConfirms

func (c *Client) DeleteEventConfirms(ids []int64) error

DeleteEventConfirms deletes existing event.confirm records.

func (*Client) DeleteEventEvent

func (c *Client) DeleteEventEvent(id int64) error

DeleteEventEvent deletes an existing event.event record.

func (*Client) DeleteEventEventConfigurator

func (c *Client) DeleteEventEventConfigurator(id int64) error

DeleteEventEventConfigurator deletes an existing event.event.configurator record.

func (*Client) DeleteEventEventConfigurators

func (c *Client) DeleteEventEventConfigurators(ids []int64) error

DeleteEventEventConfigurators deletes existing event.event.configurator records.

func (*Client) DeleteEventEventTicket

func (c *Client) DeleteEventEventTicket(id int64) error

DeleteEventEventTicket deletes an existing event.event.ticket record.

func (*Client) DeleteEventEventTickets

func (c *Client) DeleteEventEventTickets(ids []int64) error

DeleteEventEventTickets deletes existing event.event.ticket records.

func (*Client) DeleteEventEvents

func (c *Client) DeleteEventEvents(ids []int64) error

DeleteEventEvents deletes existing event.event records.

func (*Client) DeleteEventMail

func (c *Client) DeleteEventMail(id int64) error

DeleteEventMail deletes an existing event.mail record.

func (*Client) DeleteEventMailRegistration

func (c *Client) DeleteEventMailRegistration(id int64) error

DeleteEventMailRegistration deletes an existing event.mail.registration record.

func (*Client) DeleteEventMailRegistrations

func (c *Client) DeleteEventMailRegistrations(ids []int64) error

DeleteEventMailRegistrations deletes existing event.mail.registration records.

func (*Client) DeleteEventMails

func (c *Client) DeleteEventMails(ids []int64) error

DeleteEventMails deletes existing event.mail records.

func (*Client) DeleteEventRegistration

func (c *Client) DeleteEventRegistration(id int64) error

DeleteEventRegistration deletes an existing event.registration record.

func (*Client) DeleteEventRegistrations

func (c *Client) DeleteEventRegistrations(ids []int64) error

DeleteEventRegistrations deletes existing event.registration records.

func (*Client) DeleteEventType

func (c *Client) DeleteEventType(id int64) error

DeleteEventType deletes an existing event.type record.

func (*Client) DeleteEventTypeMail

func (c *Client) DeleteEventTypeMail(id int64) error

DeleteEventTypeMail deletes an existing event.type.mail record.

func (*Client) DeleteEventTypeMails

func (c *Client) DeleteEventTypeMails(ids []int64) error

DeleteEventTypeMails deletes existing event.type.mail records.

func (*Client) DeleteEventTypes

func (c *Client) DeleteEventTypes(ids []int64) error

DeleteEventTypes deletes existing event.type records.

func (*Client) DeleteFetchmailServer

func (c *Client) DeleteFetchmailServer(id int64) error

DeleteFetchmailServer deletes an existing fetchmail.server record.

func (*Client) DeleteFetchmailServers

func (c *Client) DeleteFetchmailServers(ids []int64) error

DeleteFetchmailServers deletes existing fetchmail.server records.

func (*Client) DeleteFormatAddressMixin

func (c *Client) DeleteFormatAddressMixin(id int64) error

DeleteFormatAddressMixin deletes an existing format.address.mixin record.

func (*Client) DeleteFormatAddressMixins

func (c *Client) DeleteFormatAddressMixins(ids []int64) error

DeleteFormatAddressMixins deletes existing format.address.mixin records.

func (*Client) DeleteGamificationBadge

func (c *Client) DeleteGamificationBadge(id int64) error

DeleteGamificationBadge deletes an existing gamification.badge record.

func (*Client) DeleteGamificationBadgeUser

func (c *Client) DeleteGamificationBadgeUser(id int64) error

DeleteGamificationBadgeUser deletes an existing gamification.badge.user record.

func (*Client) DeleteGamificationBadgeUserWizard

func (c *Client) DeleteGamificationBadgeUserWizard(id int64) error

DeleteGamificationBadgeUserWizard deletes an existing gamification.badge.user.wizard record.

func (*Client) DeleteGamificationBadgeUserWizards

func (c *Client) DeleteGamificationBadgeUserWizards(ids []int64) error

DeleteGamificationBadgeUserWizards deletes existing gamification.badge.user.wizard records.

func (*Client) DeleteGamificationBadgeUsers

func (c *Client) DeleteGamificationBadgeUsers(ids []int64) error

DeleteGamificationBadgeUsers deletes existing gamification.badge.user records.

func (*Client) DeleteGamificationBadges

func (c *Client) DeleteGamificationBadges(ids []int64) error

DeleteGamificationBadges deletes existing gamification.badge records.

func (*Client) DeleteGamificationChallenge

func (c *Client) DeleteGamificationChallenge(id int64) error

DeleteGamificationChallenge deletes an existing gamification.challenge record.

func (*Client) DeleteGamificationChallengeLine

func (c *Client) DeleteGamificationChallengeLine(id int64) error

DeleteGamificationChallengeLine deletes an existing gamification.challenge.line record.

func (*Client) DeleteGamificationChallengeLines

func (c *Client) DeleteGamificationChallengeLines(ids []int64) error

DeleteGamificationChallengeLines deletes existing gamification.challenge.line records.

func (*Client) DeleteGamificationChallenges

func (c *Client) DeleteGamificationChallenges(ids []int64) error

DeleteGamificationChallenges deletes existing gamification.challenge records.

func (*Client) DeleteGamificationGoal

func (c *Client) DeleteGamificationGoal(id int64) error

DeleteGamificationGoal deletes an existing gamification.goal record.

func (*Client) DeleteGamificationGoalDefinition

func (c *Client) DeleteGamificationGoalDefinition(id int64) error

DeleteGamificationGoalDefinition deletes an existing gamification.goal.definition record.

func (*Client) DeleteGamificationGoalDefinitions

func (c *Client) DeleteGamificationGoalDefinitions(ids []int64) error

DeleteGamificationGoalDefinitions deletes existing gamification.goal.definition records.

func (*Client) DeleteGamificationGoalWizard

func (c *Client) DeleteGamificationGoalWizard(id int64) error

DeleteGamificationGoalWizard deletes an existing gamification.goal.wizard record.

func (*Client) DeleteGamificationGoalWizards

func (c *Client) DeleteGamificationGoalWizards(ids []int64) error

DeleteGamificationGoalWizards deletes existing gamification.goal.wizard records.

func (*Client) DeleteGamificationGoals

func (c *Client) DeleteGamificationGoals(ids []int64) error

DeleteGamificationGoals deletes existing gamification.goal records.

func (*Client) DeleteGamificationKarmaRank

func (c *Client) DeleteGamificationKarmaRank(id int64) error

DeleteGamificationKarmaRank deletes an existing gamification.karma.rank record.

func (*Client) DeleteGamificationKarmaRanks

func (c *Client) DeleteGamificationKarmaRanks(ids []int64) error

DeleteGamificationKarmaRanks deletes existing gamification.karma.rank records.

func (*Client) DeleteHrApplicant

func (c *Client) DeleteHrApplicant(id int64) error

DeleteHrApplicant deletes an existing hr.applicant record.

func (*Client) DeleteHrApplicantCategory

func (c *Client) DeleteHrApplicantCategory(id int64) error

DeleteHrApplicantCategory deletes an existing hr.applicant.category record.

func (*Client) DeleteHrApplicantCategorys

func (c *Client) DeleteHrApplicantCategorys(ids []int64) error

DeleteHrApplicantCategorys deletes existing hr.applicant.category records.

func (*Client) DeleteHrApplicants

func (c *Client) DeleteHrApplicants(ids []int64) error

DeleteHrApplicants deletes existing hr.applicant records.

func (*Client) DeleteHrAttendance

func (c *Client) DeleteHrAttendance(id int64) error

DeleteHrAttendance deletes an existing hr.attendance record.

func (*Client) DeleteHrAttendances

func (c *Client) DeleteHrAttendances(ids []int64) error

DeleteHrAttendances deletes existing hr.attendance records.

func (*Client) DeleteHrContract

func (c *Client) DeleteHrContract(id int64) error

DeleteHrContract deletes an existing hr.contract record.

func (*Client) DeleteHrContracts

func (c *Client) DeleteHrContracts(ids []int64) error

DeleteHrContracts deletes existing hr.contract records.

func (*Client) DeleteHrDepartment

func (c *Client) DeleteHrDepartment(id int64) error

DeleteHrDepartment deletes an existing hr.department record.

func (*Client) DeleteHrDepartments

func (c *Client) DeleteHrDepartments(ids []int64) error

DeleteHrDepartments deletes existing hr.department records.

func (*Client) DeleteHrDepartureWizard

func (c *Client) DeleteHrDepartureWizard(id int64) error

DeleteHrDepartureWizard deletes an existing hr.departure.wizard record.

func (*Client) DeleteHrDepartureWizards

func (c *Client) DeleteHrDepartureWizards(ids []int64) error

DeleteHrDepartureWizards deletes existing hr.departure.wizard records.

func (*Client) DeleteHrEmployee

func (c *Client) DeleteHrEmployee(id int64) error

DeleteHrEmployee deletes an existing hr.employee record.

func (*Client) DeleteHrEmployeeBase

func (c *Client) DeleteHrEmployeeBase(id int64) error

DeleteHrEmployeeBase deletes an existing hr.employee.base record.

func (*Client) DeleteHrEmployeeBases

func (c *Client) DeleteHrEmployeeBases(ids []int64) error

DeleteHrEmployeeBases deletes existing hr.employee.base records.

func (*Client) DeleteHrEmployeeCategory

func (c *Client) DeleteHrEmployeeCategory(id int64) error

DeleteHrEmployeeCategory deletes an existing hr.employee.category record.

func (*Client) DeleteHrEmployeeCategorys

func (c *Client) DeleteHrEmployeeCategorys(ids []int64) error

DeleteHrEmployeeCategorys deletes existing hr.employee.category records.

func (*Client) DeleteHrEmployeePublic

func (c *Client) DeleteHrEmployeePublic(id int64) error

DeleteHrEmployeePublic deletes an existing hr.employee.public record.

func (*Client) DeleteHrEmployeePublics

func (c *Client) DeleteHrEmployeePublics(ids []int64) error

DeleteHrEmployeePublics deletes existing hr.employee.public records.

func (*Client) DeleteHrEmployees

func (c *Client) DeleteHrEmployees(ids []int64) error

DeleteHrEmployees deletes existing hr.employee records.

func (*Client) DeleteHrExpense

func (c *Client) DeleteHrExpense(id int64) error

DeleteHrExpense deletes an existing hr.expense record.

func (*Client) DeleteHrExpenseRefuseWizard

func (c *Client) DeleteHrExpenseRefuseWizard(id int64) error

DeleteHrExpenseRefuseWizard deletes an existing hr.expense.refuse.wizard record.

func (*Client) DeleteHrExpenseRefuseWizards

func (c *Client) DeleteHrExpenseRefuseWizards(ids []int64) error

DeleteHrExpenseRefuseWizards deletes existing hr.expense.refuse.wizard records.

func (*Client) DeleteHrExpenseSheet

func (c *Client) DeleteHrExpenseSheet(id int64) error

DeleteHrExpenseSheet deletes an existing hr.expense.sheet record.

func (*Client) DeleteHrExpenseSheetRegisterPaymentWizard

func (c *Client) DeleteHrExpenseSheetRegisterPaymentWizard(id int64) error

DeleteHrExpenseSheetRegisterPaymentWizard deletes an existing hr.expense.sheet.register.payment.wizard record.

func (*Client) DeleteHrExpenseSheetRegisterPaymentWizards

func (c *Client) DeleteHrExpenseSheetRegisterPaymentWizards(ids []int64) error

DeleteHrExpenseSheetRegisterPaymentWizards deletes existing hr.expense.sheet.register.payment.wizard records.

func (*Client) DeleteHrExpenseSheets

func (c *Client) DeleteHrExpenseSheets(ids []int64) error

DeleteHrExpenseSheets deletes existing hr.expense.sheet records.

func (*Client) DeleteHrExpenses

func (c *Client) DeleteHrExpenses(ids []int64) error

DeleteHrExpenses deletes existing hr.expense records.

func (*Client) DeleteHrHolidaysSummaryEmployee

func (c *Client) DeleteHrHolidaysSummaryEmployee(id int64) error

DeleteHrHolidaysSummaryEmployee deletes an existing hr.holidays.summary.employee record.

func (*Client) DeleteHrHolidaysSummaryEmployees

func (c *Client) DeleteHrHolidaysSummaryEmployees(ids []int64) error

DeleteHrHolidaysSummaryEmployees deletes existing hr.holidays.summary.employee records.

func (*Client) DeleteHrJob

func (c *Client) DeleteHrJob(id int64) error

DeleteHrJob deletes an existing hr.job record.

func (*Client) DeleteHrJobs

func (c *Client) DeleteHrJobs(ids []int64) error

DeleteHrJobs deletes existing hr.job records.

func (*Client) DeleteHrLeave

func (c *Client) DeleteHrLeave(id int64) error

DeleteHrLeave deletes an existing hr.leave record.

func (*Client) DeleteHrLeaveAllocation

func (c *Client) DeleteHrLeaveAllocation(id int64) error

DeleteHrLeaveAllocation deletes an existing hr.leave.allocation record.

func (*Client) DeleteHrLeaveAllocations

func (c *Client) DeleteHrLeaveAllocations(ids []int64) error

DeleteHrLeaveAllocations deletes existing hr.leave.allocation records.

func (*Client) DeleteHrLeaveReport

func (c *Client) DeleteHrLeaveReport(id int64) error

DeleteHrLeaveReport deletes an existing hr.leave.report record.

func (*Client) DeleteHrLeaveReportCalendar

func (c *Client) DeleteHrLeaveReportCalendar(id int64) error

DeleteHrLeaveReportCalendar deletes an existing hr.leave.report.calendar record.

func (*Client) DeleteHrLeaveReportCalendars

func (c *Client) DeleteHrLeaveReportCalendars(ids []int64) error

DeleteHrLeaveReportCalendars deletes existing hr.leave.report.calendar records.

func (*Client) DeleteHrLeaveReports

func (c *Client) DeleteHrLeaveReports(ids []int64) error

DeleteHrLeaveReports deletes existing hr.leave.report records.

func (*Client) DeleteHrLeaveType

func (c *Client) DeleteHrLeaveType(id int64) error

DeleteHrLeaveType deletes an existing hr.leave.type record.

func (*Client) DeleteHrLeaveTypes

func (c *Client) DeleteHrLeaveTypes(ids []int64) error

DeleteHrLeaveTypes deletes existing hr.leave.type records.

func (*Client) DeleteHrLeaves

func (c *Client) DeleteHrLeaves(ids []int64) error

DeleteHrLeaves deletes existing hr.leave records.

func (*Client) DeleteHrPlan

func (c *Client) DeleteHrPlan(id int64) error

DeleteHrPlan deletes an existing hr.plan record.

func (*Client) DeleteHrPlanActivityType

func (c *Client) DeleteHrPlanActivityType(id int64) error

DeleteHrPlanActivityType deletes an existing hr.plan.activity.type record.

func (*Client) DeleteHrPlanActivityTypes

func (c *Client) DeleteHrPlanActivityTypes(ids []int64) error

DeleteHrPlanActivityTypes deletes existing hr.plan.activity.type records.

func (*Client) DeleteHrPlanWizard

func (c *Client) DeleteHrPlanWizard(id int64) error

DeleteHrPlanWizard deletes an existing hr.plan.wizard record.

func (*Client) DeleteHrPlanWizards

func (c *Client) DeleteHrPlanWizards(ids []int64) error

DeleteHrPlanWizards deletes existing hr.plan.wizard records.

func (*Client) DeleteHrPlans

func (c *Client) DeleteHrPlans(ids []int64) error

DeleteHrPlans deletes existing hr.plan records.

func (*Client) DeleteHrRecruitmentDegree

func (c *Client) DeleteHrRecruitmentDegree(id int64) error

DeleteHrRecruitmentDegree deletes an existing hr.recruitment.degree record.

func (*Client) DeleteHrRecruitmentDegrees

func (c *Client) DeleteHrRecruitmentDegrees(ids []int64) error

DeleteHrRecruitmentDegrees deletes existing hr.recruitment.degree records.

func (*Client) DeleteHrRecruitmentSource

func (c *Client) DeleteHrRecruitmentSource(id int64) error

DeleteHrRecruitmentSource deletes an existing hr.recruitment.source record.

func (*Client) DeleteHrRecruitmentSources

func (c *Client) DeleteHrRecruitmentSources(ids []int64) error

DeleteHrRecruitmentSources deletes existing hr.recruitment.source records.

func (*Client) DeleteHrRecruitmentStage

func (c *Client) DeleteHrRecruitmentStage(id int64) error

DeleteHrRecruitmentStage deletes an existing hr.recruitment.stage record.

func (*Client) DeleteHrRecruitmentStages

func (c *Client) DeleteHrRecruitmentStages(ids []int64) error

DeleteHrRecruitmentStages deletes existing hr.recruitment.stage records.

func (*Client) DeleteIapAccount

func (c *Client) DeleteIapAccount(id int64) error

DeleteIapAccount deletes an existing iap.account record.

func (*Client) DeleteIapAccounts

func (c *Client) DeleteIapAccounts(ids []int64) error

DeleteIapAccounts deletes existing iap.account records.

func (*Client) DeleteImLivechatChannel

func (c *Client) DeleteImLivechatChannel(id int64) error

DeleteImLivechatChannel deletes an existing im_livechat.channel record.

func (*Client) DeleteImLivechatChannelRule

func (c *Client) DeleteImLivechatChannelRule(id int64) error

DeleteImLivechatChannelRule deletes an existing im_livechat.channel.rule record.

func (*Client) DeleteImLivechatChannelRules

func (c *Client) DeleteImLivechatChannelRules(ids []int64) error

DeleteImLivechatChannelRules deletes existing im_livechat.channel.rule records.

func (*Client) DeleteImLivechatChannels

func (c *Client) DeleteImLivechatChannels(ids []int64) error

DeleteImLivechatChannels deletes existing im_livechat.channel records.

func (*Client) DeleteImLivechatReportChannel

func (c *Client) DeleteImLivechatReportChannel(id int64) error

DeleteImLivechatReportChannel deletes an existing im_livechat.report.channel record.

func (*Client) DeleteImLivechatReportChannels

func (c *Client) DeleteImLivechatReportChannels(ids []int64) error

DeleteImLivechatReportChannels deletes existing im_livechat.report.channel records.

func (*Client) DeleteImLivechatReportOperator

func (c *Client) DeleteImLivechatReportOperator(id int64) error

DeleteImLivechatReportOperator deletes an existing im_livechat.report.operator record.

func (*Client) DeleteImLivechatReportOperators

func (c *Client) DeleteImLivechatReportOperators(ids []int64) error

DeleteImLivechatReportOperators deletes existing im_livechat.report.operator records.

func (*Client) DeleteImageMixin

func (c *Client) DeleteImageMixin(id int64) error

DeleteImageMixin deletes an existing image.mixin record.

func (*Client) DeleteImageMixins

func (c *Client) DeleteImageMixins(ids []int64) error

DeleteImageMixins deletes existing image.mixin records.

func (*Client) DeleteIrActionsActUrl

func (c *Client) DeleteIrActionsActUrl(id int64) error

DeleteIrActionsActUrl deletes an existing ir.actions.act_url record.

func (*Client) DeleteIrActionsActUrls

func (c *Client) DeleteIrActionsActUrls(ids []int64) error

DeleteIrActionsActUrls deletes existing ir.actions.act_url records.

func (*Client) DeleteIrActionsActWindow

func (c *Client) DeleteIrActionsActWindow(id int64) error

DeleteIrActionsActWindow deletes an existing ir.actions.act_window record.

func (*Client) DeleteIrActionsActWindowClose

func (c *Client) DeleteIrActionsActWindowClose(id int64) error

DeleteIrActionsActWindowClose deletes an existing ir.actions.act_window_close record.

func (*Client) DeleteIrActionsActWindowCloses

func (c *Client) DeleteIrActionsActWindowCloses(ids []int64) error

DeleteIrActionsActWindowCloses deletes existing ir.actions.act_window_close records.

func (*Client) DeleteIrActionsActWindowView

func (c *Client) DeleteIrActionsActWindowView(id int64) error

DeleteIrActionsActWindowView deletes an existing ir.actions.act_window.view record.

func (*Client) DeleteIrActionsActWindowViews

func (c *Client) DeleteIrActionsActWindowViews(ids []int64) error

DeleteIrActionsActWindowViews deletes existing ir.actions.act_window.view records.

func (*Client) DeleteIrActionsActWindows

func (c *Client) DeleteIrActionsActWindows(ids []int64) error

DeleteIrActionsActWindows deletes existing ir.actions.act_window records.

func (*Client) DeleteIrActionsActions

func (c *Client) DeleteIrActionsActions(id int64) error

DeleteIrActionsActions deletes an existing ir.actions.actions record.

func (*Client) DeleteIrActionsActionss

func (c *Client) DeleteIrActionsActionss(ids []int64) error

DeleteIrActionsActionss deletes existing ir.actions.actions records.

func (*Client) DeleteIrActionsClient

func (c *Client) DeleteIrActionsClient(id int64) error

DeleteIrActionsClient deletes an existing ir.actions.client record.

func (*Client) DeleteIrActionsClients

func (c *Client) DeleteIrActionsClients(ids []int64) error

DeleteIrActionsClients deletes existing ir.actions.client records.

func (*Client) DeleteIrActionsReport

func (c *Client) DeleteIrActionsReport(id int64) error

DeleteIrActionsReport deletes an existing ir.actions.report record.

func (*Client) DeleteIrActionsReports

func (c *Client) DeleteIrActionsReports(ids []int64) error

DeleteIrActionsReports deletes existing ir.actions.report records.

func (*Client) DeleteIrActionsServer

func (c *Client) DeleteIrActionsServer(id int64) error

DeleteIrActionsServer deletes an existing ir.actions.server record.

func (*Client) DeleteIrActionsServers

func (c *Client) DeleteIrActionsServers(ids []int64) error

DeleteIrActionsServers deletes existing ir.actions.server records.

func (*Client) DeleteIrActionsTodo

func (c *Client) DeleteIrActionsTodo(id int64) error

DeleteIrActionsTodo deletes an existing ir.actions.todo record.

func (*Client) DeleteIrActionsTodos

func (c *Client) DeleteIrActionsTodos(ids []int64) error

DeleteIrActionsTodos deletes existing ir.actions.todo records.

func (*Client) DeleteIrAttachment

func (c *Client) DeleteIrAttachment(id int64) error

DeleteIrAttachment deletes an existing ir.attachment record.

func (*Client) DeleteIrAttachments

func (c *Client) DeleteIrAttachments(ids []int64) error

DeleteIrAttachments deletes existing ir.attachment records.

func (*Client) DeleteIrAutovacuum

func (c *Client) DeleteIrAutovacuum(id int64) error

DeleteIrAutovacuum deletes an existing ir.autovacuum record.

func (*Client) DeleteIrAutovacuums

func (c *Client) DeleteIrAutovacuums(ids []int64) error

DeleteIrAutovacuums deletes existing ir.autovacuum records.

func (*Client) DeleteIrConfigParameter

func (c *Client) DeleteIrConfigParameter(id int64) error

DeleteIrConfigParameter deletes an existing ir.config_parameter record.

func (*Client) DeleteIrConfigParameters

func (c *Client) DeleteIrConfigParameters(ids []int64) error

DeleteIrConfigParameters deletes existing ir.config_parameter records.

func (*Client) DeleteIrCron

func (c *Client) DeleteIrCron(id int64) error

DeleteIrCron deletes an existing ir.cron record.

func (*Client) DeleteIrCrons

func (c *Client) DeleteIrCrons(ids []int64) error

DeleteIrCrons deletes existing ir.cron records.

func (*Client) DeleteIrDefault

func (c *Client) DeleteIrDefault(id int64) error

DeleteIrDefault deletes an existing ir.default record.

func (*Client) DeleteIrDefaults

func (c *Client) DeleteIrDefaults(ids []int64) error

DeleteIrDefaults deletes existing ir.default records.

func (*Client) DeleteIrDemo

func (c *Client) DeleteIrDemo(id int64) error

DeleteIrDemo deletes an existing ir.demo record.

func (*Client) DeleteIrDemoFailure

func (c *Client) DeleteIrDemoFailure(id int64) error

DeleteIrDemoFailure deletes an existing ir.demo_failure record.

func (*Client) DeleteIrDemoFailureWizard

func (c *Client) DeleteIrDemoFailureWizard(id int64) error

DeleteIrDemoFailureWizard deletes an existing ir.demo_failure.wizard record.

func (*Client) DeleteIrDemoFailureWizards

func (c *Client) DeleteIrDemoFailureWizards(ids []int64) error

DeleteIrDemoFailureWizards deletes existing ir.demo_failure.wizard records.

func (*Client) DeleteIrDemoFailures

func (c *Client) DeleteIrDemoFailures(ids []int64) error

DeleteIrDemoFailures deletes existing ir.demo_failure records.

func (*Client) DeleteIrDemos

func (c *Client) DeleteIrDemos(ids []int64) error

DeleteIrDemos deletes existing ir.demo records.

func (*Client) DeleteIrExports

func (c *Client) DeleteIrExports(id int64) error

DeleteIrExports deletes an existing ir.exports record.

func (*Client) DeleteIrExportsLine

func (c *Client) DeleteIrExportsLine(id int64) error

DeleteIrExportsLine deletes an existing ir.exports.line record.

func (*Client) DeleteIrExportsLines

func (c *Client) DeleteIrExportsLines(ids []int64) error

DeleteIrExportsLines deletes existing ir.exports.line records.

func (*Client) DeleteIrExportss

func (c *Client) DeleteIrExportss(ids []int64) error

DeleteIrExportss deletes existing ir.exports records.

func (*Client) DeleteIrFieldsConverter

func (c *Client) DeleteIrFieldsConverter(id int64) error

DeleteIrFieldsConverter deletes an existing ir.fields.converter record.

func (*Client) DeleteIrFieldsConverters

func (c *Client) DeleteIrFieldsConverters(ids []int64) error

DeleteIrFieldsConverters deletes existing ir.fields.converter records.

func (*Client) DeleteIrFilters

func (c *Client) DeleteIrFilters(id int64) error

DeleteIrFilters deletes an existing ir.filters record.

func (*Client) DeleteIrFilterss

func (c *Client) DeleteIrFilterss(ids []int64) error

DeleteIrFilterss deletes existing ir.filters records.

func (*Client) DeleteIrHttp

func (c *Client) DeleteIrHttp(id int64) error

DeleteIrHttp deletes an existing ir.http record.

func (*Client) DeleteIrHttps

func (c *Client) DeleteIrHttps(ids []int64) error

DeleteIrHttps deletes existing ir.http records.

func (*Client) DeleteIrLogging

func (c *Client) DeleteIrLogging(id int64) error

DeleteIrLogging deletes an existing ir.logging record.

func (*Client) DeleteIrLoggings

func (c *Client) DeleteIrLoggings(ids []int64) error

DeleteIrLoggings deletes existing ir.logging records.

func (*Client) DeleteIrMailServer

func (c *Client) DeleteIrMailServer(id int64) error

DeleteIrMailServer deletes an existing ir.mail_server record.

func (*Client) DeleteIrMailServers

func (c *Client) DeleteIrMailServers(ids []int64) error

DeleteIrMailServers deletes existing ir.mail_server records.

func (*Client) DeleteIrModel

func (c *Client) DeleteIrModel(id int64) error

DeleteIrModel deletes an existing ir.model record.

func (*Client) DeleteIrModelAccess

func (c *Client) DeleteIrModelAccess(id int64) error

DeleteIrModelAccess deletes an existing ir.model.access record.

func (*Client) DeleteIrModelAccesss

func (c *Client) DeleteIrModelAccesss(ids []int64) error

DeleteIrModelAccesss deletes existing ir.model.access records.

func (*Client) DeleteIrModelConstraint

func (c *Client) DeleteIrModelConstraint(id int64) error

DeleteIrModelConstraint deletes an existing ir.model.constraint record.

func (*Client) DeleteIrModelConstraints

func (c *Client) DeleteIrModelConstraints(ids []int64) error

DeleteIrModelConstraints deletes existing ir.model.constraint records.

func (*Client) DeleteIrModelData

func (c *Client) DeleteIrModelData(id int64) error

DeleteIrModelData deletes an existing ir.model.data record.

func (*Client) DeleteIrModelDatas

func (c *Client) DeleteIrModelDatas(ids []int64) error

DeleteIrModelDatas deletes existing ir.model.data records.

func (*Client) DeleteIrModelFields

func (c *Client) DeleteIrModelFields(id int64) error

DeleteIrModelFields deletes an existing ir.model.fields record.

func (*Client) DeleteIrModelFieldsSelection

func (c *Client) DeleteIrModelFieldsSelection(id int64) error

DeleteIrModelFieldsSelection deletes an existing ir.model.fields.selection record.

func (*Client) DeleteIrModelFieldsSelections

func (c *Client) DeleteIrModelFieldsSelections(ids []int64) error

DeleteIrModelFieldsSelections deletes existing ir.model.fields.selection records.

func (*Client) DeleteIrModelFieldss

func (c *Client) DeleteIrModelFieldss(ids []int64) error

DeleteIrModelFieldss deletes existing ir.model.fields records.

func (*Client) DeleteIrModelRelation

func (c *Client) DeleteIrModelRelation(id int64) error

DeleteIrModelRelation deletes an existing ir.model.relation record.

func (*Client) DeleteIrModelRelations

func (c *Client) DeleteIrModelRelations(ids []int64) error

DeleteIrModelRelations deletes existing ir.model.relation records.

func (*Client) DeleteIrModels

func (c *Client) DeleteIrModels(ids []int64) error

DeleteIrModels deletes existing ir.model records.

func (*Client) DeleteIrModuleCategory

func (c *Client) DeleteIrModuleCategory(id int64) error

DeleteIrModuleCategory deletes an existing ir.module.category record.

func (*Client) DeleteIrModuleCategorys

func (c *Client) DeleteIrModuleCategorys(ids []int64) error

DeleteIrModuleCategorys deletes existing ir.module.category records.

func (*Client) DeleteIrModuleModule

func (c *Client) DeleteIrModuleModule(id int64) error

DeleteIrModuleModule deletes an existing ir.module.module record.

func (*Client) DeleteIrModuleModuleDependency

func (c *Client) DeleteIrModuleModuleDependency(id int64) error

DeleteIrModuleModuleDependency deletes an existing ir.module.module.dependency record.

func (*Client) DeleteIrModuleModuleDependencys

func (c *Client) DeleteIrModuleModuleDependencys(ids []int64) error

DeleteIrModuleModuleDependencys deletes existing ir.module.module.dependency records.

func (*Client) DeleteIrModuleModuleExclusion

func (c *Client) DeleteIrModuleModuleExclusion(id int64) error

DeleteIrModuleModuleExclusion deletes an existing ir.module.module.exclusion record.

func (*Client) DeleteIrModuleModuleExclusions

func (c *Client) DeleteIrModuleModuleExclusions(ids []int64) error

DeleteIrModuleModuleExclusions deletes existing ir.module.module.exclusion records.

func (*Client) DeleteIrModuleModules

func (c *Client) DeleteIrModuleModules(ids []int64) error

DeleteIrModuleModules deletes existing ir.module.module records.

func (*Client) DeleteIrProperty

func (c *Client) DeleteIrProperty(id int64) error

DeleteIrProperty deletes an existing ir.property record.

func (*Client) DeleteIrPropertys

func (c *Client) DeleteIrPropertys(ids []int64) error

DeleteIrPropertys deletes existing ir.property records.

func (*Client) DeleteIrQweb

func (c *Client) DeleteIrQweb(id int64) error

DeleteIrQweb deletes an existing ir.qweb record.

func (*Client) DeleteIrQwebField

func (c *Client) DeleteIrQwebField(id int64) error

DeleteIrQwebField deletes an existing ir.qweb.field record.

func (*Client) DeleteIrQwebFieldBarcode

func (c *Client) DeleteIrQwebFieldBarcode(id int64) error

DeleteIrQwebFieldBarcode deletes an existing ir.qweb.field.barcode record.

func (*Client) DeleteIrQwebFieldBarcodes

func (c *Client) DeleteIrQwebFieldBarcodes(ids []int64) error

DeleteIrQwebFieldBarcodes deletes existing ir.qweb.field.barcode records.

func (*Client) DeleteIrQwebFieldContact

func (c *Client) DeleteIrQwebFieldContact(id int64) error

DeleteIrQwebFieldContact deletes an existing ir.qweb.field.contact record.

func (*Client) DeleteIrQwebFieldContacts

func (c *Client) DeleteIrQwebFieldContacts(ids []int64) error

DeleteIrQwebFieldContacts deletes existing ir.qweb.field.contact records.

func (*Client) DeleteIrQwebFieldDate

func (c *Client) DeleteIrQwebFieldDate(id int64) error

DeleteIrQwebFieldDate deletes an existing ir.qweb.field.date record.

func (*Client) DeleteIrQwebFieldDates

func (c *Client) DeleteIrQwebFieldDates(ids []int64) error

DeleteIrQwebFieldDates deletes existing ir.qweb.field.date records.

func (*Client) DeleteIrQwebFieldDatetime

func (c *Client) DeleteIrQwebFieldDatetime(id int64) error

DeleteIrQwebFieldDatetime deletes an existing ir.qweb.field.datetime record.

func (*Client) DeleteIrQwebFieldDatetimes

func (c *Client) DeleteIrQwebFieldDatetimes(ids []int64) error

DeleteIrQwebFieldDatetimes deletes existing ir.qweb.field.datetime records.

func (*Client) DeleteIrQwebFieldDuration

func (c *Client) DeleteIrQwebFieldDuration(id int64) error

DeleteIrQwebFieldDuration deletes an existing ir.qweb.field.duration record.

func (*Client) DeleteIrQwebFieldDurations

func (c *Client) DeleteIrQwebFieldDurations(ids []int64) error

DeleteIrQwebFieldDurations deletes existing ir.qweb.field.duration records.

func (*Client) DeleteIrQwebFieldFloat

func (c *Client) DeleteIrQwebFieldFloat(id int64) error

DeleteIrQwebFieldFloat deletes an existing ir.qweb.field.float record.

func (*Client) DeleteIrQwebFieldFloatTime

func (c *Client) DeleteIrQwebFieldFloatTime(id int64) error

DeleteIrQwebFieldFloatTime deletes an existing ir.qweb.field.float_time record.

func (*Client) DeleteIrQwebFieldFloatTimes

func (c *Client) DeleteIrQwebFieldFloatTimes(ids []int64) error

DeleteIrQwebFieldFloatTimes deletes existing ir.qweb.field.float_time records.

func (*Client) DeleteIrQwebFieldFloats

func (c *Client) DeleteIrQwebFieldFloats(ids []int64) error

DeleteIrQwebFieldFloats deletes existing ir.qweb.field.float records.

func (*Client) DeleteIrQwebFieldHtml

func (c *Client) DeleteIrQwebFieldHtml(id int64) error

DeleteIrQwebFieldHtml deletes an existing ir.qweb.field.html record.

func (*Client) DeleteIrQwebFieldHtmls

func (c *Client) DeleteIrQwebFieldHtmls(ids []int64) error

DeleteIrQwebFieldHtmls deletes existing ir.qweb.field.html records.

func (*Client) DeleteIrQwebFieldImage

func (c *Client) DeleteIrQwebFieldImage(id int64) error

DeleteIrQwebFieldImage deletes an existing ir.qweb.field.image record.

func (*Client) DeleteIrQwebFieldImages

func (c *Client) DeleteIrQwebFieldImages(ids []int64) error

DeleteIrQwebFieldImages deletes existing ir.qweb.field.image records.

func (*Client) DeleteIrQwebFieldInteger

func (c *Client) DeleteIrQwebFieldInteger(id int64) error

DeleteIrQwebFieldInteger deletes an existing ir.qweb.field.integer record.

func (*Client) DeleteIrQwebFieldIntegers

func (c *Client) DeleteIrQwebFieldIntegers(ids []int64) error

DeleteIrQwebFieldIntegers deletes existing ir.qweb.field.integer records.

func (*Client) DeleteIrQwebFieldMany2Many

func (c *Client) DeleteIrQwebFieldMany2Many(id int64) error

DeleteIrQwebFieldMany2Many deletes an existing ir.qweb.field.many2many record.

func (*Client) DeleteIrQwebFieldMany2Manys

func (c *Client) DeleteIrQwebFieldMany2Manys(ids []int64) error

DeleteIrQwebFieldMany2Manys deletes existing ir.qweb.field.many2many records.

func (*Client) DeleteIrQwebFieldMany2One

func (c *Client) DeleteIrQwebFieldMany2One(id int64) error

DeleteIrQwebFieldMany2One deletes an existing ir.qweb.field.many2one record.

func (*Client) DeleteIrQwebFieldMany2Ones

func (c *Client) DeleteIrQwebFieldMany2Ones(ids []int64) error

DeleteIrQwebFieldMany2Ones deletes existing ir.qweb.field.many2one records.

func (*Client) DeleteIrQwebFieldMonetary

func (c *Client) DeleteIrQwebFieldMonetary(id int64) error

DeleteIrQwebFieldMonetary deletes an existing ir.qweb.field.monetary record.

func (*Client) DeleteIrQwebFieldMonetarys

func (c *Client) DeleteIrQwebFieldMonetarys(ids []int64) error

DeleteIrQwebFieldMonetarys deletes existing ir.qweb.field.monetary records.

func (*Client) DeleteIrQwebFieldQweb

func (c *Client) DeleteIrQwebFieldQweb(id int64) error

DeleteIrQwebFieldQweb deletes an existing ir.qweb.field.qweb record.

func (*Client) DeleteIrQwebFieldQwebs

func (c *Client) DeleteIrQwebFieldQwebs(ids []int64) error

DeleteIrQwebFieldQwebs deletes existing ir.qweb.field.qweb records.

func (*Client) DeleteIrQwebFieldRelative

func (c *Client) DeleteIrQwebFieldRelative(id int64) error

DeleteIrQwebFieldRelative deletes an existing ir.qweb.field.relative record.

func (*Client) DeleteIrQwebFieldRelatives

func (c *Client) DeleteIrQwebFieldRelatives(ids []int64) error

DeleteIrQwebFieldRelatives deletes existing ir.qweb.field.relative records.

func (*Client) DeleteIrQwebFieldSelection

func (c *Client) DeleteIrQwebFieldSelection(id int64) error

DeleteIrQwebFieldSelection deletes an existing ir.qweb.field.selection record.

func (*Client) DeleteIrQwebFieldSelections

func (c *Client) DeleteIrQwebFieldSelections(ids []int64) error

DeleteIrQwebFieldSelections deletes existing ir.qweb.field.selection records.

func (*Client) DeleteIrQwebFieldText

func (c *Client) DeleteIrQwebFieldText(id int64) error

DeleteIrQwebFieldText deletes an existing ir.qweb.field.text record.

func (*Client) DeleteIrQwebFieldTexts

func (c *Client) DeleteIrQwebFieldTexts(ids []int64) error

DeleteIrQwebFieldTexts deletes existing ir.qweb.field.text records.

func (*Client) DeleteIrQwebFields

func (c *Client) DeleteIrQwebFields(ids []int64) error

DeleteIrQwebFields deletes existing ir.qweb.field records.

func (*Client) DeleteIrQwebs

func (c *Client) DeleteIrQwebs(ids []int64) error

DeleteIrQwebs deletes existing ir.qweb records.

func (*Client) DeleteIrRule

func (c *Client) DeleteIrRule(id int64) error

DeleteIrRule deletes an existing ir.rule record.

func (*Client) DeleteIrRules

func (c *Client) DeleteIrRules(ids []int64) error

DeleteIrRules deletes existing ir.rule records.

func (*Client) DeleteIrSequence

func (c *Client) DeleteIrSequence(id int64) error

DeleteIrSequence deletes an existing ir.sequence record.

func (*Client) DeleteIrSequenceDateRange

func (c *Client) DeleteIrSequenceDateRange(id int64) error

DeleteIrSequenceDateRange deletes an existing ir.sequence.date_range record.

func (*Client) DeleteIrSequenceDateRanges

func (c *Client) DeleteIrSequenceDateRanges(ids []int64) error

DeleteIrSequenceDateRanges deletes existing ir.sequence.date_range records.

func (*Client) DeleteIrSequences

func (c *Client) DeleteIrSequences(ids []int64) error

DeleteIrSequences deletes existing ir.sequence records.

func (*Client) DeleteIrServerObjectLines

func (c *Client) DeleteIrServerObjectLines(id int64) error

DeleteIrServerObjectLines deletes an existing ir.server.object.lines record.

func (*Client) DeleteIrServerObjectLiness

func (c *Client) DeleteIrServerObjectLiness(ids []int64) error

DeleteIrServerObjectLiness deletes existing ir.server.object.lines records.

func (*Client) DeleteIrTranslation

func (c *Client) DeleteIrTranslation(id int64) error

DeleteIrTranslation deletes an existing ir.translation record.

func (*Client) DeleteIrTranslations

func (c *Client) DeleteIrTranslations(ids []int64) error

DeleteIrTranslations deletes existing ir.translation records.

func (*Client) DeleteIrUiMenu

func (c *Client) DeleteIrUiMenu(id int64) error

DeleteIrUiMenu deletes an existing ir.ui.menu record.

func (*Client) DeleteIrUiMenus

func (c *Client) DeleteIrUiMenus(ids []int64) error

DeleteIrUiMenus deletes existing ir.ui.menu records.

func (*Client) DeleteIrUiView

func (c *Client) DeleteIrUiView(id int64) error

DeleteIrUiView deletes an existing ir.ui.view record.

func (*Client) DeleteIrUiViewCustom

func (c *Client) DeleteIrUiViewCustom(id int64) error

DeleteIrUiViewCustom deletes an existing ir.ui.view.custom record.

func (*Client) DeleteIrUiViewCustoms

func (c *Client) DeleteIrUiViewCustoms(ids []int64) error

DeleteIrUiViewCustoms deletes existing ir.ui.view.custom records.

func (*Client) DeleteIrUiViews

func (c *Client) DeleteIrUiViews(ids []int64) error

DeleteIrUiViews deletes existing ir.ui.view records.

func (*Client) DeleteLinkTracker

func (c *Client) DeleteLinkTracker(id int64) error

DeleteLinkTracker deletes an existing link.tracker record.

func (*Client) DeleteLinkTrackerClick

func (c *Client) DeleteLinkTrackerClick(id int64) error

DeleteLinkTrackerClick deletes an existing link.tracker.click record.

func (*Client) DeleteLinkTrackerClicks

func (c *Client) DeleteLinkTrackerClicks(ids []int64) error

DeleteLinkTrackerClicks deletes existing link.tracker.click records.

func (*Client) DeleteLinkTrackerCode

func (c *Client) DeleteLinkTrackerCode(id int64) error

DeleteLinkTrackerCode deletes an existing link.tracker.code record.

func (*Client) DeleteLinkTrackerCodes

func (c *Client) DeleteLinkTrackerCodes(ids []int64) error

DeleteLinkTrackerCodes deletes existing link.tracker.code records.

func (*Client) DeleteLinkTrackers

func (c *Client) DeleteLinkTrackers(ids []int64) error

DeleteLinkTrackers deletes existing link.tracker records.

func (*Client) DeleteMailActivity

func (c *Client) DeleteMailActivity(id int64) error

DeleteMailActivity deletes an existing mail.activity record.

func (*Client) DeleteMailActivityMixin

func (c *Client) DeleteMailActivityMixin(id int64) error

DeleteMailActivityMixin deletes an existing mail.activity.mixin record.

func (*Client) DeleteMailActivityMixins

func (c *Client) DeleteMailActivityMixins(ids []int64) error

DeleteMailActivityMixins deletes existing mail.activity.mixin records.

func (*Client) DeleteMailActivityType

func (c *Client) DeleteMailActivityType(id int64) error

DeleteMailActivityType deletes an existing mail.activity.type record.

func (*Client) DeleteMailActivityTypes

func (c *Client) DeleteMailActivityTypes(ids []int64) error

DeleteMailActivityTypes deletes existing mail.activity.type records.

func (*Client) DeleteMailActivitys

func (c *Client) DeleteMailActivitys(ids []int64) error

DeleteMailActivitys deletes existing mail.activity records.

func (*Client) DeleteMailAddressMixin

func (c *Client) DeleteMailAddressMixin(id int64) error

DeleteMailAddressMixin deletes an existing mail.address.mixin record.

func (*Client) DeleteMailAddressMixins

func (c *Client) DeleteMailAddressMixins(ids []int64) error

DeleteMailAddressMixins deletes existing mail.address.mixin records.

func (*Client) DeleteMailAlias

func (c *Client) DeleteMailAlias(id int64) error

DeleteMailAlias deletes an existing mail.alias record.

func (*Client) DeleteMailAliasMixin

func (c *Client) DeleteMailAliasMixin(id int64) error

DeleteMailAliasMixin deletes an existing mail.alias.mixin record.

func (*Client) DeleteMailAliasMixins

func (c *Client) DeleteMailAliasMixins(ids []int64) error

DeleteMailAliasMixins deletes existing mail.alias.mixin records.

func (*Client) DeleteMailAliass

func (c *Client) DeleteMailAliass(ids []int64) error

DeleteMailAliass deletes existing mail.alias records.

func (*Client) DeleteMailBlacklist

func (c *Client) DeleteMailBlacklist(id int64) error

DeleteMailBlacklist deletes an existing mail.blacklist record.

func (*Client) DeleteMailBlacklists

func (c *Client) DeleteMailBlacklists(ids []int64) error

DeleteMailBlacklists deletes existing mail.blacklist records.

func (*Client) DeleteMailBot

func (c *Client) DeleteMailBot(id int64) error

DeleteMailBot deletes an existing mail.bot record.

func (*Client) DeleteMailBots

func (c *Client) DeleteMailBots(ids []int64) error

DeleteMailBots deletes existing mail.bot records.

func (*Client) DeleteMailChannel

func (c *Client) DeleteMailChannel(id int64) error

DeleteMailChannel deletes an existing mail.channel record.

func (*Client) DeleteMailChannelPartner

func (c *Client) DeleteMailChannelPartner(id int64) error

DeleteMailChannelPartner deletes an existing mail.channel.partner record.

func (*Client) DeleteMailChannelPartners

func (c *Client) DeleteMailChannelPartners(ids []int64) error

DeleteMailChannelPartners deletes existing mail.channel.partner records.

func (*Client) DeleteMailChannels

func (c *Client) DeleteMailChannels(ids []int64) error

DeleteMailChannels deletes existing mail.channel records.

func (*Client) DeleteMailComposeMessage

func (c *Client) DeleteMailComposeMessage(id int64) error

DeleteMailComposeMessage deletes an existing mail.compose.message record.

func (*Client) DeleteMailComposeMessages

func (c *Client) DeleteMailComposeMessages(ids []int64) error

DeleteMailComposeMessages deletes existing mail.compose.message records.

func (*Client) DeleteMailFollowers

func (c *Client) DeleteMailFollowers(id int64) error

DeleteMailFollowers deletes an existing mail.followers record.

func (*Client) DeleteMailFollowerss

func (c *Client) DeleteMailFollowerss(ids []int64) error

DeleteMailFollowerss deletes existing mail.followers records.

func (*Client) DeleteMailMail

func (c *Client) DeleteMailMail(id int64) error

DeleteMailMail deletes an existing mail.mail record.

func (*Client) DeleteMailMails

func (c *Client) DeleteMailMails(ids []int64) error

DeleteMailMails deletes existing mail.mail records.

func (*Client) DeleteMailMessage

func (c *Client) DeleteMailMessage(id int64) error

DeleteMailMessage deletes an existing mail.message record.

func (*Client) DeleteMailMessageSubtype

func (c *Client) DeleteMailMessageSubtype(id int64) error

DeleteMailMessageSubtype deletes an existing mail.message.subtype record.

func (*Client) DeleteMailMessageSubtypes

func (c *Client) DeleteMailMessageSubtypes(ids []int64) error

DeleteMailMessageSubtypes deletes existing mail.message.subtype records.

func (*Client) DeleteMailMessages

func (c *Client) DeleteMailMessages(ids []int64) error

DeleteMailMessages deletes existing mail.message records.

func (*Client) DeleteMailModeration

func (c *Client) DeleteMailModeration(id int64) error

DeleteMailModeration deletes an existing mail.moderation record.

func (*Client) DeleteMailModerations

func (c *Client) DeleteMailModerations(ids []int64) error

DeleteMailModerations deletes existing mail.moderation records.

func (*Client) DeleteMailNotification

func (c *Client) DeleteMailNotification(id int64) error

DeleteMailNotification deletes an existing mail.notification record.

func (*Client) DeleteMailNotifications

func (c *Client) DeleteMailNotifications(ids []int64) error

DeleteMailNotifications deletes existing mail.notification records.

func (*Client) DeleteMailResendCancel

func (c *Client) DeleteMailResendCancel(id int64) error

DeleteMailResendCancel deletes an existing mail.resend.cancel record.

func (*Client) DeleteMailResendCancels

func (c *Client) DeleteMailResendCancels(ids []int64) error

DeleteMailResendCancels deletes existing mail.resend.cancel records.

func (*Client) DeleteMailResendMessage

func (c *Client) DeleteMailResendMessage(id int64) error

DeleteMailResendMessage deletes an existing mail.resend.message record.

func (*Client) DeleteMailResendMessages

func (c *Client) DeleteMailResendMessages(ids []int64) error

DeleteMailResendMessages deletes existing mail.resend.message records.

func (*Client) DeleteMailResendPartner

func (c *Client) DeleteMailResendPartner(id int64) error

DeleteMailResendPartner deletes an existing mail.resend.partner record.

func (*Client) DeleteMailResendPartners

func (c *Client) DeleteMailResendPartners(ids []int64) error

DeleteMailResendPartners deletes existing mail.resend.partner records.

func (*Client) DeleteMailShortcode

func (c *Client) DeleteMailShortcode(id int64) error

DeleteMailShortcode deletes an existing mail.shortcode record.

func (*Client) DeleteMailShortcodes

func (c *Client) DeleteMailShortcodes(ids []int64) error

DeleteMailShortcodes deletes existing mail.shortcode records.

func (*Client) DeleteMailTemplate

func (c *Client) DeleteMailTemplate(id int64) error

DeleteMailTemplate deletes an existing mail.template record.

func (*Client) DeleteMailTemplates

func (c *Client) DeleteMailTemplates(ids []int64) error

DeleteMailTemplates deletes existing mail.template records.

func (*Client) DeleteMailThread

func (c *Client) DeleteMailThread(id int64) error

DeleteMailThread deletes an existing mail.thread record.

func (*Client) DeleteMailThreadBlacklist

func (c *Client) DeleteMailThreadBlacklist(id int64) error

DeleteMailThreadBlacklist deletes an existing mail.thread.blacklist record.

func (*Client) DeleteMailThreadBlacklists

func (c *Client) DeleteMailThreadBlacklists(ids []int64) error

DeleteMailThreadBlacklists deletes existing mail.thread.blacklist records.

func (*Client) DeleteMailThreadCc

func (c *Client) DeleteMailThreadCc(id int64) error

DeleteMailThreadCc deletes an existing mail.thread.cc record.

func (*Client) DeleteMailThreadCcs

func (c *Client) DeleteMailThreadCcs(ids []int64) error

DeleteMailThreadCcs deletes existing mail.thread.cc records.

func (*Client) DeleteMailThreadPhone

func (c *Client) DeleteMailThreadPhone(id int64) error

DeleteMailThreadPhone deletes an existing mail.thread.phone record.

func (*Client) DeleteMailThreadPhones

func (c *Client) DeleteMailThreadPhones(ids []int64) error

DeleteMailThreadPhones deletes existing mail.thread.phone records.

func (*Client) DeleteMailThreads

func (c *Client) DeleteMailThreads(ids []int64) error

DeleteMailThreads deletes existing mail.thread records.

func (*Client) DeleteMailTrackingValue

func (c *Client) DeleteMailTrackingValue(id int64) error

DeleteMailTrackingValue deletes an existing mail.tracking.value record.

func (*Client) DeleteMailTrackingValues

func (c *Client) DeleteMailTrackingValues(ids []int64) error

DeleteMailTrackingValues deletes existing mail.tracking.value records.

func (*Client) DeleteMailWizardInvite

func (c *Client) DeleteMailWizardInvite(id int64) error

DeleteMailWizardInvite deletes an existing mail.wizard.invite record.

func (*Client) DeleteMailWizardInvites

func (c *Client) DeleteMailWizardInvites(ids []int64) error

DeleteMailWizardInvites deletes existing mail.wizard.invite records.

func (*Client) DeleteMailingContact

func (c *Client) DeleteMailingContact(id int64) error

DeleteMailingContact deletes an existing mailing.contact record.

func (*Client) DeleteMailingContactSubscription

func (c *Client) DeleteMailingContactSubscription(id int64) error

DeleteMailingContactSubscription deletes an existing mailing.contact.subscription record.

func (*Client) DeleteMailingContactSubscriptions

func (c *Client) DeleteMailingContactSubscriptions(ids []int64) error

DeleteMailingContactSubscriptions deletes existing mailing.contact.subscription records.

func (*Client) DeleteMailingContacts

func (c *Client) DeleteMailingContacts(ids []int64) error

DeleteMailingContacts deletes existing mailing.contact records.

func (*Client) DeleteMailingList

func (c *Client) DeleteMailingList(id int64) error

DeleteMailingList deletes an existing mailing.list record.

func (*Client) DeleteMailingListMerge

func (c *Client) DeleteMailingListMerge(id int64) error

DeleteMailingListMerge deletes an existing mailing.list.merge record.

func (*Client) DeleteMailingListMerges

func (c *Client) DeleteMailingListMerges(ids []int64) error

DeleteMailingListMerges deletes existing mailing.list.merge records.

func (*Client) DeleteMailingLists

func (c *Client) DeleteMailingLists(ids []int64) error

DeleteMailingLists deletes existing mailing.list records.

func (*Client) DeleteMailingMailing

func (c *Client) DeleteMailingMailing(id int64) error

DeleteMailingMailing deletes an existing mailing.mailing record.

func (*Client) DeleteMailingMailingScheduleDate

func (c *Client) DeleteMailingMailingScheduleDate(id int64) error

DeleteMailingMailingScheduleDate deletes an existing mailing.mailing.schedule.date record.

func (*Client) DeleteMailingMailingScheduleDates

func (c *Client) DeleteMailingMailingScheduleDates(ids []int64) error

DeleteMailingMailingScheduleDates deletes existing mailing.mailing.schedule.date records.

func (*Client) DeleteMailingMailings

func (c *Client) DeleteMailingMailings(ids []int64) error

DeleteMailingMailings deletes existing mailing.mailing records.

func (*Client) DeleteMailingTrace

func (c *Client) DeleteMailingTrace(id int64) error

DeleteMailingTrace deletes an existing mailing.trace record.

func (*Client) DeleteMailingTraceReport

func (c *Client) DeleteMailingTraceReport(id int64) error

DeleteMailingTraceReport deletes an existing mailing.trace.report record.

func (*Client) DeleteMailingTraceReports

func (c *Client) DeleteMailingTraceReports(ids []int64) error

DeleteMailingTraceReports deletes existing mailing.trace.report records.

func (*Client) DeleteMailingTraces

func (c *Client) DeleteMailingTraces(ids []int64) error

DeleteMailingTraces deletes existing mailing.trace records.

func (*Client) DeleteNoteNote

func (c *Client) DeleteNoteNote(id int64) error

DeleteNoteNote deletes an existing note.note record.

func (*Client) DeleteNoteNotes

func (c *Client) DeleteNoteNotes(ids []int64) error

DeleteNoteNotes deletes existing note.note records.

func (*Client) DeleteNoteStage

func (c *Client) DeleteNoteStage(id int64) error

DeleteNoteStage deletes an existing note.stage record.

func (*Client) DeleteNoteStages

func (c *Client) DeleteNoteStages(ids []int64) error

DeleteNoteStages deletes existing note.stage records.

func (*Client) DeleteNoteTag

func (c *Client) DeleteNoteTag(id int64) error

DeleteNoteTag deletes an existing note.tag record.

func (*Client) DeleteNoteTags

func (c *Client) DeleteNoteTags(ids []int64) error

DeleteNoteTags deletes existing note.tag records.

func (*Client) DeleteOpenacademyBundle

func (c *Client) DeleteOpenacademyBundle(id int64) error

DeleteOpenacademyBundle deletes an existing openacademy.bundle record.

func (*Client) DeleteOpenacademyBundles

func (c *Client) DeleteOpenacademyBundles(ids []int64) error

DeleteOpenacademyBundles deletes existing openacademy.bundle records.

func (*Client) DeleteOpenacademyCourse

func (c *Client) DeleteOpenacademyCourse(id int64) error

DeleteOpenacademyCourse deletes an existing openacademy.course record.

func (*Client) DeleteOpenacademyCourses

func (c *Client) DeleteOpenacademyCourses(ids []int64) error

DeleteOpenacademyCourses deletes existing openacademy.course records.

func (*Client) DeleteOpenacademySession

func (c *Client) DeleteOpenacademySession(id int64) error

DeleteOpenacademySession deletes an existing openacademy.session record.

func (*Client) DeleteOpenacademySessions

func (c *Client) DeleteOpenacademySessions(ids []int64) error

DeleteOpenacademySessions deletes existing openacademy.session records.

func (*Client) DeleteOpenacademyWizard

func (c *Client) DeleteOpenacademyWizard(id int64) error

DeleteOpenacademyWizard deletes an existing openacademy.wizard record.

func (*Client) DeleteOpenacademyWizards

func (c *Client) DeleteOpenacademyWizards(ids []int64) error

DeleteOpenacademyWizards deletes existing openacademy.wizard records.

func (*Client) DeletePaymentAcquirer

func (c *Client) DeletePaymentAcquirer(id int64) error

DeletePaymentAcquirer deletes an existing payment.acquirer record.

func (*Client) DeletePaymentAcquirerOnboardingWizard

func (c *Client) DeletePaymentAcquirerOnboardingWizard(id int64) error

DeletePaymentAcquirerOnboardingWizard deletes an existing payment.acquirer.onboarding.wizard record.

func (*Client) DeletePaymentAcquirerOnboardingWizards

func (c *Client) DeletePaymentAcquirerOnboardingWizards(ids []int64) error

DeletePaymentAcquirerOnboardingWizards deletes existing payment.acquirer.onboarding.wizard records.

func (*Client) DeletePaymentAcquirers

func (c *Client) DeletePaymentAcquirers(ids []int64) error

DeletePaymentAcquirers deletes existing payment.acquirer records.

func (*Client) DeletePaymentIcon

func (c *Client) DeletePaymentIcon(id int64) error

DeletePaymentIcon deletes an existing payment.icon record.

func (*Client) DeletePaymentIcons

func (c *Client) DeletePaymentIcons(ids []int64) error

DeletePaymentIcons deletes existing payment.icon records.

func (*Client) DeletePaymentLinkWizard

func (c *Client) DeletePaymentLinkWizard(id int64) error

DeletePaymentLinkWizard deletes an existing payment.link.wizard record.

func (*Client) DeletePaymentLinkWizards

func (c *Client) DeletePaymentLinkWizards(ids []int64) error

DeletePaymentLinkWizards deletes existing payment.link.wizard records.

func (*Client) DeletePaymentToken

func (c *Client) DeletePaymentToken(id int64) error

DeletePaymentToken deletes an existing payment.token record.

func (*Client) DeletePaymentTokens

func (c *Client) DeletePaymentTokens(ids []int64) error

DeletePaymentTokens deletes existing payment.token records.

func (*Client) DeletePaymentTransaction

func (c *Client) DeletePaymentTransaction(id int64) error

DeletePaymentTransaction deletes an existing payment.transaction record.

func (*Client) DeletePaymentTransactions

func (c *Client) DeletePaymentTransactions(ids []int64) error

DeletePaymentTransactions deletes existing payment.transaction records.

func (*Client) DeletePhoneBlacklist

func (c *Client) DeletePhoneBlacklist(id int64) error

DeletePhoneBlacklist deletes an existing phone.blacklist record.

func (*Client) DeletePhoneBlacklists

func (c *Client) DeletePhoneBlacklists(ids []int64) error

DeletePhoneBlacklists deletes existing phone.blacklist records.

func (*Client) DeletePhoneValidationMixin

func (c *Client) DeletePhoneValidationMixin(id int64) error

DeletePhoneValidationMixin deletes an existing phone.validation.mixin record.

func (*Client) DeletePhoneValidationMixins

func (c *Client) DeletePhoneValidationMixins(ids []int64) error

DeletePhoneValidationMixins deletes existing phone.validation.mixin records.

func (*Client) DeletePortalMixin

func (c *Client) DeletePortalMixin(id int64) error

DeletePortalMixin deletes an existing portal.mixin record.

func (*Client) DeletePortalMixins

func (c *Client) DeletePortalMixins(ids []int64) error

DeletePortalMixins deletes existing portal.mixin records.

func (*Client) DeletePortalShare

func (c *Client) DeletePortalShare(id int64) error

DeletePortalShare deletes an existing portal.share record.

func (*Client) DeletePortalShares

func (c *Client) DeletePortalShares(ids []int64) error

DeletePortalShares deletes existing portal.share records.

func (*Client) DeletePortalWizard

func (c *Client) DeletePortalWizard(id int64) error

DeletePortalWizard deletes an existing portal.wizard record.

func (*Client) DeletePortalWizardUser

func (c *Client) DeletePortalWizardUser(id int64) error

DeletePortalWizardUser deletes an existing portal.wizard.user record.

func (*Client) DeletePortalWizardUsers

func (c *Client) DeletePortalWizardUsers(ids []int64) error

DeletePortalWizardUsers deletes existing portal.wizard.user records.

func (*Client) DeletePortalWizards

func (c *Client) DeletePortalWizards(ids []int64) error

DeletePortalWizards deletes existing portal.wizard records.

func (*Client) DeleteProductAttribute

func (c *Client) DeleteProductAttribute(id int64) error

DeleteProductAttribute deletes an existing product.attribute record.

func (*Client) DeleteProductAttributeCustomValue

func (c *Client) DeleteProductAttributeCustomValue(id int64) error

DeleteProductAttributeCustomValue deletes an existing product.attribute.custom.value record.

func (*Client) DeleteProductAttributeCustomValues

func (c *Client) DeleteProductAttributeCustomValues(ids []int64) error

DeleteProductAttributeCustomValues deletes existing product.attribute.custom.value records.

func (*Client) DeleteProductAttributeValue

func (c *Client) DeleteProductAttributeValue(id int64) error

DeleteProductAttributeValue deletes an existing product.attribute.value record.

func (*Client) DeleteProductAttributeValues

func (c *Client) DeleteProductAttributeValues(ids []int64) error

DeleteProductAttributeValues deletes existing product.attribute.value records.

func (*Client) DeleteProductAttributes

func (c *Client) DeleteProductAttributes(ids []int64) error

DeleteProductAttributes deletes existing product.attribute records.

func (*Client) DeleteProductCategory

func (c *Client) DeleteProductCategory(id int64) error

DeleteProductCategory deletes an existing product.category record.

func (*Client) DeleteProductCategorys

func (c *Client) DeleteProductCategorys(ids []int64) error

DeleteProductCategorys deletes existing product.category records.

func (*Client) DeleteProductPackaging

func (c *Client) DeleteProductPackaging(id int64) error

DeleteProductPackaging deletes an existing product.packaging record.

func (*Client) DeleteProductPackagings

func (c *Client) DeleteProductPackagings(ids []int64) error

DeleteProductPackagings deletes existing product.packaging records.

func (*Client) DeleteProductPriceList

func (c *Client) DeleteProductPriceList(id int64) error

DeleteProductPriceList deletes an existing product.price_list record.

func (*Client) DeleteProductPriceLists

func (c *Client) DeleteProductPriceLists(ids []int64) error

DeleteProductPriceLists deletes existing product.price_list records.

func (*Client) DeleteProductPricelist

func (c *Client) DeleteProductPricelist(id int64) error

DeleteProductPricelist deletes an existing product.pricelist record.

func (*Client) DeleteProductPricelistItem

func (c *Client) DeleteProductPricelistItem(id int64) error

DeleteProductPricelistItem deletes an existing product.pricelist.item record.

func (*Client) DeleteProductPricelistItems

func (c *Client) DeleteProductPricelistItems(ids []int64) error

DeleteProductPricelistItems deletes existing product.pricelist.item records.

func (*Client) DeleteProductPricelists

func (c *Client) DeleteProductPricelists(ids []int64) error

DeleteProductPricelists deletes existing product.pricelist records.

func (*Client) DeleteProductProduct

func (c *Client) DeleteProductProduct(id int64) error

DeleteProductProduct deletes an existing product.product record.

func (*Client) DeleteProductProducts

func (c *Client) DeleteProductProducts(ids []int64) error

DeleteProductProducts deletes existing product.product records.

func (*Client) DeleteProductSupplierinfo

func (c *Client) DeleteProductSupplierinfo(id int64) error

DeleteProductSupplierinfo deletes an existing product.supplierinfo record.

func (*Client) DeleteProductSupplierinfos

func (c *Client) DeleteProductSupplierinfos(ids []int64) error

DeleteProductSupplierinfos deletes existing product.supplierinfo records.

func (*Client) DeleteProductTemplate

func (c *Client) DeleteProductTemplate(id int64) error

DeleteProductTemplate deletes an existing product.template record.

func (*Client) DeleteProductTemplateAttributeExclusion

func (c *Client) DeleteProductTemplateAttributeExclusion(id int64) error

DeleteProductTemplateAttributeExclusion deletes an existing product.template.attribute.exclusion record.

func (*Client) DeleteProductTemplateAttributeExclusions

func (c *Client) DeleteProductTemplateAttributeExclusions(ids []int64) error

DeleteProductTemplateAttributeExclusions deletes existing product.template.attribute.exclusion records.

func (*Client) DeleteProductTemplateAttributeLine

func (c *Client) DeleteProductTemplateAttributeLine(id int64) error

DeleteProductTemplateAttributeLine deletes an existing product.template.attribute.line record.

func (*Client) DeleteProductTemplateAttributeLines

func (c *Client) DeleteProductTemplateAttributeLines(ids []int64) error

DeleteProductTemplateAttributeLines deletes existing product.template.attribute.line records.

func (*Client) DeleteProductTemplateAttributeValue

func (c *Client) DeleteProductTemplateAttributeValue(id int64) error

DeleteProductTemplateAttributeValue deletes an existing product.template.attribute.value record.

func (*Client) DeleteProductTemplateAttributeValues

func (c *Client) DeleteProductTemplateAttributeValues(ids []int64) error

DeleteProductTemplateAttributeValues deletes existing product.template.attribute.value records.

func (*Client) DeleteProductTemplates

func (c *Client) DeleteProductTemplates(ids []int64) error

DeleteProductTemplates deletes existing product.template records.

func (*Client) DeleteProjectProject

func (c *Client) DeleteProjectProject(id int64) error

DeleteProjectProject deletes an existing project.project record.

func (*Client) DeleteProjectProjects

func (c *Client) DeleteProjectProjects(ids []int64) error

DeleteProjectProjects deletes existing project.project records.

func (*Client) DeleteProjectTags

func (c *Client) DeleteProjectTags(id int64) error

DeleteProjectTags deletes an existing project.tags record.

func (*Client) DeleteProjectTagss

func (c *Client) DeleteProjectTagss(ids []int64) error

DeleteProjectTagss deletes existing project.tags records.

func (*Client) DeleteProjectTask

func (c *Client) DeleteProjectTask(id int64) error

DeleteProjectTask deletes an existing project.task record.

func (*Client) DeleteProjectTaskType

func (c *Client) DeleteProjectTaskType(id int64) error

DeleteProjectTaskType deletes an existing project.task.type record.

func (*Client) DeleteProjectTaskTypes

func (c *Client) DeleteProjectTaskTypes(ids []int64) error

DeleteProjectTaskTypes deletes existing project.task.type records.

func (*Client) DeleteProjectTasks

func (c *Client) DeleteProjectTasks(ids []int64) error

DeleteProjectTasks deletes existing project.task records.

func (*Client) DeletePublisherWarrantyContract

func (c *Client) DeletePublisherWarrantyContract(id int64) error

DeletePublisherWarrantyContract deletes an existing publisher_warranty.contract record.

func (*Client) DeletePublisherWarrantyContracts

func (c *Client) DeletePublisherWarrantyContracts(ids []int64) error

DeletePublisherWarrantyContracts deletes existing publisher_warranty.contract records.

func (*Client) DeleteRatingMixin

func (c *Client) DeleteRatingMixin(id int64) error

DeleteRatingMixin deletes an existing rating.mixin record.

func (*Client) DeleteRatingMixins

func (c *Client) DeleteRatingMixins(ids []int64) error

DeleteRatingMixins deletes existing rating.mixin records.

func (*Client) DeleteRatingParentMixin

func (c *Client) DeleteRatingParentMixin(id int64) error

DeleteRatingParentMixin deletes an existing rating.parent.mixin record.

func (*Client) DeleteRatingParentMixins

func (c *Client) DeleteRatingParentMixins(ids []int64) error

DeleteRatingParentMixins deletes existing rating.parent.mixin records.

func (*Client) DeleteRatingRating

func (c *Client) DeleteRatingRating(id int64) error

DeleteRatingRating deletes an existing rating.rating record.

func (*Client) DeleteRatingRatings

func (c *Client) DeleteRatingRatings(ids []int64) error

DeleteRatingRatings deletes existing rating.rating records.

func (*Client) DeleteRegistrationEditor

func (c *Client) DeleteRegistrationEditor(id int64) error

DeleteRegistrationEditor deletes an existing registration.editor record.

func (*Client) DeleteRegistrationEditorLine

func (c *Client) DeleteRegistrationEditorLine(id int64) error

DeleteRegistrationEditorLine deletes an existing registration.editor.line record.

func (*Client) DeleteRegistrationEditorLines

func (c *Client) DeleteRegistrationEditorLines(ids []int64) error

DeleteRegistrationEditorLines deletes existing registration.editor.line records.

func (*Client) DeleteRegistrationEditors

func (c *Client) DeleteRegistrationEditors(ids []int64) error

DeleteRegistrationEditors deletes existing registration.editor records.

func (*Client) DeleteReportAccountReportAgedpartnerbalance

func (c *Client) DeleteReportAccountReportAgedpartnerbalance(id int64) error

DeleteReportAccountReportAgedpartnerbalance deletes an existing report.account.report_agedpartnerbalance record.

func (*Client) DeleteReportAccountReportAgedpartnerbalances

func (c *Client) DeleteReportAccountReportAgedpartnerbalances(ids []int64) error

DeleteReportAccountReportAgedpartnerbalances deletes existing report.account.report_agedpartnerbalance records.

func (*Client) DeleteReportAccountReportHashIntegrity

func (c *Client) DeleteReportAccountReportHashIntegrity(id int64) error

DeleteReportAccountReportHashIntegrity deletes an existing report.account.report_hash_integrity record.

func (*Client) DeleteReportAccountReportHashIntegritys

func (c *Client) DeleteReportAccountReportHashIntegritys(ids []int64) error

DeleteReportAccountReportHashIntegritys deletes existing report.account.report_hash_integrity records.

func (*Client) DeleteReportAccountReportInvoiceWithPayments

func (c *Client) DeleteReportAccountReportInvoiceWithPayments(id int64) error

DeleteReportAccountReportInvoiceWithPayments deletes an existing report.account.report_invoice_with_payments record.

func (*Client) DeleteReportAccountReportInvoiceWithPaymentss

func (c *Client) DeleteReportAccountReportInvoiceWithPaymentss(ids []int64) error

DeleteReportAccountReportInvoiceWithPaymentss deletes existing report.account.report_invoice_with_payments records.

func (*Client) DeleteReportAccountReportJournal

func (c *Client) DeleteReportAccountReportJournal(id int64) error

DeleteReportAccountReportJournal deletes an existing report.account.report_journal record.

func (*Client) DeleteReportAccountReportJournals

func (c *Client) DeleteReportAccountReportJournals(ids []int64) error

DeleteReportAccountReportJournals deletes existing report.account.report_journal records.

func (*Client) DeleteReportAllChannelsSales

func (c *Client) DeleteReportAllChannelsSales(id int64) error

DeleteReportAllChannelsSales deletes an existing report.all.channels.sales record.

func (*Client) DeleteReportAllChannelsSaless

func (c *Client) DeleteReportAllChannelsSaless(ids []int64) error

DeleteReportAllChannelsSaless deletes existing report.all.channels.sales records.

func (*Client) DeleteReportBaseReportIrmodulereference

func (c *Client) DeleteReportBaseReportIrmodulereference(id int64) error

DeleteReportBaseReportIrmodulereference deletes an existing report.base.report_irmodulereference record.

func (*Client) DeleteReportBaseReportIrmodulereferences

func (c *Client) DeleteReportBaseReportIrmodulereferences(ids []int64) error

DeleteReportBaseReportIrmodulereferences deletes existing report.base.report_irmodulereference records.

func (*Client) DeleteReportHrHolidaysReportHolidayssummary

func (c *Client) DeleteReportHrHolidaysReportHolidayssummary(id int64) error

DeleteReportHrHolidaysReportHolidayssummary deletes an existing report.hr_holidays.report_holidayssummary record.

func (*Client) DeleteReportHrHolidaysReportHolidayssummarys

func (c *Client) DeleteReportHrHolidaysReportHolidayssummarys(ids []int64) error

DeleteReportHrHolidaysReportHolidayssummarys deletes existing report.hr_holidays.report_holidayssummary records.

func (*Client) DeleteReportLayout

func (c *Client) DeleteReportLayout(id int64) error

DeleteReportLayout deletes an existing report.layout record.

func (*Client) DeleteReportLayouts

func (c *Client) DeleteReportLayouts(ids []int64) error

DeleteReportLayouts deletes existing report.layout records.

func (*Client) DeleteReportPaperformat

func (c *Client) DeleteReportPaperformat(id int64) error

DeleteReportPaperformat deletes an existing report.paperformat record.

func (*Client) DeleteReportPaperformats

func (c *Client) DeleteReportPaperformats(ids []int64) error

DeleteReportPaperformats deletes existing report.paperformat records.

func (*Client) DeleteReportProductReportPricelist

func (c *Client) DeleteReportProductReportPricelist(id int64) error

DeleteReportProductReportPricelist deletes an existing report.product.report_pricelist record.

func (*Client) DeleteReportProductReportPricelists

func (c *Client) DeleteReportProductReportPricelists(ids []int64) error

DeleteReportProductReportPricelists deletes existing report.product.report_pricelist records.

func (*Client) DeleteReportProjectTaskUser

func (c *Client) DeleteReportProjectTaskUser(id int64) error

DeleteReportProjectTaskUser deletes an existing report.project.task.user record.

func (*Client) DeleteReportProjectTaskUsers

func (c *Client) DeleteReportProjectTaskUsers(ids []int64) error

DeleteReportProjectTaskUsers deletes existing report.project.task.user records.

func (*Client) DeleteReportSaleReportSaleproforma

func (c *Client) DeleteReportSaleReportSaleproforma(id int64) error

DeleteReportSaleReportSaleproforma deletes an existing report.sale.report_saleproforma record.

func (*Client) DeleteReportSaleReportSaleproformas

func (c *Client) DeleteReportSaleReportSaleproformas(ids []int64) error

DeleteReportSaleReportSaleproformas deletes existing report.sale.report_saleproforma records.

func (*Client) DeleteResBank

func (c *Client) DeleteResBank(id int64) error

DeleteResBank deletes an existing res.bank record.

func (*Client) DeleteResBanks

func (c *Client) DeleteResBanks(ids []int64) error

DeleteResBanks deletes existing res.bank records.

func (*Client) DeleteResCompany

func (c *Client) DeleteResCompany(id int64) error

DeleteResCompany deletes an existing res.company record.

func (*Client) DeleteResCompanys

func (c *Client) DeleteResCompanys(ids []int64) error

DeleteResCompanys deletes existing res.company records.

func (*Client) DeleteResConfig

func (c *Client) DeleteResConfig(id int64) error

DeleteResConfig deletes an existing res.config record.

func (*Client) DeleteResConfigInstaller

func (c *Client) DeleteResConfigInstaller(id int64) error

DeleteResConfigInstaller deletes an existing res.config.installer record.

func (*Client) DeleteResConfigInstallers

func (c *Client) DeleteResConfigInstallers(ids []int64) error

DeleteResConfigInstallers deletes existing res.config.installer records.

func (*Client) DeleteResConfigSettings

func (c *Client) DeleteResConfigSettings(id int64) error

DeleteResConfigSettings deletes an existing res.config.settings record.

func (*Client) DeleteResConfigSettingss

func (c *Client) DeleteResConfigSettingss(ids []int64) error

DeleteResConfigSettingss deletes existing res.config.settings records.

func (*Client) DeleteResConfigs

func (c *Client) DeleteResConfigs(ids []int64) error

DeleteResConfigs deletes existing res.config records.

func (*Client) DeleteResCountry

func (c *Client) DeleteResCountry(id int64) error

DeleteResCountry deletes an existing res.country record.

func (*Client) DeleteResCountryGroup

func (c *Client) DeleteResCountryGroup(id int64) error

DeleteResCountryGroup deletes an existing res.country.group record.

func (*Client) DeleteResCountryGroups

func (c *Client) DeleteResCountryGroups(ids []int64) error

DeleteResCountryGroups deletes existing res.country.group records.

func (*Client) DeleteResCountryState

func (c *Client) DeleteResCountryState(id int64) error

DeleteResCountryState deletes an existing res.country.state record.

func (*Client) DeleteResCountryStates

func (c *Client) DeleteResCountryStates(ids []int64) error

DeleteResCountryStates deletes existing res.country.state records.

func (*Client) DeleteResCountrys

func (c *Client) DeleteResCountrys(ids []int64) error

DeleteResCountrys deletes existing res.country records.

func (*Client) DeleteResCurrency

func (c *Client) DeleteResCurrency(id int64) error

DeleteResCurrency deletes an existing res.currency record.

func (*Client) DeleteResCurrencyRate

func (c *Client) DeleteResCurrencyRate(id int64) error

DeleteResCurrencyRate deletes an existing res.currency.rate record.

func (*Client) DeleteResCurrencyRates

func (c *Client) DeleteResCurrencyRates(ids []int64) error

DeleteResCurrencyRates deletes existing res.currency.rate records.

func (*Client) DeleteResCurrencys

func (c *Client) DeleteResCurrencys(ids []int64) error

DeleteResCurrencys deletes existing res.currency records.

func (*Client) DeleteResGroups

func (c *Client) DeleteResGroups(id int64) error

DeleteResGroups deletes an existing res.groups record.

func (*Client) DeleteResGroupss

func (c *Client) DeleteResGroupss(ids []int64) error

DeleteResGroupss deletes existing res.groups records.

func (*Client) DeleteResLang

func (c *Client) DeleteResLang(id int64) error

DeleteResLang deletes an existing res.lang record.

func (*Client) DeleteResLangs

func (c *Client) DeleteResLangs(ids []int64) error

DeleteResLangs deletes existing res.lang records.

func (*Client) DeleteResPartner

func (c *Client) DeleteResPartner(id int64) error

DeleteResPartner deletes an existing res.partner record.

func (*Client) DeleteResPartnerAutocompleteSync

func (c *Client) DeleteResPartnerAutocompleteSync(id int64) error

DeleteResPartnerAutocompleteSync deletes an existing res.partner.autocomplete.sync record.

func (*Client) DeleteResPartnerAutocompleteSyncs

func (c *Client) DeleteResPartnerAutocompleteSyncs(ids []int64) error

DeleteResPartnerAutocompleteSyncs deletes existing res.partner.autocomplete.sync records.

func (*Client) DeleteResPartnerBank

func (c *Client) DeleteResPartnerBank(id int64) error

DeleteResPartnerBank deletes an existing res.partner.bank record.

func (*Client) DeleteResPartnerBanks

func (c *Client) DeleteResPartnerBanks(ids []int64) error

DeleteResPartnerBanks deletes existing res.partner.bank records.

func (*Client) DeleteResPartnerCategory

func (c *Client) DeleteResPartnerCategory(id int64) error

DeleteResPartnerCategory deletes an existing res.partner.category record.

func (*Client) DeleteResPartnerCategorys

func (c *Client) DeleteResPartnerCategorys(ids []int64) error

DeleteResPartnerCategorys deletes existing res.partner.category records.

func (*Client) DeleteResPartnerIndustry

func (c *Client) DeleteResPartnerIndustry(id int64) error

DeleteResPartnerIndustry deletes an existing res.partner.industry record.

func (*Client) DeleteResPartnerIndustrys

func (c *Client) DeleteResPartnerIndustrys(ids []int64) error

DeleteResPartnerIndustrys deletes existing res.partner.industry records.

func (*Client) DeleteResPartnerTitle

func (c *Client) DeleteResPartnerTitle(id int64) error

DeleteResPartnerTitle deletes an existing res.partner.title record.

func (*Client) DeleteResPartnerTitles

func (c *Client) DeleteResPartnerTitles(ids []int64) error

DeleteResPartnerTitles deletes existing res.partner.title records.

func (*Client) DeleteResPartners

func (c *Client) DeleteResPartners(ids []int64) error

DeleteResPartners deletes existing res.partner records.

func (*Client) DeleteResUsers

func (c *Client) DeleteResUsers(id int64) error

DeleteResUsers deletes an existing res.users record.

func (*Client) DeleteResUsersLog

func (c *Client) DeleteResUsersLog(id int64) error

DeleteResUsersLog deletes an existing res.users.log record.

func (*Client) DeleteResUsersLogs

func (c *Client) DeleteResUsersLogs(ids []int64) error

DeleteResUsersLogs deletes existing res.users.log records.

func (*Client) DeleteResUserss

func (c *Client) DeleteResUserss(ids []int64) error

DeleteResUserss deletes existing res.users records.

func (*Client) DeleteResetViewArchWizard

func (c *Client) DeleteResetViewArchWizard(id int64) error

DeleteResetViewArchWizard deletes an existing reset.view.arch.wizard record.

func (*Client) DeleteResetViewArchWizards

func (c *Client) DeleteResetViewArchWizards(ids []int64) error

DeleteResetViewArchWizards deletes existing reset.view.arch.wizard records.

func (*Client) DeleteResourceCalendar

func (c *Client) DeleteResourceCalendar(id int64) error

DeleteResourceCalendar deletes an existing resource.calendar record.

func (*Client) DeleteResourceCalendarAttendance

func (c *Client) DeleteResourceCalendarAttendance(id int64) error

DeleteResourceCalendarAttendance deletes an existing resource.calendar.attendance record.

func (*Client) DeleteResourceCalendarAttendances

func (c *Client) DeleteResourceCalendarAttendances(ids []int64) error

DeleteResourceCalendarAttendances deletes existing resource.calendar.attendance records.

func (*Client) DeleteResourceCalendarLeaves

func (c *Client) DeleteResourceCalendarLeaves(id int64) error

DeleteResourceCalendarLeaves deletes an existing resource.calendar.leaves record.

func (*Client) DeleteResourceCalendarLeavess

func (c *Client) DeleteResourceCalendarLeavess(ids []int64) error

DeleteResourceCalendarLeavess deletes existing resource.calendar.leaves records.

func (*Client) DeleteResourceCalendars

func (c *Client) DeleteResourceCalendars(ids []int64) error

DeleteResourceCalendars deletes existing resource.calendar records.

func (*Client) DeleteResourceMixin

func (c *Client) DeleteResourceMixin(id int64) error

DeleteResourceMixin deletes an existing resource.mixin record.

func (*Client) DeleteResourceMixins

func (c *Client) DeleteResourceMixins(ids []int64) error

DeleteResourceMixins deletes existing resource.mixin records.

func (*Client) DeleteResourceResource

func (c *Client) DeleteResourceResource(id int64) error

DeleteResourceResource deletes an existing resource.resource record.

func (*Client) DeleteResourceResources

func (c *Client) DeleteResourceResources(ids []int64) error

DeleteResourceResources deletes existing resource.resource records.

func (*Client) DeleteSaleAdvancePaymentInv

func (c *Client) DeleteSaleAdvancePaymentInv(id int64) error

DeleteSaleAdvancePaymentInv deletes an existing sale.advance.payment.inv record.

func (*Client) DeleteSaleAdvancePaymentInvs

func (c *Client) DeleteSaleAdvancePaymentInvs(ids []int64) error

DeleteSaleAdvancePaymentInvs deletes existing sale.advance.payment.inv records.

func (*Client) DeleteSaleOrder

func (c *Client) DeleteSaleOrder(id int64) error

DeleteSaleOrder deletes an existing sale.order record.

func (*Client) DeleteSaleOrderLine

func (c *Client) DeleteSaleOrderLine(id int64) error

DeleteSaleOrderLine deletes an existing sale.order.line record.

func (*Client) DeleteSaleOrderLines

func (c *Client) DeleteSaleOrderLines(ids []int64) error

DeleteSaleOrderLines deletes existing sale.order.line records.

func (*Client) DeleteSaleOrderOption

func (c *Client) DeleteSaleOrderOption(id int64) error

DeleteSaleOrderOption deletes an existing sale.order.option record.

func (*Client) DeleteSaleOrderOptions

func (c *Client) DeleteSaleOrderOptions(ids []int64) error

DeleteSaleOrderOptions deletes existing sale.order.option records.

func (*Client) DeleteSaleOrderTemplate

func (c *Client) DeleteSaleOrderTemplate(id int64) error

DeleteSaleOrderTemplate deletes an existing sale.order.template record.

func (*Client) DeleteSaleOrderTemplateLine

func (c *Client) DeleteSaleOrderTemplateLine(id int64) error

DeleteSaleOrderTemplateLine deletes an existing sale.order.template.line record.

func (*Client) DeleteSaleOrderTemplateLines

func (c *Client) DeleteSaleOrderTemplateLines(ids []int64) error

DeleteSaleOrderTemplateLines deletes existing sale.order.template.line records.

func (*Client) DeleteSaleOrderTemplateOption

func (c *Client) DeleteSaleOrderTemplateOption(id int64) error

DeleteSaleOrderTemplateOption deletes an existing sale.order.template.option record.

func (*Client) DeleteSaleOrderTemplateOptions

func (c *Client) DeleteSaleOrderTemplateOptions(ids []int64) error

DeleteSaleOrderTemplateOptions deletes existing sale.order.template.option records.

func (*Client) DeleteSaleOrderTemplates

func (c *Client) DeleteSaleOrderTemplates(ids []int64) error

DeleteSaleOrderTemplates deletes existing sale.order.template records.

func (*Client) DeleteSaleOrders

func (c *Client) DeleteSaleOrders(ids []int64) error

DeleteSaleOrders deletes existing sale.order records.

func (*Client) DeleteSalePaymentAcquirerOnboardingWizard

func (c *Client) DeleteSalePaymentAcquirerOnboardingWizard(id int64) error

DeleteSalePaymentAcquirerOnboardingWizard deletes an existing sale.payment.acquirer.onboarding.wizard record.

func (*Client) DeleteSalePaymentAcquirerOnboardingWizards

func (c *Client) DeleteSalePaymentAcquirerOnboardingWizards(ids []int64) error

DeleteSalePaymentAcquirerOnboardingWizards deletes existing sale.payment.acquirer.onboarding.wizard records.

func (*Client) DeleteSaleReport

func (c *Client) DeleteSaleReport(id int64) error

DeleteSaleReport deletes an existing sale.report record.

func (*Client) DeleteSaleReports

func (c *Client) DeleteSaleReports(ids []int64) error

DeleteSaleReports deletes existing sale.report records.

func (*Client) DeleteSlideAnswer

func (c *Client) DeleteSlideAnswer(id int64) error

DeleteSlideAnswer deletes an existing slide.answer record.

func (*Client) DeleteSlideAnswerUsers

func (c *Client) DeleteSlideAnswerUsers(id int64) error

DeleteSlideAnswerUsers deletes an existing slide.answer_users record.

func (*Client) DeleteSlideAnswerUserss

func (c *Client) DeleteSlideAnswerUserss(ids []int64) error

DeleteSlideAnswerUserss deletes existing slide.answer_users records.

func (*Client) DeleteSlideAnswers

func (c *Client) DeleteSlideAnswers(ids []int64) error

DeleteSlideAnswers deletes existing slide.answer records.

func (*Client) DeleteSlideChannel

func (c *Client) DeleteSlideChannel(id int64) error

DeleteSlideChannel deletes an existing slide.channel record.

func (*Client) DeleteSlideChannelInvite

func (c *Client) DeleteSlideChannelInvite(id int64) error

DeleteSlideChannelInvite deletes an existing slide.channel.invite record.

func (*Client) DeleteSlideChannelInvites

func (c *Client) DeleteSlideChannelInvites(ids []int64) error

DeleteSlideChannelInvites deletes existing slide.channel.invite records.

func (*Client) DeleteSlideChannelPartner

func (c *Client) DeleteSlideChannelPartner(id int64) error

DeleteSlideChannelPartner deletes an existing slide.channel.partner record.

func (*Client) DeleteSlideChannelPartners

func (c *Client) DeleteSlideChannelPartners(ids []int64) error

DeleteSlideChannelPartners deletes existing slide.channel.partner records.

func (*Client) DeleteSlideChannelPrices

func (c *Client) DeleteSlideChannelPrices(id int64) error

DeleteSlideChannelPrices deletes an existing slide.channel_prices record.

func (*Client) DeleteSlideChannelPricess

func (c *Client) DeleteSlideChannelPricess(ids []int64) error

DeleteSlideChannelPricess deletes existing slide.channel_prices records.

func (*Client) DeleteSlideChannelSchedules

func (c *Client) DeleteSlideChannelSchedules(id int64) error

DeleteSlideChannelSchedules deletes an existing slide.channel_schedules record.

func (*Client) DeleteSlideChannelScheduless

func (c *Client) DeleteSlideChannelScheduless(ids []int64) error

DeleteSlideChannelScheduless deletes existing slide.channel_schedules records.

func (*Client) DeleteSlideChannelSfcPrices

func (c *Client) DeleteSlideChannelSfcPrices(id int64) error

DeleteSlideChannelSfcPrices deletes an existing slide.channel_sfc_prices record.

func (*Client) DeleteSlideChannelSfcPricess

func (c *Client) DeleteSlideChannelSfcPricess(ids []int64) error

DeleteSlideChannelSfcPricess deletes existing slide.channel_sfc_prices records.

func (*Client) DeleteSlideChannelTag

func (c *Client) DeleteSlideChannelTag(id int64) error

DeleteSlideChannelTag deletes an existing slide.channel.tag record.

func (*Client) DeleteSlideChannelTagGroup

func (c *Client) DeleteSlideChannelTagGroup(id int64) error

DeleteSlideChannelTagGroup deletes an existing slide.channel.tag.group record.

func (*Client) DeleteSlideChannelTagGroups

func (c *Client) DeleteSlideChannelTagGroups(ids []int64) error

DeleteSlideChannelTagGroups deletes existing slide.channel.tag.group records.

func (*Client) DeleteSlideChannelTags

func (c *Client) DeleteSlideChannelTags(ids []int64) error

DeleteSlideChannelTags deletes existing slide.channel.tag records.

func (*Client) DeleteSlideChannels

func (c *Client) DeleteSlideChannels(ids []int64) error

DeleteSlideChannels deletes existing slide.channel records.

func (*Client) DeleteSlideCourseType

func (c *Client) DeleteSlideCourseType(id int64) error

DeleteSlideCourseType deletes an existing slide.course_type record.

func (*Client) DeleteSlideCourseTypes

func (c *Client) DeleteSlideCourseTypes(ids []int64) error

DeleteSlideCourseTypes deletes existing slide.course_type records.

func (*Client) DeleteSlideEmbed

func (c *Client) DeleteSlideEmbed(id int64) error

DeleteSlideEmbed deletes an existing slide.embed record.

func (*Client) DeleteSlideEmbeds

func (c *Client) DeleteSlideEmbeds(ids []int64) error

DeleteSlideEmbeds deletes existing slide.embed records.

func (*Client) DeleteSlideQuestion

func (c *Client) DeleteSlideQuestion(id int64) error

DeleteSlideQuestion deletes an existing slide.question record.

func (*Client) DeleteSlideQuestions

func (c *Client) DeleteSlideQuestions(ids []int64) error

DeleteSlideQuestions deletes existing slide.question records.

func (*Client) DeleteSlideSlide

func (c *Client) DeleteSlideSlide(id int64) error

DeleteSlideSlide deletes an existing slide.slide record.

func (*Client) DeleteSlideSlideAttachment

func (c *Client) DeleteSlideSlideAttachment(id int64) error

DeleteSlideSlideAttachment deletes an existing slide.slide_attachment record.

func (*Client) DeleteSlideSlideAttachments

func (c *Client) DeleteSlideSlideAttachments(ids []int64) error

DeleteSlideSlideAttachments deletes existing slide.slide_attachment records.

func (c *Client) DeleteSlideSlideLink(id int64) error

DeleteSlideSlideLink deletes an existing slide.slide.link record.

func (c *Client) DeleteSlideSlideLinks(ids []int64) error

DeleteSlideSlideLinks deletes existing slide.slide.link records.

func (*Client) DeleteSlideSlidePartner

func (c *Client) DeleteSlideSlidePartner(id int64) error

DeleteSlideSlidePartner deletes an existing slide.slide.partner record.

func (*Client) DeleteSlideSlidePartners

func (c *Client) DeleteSlideSlidePartners(ids []int64) error

DeleteSlideSlidePartners deletes existing slide.slide.partner records.

func (*Client) DeleteSlideSlideSchedule

func (c *Client) DeleteSlideSlideSchedule(id int64) error

DeleteSlideSlideSchedule deletes an existing slide.slide_schedule record.

func (*Client) DeleteSlideSlideSchedules

func (c *Client) DeleteSlideSlideSchedules(ids []int64) error

DeleteSlideSlideSchedules deletes existing slide.slide_schedule records.

func (*Client) DeleteSlideSlides

func (c *Client) DeleteSlideSlides(ids []int64) error

DeleteSlideSlides deletes existing slide.slide records.

func (*Client) DeleteSlideTag

func (c *Client) DeleteSlideTag(id int64) error

DeleteSlideTag deletes an existing slide.tag record.

func (*Client) DeleteSlideTags

func (c *Client) DeleteSlideTags(ids []int64) error

DeleteSlideTags deletes existing slide.tag records.

func (*Client) DeleteSmsApi

func (c *Client) DeleteSmsApi(id int64) error

DeleteSmsApi deletes an existing sms.api record.

func (*Client) DeleteSmsApis

func (c *Client) DeleteSmsApis(ids []int64) error

DeleteSmsApis deletes existing sms.api records.

func (*Client) DeleteSmsCancel

func (c *Client) DeleteSmsCancel(id int64) error

DeleteSmsCancel deletes an existing sms.cancel record.

func (*Client) DeleteSmsCancels

func (c *Client) DeleteSmsCancels(ids []int64) error

DeleteSmsCancels deletes existing sms.cancel records.

func (*Client) DeleteSmsComposer

func (c *Client) DeleteSmsComposer(id int64) error

DeleteSmsComposer deletes an existing sms.composer record.

func (*Client) DeleteSmsComposers

func (c *Client) DeleteSmsComposers(ids []int64) error

DeleteSmsComposers deletes existing sms.composer records.

func (*Client) DeleteSmsResend

func (c *Client) DeleteSmsResend(id int64) error

DeleteSmsResend deletes an existing sms.resend record.

func (*Client) DeleteSmsResendRecipient

func (c *Client) DeleteSmsResendRecipient(id int64) error

DeleteSmsResendRecipient deletes an existing sms.resend.recipient record.

func (*Client) DeleteSmsResendRecipients

func (c *Client) DeleteSmsResendRecipients(ids []int64) error

DeleteSmsResendRecipients deletes existing sms.resend.recipient records.

func (*Client) DeleteSmsResends

func (c *Client) DeleteSmsResends(ids []int64) error

DeleteSmsResends deletes existing sms.resend records.

func (*Client) DeleteSmsSms

func (c *Client) DeleteSmsSms(id int64) error

DeleteSmsSms deletes an existing sms.sms record.

func (*Client) DeleteSmsSmss

func (c *Client) DeleteSmsSmss(ids []int64) error

DeleteSmsSmss deletes existing sms.sms records.

func (*Client) DeleteSmsTemplate

func (c *Client) DeleteSmsTemplate(id int64) error

DeleteSmsTemplate deletes an existing sms.template record.

func (*Client) DeleteSmsTemplatePreview

func (c *Client) DeleteSmsTemplatePreview(id int64) error

DeleteSmsTemplatePreview deletes an existing sms.template.preview record.

func (*Client) DeleteSmsTemplatePreviews

func (c *Client) DeleteSmsTemplatePreviews(ids []int64) error

DeleteSmsTemplatePreviews deletes existing sms.template.preview records.

func (*Client) DeleteSmsTemplates

func (c *Client) DeleteSmsTemplates(ids []int64) error

DeleteSmsTemplates deletes existing sms.template records.

func (*Client) DeleteSnailmailLetter

func (c *Client) DeleteSnailmailLetter(id int64) error

DeleteSnailmailLetter deletes an existing snailmail.letter record.

func (*Client) DeleteSnailmailLetterCancel

func (c *Client) DeleteSnailmailLetterCancel(id int64) error

DeleteSnailmailLetterCancel deletes an existing snailmail.letter.cancel record.

func (*Client) DeleteSnailmailLetterCancels

func (c *Client) DeleteSnailmailLetterCancels(ids []int64) error

DeleteSnailmailLetterCancels deletes existing snailmail.letter.cancel records.

func (*Client) DeleteSnailmailLetterFormatError

func (c *Client) DeleteSnailmailLetterFormatError(id int64) error

DeleteSnailmailLetterFormatError deletes an existing snailmail.letter.format.error record.

func (*Client) DeleteSnailmailLetterFormatErrors

func (c *Client) DeleteSnailmailLetterFormatErrors(ids []int64) error

DeleteSnailmailLetterFormatErrors deletes existing snailmail.letter.format.error records.

func (*Client) DeleteSnailmailLetterMissingRequiredFields

func (c *Client) DeleteSnailmailLetterMissingRequiredFields(id int64) error

DeleteSnailmailLetterMissingRequiredFields deletes an existing snailmail.letter.missing.required.fields record.

func (*Client) DeleteSnailmailLetterMissingRequiredFieldss

func (c *Client) DeleteSnailmailLetterMissingRequiredFieldss(ids []int64) error

DeleteSnailmailLetterMissingRequiredFieldss deletes existing snailmail.letter.missing.required.fields records.

func (*Client) DeleteSnailmailLetters

func (c *Client) DeleteSnailmailLetters(ids []int64) error

DeleteSnailmailLetters deletes existing snailmail.letter records.

func (*Client) DeleteSurveyInvite

func (c *Client) DeleteSurveyInvite(id int64) error

DeleteSurveyInvite deletes an existing survey.invite record.

func (*Client) DeleteSurveyInvites

func (c *Client) DeleteSurveyInvites(ids []int64) error

DeleteSurveyInvites deletes existing survey.invite records.

func (*Client) DeleteSurveyLabel

func (c *Client) DeleteSurveyLabel(id int64) error

DeleteSurveyLabel deletes an existing survey.label record.

func (*Client) DeleteSurveyLabels

func (c *Client) DeleteSurveyLabels(ids []int64) error

DeleteSurveyLabels deletes existing survey.label records.

func (*Client) DeleteSurveyQuestion

func (c *Client) DeleteSurveyQuestion(id int64) error

DeleteSurveyQuestion deletes an existing survey.question record.

func (*Client) DeleteSurveyQuestions

func (c *Client) DeleteSurveyQuestions(ids []int64) error

DeleteSurveyQuestions deletes existing survey.question records.

func (*Client) DeleteSurveySurvey

func (c *Client) DeleteSurveySurvey(id int64) error

DeleteSurveySurvey deletes an existing survey.survey record.

func (*Client) DeleteSurveySurveys

func (c *Client) DeleteSurveySurveys(ids []int64) error

DeleteSurveySurveys deletes existing survey.survey records.

func (*Client) DeleteSurveyUserInput

func (c *Client) DeleteSurveyUserInput(id int64) error

DeleteSurveyUserInput deletes an existing survey.user_input record.

func (*Client) DeleteSurveyUserInputLine

func (c *Client) DeleteSurveyUserInputLine(id int64) error

DeleteSurveyUserInputLine deletes an existing survey.user_input_line record.

func (*Client) DeleteSurveyUserInputLines

func (c *Client) DeleteSurveyUserInputLines(ids []int64) error

DeleteSurveyUserInputLines deletes existing survey.user_input_line records.

func (*Client) DeleteSurveyUserInputs

func (c *Client) DeleteSurveyUserInputs(ids []int64) error

DeleteSurveyUserInputs deletes existing survey.user_input records.

func (*Client) DeleteTaxAdjustmentsWizard

func (c *Client) DeleteTaxAdjustmentsWizard(id int64) error

DeleteTaxAdjustmentsWizard deletes an existing tax.adjustments.wizard record.

func (*Client) DeleteTaxAdjustmentsWizards

func (c *Client) DeleteTaxAdjustmentsWizards(ids []int64) error

DeleteTaxAdjustmentsWizards deletes existing tax.adjustments.wizard records.

func (*Client) DeleteThemeIrAttachment

func (c *Client) DeleteThemeIrAttachment(id int64) error

DeleteThemeIrAttachment deletes an existing theme.ir.attachment record.

func (*Client) DeleteThemeIrAttachments

func (c *Client) DeleteThemeIrAttachments(ids []int64) error

DeleteThemeIrAttachments deletes existing theme.ir.attachment records.

func (*Client) DeleteThemeIrUiView

func (c *Client) DeleteThemeIrUiView(id int64) error

DeleteThemeIrUiView deletes an existing theme.ir.ui.view record.

func (*Client) DeleteThemeIrUiViews

func (c *Client) DeleteThemeIrUiViews(ids []int64) error

DeleteThemeIrUiViews deletes existing theme.ir.ui.view records.

func (*Client) DeleteThemeUtils

func (c *Client) DeleteThemeUtils(id int64) error

DeleteThemeUtils deletes an existing theme.utils record.

func (*Client) DeleteThemeUtilss

func (c *Client) DeleteThemeUtilss(ids []int64) error

DeleteThemeUtilss deletes existing theme.utils records.

func (*Client) DeleteThemeWebsiteMenu

func (c *Client) DeleteThemeWebsiteMenu(id int64) error

DeleteThemeWebsiteMenu deletes an existing theme.website.menu record.

func (*Client) DeleteThemeWebsiteMenus

func (c *Client) DeleteThemeWebsiteMenus(ids []int64) error

DeleteThemeWebsiteMenus deletes existing theme.website.menu records.

func (*Client) DeleteThemeWebsitePage

func (c *Client) DeleteThemeWebsitePage(id int64) error

DeleteThemeWebsitePage deletes an existing theme.website.page record.

func (*Client) DeleteThemeWebsitePages

func (c *Client) DeleteThemeWebsitePages(ids []int64) error

DeleteThemeWebsitePages deletes existing theme.website.page records.

func (*Client) DeleteUomCategory

func (c *Client) DeleteUomCategory(id int64) error

DeleteUomCategory deletes an existing uom.category record.

func (*Client) DeleteUomCategorys

func (c *Client) DeleteUomCategorys(ids []int64) error

DeleteUomCategorys deletes existing uom.category records.

func (*Client) DeleteUomUom

func (c *Client) DeleteUomUom(id int64) error

DeleteUomUom deletes an existing uom.uom record.

func (*Client) DeleteUomUoms

func (c *Client) DeleteUomUoms(ids []int64) error

DeleteUomUoms deletes existing uom.uom records.

func (*Client) DeleteUserPayment

func (c *Client) DeleteUserPayment(id int64) error

DeleteUserPayment deletes an existing user.payment record.

func (*Client) DeleteUserPayments

func (c *Client) DeleteUserPayments(ids []int64) error

DeleteUserPayments deletes existing user.payment records.

func (*Client) DeleteUserProfile

func (c *Client) DeleteUserProfile(id int64) error

DeleteUserProfile deletes an existing user.profile record.

func (*Client) DeleteUserProfiles

func (c *Client) DeleteUserProfiles(ids []int64) error

DeleteUserProfiles deletes existing user.profile records.

func (*Client) DeleteUtmCampaign

func (c *Client) DeleteUtmCampaign(id int64) error

DeleteUtmCampaign deletes an existing utm.campaign record.

func (*Client) DeleteUtmCampaigns

func (c *Client) DeleteUtmCampaigns(ids []int64) error

DeleteUtmCampaigns deletes existing utm.campaign records.

func (*Client) DeleteUtmMedium

func (c *Client) DeleteUtmMedium(id int64) error

DeleteUtmMedium deletes an existing utm.medium record.

func (*Client) DeleteUtmMediums

func (c *Client) DeleteUtmMediums(ids []int64) error

DeleteUtmMediums deletes existing utm.medium records.

func (*Client) DeleteUtmMixin

func (c *Client) DeleteUtmMixin(id int64) error

DeleteUtmMixin deletes an existing utm.mixin record.

func (*Client) DeleteUtmMixins

func (c *Client) DeleteUtmMixins(ids []int64) error

DeleteUtmMixins deletes existing utm.mixin records.

func (*Client) DeleteUtmSource

func (c *Client) DeleteUtmSource(id int64) error

DeleteUtmSource deletes an existing utm.source record.

func (*Client) DeleteUtmSources

func (c *Client) DeleteUtmSources(ids []int64) error

DeleteUtmSources deletes existing utm.source records.

func (*Client) DeleteUtmStage

func (c *Client) DeleteUtmStage(id int64) error

DeleteUtmStage deletes an existing utm.stage record.

func (*Client) DeleteUtmStages

func (c *Client) DeleteUtmStages(ids []int64) error

DeleteUtmStages deletes existing utm.stage records.

func (*Client) DeleteUtmTag

func (c *Client) DeleteUtmTag(id int64) error

DeleteUtmTag deletes an existing utm.tag record.

func (*Client) DeleteUtmTags

func (c *Client) DeleteUtmTags(ids []int64) error

DeleteUtmTags deletes existing utm.tag records.

func (*Client) DeleteValidateAccountMove

func (c *Client) DeleteValidateAccountMove(id int64) error

DeleteValidateAccountMove deletes an existing validate.account.move record.

func (*Client) DeleteValidateAccountMoves

func (c *Client) DeleteValidateAccountMoves(ids []int64) error

DeleteValidateAccountMoves deletes existing validate.account.move records.

func (*Client) DeleteWebEditorAssets

func (c *Client) DeleteWebEditorAssets(id int64) error

DeleteWebEditorAssets deletes an existing web_editor.assets record.

func (*Client) DeleteWebEditorAssetss

func (c *Client) DeleteWebEditorAssetss(ids []int64) error

DeleteWebEditorAssetss deletes existing web_editor.assets records.

func (*Client) DeleteWebEditorConverterTestSub

func (c *Client) DeleteWebEditorConverterTestSub(id int64) error

DeleteWebEditorConverterTestSub deletes an existing web_editor.converter.test.sub record.

func (*Client) DeleteWebEditorConverterTestSubs

func (c *Client) DeleteWebEditorConverterTestSubs(ids []int64) error

DeleteWebEditorConverterTestSubs deletes existing web_editor.converter.test.sub records.

func (*Client) DeleteWebTourTour

func (c *Client) DeleteWebTourTour(id int64) error

DeleteWebTourTour deletes an existing web_tour.tour record.

func (*Client) DeleteWebTourTours

func (c *Client) DeleteWebTourTours(ids []int64) error

DeleteWebTourTours deletes existing web_tour.tour records.

func (*Client) DeleteWebsite

func (c *Client) DeleteWebsite(id int64) error

DeleteWebsite deletes an existing website record.

func (*Client) DeleteWebsiteMassMailingPopup

func (c *Client) DeleteWebsiteMassMailingPopup(id int64) error

DeleteWebsiteMassMailingPopup deletes an existing website.mass_mailing.popup record.

func (*Client) DeleteWebsiteMassMailingPopups

func (c *Client) DeleteWebsiteMassMailingPopups(ids []int64) error

DeleteWebsiteMassMailingPopups deletes existing website.mass_mailing.popup records.

func (*Client) DeleteWebsiteMenu

func (c *Client) DeleteWebsiteMenu(id int64) error

DeleteWebsiteMenu deletes an existing website.menu record.

func (*Client) DeleteWebsiteMenus

func (c *Client) DeleteWebsiteMenus(ids []int64) error

DeleteWebsiteMenus deletes existing website.menu records.

func (*Client) DeleteWebsiteMultiMixin

func (c *Client) DeleteWebsiteMultiMixin(id int64) error

DeleteWebsiteMultiMixin deletes an existing website.multi.mixin record.

func (*Client) DeleteWebsiteMultiMixins

func (c *Client) DeleteWebsiteMultiMixins(ids []int64) error

DeleteWebsiteMultiMixins deletes existing website.multi.mixin records.

func (*Client) DeleteWebsitePage

func (c *Client) DeleteWebsitePage(id int64) error

DeleteWebsitePage deletes an existing website.page record.

func (*Client) DeleteWebsitePages

func (c *Client) DeleteWebsitePages(ids []int64) error

DeleteWebsitePages deletes existing website.page records.

func (*Client) DeleteWebsitePublishedMixin

func (c *Client) DeleteWebsitePublishedMixin(id int64) error

DeleteWebsitePublishedMixin deletes an existing website.published.mixin record.

func (*Client) DeleteWebsitePublishedMixins

func (c *Client) DeleteWebsitePublishedMixins(ids []int64) error

DeleteWebsitePublishedMixins deletes existing website.published.mixin records.

func (*Client) DeleteWebsitePublishedMultiMixin

func (c *Client) DeleteWebsitePublishedMultiMixin(id int64) error

DeleteWebsitePublishedMultiMixin deletes an existing website.published.multi.mixin record.

func (*Client) DeleteWebsitePublishedMultiMixins

func (c *Client) DeleteWebsitePublishedMultiMixins(ids []int64) error

DeleteWebsitePublishedMultiMixins deletes existing website.published.multi.mixin records.

func (*Client) DeleteWebsiteRewrite

func (c *Client) DeleteWebsiteRewrite(id int64) error

DeleteWebsiteRewrite deletes an existing website.rewrite record.

func (*Client) DeleteWebsiteRewrites

func (c *Client) DeleteWebsiteRewrites(ids []int64) error

DeleteWebsiteRewrites deletes existing website.rewrite records.

func (*Client) DeleteWebsiteRoute

func (c *Client) DeleteWebsiteRoute(id int64) error

DeleteWebsiteRoute deletes an existing website.route record.

func (*Client) DeleteWebsiteRoutes

func (c *Client) DeleteWebsiteRoutes(ids []int64) error

DeleteWebsiteRoutes deletes existing website.route records.

func (*Client) DeleteWebsiteSeoMetadata

func (c *Client) DeleteWebsiteSeoMetadata(id int64) error

DeleteWebsiteSeoMetadata deletes an existing website.seo.metadata record.

func (*Client) DeleteWebsiteSeoMetadatas

func (c *Client) DeleteWebsiteSeoMetadatas(ids []int64) error

DeleteWebsiteSeoMetadatas deletes existing website.seo.metadata records.

func (*Client) DeleteWebsiteTrack

func (c *Client) DeleteWebsiteTrack(id int64) error

DeleteWebsiteTrack deletes an existing website.track record.

func (*Client) DeleteWebsiteTracks

func (c *Client) DeleteWebsiteTracks(ids []int64) error

DeleteWebsiteTracks deletes existing website.track records.

func (*Client) DeleteWebsiteVisitor

func (c *Client) DeleteWebsiteVisitor(id int64) error

DeleteWebsiteVisitor deletes an existing website.visitor record.

func (*Client) DeleteWebsiteVisitors

func (c *Client) DeleteWebsiteVisitors(ids []int64) error

DeleteWebsiteVisitors deletes existing website.visitor records.

func (*Client) DeleteWebsites

func (c *Client) DeleteWebsites(ids []int64) error

DeleteWebsites deletes existing website records.

func (*Client) DeleteWizardIrModelMenuCreate

func (c *Client) DeleteWizardIrModelMenuCreate(id int64) error

DeleteWizardIrModelMenuCreate deletes an existing wizard.ir.model.menu.create record.

func (*Client) DeleteWizardIrModelMenuCreates

func (c *Client) DeleteWizardIrModelMenuCreates(ids []int64) error

DeleteWizardIrModelMenuCreates deletes existing wizard.ir.model.menu.create records.

func (*Client) ExecuteKw

func (c *Client) ExecuteKw(method, model string, args []interface{}, options *Options) (interface{}, error)

ExecuteKw is a RPC function. The lowest library function. It is use for all function related to "xmlrpc/2/object" endpoint.

func (*Client) FieldsGet

func (c *Client) FieldsGet(model string, options *Options) (map[string]interface{}, error)

FieldsGet inspect model fields. https://www.odoo.com/documentation/13.0/webservices/odoo.html#listing-record-fields

func (*Client) FindAccountAccount

func (c *Client) FindAccountAccount(criteria *Criteria) (*AccountAccount, error)

FindAccountAccount finds account.account record by querying it with criteria.

func (*Client) FindAccountAccountId

func (c *Client) FindAccountAccountId(criteria *Criteria, options *Options) (int64, error)

FindAccountAccountId finds record id by querying it with criteria.

func (*Client) FindAccountAccountIds

func (c *Client) FindAccountAccountIds(criteria *Criteria, options *Options) ([]int64, error)

FindAccountAccountIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindAccountAccountTag

func (c *Client) FindAccountAccountTag(criteria *Criteria) (*AccountAccountTag, error)

FindAccountAccountTag finds account.account.tag record by querying it with criteria.

func (*Client) FindAccountAccountTagId

func (c *Client) FindAccountAccountTagId(criteria *Criteria, options *Options) (int64, error)

FindAccountAccountTagId finds record id by querying it with criteria.

func (*Client) FindAccountAccountTagIds

func (c *Client) FindAccountAccountTagIds(criteria *Criteria, options *Options) ([]int64, error)

FindAccountAccountTagIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindAccountAccountTags

func (c *Client) FindAccountAccountTags(criteria *Criteria, options *Options) (*AccountAccountTags, error)

FindAccountAccountTags finds account.account.tag records by querying it and filtering it with criteria and options.

func (*Client) FindAccountAccountTemplate

func (c *Client) FindAccountAccountTemplate(criteria *Criteria) (*AccountAccountTemplate, error)

FindAccountAccountTemplate finds account.account.template record by querying it with criteria.

func (*Client) FindAccountAccountTemplateId

func (c *Client) FindAccountAccountTemplateId(criteria *Criteria, options *Options) (int64, error)

FindAccountAccountTemplateId finds record id by querying it with criteria.

func (*Client) FindAccountAccountTemplateIds

func (c *Client) FindAccountAccountTemplateIds(criteria *Criteria, options *Options) ([]int64, error)

FindAccountAccountTemplateIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindAccountAccountTemplates

func (c *Client) FindAccountAccountTemplates(criteria *Criteria, options *Options) (*AccountAccountTemplates, error)

FindAccountAccountTemplates finds account.account.template records by querying it and filtering it with criteria and options.

func (*Client) FindAccountAccountType

func (c *Client) FindAccountAccountType(criteria *Criteria) (*AccountAccountType, error)

FindAccountAccountType finds account.account.type record by querying it with criteria.

func (*Client) FindAccountAccountTypeId

func (c *Client) FindAccountAccountTypeId(criteria *Criteria, options *Options) (int64, error)

FindAccountAccountTypeId finds record id by querying it with criteria.

func (*Client) FindAccountAccountTypeIds

func (c *Client) FindAccountAccountTypeIds(criteria *Criteria, options *Options) ([]int64, error)

FindAccountAccountTypeIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindAccountAccountTypes

func (c *Client) FindAccountAccountTypes(criteria *Criteria, options *Options) (*AccountAccountTypes, error)

FindAccountAccountTypes finds account.account.type records by querying it and filtering it with criteria and options.

func (*Client) FindAccountAccounts

func (c *Client) FindAccountAccounts(criteria *Criteria, options *Options) (*AccountAccounts, error)

FindAccountAccounts finds account.account records by querying it and filtering it with criteria and options.

func (*Client) FindAccountAccrualAccountingWizard

func (c *Client) FindAccountAccrualAccountingWizard(criteria *Criteria) (*AccountAccrualAccountingWizard, error)

FindAccountAccrualAccountingWizard finds account.accrual.accounting.wizard record by querying it with criteria.

func (*Client) FindAccountAccrualAccountingWizardId

func (c *Client) FindAccountAccrualAccountingWizardId(criteria *Criteria, options *Options) (int64, error)

FindAccountAccrualAccountingWizardId finds record id by querying it with criteria.

func (*Client) FindAccountAccrualAccountingWizardIds

func (c *Client) FindAccountAccrualAccountingWizardIds(criteria *Criteria, options *Options) ([]int64, error)

FindAccountAccrualAccountingWizardIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindAccountAccrualAccountingWizards

func (c *Client) FindAccountAccrualAccountingWizards(criteria *Criteria, options *Options) (*AccountAccrualAccountingWizards, error)

FindAccountAccrualAccountingWizards finds account.accrual.accounting.wizard records by querying it and filtering it with criteria and options.

func (*Client) FindAccountAnalyticAccount

func (c *Client) FindAccountAnalyticAccount(criteria *Criteria) (*AccountAnalyticAccount, error)

FindAccountAnalyticAccount finds account.analytic.account record by querying it with criteria.

func (*Client) FindAccountAnalyticAccountId

func (c *Client) FindAccountAnalyticAccountId(criteria *Criteria, options *Options) (int64, error)

FindAccountAnalyticAccountId finds record id by querying it with criteria.

func (*Client) FindAccountAnalyticAccountIds

func (c *Client) FindAccountAnalyticAccountIds(criteria *Criteria, options *Options) ([]int64, error)

FindAccountAnalyticAccountIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindAccountAnalyticAccounts

func (c *Client) FindAccountAnalyticAccounts(criteria *Criteria, options *Options) (*AccountAnalyticAccounts, error)

FindAccountAnalyticAccounts finds account.analytic.account records by querying it and filtering it with criteria and options.

func (*Client) FindAccountAnalyticDistribution

func (c *Client) FindAccountAnalyticDistribution(criteria *Criteria) (*AccountAnalyticDistribution, error)

FindAccountAnalyticDistribution finds account.analytic.distribution record by querying it with criteria.

func (*Client) FindAccountAnalyticDistributionId

func (c *Client) FindAccountAnalyticDistributionId(criteria *Criteria, options *Options) (int64, error)

FindAccountAnalyticDistributionId finds record id by querying it with criteria.

func (*Client) FindAccountAnalyticDistributionIds

func (c *Client) FindAccountAnalyticDistributionIds(criteria *Criteria, options *Options) ([]int64, error)

FindAccountAnalyticDistributionIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindAccountAnalyticDistributions

func (c *Client) FindAccountAnalyticDistributions(criteria *Criteria, options *Options) (*AccountAnalyticDistributions, error)

FindAccountAnalyticDistributions finds account.analytic.distribution records by querying it and filtering it with criteria and options.

func (*Client) FindAccountAnalyticGroup

func (c *Client) FindAccountAnalyticGroup(criteria *Criteria) (*AccountAnalyticGroup, error)

FindAccountAnalyticGroup finds account.analytic.group record by querying it with criteria.

func (*Client) FindAccountAnalyticGroupId

func (c *Client) FindAccountAnalyticGroupId(criteria *Criteria, options *Options) (int64, error)

FindAccountAnalyticGroupId finds record id by querying it with criteria.

func (*Client) FindAccountAnalyticGroupIds

func (c *Client) FindAccountAnalyticGroupIds(criteria *Criteria, options *Options) ([]int64, error)

FindAccountAnalyticGroupIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindAccountAnalyticGroups

func (c *Client) FindAccountAnalyticGroups(criteria *Criteria, options *Options) (*AccountAnalyticGroups, error)

FindAccountAnalyticGroups finds account.analytic.group records by querying it and filtering it with criteria and options.

func (*Client) FindAccountAnalyticLine

func (c *Client) FindAccountAnalyticLine(criteria *Criteria) (*AccountAnalyticLine, error)

FindAccountAnalyticLine finds account.analytic.line record by querying it with criteria.

func (*Client) FindAccountAnalyticLineId

func (c *Client) FindAccountAnalyticLineId(criteria *Criteria, options *Options) (int64, error)

FindAccountAnalyticLineId finds record id by querying it with criteria.

func (*Client) FindAccountAnalyticLineIds

func (c *Client) FindAccountAnalyticLineIds(criteria *Criteria, options *Options) ([]int64, error)

FindAccountAnalyticLineIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindAccountAnalyticLines

func (c *Client) FindAccountAnalyticLines(criteria *Criteria, options *Options) (*AccountAnalyticLines, error)

FindAccountAnalyticLines finds account.analytic.line records by querying it and filtering it with criteria and options.

func (*Client) FindAccountAnalyticTag

func (c *Client) FindAccountAnalyticTag(criteria *Criteria) (*AccountAnalyticTag, error)

FindAccountAnalyticTag finds account.analytic.tag record by querying it with criteria.

func (*Client) FindAccountAnalyticTagId

func (c *Client) FindAccountAnalyticTagId(criteria *Criteria, options *Options) (int64, error)

FindAccountAnalyticTagId finds record id by querying it with criteria.

func (*Client) FindAccountAnalyticTagIds

func (c *Client) FindAccountAnalyticTagIds(criteria *Criteria, options *Options) ([]int64, error)

FindAccountAnalyticTagIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindAccountAnalyticTags

func (c *Client) FindAccountAnalyticTags(criteria *Criteria, options *Options) (*AccountAnalyticTags, error)

FindAccountAnalyticTags finds account.analytic.tag records by querying it and filtering it with criteria and options.

func (*Client) FindAccountBankStatement

func (c *Client) FindAccountBankStatement(criteria *Criteria) (*AccountBankStatement, error)

FindAccountBankStatement finds account.bank.statement record by querying it with criteria.

func (*Client) FindAccountBankStatementCashbox

func (c *Client) FindAccountBankStatementCashbox(criteria *Criteria) (*AccountBankStatementCashbox, error)

FindAccountBankStatementCashbox finds account.bank.statement.cashbox record by querying it with criteria.

func (*Client) FindAccountBankStatementCashboxId

func (c *Client) FindAccountBankStatementCashboxId(criteria *Criteria, options *Options) (int64, error)

FindAccountBankStatementCashboxId finds record id by querying it with criteria.

func (*Client) FindAccountBankStatementCashboxIds

func (c *Client) FindAccountBankStatementCashboxIds(criteria *Criteria, options *Options) ([]int64, error)

FindAccountBankStatementCashboxIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindAccountBankStatementCashboxs

func (c *Client) FindAccountBankStatementCashboxs(criteria *Criteria, options *Options) (*AccountBankStatementCashboxs, error)

FindAccountBankStatementCashboxs finds account.bank.statement.cashbox records by querying it and filtering it with criteria and options.

func (*Client) FindAccountBankStatementClosebalance

func (c *Client) FindAccountBankStatementClosebalance(criteria *Criteria) (*AccountBankStatementClosebalance, error)

FindAccountBankStatementClosebalance finds account.bank.statement.closebalance record by querying it with criteria.

func (*Client) FindAccountBankStatementClosebalanceId

func (c *Client) FindAccountBankStatementClosebalanceId(criteria *Criteria, options *Options) (int64, error)

FindAccountBankStatementClosebalanceId finds record id by querying it with criteria.

func (*Client) FindAccountBankStatementClosebalanceIds

func (c *Client) FindAccountBankStatementClosebalanceIds(criteria *Criteria, options *Options) ([]int64, error)

FindAccountBankStatementClosebalanceIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindAccountBankStatementClosebalances

func (c *Client) FindAccountBankStatementClosebalances(criteria *Criteria, options *Options) (*AccountBankStatementClosebalances, error)

FindAccountBankStatementClosebalances finds account.bank.statement.closebalance records by querying it and filtering it with criteria and options.

func (*Client) FindAccountBankStatementId

func (c *Client) FindAccountBankStatementId(criteria *Criteria, options *Options) (int64, error)

FindAccountBankStatementId finds record id by querying it with criteria.

func (*Client) FindAccountBankStatementIds

func (c *Client) FindAccountBankStatementIds(criteria *Criteria, options *Options) ([]int64, error)

FindAccountBankStatementIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindAccountBankStatementImport

func (c *Client) FindAccountBankStatementImport(criteria *Criteria) (*AccountBankStatementImport, error)

FindAccountBankStatementImport finds account.bank.statement.import record by querying it with criteria.

func (*Client) FindAccountBankStatementImportId

func (c *Client) FindAccountBankStatementImportId(criteria *Criteria, options *Options) (int64, error)

FindAccountBankStatementImportId finds record id by querying it with criteria.

func (*Client) FindAccountBankStatementImportIds

func (c *Client) FindAccountBankStatementImportIds(criteria *Criteria, options *Options) ([]int64, error)

FindAccountBankStatementImportIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindAccountBankStatementImportJournalCreation

func (c *Client) FindAccountBankStatementImportJournalCreation(criteria *Criteria) (*AccountBankStatementImportJournalCreation, error)

FindAccountBankStatementImportJournalCreation finds account.bank.statement.import.journal.creation record by querying it with criteria.

func (*Client) FindAccountBankStatementImportJournalCreationId

func (c *Client) FindAccountBankStatementImportJournalCreationId(criteria *Criteria, options *Options) (int64, error)

FindAccountBankStatementImportJournalCreationId finds record id by querying it with criteria.

func (*Client) FindAccountBankStatementImportJournalCreationIds

func (c *Client) FindAccountBankStatementImportJournalCreationIds(criteria *Criteria, options *Options) ([]int64, error)

FindAccountBankStatementImportJournalCreationIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindAccountBankStatementImportJournalCreations

func (c *Client) FindAccountBankStatementImportJournalCreations(criteria *Criteria, options *Options) (*AccountBankStatementImportJournalCreations, error)

FindAccountBankStatementImportJournalCreations finds account.bank.statement.import.journal.creation records by querying it and filtering it with criteria and options.

func (*Client) FindAccountBankStatementImports

func (c *Client) FindAccountBankStatementImports(criteria *Criteria, options *Options) (*AccountBankStatementImports, error)

FindAccountBankStatementImports finds account.bank.statement.import records by querying it and filtering it with criteria and options.

func (*Client) FindAccountBankStatementLine

func (c *Client) FindAccountBankStatementLine(criteria *Criteria) (*AccountBankStatementLine, error)

FindAccountBankStatementLine finds account.bank.statement.line record by querying it with criteria.

func (*Client) FindAccountBankStatementLineId

func (c *Client) FindAccountBankStatementLineId(criteria *Criteria, options *Options) (int64, error)

FindAccountBankStatementLineId finds record id by querying it with criteria.

func (*Client) FindAccountBankStatementLineIds

func (c *Client) FindAccountBankStatementLineIds(criteria *Criteria, options *Options) ([]int64, error)

FindAccountBankStatementLineIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindAccountBankStatementLines

func (c *Client) FindAccountBankStatementLines(criteria *Criteria, options *Options) (*AccountBankStatementLines, error)

FindAccountBankStatementLines finds account.bank.statement.line records by querying it and filtering it with criteria and options.

func (*Client) FindAccountBankStatements

func (c *Client) FindAccountBankStatements(criteria *Criteria, options *Options) (*AccountBankStatements, error)

FindAccountBankStatements finds account.bank.statement records by querying it and filtering it with criteria and options.

func (*Client) FindAccountCashRounding

func (c *Client) FindAccountCashRounding(criteria *Criteria) (*AccountCashRounding, error)

FindAccountCashRounding finds account.cash.rounding record by querying it with criteria.

func (*Client) FindAccountCashRoundingId

func (c *Client) FindAccountCashRoundingId(criteria *Criteria, options *Options) (int64, error)

FindAccountCashRoundingId finds record id by querying it with criteria.

func (*Client) FindAccountCashRoundingIds

func (c *Client) FindAccountCashRoundingIds(criteria *Criteria, options *Options) ([]int64, error)

FindAccountCashRoundingIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindAccountCashRoundings

func (c *Client) FindAccountCashRoundings(criteria *Criteria, options *Options) (*AccountCashRoundings, error)

FindAccountCashRoundings finds account.cash.rounding records by querying it and filtering it with criteria and options.

func (*Client) FindAccountCashboxLine

func (c *Client) FindAccountCashboxLine(criteria *Criteria) (*AccountCashboxLine, error)

FindAccountCashboxLine finds account.cashbox.line record by querying it with criteria.

func (*Client) FindAccountCashboxLineId

func (c *Client) FindAccountCashboxLineId(criteria *Criteria, options *Options) (int64, error)

FindAccountCashboxLineId finds record id by querying it with criteria.

func (*Client) FindAccountCashboxLineIds

func (c *Client) FindAccountCashboxLineIds(criteria *Criteria, options *Options) ([]int64, error)

FindAccountCashboxLineIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindAccountCashboxLines

func (c *Client) FindAccountCashboxLines(criteria *Criteria, options *Options) (*AccountCashboxLines, error)

FindAccountCashboxLines finds account.cashbox.line records by querying it and filtering it with criteria and options.

func (*Client) FindAccountChartTemplate

func (c *Client) FindAccountChartTemplate(criteria *Criteria) (*AccountChartTemplate, error)

FindAccountChartTemplate finds account.chart.template record by querying it with criteria.

func (*Client) FindAccountChartTemplateId

func (c *Client) FindAccountChartTemplateId(criteria *Criteria, options *Options) (int64, error)

FindAccountChartTemplateId finds record id by querying it with criteria.

func (*Client) FindAccountChartTemplateIds

func (c *Client) FindAccountChartTemplateIds(criteria *Criteria, options *Options) ([]int64, error)

FindAccountChartTemplateIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindAccountChartTemplates

func (c *Client) FindAccountChartTemplates(criteria *Criteria, options *Options) (*AccountChartTemplates, error)

FindAccountChartTemplates finds account.chart.template records by querying it and filtering it with criteria and options.

func (*Client) FindAccountCommonJournalReport

func (c *Client) FindAccountCommonJournalReport(criteria *Criteria) (*AccountCommonJournalReport, error)

FindAccountCommonJournalReport finds account.common.journal.report record by querying it with criteria.

func (*Client) FindAccountCommonJournalReportId

func (c *Client) FindAccountCommonJournalReportId(criteria *Criteria, options *Options) (int64, error)

FindAccountCommonJournalReportId finds record id by querying it with criteria.

func (*Client) FindAccountCommonJournalReportIds

func (c *Client) FindAccountCommonJournalReportIds(criteria *Criteria, options *Options) ([]int64, error)

FindAccountCommonJournalReportIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindAccountCommonJournalReports

func (c *Client) FindAccountCommonJournalReports(criteria *Criteria, options *Options) (*AccountCommonJournalReports, error)

FindAccountCommonJournalReports finds account.common.journal.report records by querying it and filtering it with criteria and options.

func (*Client) FindAccountCommonReport

func (c *Client) FindAccountCommonReport(criteria *Criteria) (*AccountCommonReport, error)

FindAccountCommonReport finds account.common.report record by querying it with criteria.

func (*Client) FindAccountCommonReportId

func (c *Client) FindAccountCommonReportId(criteria *Criteria, options *Options) (int64, error)

FindAccountCommonReportId finds record id by querying it with criteria.

func (*Client) FindAccountCommonReportIds

func (c *Client) FindAccountCommonReportIds(criteria *Criteria, options *Options) ([]int64, error)

FindAccountCommonReportIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindAccountCommonReports

func (c *Client) FindAccountCommonReports(criteria *Criteria, options *Options) (*AccountCommonReports, error)

FindAccountCommonReports finds account.common.report records by querying it and filtering it with criteria and options.

func (*Client) FindAccountFinancialYearOp

func (c *Client) FindAccountFinancialYearOp(criteria *Criteria) (*AccountFinancialYearOp, error)

FindAccountFinancialYearOp finds account.financial.year.op record by querying it with criteria.

func (*Client) FindAccountFinancialYearOpId

func (c *Client) FindAccountFinancialYearOpId(criteria *Criteria, options *Options) (int64, error)

FindAccountFinancialYearOpId finds record id by querying it with criteria.

func (*Client) FindAccountFinancialYearOpIds

func (c *Client) FindAccountFinancialYearOpIds(criteria *Criteria, options *Options) ([]int64, error)

FindAccountFinancialYearOpIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindAccountFinancialYearOps

func (c *Client) FindAccountFinancialYearOps(criteria *Criteria, options *Options) (*AccountFinancialYearOps, error)

FindAccountFinancialYearOps finds account.financial.year.op records by querying it and filtering it with criteria and options.

func (*Client) FindAccountFiscalPosition

func (c *Client) FindAccountFiscalPosition(criteria *Criteria) (*AccountFiscalPosition, error)

FindAccountFiscalPosition finds account.fiscal.position record by querying it with criteria.

func (*Client) FindAccountFiscalPositionAccount

func (c *Client) FindAccountFiscalPositionAccount(criteria *Criteria) (*AccountFiscalPositionAccount, error)

FindAccountFiscalPositionAccount finds account.fiscal.position.account record by querying it with criteria.

func (*Client) FindAccountFiscalPositionAccountId

func (c *Client) FindAccountFiscalPositionAccountId(criteria *Criteria, options *Options) (int64, error)

FindAccountFiscalPositionAccountId finds record id by querying it with criteria.

func (*Client) FindAccountFiscalPositionAccountIds

func (c *Client) FindAccountFiscalPositionAccountIds(criteria *Criteria, options *Options) ([]int64, error)

FindAccountFiscalPositionAccountIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindAccountFiscalPositionAccountTemplate

func (c *Client) FindAccountFiscalPositionAccountTemplate(criteria *Criteria) (*AccountFiscalPositionAccountTemplate, error)

FindAccountFiscalPositionAccountTemplate finds account.fiscal.position.account.template record by querying it with criteria.

func (*Client) FindAccountFiscalPositionAccountTemplateId

func (c *Client) FindAccountFiscalPositionAccountTemplateId(criteria *Criteria, options *Options) (int64, error)

FindAccountFiscalPositionAccountTemplateId finds record id by querying it with criteria.

func (*Client) FindAccountFiscalPositionAccountTemplateIds

func (c *Client) FindAccountFiscalPositionAccountTemplateIds(criteria *Criteria, options *Options) ([]int64, error)

FindAccountFiscalPositionAccountTemplateIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindAccountFiscalPositionAccountTemplates

func (c *Client) FindAccountFiscalPositionAccountTemplates(criteria *Criteria, options *Options) (*AccountFiscalPositionAccountTemplates, error)

FindAccountFiscalPositionAccountTemplates finds account.fiscal.position.account.template records by querying it and filtering it with criteria and options.

func (*Client) FindAccountFiscalPositionAccounts

func (c *Client) FindAccountFiscalPositionAccounts(criteria *Criteria, options *Options) (*AccountFiscalPositionAccounts, error)

FindAccountFiscalPositionAccounts finds account.fiscal.position.account records by querying it and filtering it with criteria and options.

func (*Client) FindAccountFiscalPositionId

func (c *Client) FindAccountFiscalPositionId(criteria *Criteria, options *Options) (int64, error)

FindAccountFiscalPositionId finds record id by querying it with criteria.

func (*Client) FindAccountFiscalPositionIds

func (c *Client) FindAccountFiscalPositionIds(criteria *Criteria, options *Options) ([]int64, error)

FindAccountFiscalPositionIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindAccountFiscalPositionTax

func (c *Client) FindAccountFiscalPositionTax(criteria *Criteria) (*AccountFiscalPositionTax, error)

FindAccountFiscalPositionTax finds account.fiscal.position.tax record by querying it with criteria.

func (*Client) FindAccountFiscalPositionTaxId

func (c *Client) FindAccountFiscalPositionTaxId(criteria *Criteria, options *Options) (int64, error)

FindAccountFiscalPositionTaxId finds record id by querying it with criteria.

func (*Client) FindAccountFiscalPositionTaxIds

func (c *Client) FindAccountFiscalPositionTaxIds(criteria *Criteria, options *Options) ([]int64, error)

FindAccountFiscalPositionTaxIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindAccountFiscalPositionTaxTemplate

func (c *Client) FindAccountFiscalPositionTaxTemplate(criteria *Criteria) (*AccountFiscalPositionTaxTemplate, error)

FindAccountFiscalPositionTaxTemplate finds account.fiscal.position.tax.template record by querying it with criteria.

func (*Client) FindAccountFiscalPositionTaxTemplateId

func (c *Client) FindAccountFiscalPositionTaxTemplateId(criteria *Criteria, options *Options) (int64, error)

FindAccountFiscalPositionTaxTemplateId finds record id by querying it with criteria.

func (*Client) FindAccountFiscalPositionTaxTemplateIds

func (c *Client) FindAccountFiscalPositionTaxTemplateIds(criteria *Criteria, options *Options) ([]int64, error)

FindAccountFiscalPositionTaxTemplateIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindAccountFiscalPositionTaxTemplates

func (c *Client) FindAccountFiscalPositionTaxTemplates(criteria *Criteria, options *Options) (*AccountFiscalPositionTaxTemplates, error)

FindAccountFiscalPositionTaxTemplates finds account.fiscal.position.tax.template records by querying it and filtering it with criteria and options.

func (*Client) FindAccountFiscalPositionTaxs

func (c *Client) FindAccountFiscalPositionTaxs(criteria *Criteria, options *Options) (*AccountFiscalPositionTaxs, error)

FindAccountFiscalPositionTaxs finds account.fiscal.position.tax records by querying it and filtering it with criteria and options.

func (*Client) FindAccountFiscalPositionTemplate

func (c *Client) FindAccountFiscalPositionTemplate(criteria *Criteria) (*AccountFiscalPositionTemplate, error)

FindAccountFiscalPositionTemplate finds account.fiscal.position.template record by querying it with criteria.

func (*Client) FindAccountFiscalPositionTemplateId

func (c *Client) FindAccountFiscalPositionTemplateId(criteria *Criteria, options *Options) (int64, error)

FindAccountFiscalPositionTemplateId finds record id by querying it with criteria.

func (*Client) FindAccountFiscalPositionTemplateIds

func (c *Client) FindAccountFiscalPositionTemplateIds(criteria *Criteria, options *Options) ([]int64, error)

FindAccountFiscalPositionTemplateIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindAccountFiscalPositionTemplates

func (c *Client) FindAccountFiscalPositionTemplates(criteria *Criteria, options *Options) (*AccountFiscalPositionTemplates, error)

FindAccountFiscalPositionTemplates finds account.fiscal.position.template records by querying it and filtering it with criteria and options.

func (*Client) FindAccountFiscalPositions

func (c *Client) FindAccountFiscalPositions(criteria *Criteria, options *Options) (*AccountFiscalPositions, error)

FindAccountFiscalPositions finds account.fiscal.position records by querying it and filtering it with criteria and options.

func (*Client) FindAccountFiscalYear

func (c *Client) FindAccountFiscalYear(criteria *Criteria) (*AccountFiscalYear, error)

FindAccountFiscalYear finds account.fiscal.year record by querying it with criteria.

func (*Client) FindAccountFiscalYearId

func (c *Client) FindAccountFiscalYearId(criteria *Criteria, options *Options) (int64, error)

FindAccountFiscalYearId finds record id by querying it with criteria.

func (*Client) FindAccountFiscalYearIds

func (c *Client) FindAccountFiscalYearIds(criteria *Criteria, options *Options) ([]int64, error)

FindAccountFiscalYearIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindAccountFiscalYears

func (c *Client) FindAccountFiscalYears(criteria *Criteria, options *Options) (*AccountFiscalYears, error)

FindAccountFiscalYears finds account.fiscal.year records by querying it and filtering it with criteria and options.

func (*Client) FindAccountFullReconcile

func (c *Client) FindAccountFullReconcile(criteria *Criteria) (*AccountFullReconcile, error)

FindAccountFullReconcile finds account.full.reconcile record by querying it with criteria.

func (*Client) FindAccountFullReconcileId

func (c *Client) FindAccountFullReconcileId(criteria *Criteria, options *Options) (int64, error)

FindAccountFullReconcileId finds record id by querying it with criteria.

func (*Client) FindAccountFullReconcileIds

func (c *Client) FindAccountFullReconcileIds(criteria *Criteria, options *Options) ([]int64, error)

FindAccountFullReconcileIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindAccountFullReconciles

func (c *Client) FindAccountFullReconciles(criteria *Criteria, options *Options) (*AccountFullReconciles, error)

FindAccountFullReconciles finds account.full.reconcile records by querying it and filtering it with criteria and options.

func (*Client) FindAccountGroup

func (c *Client) FindAccountGroup(criteria *Criteria) (*AccountGroup, error)

FindAccountGroup finds account.group record by querying it with criteria.

func (*Client) FindAccountGroupId

func (c *Client) FindAccountGroupId(criteria *Criteria, options *Options) (int64, error)

FindAccountGroupId finds record id by querying it with criteria.

func (*Client) FindAccountGroupIds

func (c *Client) FindAccountGroupIds(criteria *Criteria, options *Options) ([]int64, error)

FindAccountGroupIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindAccountGroups

func (c *Client) FindAccountGroups(criteria *Criteria, options *Options) (*AccountGroups, error)

FindAccountGroups finds account.group records by querying it and filtering it with criteria and options.

func (*Client) FindAccountIncoterms

func (c *Client) FindAccountIncoterms(criteria *Criteria) (*AccountIncoterms, error)

FindAccountIncoterms finds account.incoterms record by querying it with criteria.

func (*Client) FindAccountIncotermsId

func (c *Client) FindAccountIncotermsId(criteria *Criteria, options *Options) (int64, error)

FindAccountIncotermsId finds record id by querying it with criteria.

func (*Client) FindAccountIncotermsIds

func (c *Client) FindAccountIncotermsIds(criteria *Criteria, options *Options) ([]int64, error)

FindAccountIncotermsIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindAccountIncotermss

func (c *Client) FindAccountIncotermss(criteria *Criteria, options *Options) (*AccountIncotermss, error)

FindAccountIncotermss finds account.incoterms records by querying it and filtering it with criteria and options.

func (*Client) FindAccountInvoiceReport

func (c *Client) FindAccountInvoiceReport(criteria *Criteria) (*AccountInvoiceReport, error)

FindAccountInvoiceReport finds account.invoice.report record by querying it with criteria.

func (*Client) FindAccountInvoiceReportId

func (c *Client) FindAccountInvoiceReportId(criteria *Criteria, options *Options) (int64, error)

FindAccountInvoiceReportId finds record id by querying it with criteria.

func (*Client) FindAccountInvoiceReportIds

func (c *Client) FindAccountInvoiceReportIds(criteria *Criteria, options *Options) ([]int64, error)

FindAccountInvoiceReportIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindAccountInvoiceReports

func (c *Client) FindAccountInvoiceReports(criteria *Criteria, options *Options) (*AccountInvoiceReports, error)

FindAccountInvoiceReports finds account.invoice.report records by querying it and filtering it with criteria and options.

func (*Client) FindAccountInvoiceSend

func (c *Client) FindAccountInvoiceSend(criteria *Criteria) (*AccountInvoiceSend, error)

FindAccountInvoiceSend finds account.invoice.send record by querying it with criteria.

func (*Client) FindAccountInvoiceSendId

func (c *Client) FindAccountInvoiceSendId(criteria *Criteria, options *Options) (int64, error)

FindAccountInvoiceSendId finds record id by querying it with criteria.

func (*Client) FindAccountInvoiceSendIds

func (c *Client) FindAccountInvoiceSendIds(criteria *Criteria, options *Options) ([]int64, error)

FindAccountInvoiceSendIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindAccountInvoiceSends

func (c *Client) FindAccountInvoiceSends(criteria *Criteria, options *Options) (*AccountInvoiceSends, error)

FindAccountInvoiceSends finds account.invoice.send records by querying it and filtering it with criteria and options.

func (*Client) FindAccountJournal

func (c *Client) FindAccountJournal(criteria *Criteria) (*AccountJournal, error)

FindAccountJournal finds account.journal record by querying it with criteria.

func (*Client) FindAccountJournalGroup

func (c *Client) FindAccountJournalGroup(criteria *Criteria) (*AccountJournalGroup, error)

FindAccountJournalGroup finds account.journal.group record by querying it with criteria.

func (*Client) FindAccountJournalGroupId

func (c *Client) FindAccountJournalGroupId(criteria *Criteria, options *Options) (int64, error)

FindAccountJournalGroupId finds record id by querying it with criteria.

func (*Client) FindAccountJournalGroupIds

func (c *Client) FindAccountJournalGroupIds(criteria *Criteria, options *Options) ([]int64, error)

FindAccountJournalGroupIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindAccountJournalGroups

func (c *Client) FindAccountJournalGroups(criteria *Criteria, options *Options) (*AccountJournalGroups, error)

FindAccountJournalGroups finds account.journal.group records by querying it and filtering it with criteria and options.

func (*Client) FindAccountJournalId

func (c *Client) FindAccountJournalId(criteria *Criteria, options *Options) (int64, error)

FindAccountJournalId finds record id by querying it with criteria.

func (*Client) FindAccountJournalIds

func (c *Client) FindAccountJournalIds(criteria *Criteria, options *Options) ([]int64, error)

FindAccountJournalIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindAccountJournals

func (c *Client) FindAccountJournals(criteria *Criteria, options *Options) (*AccountJournals, error)

FindAccountJournals finds account.journal records by querying it and filtering it with criteria and options.

func (*Client) FindAccountMove

func (c *Client) FindAccountMove(criteria *Criteria) (*AccountMove, error)

FindAccountMove finds account.move record by querying it with criteria.

func (*Client) FindAccountMoveId

func (c *Client) FindAccountMoveId(criteria *Criteria, options *Options) (int64, error)

FindAccountMoveId finds record id by querying it with criteria.

func (*Client) FindAccountMoveIds

func (c *Client) FindAccountMoveIds(criteria *Criteria, options *Options) ([]int64, error)

FindAccountMoveIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindAccountMoveLine

func (c *Client) FindAccountMoveLine(criteria *Criteria) (*AccountMoveLine, error)

FindAccountMoveLine finds account.move.line record by querying it with criteria.

func (*Client) FindAccountMoveLineId

func (c *Client) FindAccountMoveLineId(criteria *Criteria, options *Options) (int64, error)

FindAccountMoveLineId finds record id by querying it with criteria.

func (*Client) FindAccountMoveLineIds

func (c *Client) FindAccountMoveLineIds(criteria *Criteria, options *Options) ([]int64, error)

FindAccountMoveLineIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindAccountMoveLines

func (c *Client) FindAccountMoveLines(criteria *Criteria, options *Options) (*AccountMoveLines, error)

FindAccountMoveLines finds account.move.line records by querying it and filtering it with criteria and options.

func (*Client) FindAccountMoveReversal

func (c *Client) FindAccountMoveReversal(criteria *Criteria) (*AccountMoveReversal, error)

FindAccountMoveReversal finds account.move.reversal record by querying it with criteria.

func (*Client) FindAccountMoveReversalId

func (c *Client) FindAccountMoveReversalId(criteria *Criteria, options *Options) (int64, error)

FindAccountMoveReversalId finds record id by querying it with criteria.

func (*Client) FindAccountMoveReversalIds

func (c *Client) FindAccountMoveReversalIds(criteria *Criteria, options *Options) ([]int64, error)

FindAccountMoveReversalIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindAccountMoveReversals

func (c *Client) FindAccountMoveReversals(criteria *Criteria, options *Options) (*AccountMoveReversals, error)

FindAccountMoveReversals finds account.move.reversal records by querying it and filtering it with criteria and options.

func (*Client) FindAccountMoves

func (c *Client) FindAccountMoves(criteria *Criteria, options *Options) (*AccountMoves, error)

FindAccountMoves finds account.move records by querying it and filtering it with criteria and options.

func (*Client) FindAccountPartialReconcile

func (c *Client) FindAccountPartialReconcile(criteria *Criteria) (*AccountPartialReconcile, error)

FindAccountPartialReconcile finds account.partial.reconcile record by querying it with criteria.

func (*Client) FindAccountPartialReconcileId

func (c *Client) FindAccountPartialReconcileId(criteria *Criteria, options *Options) (int64, error)

FindAccountPartialReconcileId finds record id by querying it with criteria.

func (*Client) FindAccountPartialReconcileIds

func (c *Client) FindAccountPartialReconcileIds(criteria *Criteria, options *Options) ([]int64, error)

FindAccountPartialReconcileIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindAccountPartialReconciles

func (c *Client) FindAccountPartialReconciles(criteria *Criteria, options *Options) (*AccountPartialReconciles, error)

FindAccountPartialReconciles finds account.partial.reconcile records by querying it and filtering it with criteria and options.

func (*Client) FindAccountPayment

func (c *Client) FindAccountPayment(criteria *Criteria) (*AccountPayment, error)

FindAccountPayment finds account.payment record by querying it with criteria.

func (*Client) FindAccountPaymentId

func (c *Client) FindAccountPaymentId(criteria *Criteria, options *Options) (int64, error)

FindAccountPaymentId finds record id by querying it with criteria.

func (*Client) FindAccountPaymentIds

func (c *Client) FindAccountPaymentIds(criteria *Criteria, options *Options) ([]int64, error)

FindAccountPaymentIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindAccountPaymentMethod

func (c *Client) FindAccountPaymentMethod(criteria *Criteria) (*AccountPaymentMethod, error)

FindAccountPaymentMethod finds account.payment.method record by querying it with criteria.

func (*Client) FindAccountPaymentMethodId

func (c *Client) FindAccountPaymentMethodId(criteria *Criteria, options *Options) (int64, error)

FindAccountPaymentMethodId finds record id by querying it with criteria.

func (*Client) FindAccountPaymentMethodIds

func (c *Client) FindAccountPaymentMethodIds(criteria *Criteria, options *Options) ([]int64, error)

FindAccountPaymentMethodIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindAccountPaymentMethods

func (c *Client) FindAccountPaymentMethods(criteria *Criteria, options *Options) (*AccountPaymentMethods, error)

FindAccountPaymentMethods finds account.payment.method records by querying it and filtering it with criteria and options.

func (*Client) FindAccountPaymentRegister

func (c *Client) FindAccountPaymentRegister(criteria *Criteria) (*AccountPaymentRegister, error)

FindAccountPaymentRegister finds account.payment.register record by querying it with criteria.

func (*Client) FindAccountPaymentRegisterId

func (c *Client) FindAccountPaymentRegisterId(criteria *Criteria, options *Options) (int64, error)

FindAccountPaymentRegisterId finds record id by querying it with criteria.

func (*Client) FindAccountPaymentRegisterIds

func (c *Client) FindAccountPaymentRegisterIds(criteria *Criteria, options *Options) ([]int64, error)

FindAccountPaymentRegisterIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindAccountPaymentRegisters

func (c *Client) FindAccountPaymentRegisters(criteria *Criteria, options *Options) (*AccountPaymentRegisters, error)

FindAccountPaymentRegisters finds account.payment.register records by querying it and filtering it with criteria and options.

func (*Client) FindAccountPaymentTerm

func (c *Client) FindAccountPaymentTerm(criteria *Criteria) (*AccountPaymentTerm, error)

FindAccountPaymentTerm finds account.payment.term record by querying it with criteria.

func (*Client) FindAccountPaymentTermId

func (c *Client) FindAccountPaymentTermId(criteria *Criteria, options *Options) (int64, error)

FindAccountPaymentTermId finds record id by querying it with criteria.

func (*Client) FindAccountPaymentTermIds

func (c *Client) FindAccountPaymentTermIds(criteria *Criteria, options *Options) ([]int64, error)

FindAccountPaymentTermIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindAccountPaymentTermLine

func (c *Client) FindAccountPaymentTermLine(criteria *Criteria) (*AccountPaymentTermLine, error)

FindAccountPaymentTermLine finds account.payment.term.line record by querying it with criteria.

func (*Client) FindAccountPaymentTermLineId

func (c *Client) FindAccountPaymentTermLineId(criteria *Criteria, options *Options) (int64, error)

FindAccountPaymentTermLineId finds record id by querying it with criteria.

func (*Client) FindAccountPaymentTermLineIds

func (c *Client) FindAccountPaymentTermLineIds(criteria *Criteria, options *Options) ([]int64, error)

FindAccountPaymentTermLineIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindAccountPaymentTermLines

func (c *Client) FindAccountPaymentTermLines(criteria *Criteria, options *Options) (*AccountPaymentTermLines, error)

FindAccountPaymentTermLines finds account.payment.term.line records by querying it and filtering it with criteria and options.

func (*Client) FindAccountPaymentTerms

func (c *Client) FindAccountPaymentTerms(criteria *Criteria, options *Options) (*AccountPaymentTerms, error)

FindAccountPaymentTerms finds account.payment.term records by querying it and filtering it with criteria and options.

func (*Client) FindAccountPayments

func (c *Client) FindAccountPayments(criteria *Criteria, options *Options) (*AccountPayments, error)

FindAccountPayments finds account.payment records by querying it and filtering it with criteria and options.

func (*Client) FindAccountPrintJournal

func (c *Client) FindAccountPrintJournal(criteria *Criteria) (*AccountPrintJournal, error)

FindAccountPrintJournal finds account.print.journal record by querying it with criteria.

func (*Client) FindAccountPrintJournalId

func (c *Client) FindAccountPrintJournalId(criteria *Criteria, options *Options) (int64, error)

FindAccountPrintJournalId finds record id by querying it with criteria.

func (*Client) FindAccountPrintJournalIds

func (c *Client) FindAccountPrintJournalIds(criteria *Criteria, options *Options) ([]int64, error)

FindAccountPrintJournalIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindAccountPrintJournals

func (c *Client) FindAccountPrintJournals(criteria *Criteria, options *Options) (*AccountPrintJournals, error)

FindAccountPrintJournals finds account.print.journal records by querying it and filtering it with criteria and options.

func (*Client) FindAccountReconcileModel

func (c *Client) FindAccountReconcileModel(criteria *Criteria) (*AccountReconcileModel, error)

FindAccountReconcileModel finds account.reconcile.model record by querying it with criteria.

func (*Client) FindAccountReconcileModelId

func (c *Client) FindAccountReconcileModelId(criteria *Criteria, options *Options) (int64, error)

FindAccountReconcileModelId finds record id by querying it with criteria.

func (*Client) FindAccountReconcileModelIds

func (c *Client) FindAccountReconcileModelIds(criteria *Criteria, options *Options) ([]int64, error)

FindAccountReconcileModelIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindAccountReconcileModelTemplate

func (c *Client) FindAccountReconcileModelTemplate(criteria *Criteria) (*AccountReconcileModelTemplate, error)

FindAccountReconcileModelTemplate finds account.reconcile.model.template record by querying it with criteria.

func (*Client) FindAccountReconcileModelTemplateId

func (c *Client) FindAccountReconcileModelTemplateId(criteria *Criteria, options *Options) (int64, error)

FindAccountReconcileModelTemplateId finds record id by querying it with criteria.

func (*Client) FindAccountReconcileModelTemplateIds

func (c *Client) FindAccountReconcileModelTemplateIds(criteria *Criteria, options *Options) ([]int64, error)

FindAccountReconcileModelTemplateIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindAccountReconcileModelTemplates

func (c *Client) FindAccountReconcileModelTemplates(criteria *Criteria, options *Options) (*AccountReconcileModelTemplates, error)

FindAccountReconcileModelTemplates finds account.reconcile.model.template records by querying it and filtering it with criteria and options.

func (*Client) FindAccountReconcileModels

func (c *Client) FindAccountReconcileModels(criteria *Criteria, options *Options) (*AccountReconcileModels, error)

FindAccountReconcileModels finds account.reconcile.model records by querying it and filtering it with criteria and options.

func (*Client) FindAccountReconciliationWidget

func (c *Client) FindAccountReconciliationWidget(criteria *Criteria) (*AccountReconciliationWidget, error)

FindAccountReconciliationWidget finds account.reconciliation.widget record by querying it with criteria.

func (*Client) FindAccountReconciliationWidgetId

func (c *Client) FindAccountReconciliationWidgetId(criteria *Criteria, options *Options) (int64, error)

FindAccountReconciliationWidgetId finds record id by querying it with criteria.

func (*Client) FindAccountReconciliationWidgetIds

func (c *Client) FindAccountReconciliationWidgetIds(criteria *Criteria, options *Options) ([]int64, error)

FindAccountReconciliationWidgetIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindAccountReconciliationWidgets

func (c *Client) FindAccountReconciliationWidgets(criteria *Criteria, options *Options) (*AccountReconciliationWidgets, error)

FindAccountReconciliationWidgets finds account.reconciliation.widget records by querying it and filtering it with criteria and options.

func (*Client) FindAccountRoot

func (c *Client) FindAccountRoot(criteria *Criteria) (*AccountRoot, error)

FindAccountRoot finds account.root record by querying it with criteria.

func (*Client) FindAccountRootId

func (c *Client) FindAccountRootId(criteria *Criteria, options *Options) (int64, error)

FindAccountRootId finds record id by querying it with criteria.

func (*Client) FindAccountRootIds

func (c *Client) FindAccountRootIds(criteria *Criteria, options *Options) ([]int64, error)

FindAccountRootIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindAccountRoots

func (c *Client) FindAccountRoots(criteria *Criteria, options *Options) (*AccountRoots, error)

FindAccountRoots finds account.root records by querying it and filtering it with criteria and options.

func (*Client) FindAccountSetupBankManualConfig

func (c *Client) FindAccountSetupBankManualConfig(criteria *Criteria) (*AccountSetupBankManualConfig, error)

FindAccountSetupBankManualConfig finds account.setup.bank.manual.config record by querying it with criteria.

func (*Client) FindAccountSetupBankManualConfigId

func (c *Client) FindAccountSetupBankManualConfigId(criteria *Criteria, options *Options) (int64, error)

FindAccountSetupBankManualConfigId finds record id by querying it with criteria.

func (*Client) FindAccountSetupBankManualConfigIds

func (c *Client) FindAccountSetupBankManualConfigIds(criteria *Criteria, options *Options) ([]int64, error)

FindAccountSetupBankManualConfigIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindAccountSetupBankManualConfigs

func (c *Client) FindAccountSetupBankManualConfigs(criteria *Criteria, options *Options) (*AccountSetupBankManualConfigs, error)

FindAccountSetupBankManualConfigs finds account.setup.bank.manual.config records by querying it and filtering it with criteria and options.

func (*Client) FindAccountTax

func (c *Client) FindAccountTax(criteria *Criteria) (*AccountTax, error)

FindAccountTax finds account.tax record by querying it with criteria.

func (*Client) FindAccountTaxGroup

func (c *Client) FindAccountTaxGroup(criteria *Criteria) (*AccountTaxGroup, error)

FindAccountTaxGroup finds account.tax.group record by querying it with criteria.

func (*Client) FindAccountTaxGroupId

func (c *Client) FindAccountTaxGroupId(criteria *Criteria, options *Options) (int64, error)

FindAccountTaxGroupId finds record id by querying it with criteria.

func (*Client) FindAccountTaxGroupIds

func (c *Client) FindAccountTaxGroupIds(criteria *Criteria, options *Options) ([]int64, error)

FindAccountTaxGroupIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindAccountTaxGroups

func (c *Client) FindAccountTaxGroups(criteria *Criteria, options *Options) (*AccountTaxGroups, error)

FindAccountTaxGroups finds account.tax.group records by querying it and filtering it with criteria and options.

func (*Client) FindAccountTaxId

func (c *Client) FindAccountTaxId(criteria *Criteria, options *Options) (int64, error)

FindAccountTaxId finds record id by querying it with criteria.

func (*Client) FindAccountTaxIds

func (c *Client) FindAccountTaxIds(criteria *Criteria, options *Options) ([]int64, error)

FindAccountTaxIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindAccountTaxRepartitionLine

func (c *Client) FindAccountTaxRepartitionLine(criteria *Criteria) (*AccountTaxRepartitionLine, error)

FindAccountTaxRepartitionLine finds account.tax.repartition.line record by querying it with criteria.

func (*Client) FindAccountTaxRepartitionLineId

func (c *Client) FindAccountTaxRepartitionLineId(criteria *Criteria, options *Options) (int64, error)

FindAccountTaxRepartitionLineId finds record id by querying it with criteria.

func (*Client) FindAccountTaxRepartitionLineIds

func (c *Client) FindAccountTaxRepartitionLineIds(criteria *Criteria, options *Options) ([]int64, error)

FindAccountTaxRepartitionLineIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindAccountTaxRepartitionLineTemplate

func (c *Client) FindAccountTaxRepartitionLineTemplate(criteria *Criteria) (*AccountTaxRepartitionLineTemplate, error)

FindAccountTaxRepartitionLineTemplate finds account.tax.repartition.line.template record by querying it with criteria.

func (*Client) FindAccountTaxRepartitionLineTemplateId

func (c *Client) FindAccountTaxRepartitionLineTemplateId(criteria *Criteria, options *Options) (int64, error)

FindAccountTaxRepartitionLineTemplateId finds record id by querying it with criteria.

func (*Client) FindAccountTaxRepartitionLineTemplateIds

func (c *Client) FindAccountTaxRepartitionLineTemplateIds(criteria *Criteria, options *Options) ([]int64, error)

FindAccountTaxRepartitionLineTemplateIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindAccountTaxRepartitionLineTemplates

func (c *Client) FindAccountTaxRepartitionLineTemplates(criteria *Criteria, options *Options) (*AccountTaxRepartitionLineTemplates, error)

FindAccountTaxRepartitionLineTemplates finds account.tax.repartition.line.template records by querying it and filtering it with criteria and options.

func (*Client) FindAccountTaxRepartitionLines

func (c *Client) FindAccountTaxRepartitionLines(criteria *Criteria, options *Options) (*AccountTaxRepartitionLines, error)

FindAccountTaxRepartitionLines finds account.tax.repartition.line records by querying it and filtering it with criteria and options.

func (*Client) FindAccountTaxReportLine

func (c *Client) FindAccountTaxReportLine(criteria *Criteria) (*AccountTaxReportLine, error)

FindAccountTaxReportLine finds account.tax.report.line record by querying it with criteria.

func (*Client) FindAccountTaxReportLineId

func (c *Client) FindAccountTaxReportLineId(criteria *Criteria, options *Options) (int64, error)

FindAccountTaxReportLineId finds record id by querying it with criteria.

func (*Client) FindAccountTaxReportLineIds

func (c *Client) FindAccountTaxReportLineIds(criteria *Criteria, options *Options) ([]int64, error)

FindAccountTaxReportLineIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindAccountTaxReportLines

func (c *Client) FindAccountTaxReportLines(criteria *Criteria, options *Options) (*AccountTaxReportLines, error)

FindAccountTaxReportLines finds account.tax.report.line records by querying it and filtering it with criteria and options.

func (*Client) FindAccountTaxTemplate

func (c *Client) FindAccountTaxTemplate(criteria *Criteria) (*AccountTaxTemplate, error)

FindAccountTaxTemplate finds account.tax.template record by querying it with criteria.

func (*Client) FindAccountTaxTemplateId

func (c *Client) FindAccountTaxTemplateId(criteria *Criteria, options *Options) (int64, error)

FindAccountTaxTemplateId finds record id by querying it with criteria.

func (*Client) FindAccountTaxTemplateIds

func (c *Client) FindAccountTaxTemplateIds(criteria *Criteria, options *Options) ([]int64, error)

FindAccountTaxTemplateIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindAccountTaxTemplates

func (c *Client) FindAccountTaxTemplates(criteria *Criteria, options *Options) (*AccountTaxTemplates, error)

FindAccountTaxTemplates finds account.tax.template records by querying it and filtering it with criteria and options.

func (*Client) FindAccountTaxs

func (c *Client) FindAccountTaxs(criteria *Criteria, options *Options) (*AccountTaxs, error)

FindAccountTaxs finds account.tax records by querying it and filtering it with criteria and options.

func (*Client) FindAccountUnreconcile

func (c *Client) FindAccountUnreconcile(criteria *Criteria) (*AccountUnreconcile, error)

FindAccountUnreconcile finds account.unreconcile record by querying it with criteria.

func (*Client) FindAccountUnreconcileId

func (c *Client) FindAccountUnreconcileId(criteria *Criteria, options *Options) (int64, error)

FindAccountUnreconcileId finds record id by querying it with criteria.

func (*Client) FindAccountUnreconcileIds

func (c *Client) FindAccountUnreconcileIds(criteria *Criteria, options *Options) ([]int64, error)

FindAccountUnreconcileIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindAccountUnreconciles

func (c *Client) FindAccountUnreconciles(criteria *Criteria, options *Options) (*AccountUnreconciles, error)

FindAccountUnreconciles finds account.unreconcile records by querying it and filtering it with criteria and options.

func (*Client) FindBarcodeNomenclature

func (c *Client) FindBarcodeNomenclature(criteria *Criteria) (*BarcodeNomenclature, error)

FindBarcodeNomenclature finds barcode.nomenclature record by querying it with criteria.

func (*Client) FindBarcodeNomenclatureId

func (c *Client) FindBarcodeNomenclatureId(criteria *Criteria, options *Options) (int64, error)

FindBarcodeNomenclatureId finds record id by querying it with criteria.

func (*Client) FindBarcodeNomenclatureIds

func (c *Client) FindBarcodeNomenclatureIds(criteria *Criteria, options *Options) ([]int64, error)

FindBarcodeNomenclatureIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindBarcodeNomenclatures

func (c *Client) FindBarcodeNomenclatures(criteria *Criteria, options *Options) (*BarcodeNomenclatures, error)

FindBarcodeNomenclatures finds barcode.nomenclature records by querying it and filtering it with criteria and options.

func (*Client) FindBarcodeRule

func (c *Client) FindBarcodeRule(criteria *Criteria) (*BarcodeRule, error)

FindBarcodeRule finds barcode.rule record by querying it with criteria.

func (*Client) FindBarcodeRuleId

func (c *Client) FindBarcodeRuleId(criteria *Criteria, options *Options) (int64, error)

FindBarcodeRuleId finds record id by querying it with criteria.

func (*Client) FindBarcodeRuleIds

func (c *Client) FindBarcodeRuleIds(criteria *Criteria, options *Options) ([]int64, error)

FindBarcodeRuleIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindBarcodeRules

func (c *Client) FindBarcodeRules(criteria *Criteria, options *Options) (*BarcodeRules, error)

FindBarcodeRules finds barcode.rule records by querying it and filtering it with criteria and options.

func (*Client) FindBarcodesBarcodeEventsMixin

func (c *Client) FindBarcodesBarcodeEventsMixin(criteria *Criteria) (*BarcodesBarcodeEventsMixin, error)

FindBarcodesBarcodeEventsMixin finds barcodes.barcode_events_mixin record by querying it with criteria.

func (*Client) FindBarcodesBarcodeEventsMixinId

func (c *Client) FindBarcodesBarcodeEventsMixinId(criteria *Criteria, options *Options) (int64, error)

FindBarcodesBarcodeEventsMixinId finds record id by querying it with criteria.

func (*Client) FindBarcodesBarcodeEventsMixinIds

func (c *Client) FindBarcodesBarcodeEventsMixinIds(criteria *Criteria, options *Options) ([]int64, error)

FindBarcodesBarcodeEventsMixinIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindBarcodesBarcodeEventsMixins

func (c *Client) FindBarcodesBarcodeEventsMixins(criteria *Criteria, options *Options) (*BarcodesBarcodeEventsMixins, error)

FindBarcodesBarcodeEventsMixins finds barcodes.barcode_events_mixin records by querying it and filtering it with criteria and options.

func (*Client) FindBase

func (c *Client) FindBase(criteria *Criteria) (*Base, error)

FindBase finds base record by querying it with criteria.

func (*Client) FindBaseDocumentLayout

func (c *Client) FindBaseDocumentLayout(criteria *Criteria) (*BaseDocumentLayout, error)

FindBaseDocumentLayout finds base.document.layout record by querying it with criteria.

func (*Client) FindBaseDocumentLayoutId

func (c *Client) FindBaseDocumentLayoutId(criteria *Criteria, options *Options) (int64, error)

FindBaseDocumentLayoutId finds record id by querying it with criteria.

func (*Client) FindBaseDocumentLayoutIds

func (c *Client) FindBaseDocumentLayoutIds(criteria *Criteria, options *Options) ([]int64, error)

FindBaseDocumentLayoutIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindBaseDocumentLayouts

func (c *Client) FindBaseDocumentLayouts(criteria *Criteria, options *Options) (*BaseDocumentLayouts, error)

FindBaseDocumentLayouts finds base.document.layout records by querying it and filtering it with criteria and options.

func (*Client) FindBaseId

func (c *Client) FindBaseId(criteria *Criteria, options *Options) (int64, error)

FindBaseId finds record id by querying it with criteria.

func (*Client) FindBaseIds

func (c *Client) FindBaseIds(criteria *Criteria, options *Options) ([]int64, error)

FindBaseIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindBaseImportImport

func (c *Client) FindBaseImportImport(criteria *Criteria) (*BaseImportImport, error)

FindBaseImportImport finds base_import.import record by querying it with criteria.

func (*Client) FindBaseImportImportId

func (c *Client) FindBaseImportImportId(criteria *Criteria, options *Options) (int64, error)

FindBaseImportImportId finds record id by querying it with criteria.

func (*Client) FindBaseImportImportIds

func (c *Client) FindBaseImportImportIds(criteria *Criteria, options *Options) ([]int64, error)

FindBaseImportImportIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindBaseImportImports

func (c *Client) FindBaseImportImports(criteria *Criteria, options *Options) (*BaseImportImports, error)

FindBaseImportImports finds base_import.import records by querying it and filtering it with criteria and options.

func (*Client) FindBaseImportMapping

func (c *Client) FindBaseImportMapping(criteria *Criteria) (*BaseImportMapping, error)

FindBaseImportMapping finds base_import.mapping record by querying it with criteria.

func (*Client) FindBaseImportMappingId

func (c *Client) FindBaseImportMappingId(criteria *Criteria, options *Options) (int64, error)

FindBaseImportMappingId finds record id by querying it with criteria.

func (*Client) FindBaseImportMappingIds

func (c *Client) FindBaseImportMappingIds(criteria *Criteria, options *Options) ([]int64, error)

FindBaseImportMappingIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindBaseImportMappings

func (c *Client) FindBaseImportMappings(criteria *Criteria, options *Options) (*BaseImportMappings, error)

FindBaseImportMappings finds base_import.mapping records by querying it and filtering it with criteria and options.

func (*Client) FindBaseImportTestsModelsChar

func (c *Client) FindBaseImportTestsModelsChar(criteria *Criteria) (*BaseImportTestsModelsChar, error)

FindBaseImportTestsModelsChar finds base_import.tests.models.char record by querying it with criteria.

func (*Client) FindBaseImportTestsModelsCharId

func (c *Client) FindBaseImportTestsModelsCharId(criteria *Criteria, options *Options) (int64, error)

FindBaseImportTestsModelsCharId finds record id by querying it with criteria.

func (*Client) FindBaseImportTestsModelsCharIds

func (c *Client) FindBaseImportTestsModelsCharIds(criteria *Criteria, options *Options) ([]int64, error)

FindBaseImportTestsModelsCharIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindBaseImportTestsModelsCharNoreadonly

func (c *Client) FindBaseImportTestsModelsCharNoreadonly(criteria *Criteria) (*BaseImportTestsModelsCharNoreadonly, error)

FindBaseImportTestsModelsCharNoreadonly finds base_import.tests.models.char.noreadonly record by querying it with criteria.

func (*Client) FindBaseImportTestsModelsCharNoreadonlyId

func (c *Client) FindBaseImportTestsModelsCharNoreadonlyId(criteria *Criteria, options *Options) (int64, error)

FindBaseImportTestsModelsCharNoreadonlyId finds record id by querying it with criteria.

func (*Client) FindBaseImportTestsModelsCharNoreadonlyIds

func (c *Client) FindBaseImportTestsModelsCharNoreadonlyIds(criteria *Criteria, options *Options) ([]int64, error)

FindBaseImportTestsModelsCharNoreadonlyIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindBaseImportTestsModelsCharNoreadonlys

func (c *Client) FindBaseImportTestsModelsCharNoreadonlys(criteria *Criteria, options *Options) (*BaseImportTestsModelsCharNoreadonlys, error)

FindBaseImportTestsModelsCharNoreadonlys finds base_import.tests.models.char.noreadonly records by querying it and filtering it with criteria and options.

func (*Client) FindBaseImportTestsModelsCharReadonly

func (c *Client) FindBaseImportTestsModelsCharReadonly(criteria *Criteria) (*BaseImportTestsModelsCharReadonly, error)

FindBaseImportTestsModelsCharReadonly finds base_import.tests.models.char.readonly record by querying it with criteria.

func (*Client) FindBaseImportTestsModelsCharReadonlyId

func (c *Client) FindBaseImportTestsModelsCharReadonlyId(criteria *Criteria, options *Options) (int64, error)

FindBaseImportTestsModelsCharReadonlyId finds record id by querying it with criteria.

func (*Client) FindBaseImportTestsModelsCharReadonlyIds

func (c *Client) FindBaseImportTestsModelsCharReadonlyIds(criteria *Criteria, options *Options) ([]int64, error)

FindBaseImportTestsModelsCharReadonlyIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindBaseImportTestsModelsCharReadonlys

func (c *Client) FindBaseImportTestsModelsCharReadonlys(criteria *Criteria, options *Options) (*BaseImportTestsModelsCharReadonlys, error)

FindBaseImportTestsModelsCharReadonlys finds base_import.tests.models.char.readonly records by querying it and filtering it with criteria and options.

func (*Client) FindBaseImportTestsModelsCharRequired

func (c *Client) FindBaseImportTestsModelsCharRequired(criteria *Criteria) (*BaseImportTestsModelsCharRequired, error)

FindBaseImportTestsModelsCharRequired finds base_import.tests.models.char.required record by querying it with criteria.

func (*Client) FindBaseImportTestsModelsCharRequiredId

func (c *Client) FindBaseImportTestsModelsCharRequiredId(criteria *Criteria, options *Options) (int64, error)

FindBaseImportTestsModelsCharRequiredId finds record id by querying it with criteria.

func (*Client) FindBaseImportTestsModelsCharRequiredIds

func (c *Client) FindBaseImportTestsModelsCharRequiredIds(criteria *Criteria, options *Options) ([]int64, error)

FindBaseImportTestsModelsCharRequiredIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindBaseImportTestsModelsCharRequireds

func (c *Client) FindBaseImportTestsModelsCharRequireds(criteria *Criteria, options *Options) (*BaseImportTestsModelsCharRequireds, error)

FindBaseImportTestsModelsCharRequireds finds base_import.tests.models.char.required records by querying it and filtering it with criteria and options.

func (*Client) FindBaseImportTestsModelsCharStates

func (c *Client) FindBaseImportTestsModelsCharStates(criteria *Criteria) (*BaseImportTestsModelsCharStates, error)

FindBaseImportTestsModelsCharStates finds base_import.tests.models.char.states record by querying it with criteria.

func (*Client) FindBaseImportTestsModelsCharStatesId

func (c *Client) FindBaseImportTestsModelsCharStatesId(criteria *Criteria, options *Options) (int64, error)

FindBaseImportTestsModelsCharStatesId finds record id by querying it with criteria.

func (*Client) FindBaseImportTestsModelsCharStatesIds

func (c *Client) FindBaseImportTestsModelsCharStatesIds(criteria *Criteria, options *Options) ([]int64, error)

FindBaseImportTestsModelsCharStatesIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindBaseImportTestsModelsCharStatess

func (c *Client) FindBaseImportTestsModelsCharStatess(criteria *Criteria, options *Options) (*BaseImportTestsModelsCharStatess, error)

FindBaseImportTestsModelsCharStatess finds base_import.tests.models.char.states records by querying it and filtering it with criteria and options.

func (*Client) FindBaseImportTestsModelsCharStillreadonly

func (c *Client) FindBaseImportTestsModelsCharStillreadonly(criteria *Criteria) (*BaseImportTestsModelsCharStillreadonly, error)

FindBaseImportTestsModelsCharStillreadonly finds base_import.tests.models.char.stillreadonly record by querying it with criteria.

func (*Client) FindBaseImportTestsModelsCharStillreadonlyId

func (c *Client) FindBaseImportTestsModelsCharStillreadonlyId(criteria *Criteria, options *Options) (int64, error)

FindBaseImportTestsModelsCharStillreadonlyId finds record id by querying it with criteria.

func (*Client) FindBaseImportTestsModelsCharStillreadonlyIds

func (c *Client) FindBaseImportTestsModelsCharStillreadonlyIds(criteria *Criteria, options *Options) ([]int64, error)

FindBaseImportTestsModelsCharStillreadonlyIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindBaseImportTestsModelsCharStillreadonlys

func (c *Client) FindBaseImportTestsModelsCharStillreadonlys(criteria *Criteria, options *Options) (*BaseImportTestsModelsCharStillreadonlys, error)

FindBaseImportTestsModelsCharStillreadonlys finds base_import.tests.models.char.stillreadonly records by querying it and filtering it with criteria and options.

func (*Client) FindBaseImportTestsModelsChars

func (c *Client) FindBaseImportTestsModelsChars(criteria *Criteria, options *Options) (*BaseImportTestsModelsChars, error)

FindBaseImportTestsModelsChars finds base_import.tests.models.char records by querying it and filtering it with criteria and options.

func (*Client) FindBaseImportTestsModelsComplex

func (c *Client) FindBaseImportTestsModelsComplex(criteria *Criteria) (*BaseImportTestsModelsComplex, error)

FindBaseImportTestsModelsComplex finds base_import.tests.models.complex record by querying it with criteria.

func (*Client) FindBaseImportTestsModelsComplexId

func (c *Client) FindBaseImportTestsModelsComplexId(criteria *Criteria, options *Options) (int64, error)

FindBaseImportTestsModelsComplexId finds record id by querying it with criteria.

func (*Client) FindBaseImportTestsModelsComplexIds

func (c *Client) FindBaseImportTestsModelsComplexIds(criteria *Criteria, options *Options) ([]int64, error)

FindBaseImportTestsModelsComplexIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindBaseImportTestsModelsComplexs

func (c *Client) FindBaseImportTestsModelsComplexs(criteria *Criteria, options *Options) (*BaseImportTestsModelsComplexs, error)

FindBaseImportTestsModelsComplexs finds base_import.tests.models.complex records by querying it and filtering it with criteria and options.

func (*Client) FindBaseImportTestsModelsFloat

func (c *Client) FindBaseImportTestsModelsFloat(criteria *Criteria) (*BaseImportTestsModelsFloat, error)

FindBaseImportTestsModelsFloat finds base_import.tests.models.float record by querying it with criteria.

func (*Client) FindBaseImportTestsModelsFloatId

func (c *Client) FindBaseImportTestsModelsFloatId(criteria *Criteria, options *Options) (int64, error)

FindBaseImportTestsModelsFloatId finds record id by querying it with criteria.

func (*Client) FindBaseImportTestsModelsFloatIds

func (c *Client) FindBaseImportTestsModelsFloatIds(criteria *Criteria, options *Options) ([]int64, error)

FindBaseImportTestsModelsFloatIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindBaseImportTestsModelsFloats

func (c *Client) FindBaseImportTestsModelsFloats(criteria *Criteria, options *Options) (*BaseImportTestsModelsFloats, error)

FindBaseImportTestsModelsFloats finds base_import.tests.models.float records by querying it and filtering it with criteria and options.

func (*Client) FindBaseImportTestsModelsM2O

func (c *Client) FindBaseImportTestsModelsM2O(criteria *Criteria) (*BaseImportTestsModelsM2O, error)

FindBaseImportTestsModelsM2O finds base_import.tests.models.m2o record by querying it with criteria.

func (*Client) FindBaseImportTestsModelsM2OId

func (c *Client) FindBaseImportTestsModelsM2OId(criteria *Criteria, options *Options) (int64, error)

FindBaseImportTestsModelsM2OId finds record id by querying it with criteria.

func (*Client) FindBaseImportTestsModelsM2OIds

func (c *Client) FindBaseImportTestsModelsM2OIds(criteria *Criteria, options *Options) ([]int64, error)

FindBaseImportTestsModelsM2OIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindBaseImportTestsModelsM2ORelated

func (c *Client) FindBaseImportTestsModelsM2ORelated(criteria *Criteria) (*BaseImportTestsModelsM2ORelated, error)

FindBaseImportTestsModelsM2ORelated finds base_import.tests.models.m2o.related record by querying it with criteria.

func (*Client) FindBaseImportTestsModelsM2ORelatedId

func (c *Client) FindBaseImportTestsModelsM2ORelatedId(criteria *Criteria, options *Options) (int64, error)

FindBaseImportTestsModelsM2ORelatedId finds record id by querying it with criteria.

func (*Client) FindBaseImportTestsModelsM2ORelatedIds

func (c *Client) FindBaseImportTestsModelsM2ORelatedIds(criteria *Criteria, options *Options) ([]int64, error)

FindBaseImportTestsModelsM2ORelatedIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindBaseImportTestsModelsM2ORelateds

func (c *Client) FindBaseImportTestsModelsM2ORelateds(criteria *Criteria, options *Options) (*BaseImportTestsModelsM2ORelateds, error)

FindBaseImportTestsModelsM2ORelateds finds base_import.tests.models.m2o.related records by querying it and filtering it with criteria and options.

func (*Client) FindBaseImportTestsModelsM2ORequired

func (c *Client) FindBaseImportTestsModelsM2ORequired(criteria *Criteria) (*BaseImportTestsModelsM2ORequired, error)

FindBaseImportTestsModelsM2ORequired finds base_import.tests.models.m2o.required record by querying it with criteria.

func (*Client) FindBaseImportTestsModelsM2ORequiredId

func (c *Client) FindBaseImportTestsModelsM2ORequiredId(criteria *Criteria, options *Options) (int64, error)

FindBaseImportTestsModelsM2ORequiredId finds record id by querying it with criteria.

func (*Client) FindBaseImportTestsModelsM2ORequiredIds

func (c *Client) FindBaseImportTestsModelsM2ORequiredIds(criteria *Criteria, options *Options) ([]int64, error)

FindBaseImportTestsModelsM2ORequiredIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindBaseImportTestsModelsM2ORequiredRelated

func (c *Client) FindBaseImportTestsModelsM2ORequiredRelated(criteria *Criteria) (*BaseImportTestsModelsM2ORequiredRelated, error)

FindBaseImportTestsModelsM2ORequiredRelated finds base_import.tests.models.m2o.required.related record by querying it with criteria.

func (*Client) FindBaseImportTestsModelsM2ORequiredRelatedId

func (c *Client) FindBaseImportTestsModelsM2ORequiredRelatedId(criteria *Criteria, options *Options) (int64, error)

FindBaseImportTestsModelsM2ORequiredRelatedId finds record id by querying it with criteria.

func (*Client) FindBaseImportTestsModelsM2ORequiredRelatedIds

func (c *Client) FindBaseImportTestsModelsM2ORequiredRelatedIds(criteria *Criteria, options *Options) ([]int64, error)

FindBaseImportTestsModelsM2ORequiredRelatedIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindBaseImportTestsModelsM2ORequiredRelateds

func (c *Client) FindBaseImportTestsModelsM2ORequiredRelateds(criteria *Criteria, options *Options) (*BaseImportTestsModelsM2ORequiredRelateds, error)

FindBaseImportTestsModelsM2ORequiredRelateds finds base_import.tests.models.m2o.required.related records by querying it and filtering it with criteria and options.

func (*Client) FindBaseImportTestsModelsM2ORequireds

func (c *Client) FindBaseImportTestsModelsM2ORequireds(criteria *Criteria, options *Options) (*BaseImportTestsModelsM2ORequireds, error)

FindBaseImportTestsModelsM2ORequireds finds base_import.tests.models.m2o.required records by querying it and filtering it with criteria and options.

func (*Client) FindBaseImportTestsModelsM2Os

func (c *Client) FindBaseImportTestsModelsM2Os(criteria *Criteria, options *Options) (*BaseImportTestsModelsM2Os, error)

FindBaseImportTestsModelsM2Os finds base_import.tests.models.m2o records by querying it and filtering it with criteria and options.

func (*Client) FindBaseImportTestsModelsO2M

func (c *Client) FindBaseImportTestsModelsO2M(criteria *Criteria) (*BaseImportTestsModelsO2M, error)

FindBaseImportTestsModelsO2M finds base_import.tests.models.o2m record by querying it with criteria.

func (*Client) FindBaseImportTestsModelsO2MChild

func (c *Client) FindBaseImportTestsModelsO2MChild(criteria *Criteria) (*BaseImportTestsModelsO2MChild, error)

FindBaseImportTestsModelsO2MChild finds base_import.tests.models.o2m.child record by querying it with criteria.

func (*Client) FindBaseImportTestsModelsO2MChildId

func (c *Client) FindBaseImportTestsModelsO2MChildId(criteria *Criteria, options *Options) (int64, error)

FindBaseImportTestsModelsO2MChildId finds record id by querying it with criteria.

func (*Client) FindBaseImportTestsModelsO2MChildIds

func (c *Client) FindBaseImportTestsModelsO2MChildIds(criteria *Criteria, options *Options) ([]int64, error)

FindBaseImportTestsModelsO2MChildIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindBaseImportTestsModelsO2MChilds

func (c *Client) FindBaseImportTestsModelsO2MChilds(criteria *Criteria, options *Options) (*BaseImportTestsModelsO2MChilds, error)

FindBaseImportTestsModelsO2MChilds finds base_import.tests.models.o2m.child records by querying it and filtering it with criteria and options.

func (*Client) FindBaseImportTestsModelsO2MId

func (c *Client) FindBaseImportTestsModelsO2MId(criteria *Criteria, options *Options) (int64, error)

FindBaseImportTestsModelsO2MId finds record id by querying it with criteria.

func (*Client) FindBaseImportTestsModelsO2MIds

func (c *Client) FindBaseImportTestsModelsO2MIds(criteria *Criteria, options *Options) ([]int64, error)

FindBaseImportTestsModelsO2MIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindBaseImportTestsModelsO2Ms

func (c *Client) FindBaseImportTestsModelsO2Ms(criteria *Criteria, options *Options) (*BaseImportTestsModelsO2Ms, error)

FindBaseImportTestsModelsO2Ms finds base_import.tests.models.o2m records by querying it and filtering it with criteria and options.

func (*Client) FindBaseImportTestsModelsPreview

func (c *Client) FindBaseImportTestsModelsPreview(criteria *Criteria) (*BaseImportTestsModelsPreview, error)

FindBaseImportTestsModelsPreview finds base_import.tests.models.preview record by querying it with criteria.

func (*Client) FindBaseImportTestsModelsPreviewId

func (c *Client) FindBaseImportTestsModelsPreviewId(criteria *Criteria, options *Options) (int64, error)

FindBaseImportTestsModelsPreviewId finds record id by querying it with criteria.

func (*Client) FindBaseImportTestsModelsPreviewIds

func (c *Client) FindBaseImportTestsModelsPreviewIds(criteria *Criteria, options *Options) ([]int64, error)

FindBaseImportTestsModelsPreviewIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindBaseImportTestsModelsPreviews

func (c *Client) FindBaseImportTestsModelsPreviews(criteria *Criteria, options *Options) (*BaseImportTestsModelsPreviews, error)

FindBaseImportTestsModelsPreviews finds base_import.tests.models.preview records by querying it and filtering it with criteria and options.

func (*Client) FindBaseLanguageExport

func (c *Client) FindBaseLanguageExport(criteria *Criteria) (*BaseLanguageExport, error)

FindBaseLanguageExport finds base.language.export record by querying it with criteria.

func (*Client) FindBaseLanguageExportId

func (c *Client) FindBaseLanguageExportId(criteria *Criteria, options *Options) (int64, error)

FindBaseLanguageExportId finds record id by querying it with criteria.

func (*Client) FindBaseLanguageExportIds

func (c *Client) FindBaseLanguageExportIds(criteria *Criteria, options *Options) ([]int64, error)

FindBaseLanguageExportIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindBaseLanguageExports

func (c *Client) FindBaseLanguageExports(criteria *Criteria, options *Options) (*BaseLanguageExports, error)

FindBaseLanguageExports finds base.language.export records by querying it and filtering it with criteria and options.

func (*Client) FindBaseLanguageImport

func (c *Client) FindBaseLanguageImport(criteria *Criteria) (*BaseLanguageImport, error)

FindBaseLanguageImport finds base.language.import record by querying it with criteria.

func (*Client) FindBaseLanguageImportId

func (c *Client) FindBaseLanguageImportId(criteria *Criteria, options *Options) (int64, error)

FindBaseLanguageImportId finds record id by querying it with criteria.

func (*Client) FindBaseLanguageImportIds

func (c *Client) FindBaseLanguageImportIds(criteria *Criteria, options *Options) ([]int64, error)

FindBaseLanguageImportIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindBaseLanguageImports

func (c *Client) FindBaseLanguageImports(criteria *Criteria, options *Options) (*BaseLanguageImports, error)

FindBaseLanguageImports finds base.language.import records by querying it and filtering it with criteria and options.

func (*Client) FindBaseLanguageInstall

func (c *Client) FindBaseLanguageInstall(criteria *Criteria) (*BaseLanguageInstall, error)

FindBaseLanguageInstall finds base.language.install record by querying it with criteria.

func (*Client) FindBaseLanguageInstallId

func (c *Client) FindBaseLanguageInstallId(criteria *Criteria, options *Options) (int64, error)

FindBaseLanguageInstallId finds record id by querying it with criteria.

func (*Client) FindBaseLanguageInstallIds

func (c *Client) FindBaseLanguageInstallIds(criteria *Criteria, options *Options) ([]int64, error)

FindBaseLanguageInstallIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindBaseLanguageInstalls

func (c *Client) FindBaseLanguageInstalls(criteria *Criteria, options *Options) (*BaseLanguageInstalls, error)

FindBaseLanguageInstalls finds base.language.install records by querying it and filtering it with criteria and options.

func (*Client) FindBaseModuleUninstall

func (c *Client) FindBaseModuleUninstall(criteria *Criteria) (*BaseModuleUninstall, error)

FindBaseModuleUninstall finds base.module.uninstall record by querying it with criteria.

func (*Client) FindBaseModuleUninstallId

func (c *Client) FindBaseModuleUninstallId(criteria *Criteria, options *Options) (int64, error)

FindBaseModuleUninstallId finds record id by querying it with criteria.

func (*Client) FindBaseModuleUninstallIds

func (c *Client) FindBaseModuleUninstallIds(criteria *Criteria, options *Options) ([]int64, error)

FindBaseModuleUninstallIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindBaseModuleUninstalls

func (c *Client) FindBaseModuleUninstalls(criteria *Criteria, options *Options) (*BaseModuleUninstalls, error)

FindBaseModuleUninstalls finds base.module.uninstall records by querying it and filtering it with criteria and options.

func (*Client) FindBaseModuleUpdate

func (c *Client) FindBaseModuleUpdate(criteria *Criteria) (*BaseModuleUpdate, error)

FindBaseModuleUpdate finds base.module.update record by querying it with criteria.

func (*Client) FindBaseModuleUpdateId

func (c *Client) FindBaseModuleUpdateId(criteria *Criteria, options *Options) (int64, error)

FindBaseModuleUpdateId finds record id by querying it with criteria.

func (*Client) FindBaseModuleUpdateIds

func (c *Client) FindBaseModuleUpdateIds(criteria *Criteria, options *Options) ([]int64, error)

FindBaseModuleUpdateIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindBaseModuleUpdates

func (c *Client) FindBaseModuleUpdates(criteria *Criteria, options *Options) (*BaseModuleUpdates, error)

FindBaseModuleUpdates finds base.module.update records by querying it and filtering it with criteria and options.

func (*Client) FindBaseModuleUpgrade

func (c *Client) FindBaseModuleUpgrade(criteria *Criteria) (*BaseModuleUpgrade, error)

FindBaseModuleUpgrade finds base.module.upgrade record by querying it with criteria.

func (*Client) FindBaseModuleUpgradeId

func (c *Client) FindBaseModuleUpgradeId(criteria *Criteria, options *Options) (int64, error)

FindBaseModuleUpgradeId finds record id by querying it with criteria.

func (*Client) FindBaseModuleUpgradeIds

func (c *Client) FindBaseModuleUpgradeIds(criteria *Criteria, options *Options) ([]int64, error)

FindBaseModuleUpgradeIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindBaseModuleUpgrades

func (c *Client) FindBaseModuleUpgrades(criteria *Criteria, options *Options) (*BaseModuleUpgrades, error)

FindBaseModuleUpgrades finds base.module.upgrade records by querying it and filtering it with criteria and options.

func (*Client) FindBasePartnerMergeAutomaticWizard

func (c *Client) FindBasePartnerMergeAutomaticWizard(criteria *Criteria) (*BasePartnerMergeAutomaticWizard, error)

FindBasePartnerMergeAutomaticWizard finds base.partner.merge.automatic.wizard record by querying it with criteria.

func (*Client) FindBasePartnerMergeAutomaticWizardId

func (c *Client) FindBasePartnerMergeAutomaticWizardId(criteria *Criteria, options *Options) (int64, error)

FindBasePartnerMergeAutomaticWizardId finds record id by querying it with criteria.

func (*Client) FindBasePartnerMergeAutomaticWizardIds

func (c *Client) FindBasePartnerMergeAutomaticWizardIds(criteria *Criteria, options *Options) ([]int64, error)

FindBasePartnerMergeAutomaticWizardIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindBasePartnerMergeAutomaticWizards

func (c *Client) FindBasePartnerMergeAutomaticWizards(criteria *Criteria, options *Options) (*BasePartnerMergeAutomaticWizards, error)

FindBasePartnerMergeAutomaticWizards finds base.partner.merge.automatic.wizard records by querying it and filtering it with criteria and options.

func (*Client) FindBasePartnerMergeLine

func (c *Client) FindBasePartnerMergeLine(criteria *Criteria) (*BasePartnerMergeLine, error)

FindBasePartnerMergeLine finds base.partner.merge.line record by querying it with criteria.

func (*Client) FindBasePartnerMergeLineId

func (c *Client) FindBasePartnerMergeLineId(criteria *Criteria, options *Options) (int64, error)

FindBasePartnerMergeLineId finds record id by querying it with criteria.

func (*Client) FindBasePartnerMergeLineIds

func (c *Client) FindBasePartnerMergeLineIds(criteria *Criteria, options *Options) ([]int64, error)

FindBasePartnerMergeLineIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindBasePartnerMergeLines

func (c *Client) FindBasePartnerMergeLines(criteria *Criteria, options *Options) (*BasePartnerMergeLines, error)

FindBasePartnerMergeLines finds base.partner.merge.line records by querying it and filtering it with criteria and options.

func (*Client) FindBaseUpdateTranslations

func (c *Client) FindBaseUpdateTranslations(criteria *Criteria) (*BaseUpdateTranslations, error)

FindBaseUpdateTranslations finds base.update.translations record by querying it with criteria.

func (*Client) FindBaseUpdateTranslationsId

func (c *Client) FindBaseUpdateTranslationsId(criteria *Criteria, options *Options) (int64, error)

FindBaseUpdateTranslationsId finds record id by querying it with criteria.

func (*Client) FindBaseUpdateTranslationsIds

func (c *Client) FindBaseUpdateTranslationsIds(criteria *Criteria, options *Options) ([]int64, error)

FindBaseUpdateTranslationsIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindBaseUpdateTranslationss

func (c *Client) FindBaseUpdateTranslationss(criteria *Criteria, options *Options) (*BaseUpdateTranslationss, error)

FindBaseUpdateTranslationss finds base.update.translations records by querying it and filtering it with criteria and options.

func (*Client) FindBases

func (c *Client) FindBases(criteria *Criteria, options *Options) (*Bases, error)

FindBases finds base records by querying it and filtering it with criteria and options.

func (*Client) FindBlogBlog

func (c *Client) FindBlogBlog(criteria *Criteria) (*BlogBlog, error)

FindBlogBlog finds blog.blog record by querying it with criteria.

func (*Client) FindBlogBlogId

func (c *Client) FindBlogBlogId(criteria *Criteria, options *Options) (int64, error)

FindBlogBlogId finds record id by querying it with criteria.

func (*Client) FindBlogBlogIds

func (c *Client) FindBlogBlogIds(criteria *Criteria, options *Options) ([]int64, error)

FindBlogBlogIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindBlogBlogs

func (c *Client) FindBlogBlogs(criteria *Criteria, options *Options) (*BlogBlogs, error)

FindBlogBlogs finds blog.blog records by querying it and filtering it with criteria and options.

func (*Client) FindBlogPost

func (c *Client) FindBlogPost(criteria *Criteria) (*BlogPost, error)

FindBlogPost finds blog.post record by querying it with criteria.

func (*Client) FindBlogPostId

func (c *Client) FindBlogPostId(criteria *Criteria, options *Options) (int64, error)

FindBlogPostId finds record id by querying it with criteria.

func (*Client) FindBlogPostIds

func (c *Client) FindBlogPostIds(criteria *Criteria, options *Options) ([]int64, error)

FindBlogPostIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindBlogPosts

func (c *Client) FindBlogPosts(criteria *Criteria, options *Options) (*BlogPosts, error)

FindBlogPosts finds blog.post records by querying it and filtering it with criteria and options.

func (*Client) FindBlogTag

func (c *Client) FindBlogTag(criteria *Criteria) (*BlogTag, error)

FindBlogTag finds blog.tag record by querying it with criteria.

func (*Client) FindBlogTagCategory

func (c *Client) FindBlogTagCategory(criteria *Criteria) (*BlogTagCategory, error)

FindBlogTagCategory finds blog.tag.category record by querying it with criteria.

func (*Client) FindBlogTagCategoryId

func (c *Client) FindBlogTagCategoryId(criteria *Criteria, options *Options) (int64, error)

FindBlogTagCategoryId finds record id by querying it with criteria.

func (*Client) FindBlogTagCategoryIds

func (c *Client) FindBlogTagCategoryIds(criteria *Criteria, options *Options) ([]int64, error)

FindBlogTagCategoryIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindBlogTagCategorys

func (c *Client) FindBlogTagCategorys(criteria *Criteria, options *Options) (*BlogTagCategorys, error)

FindBlogTagCategorys finds blog.tag.category records by querying it and filtering it with criteria and options.

func (*Client) FindBlogTagId

func (c *Client) FindBlogTagId(criteria *Criteria, options *Options) (int64, error)

FindBlogTagId finds record id by querying it with criteria.

func (*Client) FindBlogTagIds

func (c *Client) FindBlogTagIds(criteria *Criteria, options *Options) ([]int64, error)

FindBlogTagIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindBlogTags

func (c *Client) FindBlogTags(criteria *Criteria, options *Options) (*BlogTags, error)

FindBlogTags finds blog.tag records by querying it and filtering it with criteria and options.

func (*Client) FindBoardBoard

func (c *Client) FindBoardBoard(criteria *Criteria) (*BoardBoard, error)

FindBoardBoard finds board.board record by querying it with criteria.

func (*Client) FindBoardBoardId

func (c *Client) FindBoardBoardId(criteria *Criteria, options *Options) (int64, error)

FindBoardBoardId finds record id by querying it with criteria.

func (*Client) FindBoardBoardIds

func (c *Client) FindBoardBoardIds(criteria *Criteria, options *Options) ([]int64, error)

FindBoardBoardIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindBoardBoards

func (c *Client) FindBoardBoards(criteria *Criteria, options *Options) (*BoardBoards, error)

FindBoardBoards finds board.board records by querying it and filtering it with criteria and options.

func (*Client) FindBusBus

func (c *Client) FindBusBus(criteria *Criteria) (*BusBus, error)

FindBusBus finds bus.bus record by querying it with criteria.

func (*Client) FindBusBusId

func (c *Client) FindBusBusId(criteria *Criteria, options *Options) (int64, error)

FindBusBusId finds record id by querying it with criteria.

func (*Client) FindBusBusIds

func (c *Client) FindBusBusIds(criteria *Criteria, options *Options) ([]int64, error)

FindBusBusIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindBusBuss

func (c *Client) FindBusBuss(criteria *Criteria, options *Options) (*BusBuss, error)

FindBusBuss finds bus.bus records by querying it and filtering it with criteria and options.

func (*Client) FindBusPresence

func (c *Client) FindBusPresence(criteria *Criteria) (*BusPresence, error)

FindBusPresence finds bus.presence record by querying it with criteria.

func (*Client) FindBusPresenceId

func (c *Client) FindBusPresenceId(criteria *Criteria, options *Options) (int64, error)

FindBusPresenceId finds record id by querying it with criteria.

func (*Client) FindBusPresenceIds

func (c *Client) FindBusPresenceIds(criteria *Criteria, options *Options) ([]int64, error)

FindBusPresenceIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindBusPresences

func (c *Client) FindBusPresences(criteria *Criteria, options *Options) (*BusPresences, error)

FindBusPresences finds bus.presence records by querying it and filtering it with criteria and options.

func (*Client) FindCalendarAlarm

func (c *Client) FindCalendarAlarm(criteria *Criteria) (*CalendarAlarm, error)

FindCalendarAlarm finds calendar.alarm record by querying it with criteria.

func (*Client) FindCalendarAlarmId

func (c *Client) FindCalendarAlarmId(criteria *Criteria, options *Options) (int64, error)

FindCalendarAlarmId finds record id by querying it with criteria.

func (*Client) FindCalendarAlarmIds

func (c *Client) FindCalendarAlarmIds(criteria *Criteria, options *Options) ([]int64, error)

FindCalendarAlarmIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindCalendarAlarmManager

func (c *Client) FindCalendarAlarmManager(criteria *Criteria) (*CalendarAlarmManager, error)

FindCalendarAlarmManager finds calendar.alarm_manager record by querying it with criteria.

func (*Client) FindCalendarAlarmManagerId

func (c *Client) FindCalendarAlarmManagerId(criteria *Criteria, options *Options) (int64, error)

FindCalendarAlarmManagerId finds record id by querying it with criteria.

func (*Client) FindCalendarAlarmManagerIds

func (c *Client) FindCalendarAlarmManagerIds(criteria *Criteria, options *Options) ([]int64, error)

FindCalendarAlarmManagerIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindCalendarAlarmManagers

func (c *Client) FindCalendarAlarmManagers(criteria *Criteria, options *Options) (*CalendarAlarmManagers, error)

FindCalendarAlarmManagers finds calendar.alarm_manager records by querying it and filtering it with criteria and options.

func (*Client) FindCalendarAlarms

func (c *Client) FindCalendarAlarms(criteria *Criteria, options *Options) (*CalendarAlarms, error)

FindCalendarAlarms finds calendar.alarm records by querying it and filtering it with criteria and options.

func (*Client) FindCalendarAttendee

func (c *Client) FindCalendarAttendee(criteria *Criteria) (*CalendarAttendee, error)

FindCalendarAttendee finds calendar.attendee record by querying it with criteria.

func (*Client) FindCalendarAttendeeId

func (c *Client) FindCalendarAttendeeId(criteria *Criteria, options *Options) (int64, error)

FindCalendarAttendeeId finds record id by querying it with criteria.

func (*Client) FindCalendarAttendeeIds

func (c *Client) FindCalendarAttendeeIds(criteria *Criteria, options *Options) ([]int64, error)

FindCalendarAttendeeIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindCalendarAttendees

func (c *Client) FindCalendarAttendees(criteria *Criteria, options *Options) (*CalendarAttendees, error)

FindCalendarAttendees finds calendar.attendee records by querying it and filtering it with criteria and options.

func (*Client) FindCalendarContacts

func (c *Client) FindCalendarContacts(criteria *Criteria) (*CalendarContacts, error)

FindCalendarContacts finds calendar.contacts record by querying it with criteria.

func (*Client) FindCalendarContactsId

func (c *Client) FindCalendarContactsId(criteria *Criteria, options *Options) (int64, error)

FindCalendarContactsId finds record id by querying it with criteria.

func (*Client) FindCalendarContactsIds

func (c *Client) FindCalendarContactsIds(criteria *Criteria, options *Options) ([]int64, error)

FindCalendarContactsIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindCalendarContactss

func (c *Client) FindCalendarContactss(criteria *Criteria, options *Options) (*CalendarContactss, error)

FindCalendarContactss finds calendar.contacts records by querying it and filtering it with criteria and options.

func (*Client) FindCalendarEvent

func (c *Client) FindCalendarEvent(criteria *Criteria) (*CalendarEvent, error)

FindCalendarEvent finds calendar.event record by querying it with criteria.

func (*Client) FindCalendarEventId

func (c *Client) FindCalendarEventId(criteria *Criteria, options *Options) (int64, error)

FindCalendarEventId finds record id by querying it with criteria.

func (*Client) FindCalendarEventIds

func (c *Client) FindCalendarEventIds(criteria *Criteria, options *Options) ([]int64, error)

FindCalendarEventIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindCalendarEventType

func (c *Client) FindCalendarEventType(criteria *Criteria) (*CalendarEventType, error)

FindCalendarEventType finds calendar.event.type record by querying it with criteria.

func (*Client) FindCalendarEventTypeId

func (c *Client) FindCalendarEventTypeId(criteria *Criteria, options *Options) (int64, error)

FindCalendarEventTypeId finds record id by querying it with criteria.

func (*Client) FindCalendarEventTypeIds

func (c *Client) FindCalendarEventTypeIds(criteria *Criteria, options *Options) ([]int64, error)

FindCalendarEventTypeIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindCalendarEventTypes

func (c *Client) FindCalendarEventTypes(criteria *Criteria, options *Options) (*CalendarEventTypes, error)

FindCalendarEventTypes finds calendar.event.type records by querying it and filtering it with criteria and options.

func (*Client) FindCalendarEvents

func (c *Client) FindCalendarEvents(criteria *Criteria, options *Options) (*CalendarEvents, error)

FindCalendarEvents finds calendar.event records by querying it and filtering it with criteria and options.

func (*Client) FindCashBoxOut

func (c *Client) FindCashBoxOut(criteria *Criteria) (*CashBoxOut, error)

FindCashBoxOut finds cash.box.out record by querying it with criteria.

func (*Client) FindCashBoxOutId

func (c *Client) FindCashBoxOutId(criteria *Criteria, options *Options) (int64, error)

FindCashBoxOutId finds record id by querying it with criteria.

func (*Client) FindCashBoxOutIds

func (c *Client) FindCashBoxOutIds(criteria *Criteria, options *Options) ([]int64, error)

FindCashBoxOutIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindCashBoxOuts

func (c *Client) FindCashBoxOuts(criteria *Criteria, options *Options) (*CashBoxOuts, error)

FindCashBoxOuts finds cash.box.out records by querying it and filtering it with criteria and options.

func (*Client) FindChangePasswordUser

func (c *Client) FindChangePasswordUser(criteria *Criteria) (*ChangePasswordUser, error)

FindChangePasswordUser finds change.password.user record by querying it with criteria.

func (*Client) FindChangePasswordUserId

func (c *Client) FindChangePasswordUserId(criteria *Criteria, options *Options) (int64, error)

FindChangePasswordUserId finds record id by querying it with criteria.

func (*Client) FindChangePasswordUserIds

func (c *Client) FindChangePasswordUserIds(criteria *Criteria, options *Options) ([]int64, error)

FindChangePasswordUserIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindChangePasswordUsers

func (c *Client) FindChangePasswordUsers(criteria *Criteria, options *Options) (*ChangePasswordUsers, error)

FindChangePasswordUsers finds change.password.user records by querying it and filtering it with criteria and options.

func (*Client) FindChangePasswordWizard

func (c *Client) FindChangePasswordWizard(criteria *Criteria) (*ChangePasswordWizard, error)

FindChangePasswordWizard finds change.password.wizard record by querying it with criteria.

func (*Client) FindChangePasswordWizardId

func (c *Client) FindChangePasswordWizardId(criteria *Criteria, options *Options) (int64, error)

FindChangePasswordWizardId finds record id by querying it with criteria.

func (*Client) FindChangePasswordWizardIds

func (c *Client) FindChangePasswordWizardIds(criteria *Criteria, options *Options) ([]int64, error)

FindChangePasswordWizardIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindChangePasswordWizards

func (c *Client) FindChangePasswordWizards(criteria *Criteria, options *Options) (*ChangePasswordWizards, error)

FindChangePasswordWizards finds change.password.wizard records by querying it and filtering it with criteria and options.

func (*Client) FindCmsArticle

func (c *Client) FindCmsArticle(criteria *Criteria) (*CmsArticle, error)

FindCmsArticle finds cms.article record by querying it with criteria.

func (*Client) FindCmsArticleId

func (c *Client) FindCmsArticleId(criteria *Criteria, options *Options) (int64, error)

FindCmsArticleId finds record id by querying it with criteria.

func (*Client) FindCmsArticleIds

func (c *Client) FindCmsArticleIds(criteria *Criteria, options *Options) ([]int64, error)

FindCmsArticleIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindCmsArticles

func (c *Client) FindCmsArticles(criteria *Criteria, options *Options) (*CmsArticles, error)

FindCmsArticles finds cms.article records by querying it and filtering it with criteria and options.

func (*Client) FindCrmActivityReport

func (c *Client) FindCrmActivityReport(criteria *Criteria) (*CrmActivityReport, error)

FindCrmActivityReport finds crm.activity.report record by querying it with criteria.

func (*Client) FindCrmActivityReportId

func (c *Client) FindCrmActivityReportId(criteria *Criteria, options *Options) (int64, error)

FindCrmActivityReportId finds record id by querying it with criteria.

func (*Client) FindCrmActivityReportIds

func (c *Client) FindCrmActivityReportIds(criteria *Criteria, options *Options) ([]int64, error)

FindCrmActivityReportIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindCrmActivityReports

func (c *Client) FindCrmActivityReports(criteria *Criteria, options *Options) (*CrmActivityReports, error)

FindCrmActivityReports finds crm.activity.report records by querying it and filtering it with criteria and options.

func (*Client) FindCrmLead

func (c *Client) FindCrmLead(criteria *Criteria) (*CrmLead, error)

FindCrmLead finds crm.lead record by querying it with criteria.

func (*Client) FindCrmLead2OpportunityPartner

func (c *Client) FindCrmLead2OpportunityPartner(criteria *Criteria) (*CrmLead2OpportunityPartner, error)

FindCrmLead2OpportunityPartner finds crm.lead2opportunity.partner record by querying it with criteria.

func (*Client)