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) FindCrmLead2OpportunityPartnerId

func (c *Client) FindCrmLead2OpportunityPartnerId(criteria *Criteria, options *Options) (int64, error)

FindCrmLead2OpportunityPartnerId finds record id by querying it with criteria.

func (*Client) FindCrmLead2OpportunityPartnerIds

func (c *Client) FindCrmLead2OpportunityPartnerIds(criteria *Criteria, options *Options) ([]int64, error)

FindCrmLead2OpportunityPartnerIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindCrmLead2OpportunityPartnerMass

func (c *Client) FindCrmLead2OpportunityPartnerMass(criteria *Criteria) (*CrmLead2OpportunityPartnerMass, error)

FindCrmLead2OpportunityPartnerMass finds crm.lead2opportunity.partner.mass record by querying it with criteria.

func (*Client) FindCrmLead2OpportunityPartnerMassId

func (c *Client) FindCrmLead2OpportunityPartnerMassId(criteria *Criteria, options *Options) (int64, error)

FindCrmLead2OpportunityPartnerMassId finds record id by querying it with criteria.

func (*Client) FindCrmLead2OpportunityPartnerMassIds

func (c *Client) FindCrmLead2OpportunityPartnerMassIds(criteria *Criteria, options *Options) ([]int64, error)

FindCrmLead2OpportunityPartnerMassIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindCrmLead2OpportunityPartnerMasss

func (c *Client) FindCrmLead2OpportunityPartnerMasss(criteria *Criteria, options *Options) (*CrmLead2OpportunityPartnerMasss, error)

FindCrmLead2OpportunityPartnerMasss finds crm.lead2opportunity.partner.mass records by querying it and filtering it with criteria and options.

func (*Client) FindCrmLead2OpportunityPartners

func (c *Client) FindCrmLead2OpportunityPartners(criteria *Criteria, options *Options) (*CrmLead2OpportunityPartners, error)

FindCrmLead2OpportunityPartners finds crm.lead2opportunity.partner records by querying it and filtering it with criteria and options.

func (*Client) FindCrmLeadId

func (c *Client) FindCrmLeadId(criteria *Criteria, options *Options) (int64, error)

FindCrmLeadId finds record id by querying it with criteria.

func (*Client) FindCrmLeadIds

func (c *Client) FindCrmLeadIds(criteria *Criteria, options *Options) ([]int64, error)

FindCrmLeadIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindCrmLeadLost

func (c *Client) FindCrmLeadLost(criteria *Criteria) (*CrmLeadLost, error)

FindCrmLeadLost finds crm.lead.lost record by querying it with criteria.

func (*Client) FindCrmLeadLostId

func (c *Client) FindCrmLeadLostId(criteria *Criteria, options *Options) (int64, error)

FindCrmLeadLostId finds record id by querying it with criteria.

func (*Client) FindCrmLeadLostIds

func (c *Client) FindCrmLeadLostIds(criteria *Criteria, options *Options) ([]int64, error)

FindCrmLeadLostIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindCrmLeadLosts

func (c *Client) FindCrmLeadLosts(criteria *Criteria, options *Options) (*CrmLeadLosts, error)

FindCrmLeadLosts finds crm.lead.lost records by querying it and filtering it with criteria and options.

func (*Client) FindCrmLeadScoringFrequency

func (c *Client) FindCrmLeadScoringFrequency(criteria *Criteria) (*CrmLeadScoringFrequency, error)

FindCrmLeadScoringFrequency finds crm.lead.scoring.frequency record by querying it with criteria.

func (*Client) FindCrmLeadScoringFrequencyField

func (c *Client) FindCrmLeadScoringFrequencyField(criteria *Criteria) (*CrmLeadScoringFrequencyField, error)

FindCrmLeadScoringFrequencyField finds crm.lead.scoring.frequency.field record by querying it with criteria.

func (*Client) FindCrmLeadScoringFrequencyFieldId

func (c *Client) FindCrmLeadScoringFrequencyFieldId(criteria *Criteria, options *Options) (int64, error)

FindCrmLeadScoringFrequencyFieldId finds record id by querying it with criteria.

func (*Client) FindCrmLeadScoringFrequencyFieldIds

func (c *Client) FindCrmLeadScoringFrequencyFieldIds(criteria *Criteria, options *Options) ([]int64, error)

FindCrmLeadScoringFrequencyFieldIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindCrmLeadScoringFrequencyFields

func (c *Client) FindCrmLeadScoringFrequencyFields(criteria *Criteria, options *Options) (*CrmLeadScoringFrequencyFields, error)

FindCrmLeadScoringFrequencyFields finds crm.lead.scoring.frequency.field records by querying it and filtering it with criteria and options.

func (*Client) FindCrmLeadScoringFrequencyId

func (c *Client) FindCrmLeadScoringFrequencyId(criteria *Criteria, options *Options) (int64, error)

FindCrmLeadScoringFrequencyId finds record id by querying it with criteria.

func (*Client) FindCrmLeadScoringFrequencyIds

func (c *Client) FindCrmLeadScoringFrequencyIds(criteria *Criteria, options *Options) ([]int64, error)

FindCrmLeadScoringFrequencyIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindCrmLeadScoringFrequencys

func (c *Client) FindCrmLeadScoringFrequencys(criteria *Criteria, options *Options) (*CrmLeadScoringFrequencys, error)

FindCrmLeadScoringFrequencys finds crm.lead.scoring.frequency records by querying it and filtering it with criteria and options.

func (*Client) FindCrmLeadTag

func (c *Client) FindCrmLeadTag(criteria *Criteria) (*CrmLeadTag, error)

FindCrmLeadTag finds crm.lead.tag record by querying it with criteria.

func (*Client) FindCrmLeadTagId

func (c *Client) FindCrmLeadTagId(criteria *Criteria, options *Options) (int64, error)

FindCrmLeadTagId finds record id by querying it with criteria.

func (*Client) FindCrmLeadTagIds

func (c *Client) FindCrmLeadTagIds(criteria *Criteria, options *Options) ([]int64, error)

FindCrmLeadTagIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindCrmLeadTags

func (c *Client) FindCrmLeadTags(criteria *Criteria, options *Options) (*CrmLeadTags, error)

FindCrmLeadTags finds crm.lead.tag records by querying it and filtering it with criteria and options.

func (*Client) FindCrmLeads

func (c *Client) FindCrmLeads(criteria *Criteria, options *Options) (*CrmLeads, error)

FindCrmLeads finds crm.lead records by querying it and filtering it with criteria and options.

func (*Client) FindCrmLostReason

func (c *Client) FindCrmLostReason(criteria *Criteria) (*CrmLostReason, error)

FindCrmLostReason finds crm.lost.reason record by querying it with criteria.

func (*Client) FindCrmLostReasonId

func (c *Client) FindCrmLostReasonId(criteria *Criteria, options *Options) (int64, error)

FindCrmLostReasonId finds record id by querying it with criteria.

func (*Client) FindCrmLostReasonIds

func (c *Client) FindCrmLostReasonIds(criteria *Criteria, options *Options) ([]int64, error)

FindCrmLostReasonIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindCrmLostReasons

func (c *Client) FindCrmLostReasons(criteria *Criteria, options *Options) (*CrmLostReasons, error)

FindCrmLostReasons finds crm.lost.reason records by querying it and filtering it with criteria and options.

func (*Client) FindCrmMergeOpportunity

func (c *Client) FindCrmMergeOpportunity(criteria *Criteria) (*CrmMergeOpportunity, error)

FindCrmMergeOpportunity finds crm.merge.opportunity record by querying it with criteria.

func (*Client) FindCrmMergeOpportunityId

func (c *Client) FindCrmMergeOpportunityId(criteria *Criteria, options *Options) (int64, error)

FindCrmMergeOpportunityId finds record id by querying it with criteria.

func (*Client) FindCrmMergeOpportunityIds

func (c *Client) FindCrmMergeOpportunityIds(criteria *Criteria, options *Options) ([]int64, error)

FindCrmMergeOpportunityIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindCrmMergeOpportunitys

func (c *Client) FindCrmMergeOpportunitys(criteria *Criteria, options *Options) (*CrmMergeOpportunitys, error)

FindCrmMergeOpportunitys finds crm.merge.opportunity records by querying it and filtering it with criteria and options.

func (*Client) FindCrmPartnerBinding

func (c *Client) FindCrmPartnerBinding(criteria *Criteria) (*CrmPartnerBinding, error)

FindCrmPartnerBinding finds crm.partner.binding record by querying it with criteria.

func (*Client) FindCrmPartnerBindingId

func (c *Client) FindCrmPartnerBindingId(criteria *Criteria, options *Options) (int64, error)

FindCrmPartnerBindingId finds record id by querying it with criteria.

func (*Client) FindCrmPartnerBindingIds

func (c *Client) FindCrmPartnerBindingIds(criteria *Criteria, options *Options) ([]int64, error)

FindCrmPartnerBindingIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindCrmPartnerBindings

func (c *Client) FindCrmPartnerBindings(criteria *Criteria, options *Options) (*CrmPartnerBindings, error)

FindCrmPartnerBindings finds crm.partner.binding records by querying it and filtering it with criteria and options.

func (*Client) FindCrmQuotationPartner

func (c *Client) FindCrmQuotationPartner(criteria *Criteria) (*CrmQuotationPartner, error)

FindCrmQuotationPartner finds crm.quotation.partner record by querying it with criteria.

func (*Client) FindCrmQuotationPartnerId

func (c *Client) FindCrmQuotationPartnerId(criteria *Criteria, options *Options) (int64, error)

FindCrmQuotationPartnerId finds record id by querying it with criteria.

func (*Client) FindCrmQuotationPartnerIds

func (c *Client) FindCrmQuotationPartnerIds(criteria *Criteria, options *Options) ([]int64, error)

FindCrmQuotationPartnerIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindCrmQuotationPartners

func (c *Client) FindCrmQuotationPartners(criteria *Criteria, options *Options) (*CrmQuotationPartners, error)

FindCrmQuotationPartners finds crm.quotation.partner records by querying it and filtering it with criteria and options.

func (*Client) FindCrmStage

func (c *Client) FindCrmStage(criteria *Criteria) (*CrmStage, error)

FindCrmStage finds crm.stage record by querying it with criteria.

func (*Client) FindCrmStageId

func (c *Client) FindCrmStageId(criteria *Criteria, options *Options) (int64, error)

FindCrmStageId finds record id by querying it with criteria.

func (*Client) FindCrmStageIds

func (c *Client) FindCrmStageIds(criteria *Criteria, options *Options) ([]int64, error)

FindCrmStageIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindCrmStages

func (c *Client) FindCrmStages(criteria *Criteria, options *Options) (*CrmStages, error)

FindCrmStages finds crm.stage records by querying it and filtering it with criteria and options.

func (*Client) FindCrmTeam

func (c *Client) FindCrmTeam(criteria *Criteria) (*CrmTeam, error)

FindCrmTeam finds crm.team record by querying it with criteria.

func (*Client) FindCrmTeamId

func (c *Client) FindCrmTeamId(criteria *Criteria, options *Options) (int64, error)

FindCrmTeamId finds record id by querying it with criteria.

func (*Client) FindCrmTeamIds

func (c *Client) FindCrmTeamIds(criteria *Criteria, options *Options) ([]int64, error)

FindCrmTeamIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindCrmTeams

func (c *Client) FindCrmTeams(criteria *Criteria, options *Options) (*CrmTeams, error)

FindCrmTeams finds crm.team records by querying it and filtering it with criteria and options.

func (*Client) FindDecimalPrecision

func (c *Client) FindDecimalPrecision(criteria *Criteria) (*DecimalPrecision, error)

FindDecimalPrecision finds decimal.precision record by querying it with criteria.

func (*Client) FindDecimalPrecisionId

func (c *Client) FindDecimalPrecisionId(criteria *Criteria, options *Options) (int64, error)

FindDecimalPrecisionId finds record id by querying it with criteria.

func (*Client) FindDecimalPrecisionIds

func (c *Client) FindDecimalPrecisionIds(criteria *Criteria, options *Options) ([]int64, error)

FindDecimalPrecisionIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindDecimalPrecisions

func (c *Client) FindDecimalPrecisions(criteria *Criteria, options *Options) (*DecimalPrecisions, error)

FindDecimalPrecisions finds decimal.precision records by querying it and filtering it with criteria and options.

func (*Client) FindDigestDigest

func (c *Client) FindDigestDigest(criteria *Criteria) (*DigestDigest, error)

FindDigestDigest finds digest.digest record by querying it with criteria.

func (*Client) FindDigestDigestId

func (c *Client) FindDigestDigestId(criteria *Criteria, options *Options) (int64, error)

FindDigestDigestId finds record id by querying it with criteria.

func (*Client) FindDigestDigestIds

func (c *Client) FindDigestDigestIds(criteria *Criteria, options *Options) ([]int64, error)

FindDigestDigestIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindDigestDigests

func (c *Client) FindDigestDigests(criteria *Criteria, options *Options) (*DigestDigests, error)

FindDigestDigests finds digest.digest records by querying it and filtering it with criteria and options.

func (*Client) FindDigestTip

func (c *Client) FindDigestTip(criteria *Criteria) (*DigestTip, error)

FindDigestTip finds digest.tip record by querying it with criteria.

func (*Client) FindDigestTipId

func (c *Client) FindDigestTipId(criteria *Criteria, options *Options) (int64, error)

FindDigestTipId finds record id by querying it with criteria.

func (*Client) FindDigestTipIds

func (c *Client) FindDigestTipIds(criteria *Criteria, options *Options) ([]int64, error)

FindDigestTipIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindDigestTips

func (c *Client) FindDigestTips(criteria *Criteria, options *Options) (*DigestTips, error)

FindDigestTips finds digest.tip records by querying it and filtering it with criteria and options.

func (*Client) FindEmailTemplatePreview

func (c *Client) FindEmailTemplatePreview(criteria *Criteria) (*EmailTemplatePreview, error)

FindEmailTemplatePreview finds email_template.preview record by querying it with criteria.

func (*Client) FindEmailTemplatePreviewId

func (c *Client) FindEmailTemplatePreviewId(criteria *Criteria, options *Options) (int64, error)

FindEmailTemplatePreviewId finds record id by querying it with criteria.

func (*Client) FindEmailTemplatePreviewIds

func (c *Client) FindEmailTemplatePreviewIds(criteria *Criteria, options *Options) ([]int64, error)

FindEmailTemplatePreviewIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindEmailTemplatePreviews

func (c *Client) FindEmailTemplatePreviews(criteria *Criteria, options *Options) (*EmailTemplatePreviews, error)

FindEmailTemplatePreviews finds email_template.preview records by querying it and filtering it with criteria and options.

func (*Client) FindEventConfirm

func (c *Client) FindEventConfirm(criteria *Criteria) (*EventConfirm, error)

FindEventConfirm finds event.confirm record by querying it with criteria.

func (*Client) FindEventConfirmId

func (c *Client) FindEventConfirmId(criteria *Criteria, options *Options) (int64, error)

FindEventConfirmId finds record id by querying it with criteria.

func (*Client) FindEventConfirmIds

func (c *Client) FindEventConfirmIds(criteria *Criteria, options *Options) ([]int64, error)

FindEventConfirmIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindEventConfirms

func (c *Client) FindEventConfirms(criteria *Criteria, options *Options) (*EventConfirms, error)

FindEventConfirms finds event.confirm records by querying it and filtering it with criteria and options.

func (*Client) FindEventEvent

func (c *Client) FindEventEvent(criteria *Criteria) (*EventEvent, error)

FindEventEvent finds event.event record by querying it with criteria.

func (*Client) FindEventEventConfigurator

func (c *Client) FindEventEventConfigurator(criteria *Criteria) (*EventEventConfigurator, error)

FindEventEventConfigurator finds event.event.configurator record by querying it with criteria.

func (*Client) FindEventEventConfiguratorId

func (c *Client) FindEventEventConfiguratorId(criteria *Criteria, options *Options) (int64, error)

FindEventEventConfiguratorId finds record id by querying it with criteria.

func (*Client) FindEventEventConfiguratorIds

func (c *Client) FindEventEventConfiguratorIds(criteria *Criteria, options *Options) ([]int64, error)

FindEventEventConfiguratorIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindEventEventConfigurators

func (c *Client) FindEventEventConfigurators(criteria *Criteria, options *Options) (*EventEventConfigurators, error)

FindEventEventConfigurators finds event.event.configurator records by querying it and filtering it with criteria and options.

func (*Client) FindEventEventId

func (c *Client) FindEventEventId(criteria *Criteria, options *Options) (int64, error)

FindEventEventId finds record id by querying it with criteria.

func (*Client) FindEventEventIds

func (c *Client) FindEventEventIds(criteria *Criteria, options *Options) ([]int64, error)

FindEventEventIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindEventEventTicket

func (c *Client) FindEventEventTicket(criteria *Criteria) (*EventEventTicket, error)

FindEventEventTicket finds event.event.ticket record by querying it with criteria.

func (*Client) FindEventEventTicketId

func (c *Client) FindEventEventTicketId(criteria *Criteria, options *Options) (int64, error)

FindEventEventTicketId finds record id by querying it with criteria.

func (*Client) FindEventEventTicketIds

func (c *Client) FindEventEventTicketIds(criteria *Criteria, options *Options) ([]int64, error)

FindEventEventTicketIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindEventEventTickets

func (c *Client) FindEventEventTickets(criteria *Criteria, options *Options) (*EventEventTickets, error)

FindEventEventTickets finds event.event.ticket records by querying it and filtering it with criteria and options.

func (*Client) FindEventEvents

func (c *Client) FindEventEvents(criteria *Criteria, options *Options) (*EventEvents, error)

FindEventEvents finds event.event records by querying it and filtering it with criteria and options.

func (*Client) FindEventMail

func (c *Client) FindEventMail(criteria *Criteria) (*EventMail, error)

FindEventMail finds event.mail record by querying it with criteria.

func (*Client) FindEventMailId

func (c *Client) FindEventMailId(criteria *Criteria, options *Options) (int64, error)

FindEventMailId finds record id by querying it with criteria.

func (*Client) FindEventMailIds

func (c *Client) FindEventMailIds(criteria *Criteria, options *Options) ([]int64, error)

FindEventMailIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindEventMailRegistration

func (c *Client) FindEventMailRegistration(criteria *Criteria) (*EventMailRegistration, error)

FindEventMailRegistration finds event.mail.registration record by querying it with criteria.

func (*Client) FindEventMailRegistrationId

func (c *Client) FindEventMailRegistrationId(criteria *Criteria, options *Options) (int64, error)

FindEventMailRegistrationId finds record id by querying it with criteria.

func (*Client) FindEventMailRegistrationIds

func (c *Client) FindEventMailRegistrationIds(criteria *Criteria, options *Options) ([]int64, error)

FindEventMailRegistrationIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindEventMailRegistrations

func (c *Client) FindEventMailRegistrations(criteria *Criteria, options *Options) (*EventMailRegistrations, error)

FindEventMailRegistrations finds event.mail.registration records by querying it and filtering it with criteria and options.

func (*Client) FindEventMails

func (c *Client) FindEventMails(criteria *Criteria, options *Options) (*EventMails, error)

FindEventMails finds event.mail records by querying it and filtering it with criteria and options.

func (*Client) FindEventRegistration

func (c *Client) FindEventRegistration(criteria *Criteria) (*EventRegistration, error)

FindEventRegistration finds event.registration record by querying it with criteria.

func (*Client) FindEventRegistrationId

func (c *Client) FindEventRegistrationId(criteria *Criteria, options *Options) (int64, error)

FindEventRegistrationId finds record id by querying it with criteria.

func (*Client) FindEventRegistrationIds

func (c *Client) FindEventRegistrationIds(criteria *Criteria, options *Options) ([]int64, error)

FindEventRegistrationIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindEventRegistrations

func (c *Client) FindEventRegistrations(criteria *Criteria, options *Options) (*EventRegistrations, error)

FindEventRegistrations finds event.registration records by querying it and filtering it with criteria and options.

func (*Client) FindEventType

func (c *Client) FindEventType(criteria *Criteria) (*EventType, error)

FindEventType finds event.type record by querying it with criteria.

func (*Client) FindEventTypeId

func (c *Client) FindEventTypeId(criteria *Criteria, options *Options) (int64, error)

FindEventTypeId finds record id by querying it with criteria.

func (*Client) FindEventTypeIds

func (c *Client) FindEventTypeIds(criteria *Criteria, options *Options) ([]int64, error)

FindEventTypeIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindEventTypeMail

func (c *Client) FindEventTypeMail(criteria *Criteria) (*EventTypeMail, error)

FindEventTypeMail finds event.type.mail record by querying it with criteria.

func (*Client) FindEventTypeMailId

func (c *Client) FindEventTypeMailId(criteria *Criteria, options *Options) (int64, error)

FindEventTypeMailId finds record id by querying it with criteria.

func (*Client) FindEventTypeMailIds

func (c *Client) FindEventTypeMailIds(criteria *Criteria, options *Options) ([]int64, error)

FindEventTypeMailIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindEventTypeMails

func (c *Client) FindEventTypeMails(criteria *Criteria, options *Options) (*EventTypeMails, error)

FindEventTypeMails finds event.type.mail records by querying it and filtering it with criteria and options.

func (*Client) FindEventTypes

func (c *Client) FindEventTypes(criteria *Criteria, options *Options) (*EventTypes, error)

FindEventTypes finds event.type records by querying it and filtering it with criteria and options.

func (*Client) FindFetchmailServer

func (c *Client) FindFetchmailServer(criteria *Criteria) (*FetchmailServer, error)

FindFetchmailServer finds fetchmail.server record by querying it with criteria.

func (*Client) FindFetchmailServerId

func (c *Client) FindFetchmailServerId(criteria *Criteria, options *Options) (int64, error)

FindFetchmailServerId finds record id by querying it with criteria.

func (*Client) FindFetchmailServerIds

func (c *Client) FindFetchmailServerIds(criteria *Criteria, options *Options) ([]int64, error)

FindFetchmailServerIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindFetchmailServers

func (c *Client) FindFetchmailServers(criteria *Criteria, options *Options) (*FetchmailServers, error)

FindFetchmailServers finds fetchmail.server records by querying it and filtering it with criteria and options.

func (*Client) FindFormatAddressMixin

func (c *Client) FindFormatAddressMixin(criteria *Criteria) (*FormatAddressMixin, error)

FindFormatAddressMixin finds format.address.mixin record by querying it with criteria.

func (*Client) FindFormatAddressMixinId

func (c *Client) FindFormatAddressMixinId(criteria *Criteria, options *Options) (int64, error)

FindFormatAddressMixinId finds record id by querying it with criteria.

func (*Client) FindFormatAddressMixinIds

func (c *Client) FindFormatAddressMixinIds(criteria *Criteria, options *Options) ([]int64, error)

FindFormatAddressMixinIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindFormatAddressMixins

func (c *Client) FindFormatAddressMixins(criteria *Criteria, options *Options) (*FormatAddressMixins, error)

FindFormatAddressMixins finds format.address.mixin records by querying it and filtering it with criteria and options.

func (*Client) FindGamificationBadge

func (c *Client) FindGamificationBadge(criteria *Criteria) (*GamificationBadge, error)

FindGamificationBadge finds gamification.badge record by querying it with criteria.

func (*Client) FindGamificationBadgeId

func (c *Client) FindGamificationBadgeId(criteria *Criteria, options *Options) (int64, error)

FindGamificationBadgeId finds record id by querying it with criteria.

func (*Client) FindGamificationBadgeIds

func (c *Client) FindGamificationBadgeIds(criteria *Criteria, options *Options) ([]int64, error)

FindGamificationBadgeIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindGamificationBadgeUser

func (c *Client) FindGamificationBadgeUser(criteria *Criteria) (*GamificationBadgeUser, error)

FindGamificationBadgeUser finds gamification.badge.user record by querying it with criteria.

func (*Client) FindGamificationBadgeUserId

func (c *Client) FindGamificationBadgeUserId(criteria *Criteria, options *Options) (int64, error)

FindGamificationBadgeUserId finds record id by querying it with criteria.

func (*Client) FindGamificationBadgeUserIds

func (c *Client) FindGamificationBadgeUserIds(criteria *Criteria, options *Options) ([]int64, error)

FindGamificationBadgeUserIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindGamificationBadgeUserWizard

func (c *Client) FindGamificationBadgeUserWizard(criteria *Criteria) (*GamificationBadgeUserWizard, error)

FindGamificationBadgeUserWizard finds gamification.badge.user.wizard record by querying it with criteria.

func (*Client) FindGamificationBadgeUserWizardId

func (c *Client) FindGamificationBadgeUserWizardId(criteria *Criteria, options *Options) (int64, error)

FindGamificationBadgeUserWizardId finds record id by querying it with criteria.

func (*Client) FindGamificationBadgeUserWizardIds

func (c *Client) FindGamificationBadgeUserWizardIds(criteria *Criteria, options *Options) ([]int64, error)

FindGamificationBadgeUserWizardIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindGamificationBadgeUserWizards

func (c *Client) FindGamificationBadgeUserWizards(criteria *Criteria, options *Options) (*GamificationBadgeUserWizards, error)

FindGamificationBadgeUserWizards finds gamification.badge.user.wizard records by querying it and filtering it with criteria and options.

func (*Client) FindGamificationBadgeUsers

func (c *Client) FindGamificationBadgeUsers(criteria *Criteria, options *Options) (*GamificationBadgeUsers, error)

FindGamificationBadgeUsers finds gamification.badge.user records by querying it and filtering it with criteria and options.

func (*Client) FindGamificationBadges

func (c *Client) FindGamificationBadges(criteria *Criteria, options *Options) (*GamificationBadges, error)

FindGamificationBadges finds gamification.badge records by querying it and filtering it with criteria and options.

func (*Client) FindGamificationChallenge

func (c *Client) FindGamificationChallenge(criteria *Criteria) (*GamificationChallenge, error)

FindGamificationChallenge finds gamification.challenge record by querying it with criteria.

func (*Client) FindGamificationChallengeId

func (c *Client) FindGamificationChallengeId(criteria *Criteria, options *Options) (int64, error)

FindGamificationChallengeId finds record id by querying it with criteria.

func (*Client) FindGamificationChallengeIds

func (c *Client) FindGamificationChallengeIds(criteria *Criteria, options *Options) ([]int64, error)

FindGamificationChallengeIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindGamificationChallengeLine

func (c *Client) FindGamificationChallengeLine(criteria *Criteria) (*GamificationChallengeLine, error)

FindGamificationChallengeLine finds gamification.challenge.line record by querying it with criteria.

func (*Client) FindGamificationChallengeLineId

func (c *Client) FindGamificationChallengeLineId(criteria *Criteria, options *Options) (int64, error)

FindGamificationChallengeLineId finds record id by querying it with criteria.

func (*Client) FindGamificationChallengeLineIds

func (c *Client) FindGamificationChallengeLineIds(criteria *Criteria, options *Options) ([]int64, error)

FindGamificationChallengeLineIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindGamificationChallengeLines

func (c *Client) FindGamificationChallengeLines(criteria *Criteria, options *Options) (*GamificationChallengeLines, error)

FindGamificationChallengeLines finds gamification.challenge.line records by querying it and filtering it with criteria and options.

func (*Client) FindGamificationChallenges

func (c *Client) FindGamificationChallenges(criteria *Criteria, options *Options) (*GamificationChallenges, error)

FindGamificationChallenges finds gamification.challenge records by querying it and filtering it with criteria and options.

func (*Client) FindGamificationGoal

func (c *Client) FindGamificationGoal(criteria *Criteria) (*GamificationGoal, error)

FindGamificationGoal finds gamification.goal record by querying it with criteria.

func (*Client) FindGamificationGoalDefinition

func (c *Client) FindGamificationGoalDefinition(criteria *Criteria) (*GamificationGoalDefinition, error)

FindGamificationGoalDefinition finds gamification.goal.definition record by querying it with criteria.

func (*Client) FindGamificationGoalDefinitionId

func (c *Client) FindGamificationGoalDefinitionId(criteria *Criteria, options *Options) (int64, error)

FindGamificationGoalDefinitionId finds record id by querying it with criteria.

func (*Client) FindGamificationGoalDefinitionIds

func (c *Client) FindGamificationGoalDefinitionIds(criteria *Criteria, options *Options) ([]int64, error)

FindGamificationGoalDefinitionIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindGamificationGoalDefinitions

func (c *Client) FindGamificationGoalDefinitions(criteria *Criteria, options *Options) (*GamificationGoalDefinitions, error)

FindGamificationGoalDefinitions finds gamification.goal.definition records by querying it and filtering it with criteria and options.

func (*Client) FindGamificationGoalId

func (c *Client) FindGamificationGoalId(criteria *Criteria, options *Options) (int64, error)

FindGamificationGoalId finds record id by querying it with criteria.

func (*Client) FindGamificationGoalIds

func (c *Client) FindGamificationGoalIds(criteria *Criteria, options *Options) ([]int64, error)

FindGamificationGoalIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindGamificationGoalWizard

func (c *Client) FindGamificationGoalWizard(criteria *Criteria) (*GamificationGoalWizard, error)

FindGamificationGoalWizard finds gamification.goal.wizard record by querying it with criteria.

func (*Client) FindGamificationGoalWizardId

func (c *Client) FindGamificationGoalWizardId(criteria *Criteria, options *Options) (int64, error)

FindGamificationGoalWizardId finds record id by querying it with criteria.

func (*Client) FindGamificationGoalWizardIds

func (c *Client) FindGamificationGoalWizardIds(criteria *Criteria, options *Options) ([]int64, error)

FindGamificationGoalWizardIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindGamificationGoalWizards

func (c *Client) FindGamificationGoalWizards(criteria *Criteria, options *Options) (*GamificationGoalWizards, error)

FindGamificationGoalWizards finds gamification.goal.wizard records by querying it and filtering it with criteria and options.

func (*Client) FindGamificationGoals

func (c *Client) FindGamificationGoals(criteria *Criteria, options *Options) (*GamificationGoals, error)

FindGamificationGoals finds gamification.goal records by querying it and filtering it with criteria and options.

func (*Client) FindGamificationKarmaRank

func (c *Client) FindGamificationKarmaRank(criteria *Criteria) (*GamificationKarmaRank, error)

FindGamificationKarmaRank finds gamification.karma.rank record by querying it with criteria.

func (*Client) FindGamificationKarmaRankId

func (c *Client) FindGamificationKarmaRankId(criteria *Criteria, options *Options) (int64, error)

FindGamificationKarmaRankId finds record id by querying it with criteria.

func (*Client) FindGamificationKarmaRankIds

func (c *Client) FindGamificationKarmaRankIds(criteria *Criteria, options *Options) ([]int64, error)

FindGamificationKarmaRankIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindGamificationKarmaRanks

func (c *Client) FindGamificationKarmaRanks(criteria *Criteria, options *Options) (*GamificationKarmaRanks, error)

FindGamificationKarmaRanks finds gamification.karma.rank records by querying it and filtering it with criteria and options.

func (*Client) FindHrApplicant

func (c *Client) FindHrApplicant(criteria *Criteria) (*HrApplicant, error)

FindHrApplicant finds hr.applicant record by querying it with criteria.

func (*Client) FindHrApplicantCategory

func (c *Client) FindHrApplicantCategory(criteria *Criteria) (*HrApplicantCategory, error)

FindHrApplicantCategory finds hr.applicant.category record by querying it with criteria.

func (*Client) FindHrApplicantCategoryId

func (c *Client) FindHrApplicantCategoryId(criteria *Criteria, options *Options) (int64, error)

FindHrApplicantCategoryId finds record id by querying it with criteria.

func (*Client) FindHrApplicantCategoryIds

func (c *Client) FindHrApplicantCategoryIds(criteria *Criteria, options *Options) ([]int64, error)

FindHrApplicantCategoryIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindHrApplicantCategorys

func (c *Client) FindHrApplicantCategorys(criteria *Criteria, options *Options) (*HrApplicantCategorys, error)

FindHrApplicantCategorys finds hr.applicant.category records by querying it and filtering it with criteria and options.

func (*Client) FindHrApplicantId

func (c *Client) FindHrApplicantId(criteria *Criteria, options *Options) (int64, error)

FindHrApplicantId finds record id by querying it with criteria.

func (*Client) FindHrApplicantIds

func (c *Client) FindHrApplicantIds(criteria *Criteria, options *Options) ([]int64, error)

FindHrApplicantIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindHrApplicants

func (c *Client) FindHrApplicants(criteria *Criteria, options *Options) (*HrApplicants, error)

FindHrApplicants finds hr.applicant records by querying it and filtering it with criteria and options.

func (*Client) FindHrAttendance

func (c *Client) FindHrAttendance(criteria *Criteria) (*HrAttendance, error)

FindHrAttendance finds hr.attendance record by querying it with criteria.

func (*Client) FindHrAttendanceId

func (c *Client) FindHrAttendanceId(criteria *Criteria, options *Options) (int64, error)

FindHrAttendanceId finds record id by querying it with criteria.

func (*Client) FindHrAttendanceIds

func (c *Client) FindHrAttendanceIds(criteria *Criteria, options *Options) ([]int64, error)

FindHrAttendanceIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindHrAttendances

func (c *Client) FindHrAttendances(criteria *Criteria, options *Options) (*HrAttendances, error)

FindHrAttendances finds hr.attendance records by querying it and filtering it with criteria and options.

func (*Client) FindHrContract

func (c *Client) FindHrContract(criteria *Criteria) (*HrContract, error)

FindHrContract finds hr.contract record by querying it with criteria.

func (*Client) FindHrContractId

func (c *Client) FindHrContractId(criteria *Criteria, options *Options) (int64, error)

FindHrContractId finds record id by querying it with criteria.

func (*Client) FindHrContractIds

func (c *Client) FindHrContractIds(criteria *Criteria, options *Options) ([]int64, error)

FindHrContractIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindHrContracts

func (c *Client) FindHrContracts(criteria *Criteria, options *Options) (*HrContracts, error)

FindHrContracts finds hr.contract records by querying it and filtering it with criteria and options.

func (*Client) FindHrDepartment

func (c *Client) FindHrDepartment(criteria *Criteria) (*HrDepartment, error)

FindHrDepartment finds hr.department record by querying it with criteria.

func (*Client) FindHrDepartmentId

func (c *Client) FindHrDepartmentId(criteria *Criteria, options *Options) (int64, error)

FindHrDepartmentId finds record id by querying it with criteria.

func (*Client) FindHrDepartmentIds

func (c *Client) FindHrDepartmentIds(criteria *Criteria, options *Options) ([]int64, error)

FindHrDepartmentIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindHrDepartments

func (c *Client) FindHrDepartments(criteria *Criteria, options *Options) (*HrDepartments, error)

FindHrDepartments finds hr.department records by querying it and filtering it with criteria and options.

func (*Client) FindHrDepartureWizard

func (c *Client) FindHrDepartureWizard(criteria *Criteria) (*HrDepartureWizard, error)

FindHrDepartureWizard finds hr.departure.wizard record by querying it with criteria.

func (*Client) FindHrDepartureWizardId

func (c *Client) FindHrDepartureWizardId(criteria *Criteria, options *Options) (int64, error)

FindHrDepartureWizardId finds record id by querying it with criteria.

func (*Client) FindHrDepartureWizardIds

func (c *Client) FindHrDepartureWizardIds(criteria *Criteria, options *Options) ([]int64, error)

FindHrDepartureWizardIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindHrDepartureWizards

func (c *Client) FindHrDepartureWizards(criteria *Criteria, options *Options) (*HrDepartureWizards, error)

FindHrDepartureWizards finds hr.departure.wizard records by querying it and filtering it with criteria and options.

func (*Client) FindHrEmployee

func (c *Client) FindHrEmployee(criteria *Criteria) (*HrEmployee, error)

FindHrEmployee finds hr.employee record by querying it with criteria.

func (*Client) FindHrEmployeeBase

func (c *Client) FindHrEmployeeBase(criteria *Criteria) (*HrEmployeeBase, error)

FindHrEmployeeBase finds hr.employee.base record by querying it with criteria.

func (*Client) FindHrEmployeeBaseId

func (c *Client) FindHrEmployeeBaseId(criteria *Criteria, options *Options) (int64, error)

FindHrEmployeeBaseId finds record id by querying it with criteria.

func (*Client) FindHrEmployeeBaseIds

func (c *Client) FindHrEmployeeBaseIds(criteria *Criteria, options *Options) ([]int64, error)

FindHrEmployeeBaseIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindHrEmployeeBases

func (c *Client) FindHrEmployeeBases(criteria *Criteria, options *Options) (*HrEmployeeBases, error)

FindHrEmployeeBases finds hr.employee.base records by querying it and filtering it with criteria and options.

func (*Client) FindHrEmployeeCategory

func (c *Client) FindHrEmployeeCategory(criteria *Criteria) (*HrEmployeeCategory, error)

FindHrEmployeeCategory finds hr.employee.category record by querying it with criteria.

func (*Client) FindHrEmployeeCategoryId

func (c *Client) FindHrEmployeeCategoryId(criteria *Criteria, options *Options) (int64, error)

FindHrEmployeeCategoryId finds record id by querying it with criteria.

func (*Client) FindHrEmployeeCategoryIds

func (c *Client) FindHrEmployeeCategoryIds(criteria *Criteria, options *Options) ([]int64, error)

FindHrEmployeeCategoryIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindHrEmployeeCategorys

func (c *Client) FindHrEmployeeCategorys(criteria *Criteria, options *Options) (*HrEmployeeCategorys, error)

FindHrEmployeeCategorys finds hr.employee.category records by querying it and filtering it with criteria and options.

func (*Client) FindHrEmployeeId

func (c *Client) FindHrEmployeeId(criteria *Criteria, options *Options) (int64, error)

FindHrEmployeeId finds record id by querying it with criteria.

func (*Client) FindHrEmployeeIds

func (c *Client) FindHrEmployeeIds(criteria *Criteria, options *Options) ([]int64, error)

FindHrEmployeeIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindHrEmployeePublic

func (c *Client) FindHrEmployeePublic(criteria *Criteria) (*HrEmployeePublic, error)

FindHrEmployeePublic finds hr.employee.public record by querying it with criteria.

func (*Client) FindHrEmployeePublicId

func (c *Client) FindHrEmployeePublicId(criteria *Criteria, options *Options) (int64, error)

FindHrEmployeePublicId finds record id by querying it with criteria.

func (*Client) FindHrEmployeePublicIds

func (c *Client) FindHrEmployeePublicIds(criteria *Criteria, options *Options) ([]int64, error)

FindHrEmployeePublicIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindHrEmployeePublics

func (c *Client) FindHrEmployeePublics(criteria *Criteria, options *Options) (*HrEmployeePublics, error)

FindHrEmployeePublics finds hr.employee.public records by querying it and filtering it with criteria and options.

func (*Client) FindHrEmployees

func (c *Client) FindHrEmployees(criteria *Criteria, options *Options) (*HrEmployees, error)

FindHrEmployees finds hr.employee records by querying it and filtering it with criteria and options.

func (*Client) FindHrExpense

func (c *Client) FindHrExpense(criteria *Criteria) (*HrExpense, error)

FindHrExpense finds hr.expense record by querying it with criteria.

func (*Client) FindHrExpenseId

func (c *Client) FindHrExpenseId(criteria *Criteria, options *Options) (int64, error)

FindHrExpenseId finds record id by querying it with criteria.

func (*Client) FindHrExpenseIds

func (c *Client) FindHrExpenseIds(criteria *Criteria, options *Options) ([]int64, error)

FindHrExpenseIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindHrExpenseRefuseWizard

func (c *Client) FindHrExpenseRefuseWizard(criteria *Criteria) (*HrExpenseRefuseWizard, error)

FindHrExpenseRefuseWizard finds hr.expense.refuse.wizard record by querying it with criteria.

func (*Client) FindHrExpenseRefuseWizardId

func (c *Client) FindHrExpenseRefuseWizardId(criteria *Criteria, options *Options) (int64, error)

FindHrExpenseRefuseWizardId finds record id by querying it with criteria.

func (*Client) FindHrExpenseRefuseWizardIds

func (c *Client) FindHrExpenseRefuseWizardIds(criteria *Criteria, options *Options) ([]int64, error)

FindHrExpenseRefuseWizardIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindHrExpenseRefuseWizards

func (c *Client) FindHrExpenseRefuseWizards(criteria *Criteria, options *Options) (*HrExpenseRefuseWizards, error)

FindHrExpenseRefuseWizards finds hr.expense.refuse.wizard records by querying it and filtering it with criteria and options.

func (*Client) FindHrExpenseSheet

func (c *Client) FindHrExpenseSheet(criteria *Criteria) (*HrExpenseSheet, error)

FindHrExpenseSheet finds hr.expense.sheet record by querying it with criteria.

func (*Client) FindHrExpenseSheetId

func (c *Client) FindHrExpenseSheetId(criteria *Criteria, options *Options) (int64, error)

FindHrExpenseSheetId finds record id by querying it with criteria.

func (*Client) FindHrExpenseSheetIds

func (c *Client) FindHrExpenseSheetIds(criteria *Criteria, options *Options) ([]int64, error)

FindHrExpenseSheetIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindHrExpenseSheetRegisterPaymentWizard

func (c *Client) FindHrExpenseSheetRegisterPaymentWizard(criteria *Criteria) (*HrExpenseSheetRegisterPaymentWizard, error)

FindHrExpenseSheetRegisterPaymentWizard finds hr.expense.sheet.register.payment.wizard record by querying it with criteria.

func (*Client) FindHrExpenseSheetRegisterPaymentWizardId

func (c *Client) FindHrExpenseSheetRegisterPaymentWizardId(criteria *Criteria, options *Options) (int64, error)

FindHrExpenseSheetRegisterPaymentWizardId finds record id by querying it with criteria.

func (*Client) FindHrExpenseSheetRegisterPaymentWizardIds

func (c *Client) FindHrExpenseSheetRegisterPaymentWizardIds(criteria *Criteria, options *Options) ([]int64, error)

FindHrExpenseSheetRegisterPaymentWizardIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindHrExpenseSheetRegisterPaymentWizards

func (c *Client) FindHrExpenseSheetRegisterPaymentWizards(criteria *Criteria, options *Options) (*HrExpenseSheetRegisterPaymentWizards, error)

FindHrExpenseSheetRegisterPaymentWizards finds hr.expense.sheet.register.payment.wizard records by querying it and filtering it with criteria and options.

func (*Client) FindHrExpenseSheets

func (c *Client) FindHrExpenseSheets(criteria *Criteria, options *Options) (*HrExpenseSheets, error)

FindHrExpenseSheets finds hr.expense.sheet records by querying it and filtering it with criteria and options.

func (*Client) FindHrExpenses

func (c *Client) FindHrExpenses(criteria *Criteria, options *Options) (*HrExpenses, error)

FindHrExpenses finds hr.expense records by querying it and filtering it with criteria and options.

func (*Client) FindHrHolidaysSummaryEmployee

func (c *Client) FindHrHolidaysSummaryEmployee(criteria *Criteria) (*HrHolidaysSummaryEmployee, error)

FindHrHolidaysSummaryEmployee finds hr.holidays.summary.employee record by querying it with criteria.

func (*Client) FindHrHolidaysSummaryEmployeeId

func (c *Client) FindHrHolidaysSummaryEmployeeId(criteria *Criteria, options *Options) (int64, error)

FindHrHolidaysSummaryEmployeeId finds record id by querying it with criteria.

func (*Client) FindHrHolidaysSummaryEmployeeIds

func (c *Client) FindHrHolidaysSummaryEmployeeIds(criteria *Criteria, options *Options) ([]int64, error)

FindHrHolidaysSummaryEmployeeIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindHrHolidaysSummaryEmployees

func (c *Client) FindHrHolidaysSummaryEmployees(criteria *Criteria, options *Options) (*HrHolidaysSummaryEmployees, error)

FindHrHolidaysSummaryEmployees finds hr.holidays.summary.employee records by querying it and filtering it with criteria and options.

func (*Client) FindHrJob

func (c *Client) FindHrJob(criteria *Criteria) (*HrJob, error)

FindHrJob finds hr.job record by querying it with criteria.

func (*Client) FindHrJobId

func (c *Client) FindHrJobId(criteria *Criteria, options *Options) (int64, error)

FindHrJobId finds record id by querying it with criteria.

func (*Client) FindHrJobIds

func (c *Client) FindHrJobIds(criteria *Criteria, options *Options) ([]int64, error)

FindHrJobIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindHrJobs

func (c *Client) FindHrJobs(criteria *Criteria, options *Options) (*HrJobs, error)

FindHrJobs finds hr.job records by querying it and filtering it with criteria and options.

func (*Client) FindHrLeave

func (c *Client) FindHrLeave(criteria *Criteria) (*HrLeave, error)

FindHrLeave finds hr.leave record by querying it with criteria.

func (*Client) FindHrLeaveAllocation

func (c *Client) FindHrLeaveAllocation(criteria *Criteria) (*HrLeaveAllocation, error)

FindHrLeaveAllocation finds hr.leave.allocation record by querying it with criteria.

func (*Client) FindHrLeaveAllocationId

func (c *Client) FindHrLeaveAllocationId(criteria *Criteria, options *Options) (int64, error)

FindHrLeaveAllocationId finds record id by querying it with criteria.

func (*Client) FindHrLeaveAllocationIds

func (c *Client) FindHrLeaveAllocationIds(criteria *Criteria, options *Options) ([]int64, error)

FindHrLeaveAllocationIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindHrLeaveAllocations

func (c *Client) FindHrLeaveAllocations(criteria *Criteria, options *Options) (*HrLeaveAllocations, error)

FindHrLeaveAllocations finds hr.leave.allocation records by querying it and filtering it with criteria and options.

func (*Client) FindHrLeaveId

func (c *Client) FindHrLeaveId(criteria *Criteria, options *Options) (int64, error)

FindHrLeaveId finds record id by querying it with criteria.

func (*Client) FindHrLeaveIds

func (c *Client) FindHrLeaveIds(criteria *Criteria, options *Options) ([]int64, error)

FindHrLeaveIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindHrLeaveReport

func (c *Client) FindHrLeaveReport(criteria *Criteria) (*HrLeaveReport, error)

FindHrLeaveReport finds hr.leave.report record by querying it with criteria.

func (*Client) FindHrLeaveReportCalendar

func (c *Client) FindHrLeaveReportCalendar(criteria *Criteria) (*HrLeaveReportCalendar, error)

FindHrLeaveReportCalendar finds hr.leave.report.calendar record by querying it with criteria.

func (*Client) FindHrLeaveReportCalendarId

func (c *Client) FindHrLeaveReportCalendarId(criteria *Criteria, options *Options) (int64, error)

FindHrLeaveReportCalendarId finds record id by querying it with criteria.

func (*Client) FindHrLeaveReportCalendarIds

func (c *Client) FindHrLeaveReportCalendarIds(criteria *Criteria, options *Options) ([]int64, error)

FindHrLeaveReportCalendarIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindHrLeaveReportCalendars

func (c *Client) FindHrLeaveReportCalendars(criteria *Criteria, options *Options) (*HrLeaveReportCalendars, error)

FindHrLeaveReportCalendars finds hr.leave.report.calendar records by querying it and filtering it with criteria and options.

func (*Client) FindHrLeaveReportId

func (c *Client) FindHrLeaveReportId(criteria *Criteria, options *Options) (int64, error)

FindHrLeaveReportId finds record id by querying it with criteria.

func (*Client) FindHrLeaveReportIds

func (c *Client) FindHrLeaveReportIds(criteria *Criteria, options *Options) ([]int64, error)

FindHrLeaveReportIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindHrLeaveReports

func (c *Client) FindHrLeaveReports(criteria *Criteria, options *Options) (*HrLeaveReports, error)

FindHrLeaveReports finds hr.leave.report records by querying it and filtering it with criteria and options.

func (*Client) FindHrLeaveType

func (c *Client) FindHrLeaveType(criteria *Criteria) (*HrLeaveType, error)

FindHrLeaveType finds hr.leave.type record by querying it with criteria.

func (*Client) FindHrLeaveTypeId

func (c *Client) FindHrLeaveTypeId(criteria *Criteria, options *Options) (int64, error)

FindHrLeaveTypeId finds record id by querying it with criteria.

func (*Client) FindHrLeaveTypeIds

func (c *Client) FindHrLeaveTypeIds(criteria *Criteria, options *Options) ([]int64, error)

FindHrLeaveTypeIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindHrLeaveTypes

func (c *Client) FindHrLeaveTypes(criteria *Criteria, options *Options) (*HrLeaveTypes, error)

FindHrLeaveTypes finds hr.leave.type records by querying it and filtering it with criteria and options.

func (*Client) FindHrLeaves

func (c *Client) FindHrLeaves(criteria *Criteria, options *Options) (*HrLeaves, error)

FindHrLeaves finds hr.leave records by querying it and filtering it with criteria and options.

func (*Client) FindHrPlan

func (c *Client) FindHrPlan(criteria *Criteria) (*HrPlan, error)

FindHrPlan finds hr.plan record by querying it with criteria.

func (*Client) FindHrPlanActivityType

func (c *Client) FindHrPlanActivityType(criteria *Criteria) (*HrPlanActivityType, error)

FindHrPlanActivityType finds hr.plan.activity.type record by querying it with criteria.

func (*Client) FindHrPlanActivityTypeId

func (c *Client) FindHrPlanActivityTypeId(criteria *Criteria, options *Options) (int64, error)

FindHrPlanActivityTypeId finds record id by querying it with criteria.

func (*Client) FindHrPlanActivityTypeIds

func (c *Client) FindHrPlanActivityTypeIds(criteria *Criteria, options *Options) ([]int64, error)

FindHrPlanActivityTypeIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindHrPlanActivityTypes

func (c *Client) FindHrPlanActivityTypes(criteria *Criteria, options *Options) (*HrPlanActivityTypes, error)

FindHrPlanActivityTypes finds hr.plan.activity.type records by querying it and filtering it with criteria and options.

func (*Client) FindHrPlanId

func (c *Client) FindHrPlanId(criteria *Criteria, options *Options) (int64, error)

FindHrPlanId finds record id by querying it with criteria.

func (*Client) FindHrPlanIds

func (c *Client) FindHrPlanIds(criteria *Criteria, options *Options) ([]int64, error)

FindHrPlanIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindHrPlanWizard

func (c *Client) FindHrPlanWizard(criteria *Criteria) (*HrPlanWizard, error)

FindHrPlanWizard finds hr.plan.wizard record by querying it with criteria.

func (*Client) FindHrPlanWizardId

func (c *Client) FindHrPlanWizardId(criteria *Criteria, options *Options) (int64, error)

FindHrPlanWizardId finds record id by querying it with criteria.

func (*Client) FindHrPlanWizardIds

func (c *Client) FindHrPlanWizardIds(criteria *Criteria, options *Options) ([]int64, error)

FindHrPlanWizardIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindHrPlanWizards

func (c *Client) FindHrPlanWizards(criteria *Criteria, options *Options) (*HrPlanWizards, error)

FindHrPlanWizards finds hr.plan.wizard records by querying it and filtering it with criteria and options.

func (*Client) FindHrPlans

func (c *Client) FindHrPlans(criteria *Criteria, options *Options) (*HrPlans, error)

FindHrPlans finds hr.plan records by querying it and filtering it with criteria and options.

func (*Client) FindHrRecruitmentDegree

func (c *Client) FindHrRecruitmentDegree(criteria *Criteria) (*HrRecruitmentDegree, error)

FindHrRecruitmentDegree finds hr.recruitment.degree record by querying it with criteria.

func (*Client) FindHrRecruitmentDegreeId

func (c *Client) FindHrRecruitmentDegreeId(criteria *Criteria, options *Options) (int64, error)

FindHrRecruitmentDegreeId finds record id by querying it with criteria.

func (*Client) FindHrRecruitmentDegreeIds

func (c *Client) FindHrRecruitmentDegreeIds(criteria *Criteria, options *Options) ([]int64, error)

FindHrRecruitmentDegreeIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindHrRecruitmentDegrees

func (c *Client) FindHrRecruitmentDegrees(criteria *Criteria, options *Options) (*HrRecruitmentDegrees, error)

FindHrRecruitmentDegrees finds hr.recruitment.degree records by querying it and filtering it with criteria and options.

func (*Client) FindHrRecruitmentSource

func (c *Client) FindHrRecruitmentSource(criteria *Criteria) (*HrRecruitmentSource, error)

FindHrRecruitmentSource finds hr.recruitment.source record by querying it with criteria.

func (*Client) FindHrRecruitmentSourceId

func (c *Client) FindHrRecruitmentSourceId(criteria *Criteria, options *Options) (int64, error)

FindHrRecruitmentSourceId finds record id by querying it with criteria.

func (*Client) FindHrRecruitmentSourceIds

func (c *Client) FindHrRecruitmentSourceIds(criteria *Criteria, options *Options) ([]int64, error)

FindHrRecruitmentSourceIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindHrRecruitmentSources

func (c *Client) FindHrRecruitmentSources(criteria *Criteria, options *Options) (*HrRecruitmentSources, error)

FindHrRecruitmentSources finds hr.recruitment.source records by querying it and filtering it with criteria and options.

func (*Client) FindHrRecruitmentStage

func (c *Client) FindHrRecruitmentStage(criteria *Criteria) (*HrRecruitmentStage, error)

FindHrRecruitmentStage finds hr.recruitment.stage record by querying it with criteria.

func (*Client) FindHrRecruitmentStageId

func (c *Client) FindHrRecruitmentStageId(criteria *Criteria, options *Options) (int64, error)

FindHrRecruitmentStageId finds record id by querying it with criteria.

func (*Client) FindHrRecruitmentStageIds

func (c *Client) FindHrRecruitmentStageIds(criteria *Criteria, options *Options) ([]int64, error)

FindHrRecruitmentStageIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindHrRecruitmentStages

func (c *Client) FindHrRecruitmentStages(criteria *Criteria, options *Options) (*HrRecruitmentStages, error)

FindHrRecruitmentStages finds hr.recruitment.stage records by querying it and filtering it with criteria and options.

func (*Client) FindIapAccount

func (c *Client) FindIapAccount(criteria *Criteria) (*IapAccount, error)

FindIapAccount finds iap.account record by querying it with criteria.

func (*Client) FindIapAccountId

func (c *Client) FindIapAccountId(criteria *Criteria, options *Options) (int64, error)

FindIapAccountId finds record id by querying it with criteria.

func (*Client) FindIapAccountIds

func (c *Client) FindIapAccountIds(criteria *Criteria, options *Options) ([]int64, error)

FindIapAccountIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIapAccounts

func (c *Client) FindIapAccounts(criteria *Criteria, options *Options) (*IapAccounts, error)

FindIapAccounts finds iap.account records by querying it and filtering it with criteria and options.

func (*Client) FindImLivechatChannel

func (c *Client) FindImLivechatChannel(criteria *Criteria) (*ImLivechatChannel, error)

FindImLivechatChannel finds im_livechat.channel record by querying it with criteria.

func (*Client) FindImLivechatChannelId

func (c *Client) FindImLivechatChannelId(criteria *Criteria, options *Options) (int64, error)

FindImLivechatChannelId finds record id by querying it with criteria.

func (*Client) FindImLivechatChannelIds

func (c *Client) FindImLivechatChannelIds(criteria *Criteria, options *Options) ([]int64, error)

FindImLivechatChannelIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindImLivechatChannelRule

func (c *Client) FindImLivechatChannelRule(criteria *Criteria) (*ImLivechatChannelRule, error)

FindImLivechatChannelRule finds im_livechat.channel.rule record by querying it with criteria.

func (*Client) FindImLivechatChannelRuleId

func (c *Client) FindImLivechatChannelRuleId(criteria *Criteria, options *Options) (int64, error)

FindImLivechatChannelRuleId finds record id by querying it with criteria.

func (*Client) FindImLivechatChannelRuleIds

func (c *Client) FindImLivechatChannelRuleIds(criteria *Criteria, options *Options) ([]int64, error)

FindImLivechatChannelRuleIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindImLivechatChannelRules

func (c *Client) FindImLivechatChannelRules(criteria *Criteria, options *Options) (*ImLivechatChannelRules, error)

FindImLivechatChannelRules finds im_livechat.channel.rule records by querying it and filtering it with criteria and options.

func (*Client) FindImLivechatChannels

func (c *Client) FindImLivechatChannels(criteria *Criteria, options *Options) (*ImLivechatChannels, error)

FindImLivechatChannels finds im_livechat.channel records by querying it and filtering it with criteria and options.

func (*Client) FindImLivechatReportChannel

func (c *Client) FindImLivechatReportChannel(criteria *Criteria) (*ImLivechatReportChannel, error)

FindImLivechatReportChannel finds im_livechat.report.channel record by querying it with criteria.

func (*Client) FindImLivechatReportChannelId

func (c *Client) FindImLivechatReportChannelId(criteria *Criteria, options *Options) (int64, error)

FindImLivechatReportChannelId finds record id by querying it with criteria.

func (*Client) FindImLivechatReportChannelIds

func (c *Client) FindImLivechatReportChannelIds(criteria *Criteria, options *Options) ([]int64, error)

FindImLivechatReportChannelIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindImLivechatReportChannels

func (c *Client) FindImLivechatReportChannels(criteria *Criteria, options *Options) (*ImLivechatReportChannels, error)

FindImLivechatReportChannels finds im_livechat.report.channel records by querying it and filtering it with criteria and options.

func (*Client) FindImLivechatReportOperator

func (c *Client) FindImLivechatReportOperator(criteria *Criteria) (*ImLivechatReportOperator, error)

FindImLivechatReportOperator finds im_livechat.report.operator record by querying it with criteria.

func (*Client) FindImLivechatReportOperatorId

func (c *Client) FindImLivechatReportOperatorId(criteria *Criteria, options *Options) (int64, error)

FindImLivechatReportOperatorId finds record id by querying it with criteria.

func (*Client) FindImLivechatReportOperatorIds

func (c *Client) FindImLivechatReportOperatorIds(criteria *Criteria, options *Options) ([]int64, error)

FindImLivechatReportOperatorIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindImLivechatReportOperators

func (c *Client) FindImLivechatReportOperators(criteria *Criteria, options *Options) (*ImLivechatReportOperators, error)

FindImLivechatReportOperators finds im_livechat.report.operator records by querying it and filtering it with criteria and options.

func (*Client) FindImageMixin

func (c *Client) FindImageMixin(criteria *Criteria) (*ImageMixin, error)

FindImageMixin finds image.mixin record by querying it with criteria.

func (*Client) FindImageMixinId

func (c *Client) FindImageMixinId(criteria *Criteria, options *Options) (int64, error)

FindImageMixinId finds record id by querying it with criteria.

func (*Client) FindImageMixinIds

func (c *Client) FindImageMixinIds(criteria *Criteria, options *Options) ([]int64, error)

FindImageMixinIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindImageMixins

func (c *Client) FindImageMixins(criteria *Criteria, options *Options) (*ImageMixins, error)

FindImageMixins finds image.mixin records by querying it and filtering it with criteria and options.

func (*Client) FindIrActionsActUrl

func (c *Client) FindIrActionsActUrl(criteria *Criteria) (*IrActionsActUrl, error)

FindIrActionsActUrl finds ir.actions.act_url record by querying it with criteria.

func (*Client) FindIrActionsActUrlId

func (c *Client) FindIrActionsActUrlId(criteria *Criteria, options *Options) (int64, error)

FindIrActionsActUrlId finds record id by querying it with criteria.

func (*Client) FindIrActionsActUrlIds

func (c *Client) FindIrActionsActUrlIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrActionsActUrlIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrActionsActUrls

func (c *Client) FindIrActionsActUrls(criteria *Criteria, options *Options) (*IrActionsActUrls, error)

FindIrActionsActUrls finds ir.actions.act_url records by querying it and filtering it with criteria and options.

func (*Client) FindIrActionsActWindow

func (c *Client) FindIrActionsActWindow(criteria *Criteria) (*IrActionsActWindow, error)

FindIrActionsActWindow finds ir.actions.act_window record by querying it with criteria.

func (*Client) FindIrActionsActWindowClose

func (c *Client) FindIrActionsActWindowClose(criteria *Criteria) (*IrActionsActWindowClose, error)

FindIrActionsActWindowClose finds ir.actions.act_window_close record by querying it with criteria.

func (*Client) FindIrActionsActWindowCloseId

func (c *Client) FindIrActionsActWindowCloseId(criteria *Criteria, options *Options) (int64, error)

FindIrActionsActWindowCloseId finds record id by querying it with criteria.

func (*Client) FindIrActionsActWindowCloseIds

func (c *Client) FindIrActionsActWindowCloseIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrActionsActWindowCloseIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrActionsActWindowCloses

func (c *Client) FindIrActionsActWindowCloses(criteria *Criteria, options *Options) (*IrActionsActWindowCloses, error)

FindIrActionsActWindowCloses finds ir.actions.act_window_close records by querying it and filtering it with criteria and options.

func (*Client) FindIrActionsActWindowId

func (c *Client) FindIrActionsActWindowId(criteria *Criteria, options *Options) (int64, error)

FindIrActionsActWindowId finds record id by querying it with criteria.

func (*Client) FindIrActionsActWindowIds

func (c *Client) FindIrActionsActWindowIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrActionsActWindowIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrActionsActWindowView

func (c *Client) FindIrActionsActWindowView(criteria *Criteria) (*IrActionsActWindowView, error)

FindIrActionsActWindowView finds ir.actions.act_window.view record by querying it with criteria.

func (*Client) FindIrActionsActWindowViewId

func (c *Client) FindIrActionsActWindowViewId(criteria *Criteria, options *Options) (int64, error)

FindIrActionsActWindowViewId finds record id by querying it with criteria.

func (*Client) FindIrActionsActWindowViewIds

func (c *Client) FindIrActionsActWindowViewIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrActionsActWindowViewIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrActionsActWindowViews

func (c *Client) FindIrActionsActWindowViews(criteria *Criteria, options *Options) (*IrActionsActWindowViews, error)

FindIrActionsActWindowViews finds ir.actions.act_window.view records by querying it and filtering it with criteria and options.

func (*Client) FindIrActionsActWindows

func (c *Client) FindIrActionsActWindows(criteria *Criteria, options *Options) (*IrActionsActWindows, error)

FindIrActionsActWindows finds ir.actions.act_window records by querying it and filtering it with criteria and options.

func (*Client) FindIrActionsActions

func (c *Client) FindIrActionsActions(criteria *Criteria) (*IrActionsActions, error)

FindIrActionsActions finds ir.actions.actions record by querying it with criteria.

func (*Client) FindIrActionsActionsId

func (c *Client) FindIrActionsActionsId(criteria *Criteria, options *Options) (int64, error)

FindIrActionsActionsId finds record id by querying it with criteria.

func (*Client) FindIrActionsActionsIds

func (c *Client) FindIrActionsActionsIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrActionsActionsIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrActionsActionss

func (c *Client) FindIrActionsActionss(criteria *Criteria, options *Options) (*IrActionsActionss, error)

FindIrActionsActionss finds ir.actions.actions records by querying it and filtering it with criteria and options.

func (*Client) FindIrActionsClient

func (c *Client) FindIrActionsClient(criteria *Criteria) (*IrActionsClient, error)

FindIrActionsClient finds ir.actions.client record by querying it with criteria.

func (*Client) FindIrActionsClientId

func (c *Client) FindIrActionsClientId(criteria *Criteria, options *Options) (int64, error)

FindIrActionsClientId finds record id by querying it with criteria.

func (*Client) FindIrActionsClientIds

func (c *Client) FindIrActionsClientIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrActionsClientIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrActionsClients

func (c *Client) FindIrActionsClients(criteria *Criteria, options *Options) (*IrActionsClients, error)

FindIrActionsClients finds ir.actions.client records by querying it and filtering it with criteria and options.

func (*Client) FindIrActionsReport

func (c *Client) FindIrActionsReport(criteria *Criteria) (*IrActionsReport, error)

FindIrActionsReport finds ir.actions.report record by querying it with criteria.

func (*Client) FindIrActionsReportId

func (c *Client) FindIrActionsReportId(criteria *Criteria, options *Options) (int64, error)

FindIrActionsReportId finds record id by querying it with criteria.

func (*Client) FindIrActionsReportIds

func (c *Client) FindIrActionsReportIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrActionsReportIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrActionsReports

func (c *Client) FindIrActionsReports(criteria *Criteria, options *Options) (*IrActionsReports, error)

FindIrActionsReports finds ir.actions.report records by querying it and filtering it with criteria and options.

func (*Client) FindIrActionsServer

func (c *Client) FindIrActionsServer(criteria *Criteria) (*IrActionsServer, error)

FindIrActionsServer finds ir.actions.server record by querying it with criteria.

func (*Client) FindIrActionsServerId

func (c *Client) FindIrActionsServerId(criteria *Criteria, options *Options) (int64, error)

FindIrActionsServerId finds record id by querying it with criteria.

func (*Client) FindIrActionsServerIds

func (c *Client) FindIrActionsServerIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrActionsServerIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrActionsServers

func (c *Client) FindIrActionsServers(criteria *Criteria, options *Options) (*IrActionsServers, error)

FindIrActionsServers finds ir.actions.server records by querying it and filtering it with criteria and options.

func (*Client) FindIrActionsTodo

func (c *Client) FindIrActionsTodo(criteria *Criteria) (*IrActionsTodo, error)

FindIrActionsTodo finds ir.actions.todo record by querying it with criteria.

func (*Client) FindIrActionsTodoId

func (c *Client) FindIrActionsTodoId(criteria *Criteria, options *Options) (int64, error)

FindIrActionsTodoId finds record id by querying it with criteria.

func (*Client) FindIrActionsTodoIds

func (c *Client) FindIrActionsTodoIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrActionsTodoIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrActionsTodos

func (c *Client) FindIrActionsTodos(criteria *Criteria, options *Options) (*IrActionsTodos, error)

FindIrActionsTodos finds ir.actions.todo records by querying it and filtering it with criteria and options.

func (*Client) FindIrAttachment

func (c *Client) FindIrAttachment(criteria *Criteria) (*IrAttachment, error)

FindIrAttachment finds ir.attachment record by querying it with criteria.

func (*Client) FindIrAttachmentId

func (c *Client) FindIrAttachmentId(criteria *Criteria, options *Options) (int64, error)

FindIrAttachmentId finds record id by querying it with criteria.

func (*Client) FindIrAttachmentIds

func (c *Client) FindIrAttachmentIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrAttachmentIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrAttachments

func (c *Client) FindIrAttachments(criteria *Criteria, options *Options) (*IrAttachments, error)

FindIrAttachments finds ir.attachment records by querying it and filtering it with criteria and options.

func (*Client) FindIrAutovacuum

func (c *Client) FindIrAutovacuum(criteria *Criteria) (*IrAutovacuum, error)

FindIrAutovacuum finds ir.autovacuum record by querying it with criteria.

func (*Client) FindIrAutovacuumId

func (c *Client) FindIrAutovacuumId(criteria *Criteria, options *Options) (int64, error)

FindIrAutovacuumId finds record id by querying it with criteria.

func (*Client) FindIrAutovacuumIds

func (c *Client) FindIrAutovacuumIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrAutovacuumIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrAutovacuums

func (c *Client) FindIrAutovacuums(criteria *Criteria, options *Options) (*IrAutovacuums, error)

FindIrAutovacuums finds ir.autovacuum records by querying it and filtering it with criteria and options.

func (*Client) FindIrConfigParameter

func (c *Client) FindIrConfigParameter(criteria *Criteria) (*IrConfigParameter, error)

FindIrConfigParameter finds ir.config_parameter record by querying it with criteria.

func (*Client) FindIrConfigParameterId

func (c *Client) FindIrConfigParameterId(criteria *Criteria, options *Options) (int64, error)

FindIrConfigParameterId finds record id by querying it with criteria.

func (*Client) FindIrConfigParameterIds

func (c *Client) FindIrConfigParameterIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrConfigParameterIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrConfigParameters

func (c *Client) FindIrConfigParameters(criteria *Criteria, options *Options) (*IrConfigParameters, error)

FindIrConfigParameters finds ir.config_parameter records by querying it and filtering it with criteria and options.

func (*Client) FindIrCron

func (c *Client) FindIrCron(criteria *Criteria) (*IrCron, error)

FindIrCron finds ir.cron record by querying it with criteria.

func (*Client) FindIrCronId

func (c *Client) FindIrCronId(criteria *Criteria, options *Options) (int64, error)

FindIrCronId finds record id by querying it with criteria.

func (*Client) FindIrCronIds

func (c *Client) FindIrCronIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrCronIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrCrons

func (c *Client) FindIrCrons(criteria *Criteria, options *Options) (*IrCrons, error)

FindIrCrons finds ir.cron records by querying it and filtering it with criteria and options.

func (*Client) FindIrDefault

func (c *Client) FindIrDefault(criteria *Criteria) (*IrDefault, error)

FindIrDefault finds ir.default record by querying it with criteria.

func (*Client) FindIrDefaultId

func (c *Client) FindIrDefaultId(criteria *Criteria, options *Options) (int64, error)

FindIrDefaultId finds record id by querying it with criteria.

func (*Client) FindIrDefaultIds

func (c *Client) FindIrDefaultIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrDefaultIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrDefaults

func (c *Client) FindIrDefaults(criteria *Criteria, options *Options) (*IrDefaults, error)

FindIrDefaults finds ir.default records by querying it and filtering it with criteria and options.

func (*Client) FindIrDemo

func (c *Client) FindIrDemo(criteria *Criteria) (*IrDemo, error)

FindIrDemo finds ir.demo record by querying it with criteria.

func (*Client) FindIrDemoFailure

func (c *Client) FindIrDemoFailure(criteria *Criteria) (*IrDemoFailure, error)

FindIrDemoFailure finds ir.demo_failure record by querying it with criteria.

func (*Client) FindIrDemoFailureId

func (c *Client) FindIrDemoFailureId(criteria *Criteria, options *Options) (int64, error)

FindIrDemoFailureId finds record id by querying it with criteria.

func (*Client) FindIrDemoFailureIds

func (c *Client) FindIrDemoFailureIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrDemoFailureIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrDemoFailureWizard

func (c *Client) FindIrDemoFailureWizard(criteria *Criteria) (*IrDemoFailureWizard, error)

FindIrDemoFailureWizard finds ir.demo_failure.wizard record by querying it with criteria.

func (*Client) FindIrDemoFailureWizardId

func (c *Client) FindIrDemoFailureWizardId(criteria *Criteria, options *Options) (int64, error)

FindIrDemoFailureWizardId finds record id by querying it with criteria.

func (*Client) FindIrDemoFailureWizardIds

func (c *Client) FindIrDemoFailureWizardIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrDemoFailureWizardIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrDemoFailureWizards

func (c *Client) FindIrDemoFailureWizards(criteria *Criteria, options *Options) (*IrDemoFailureWizards, error)

FindIrDemoFailureWizards finds ir.demo_failure.wizard records by querying it and filtering it with criteria and options.

func (*Client) FindIrDemoFailures

func (c *Client) FindIrDemoFailures(criteria *Criteria, options *Options) (*IrDemoFailures, error)

FindIrDemoFailures finds ir.demo_failure records by querying it and filtering it with criteria and options.

func (*Client) FindIrDemoId

func (c *Client) FindIrDemoId(criteria *Criteria, options *Options) (int64, error)

FindIrDemoId finds record id by querying it with criteria.

func (*Client) FindIrDemoIds

func (c *Client) FindIrDemoIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrDemoIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrDemos

func (c *Client) FindIrDemos(criteria *Criteria, options *Options) (*IrDemos, error)

FindIrDemos finds ir.demo records by querying it and filtering it with criteria and options.

func (*Client) FindIrExports

func (c *Client) FindIrExports(criteria *Criteria) (*IrExports, error)

FindIrExports finds ir.exports record by querying it with criteria.

func (*Client) FindIrExportsId

func (c *Client) FindIrExportsId(criteria *Criteria, options *Options) (int64, error)

FindIrExportsId finds record id by querying it with criteria.

func (*Client) FindIrExportsIds

func (c *Client) FindIrExportsIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrExportsIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrExportsLine

func (c *Client) FindIrExportsLine(criteria *Criteria) (*IrExportsLine, error)

FindIrExportsLine finds ir.exports.line record by querying it with criteria.

func (*Client) FindIrExportsLineId

func (c *Client) FindIrExportsLineId(criteria *Criteria, options *Options) (int64, error)

FindIrExportsLineId finds record id by querying it with criteria.

func (*Client) FindIrExportsLineIds

func (c *Client) FindIrExportsLineIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrExportsLineIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrExportsLines

func (c *Client) FindIrExportsLines(criteria *Criteria, options *Options) (*IrExportsLines, error)

FindIrExportsLines finds ir.exports.line records by querying it and filtering it with criteria and options.

func (*Client) FindIrExportss

func (c *Client) FindIrExportss(criteria *Criteria, options *Options) (*IrExportss, error)

FindIrExportss finds ir.exports records by querying it and filtering it with criteria and options.

func (*Client) FindIrFieldsConverter

func (c *Client) FindIrFieldsConverter(criteria *Criteria) (*IrFieldsConverter, error)

FindIrFieldsConverter finds ir.fields.converter record by querying it with criteria.

func (*Client) FindIrFieldsConverterId

func (c *Client) FindIrFieldsConverterId(criteria *Criteria, options *Options) (int64, error)

FindIrFieldsConverterId finds record id by querying it with criteria.

func (*Client) FindIrFieldsConverterIds

func (c *Client) FindIrFieldsConverterIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrFieldsConverterIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrFieldsConverters

func (c *Client) FindIrFieldsConverters(criteria *Criteria, options *Options) (*IrFieldsConverters, error)

FindIrFieldsConverters finds ir.fields.converter records by querying it and filtering it with criteria and options.

func (*Client) FindIrFilters

func (c *Client) FindIrFilters(criteria *Criteria) (*IrFilters, error)

FindIrFilters finds ir.filters record by querying it with criteria.

func (*Client) FindIrFiltersId

func (c *Client) FindIrFiltersId(criteria *Criteria, options *Options) (int64, error)

FindIrFiltersId finds record id by querying it with criteria.

func (*Client) FindIrFiltersIds

func (c *Client) FindIrFiltersIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrFiltersIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrFilterss

func (c *Client) FindIrFilterss(criteria *Criteria, options *Options) (*IrFilterss, error)

FindIrFilterss finds ir.filters records by querying it and filtering it with criteria and options.

func (*Client) FindIrHttp

func (c *Client) FindIrHttp(criteria *Criteria) (*IrHttp, error)

FindIrHttp finds ir.http record by querying it with criteria.

func (*Client) FindIrHttpId

func (c *Client) FindIrHttpId(criteria *Criteria, options *Options) (int64, error)

FindIrHttpId finds record id by querying it with criteria.

func (*Client) FindIrHttpIds

func (c *Client) FindIrHttpIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrHttpIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrHttps

func (c *Client) FindIrHttps(criteria *Criteria, options *Options) (*IrHttps, error)

FindIrHttps finds ir.http records by querying it and filtering it with criteria and options.

func (*Client) FindIrLogging

func (c *Client) FindIrLogging(criteria *Criteria) (*IrLogging, error)

FindIrLogging finds ir.logging record by querying it with criteria.

func (*Client) FindIrLoggingId

func (c *Client) FindIrLoggingId(criteria *Criteria, options *Options) (int64, error)

FindIrLoggingId finds record id by querying it with criteria.

func (*Client) FindIrLoggingIds

func (c *Client) FindIrLoggingIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrLoggingIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrLoggings

func (c *Client) FindIrLoggings(criteria *Criteria, options *Options) (*IrLoggings, error)

FindIrLoggings finds ir.logging records by querying it and filtering it with criteria and options.

func (*Client) FindIrMailServer

func (c *Client) FindIrMailServer(criteria *Criteria) (*IrMailServer, error)

FindIrMailServer finds ir.mail_server record by querying it with criteria.

func (*Client) FindIrMailServerId

func (c *Client) FindIrMailServerId(criteria *Criteria, options *Options) (int64, error)

FindIrMailServerId finds record id by querying it with criteria.

func (*Client) FindIrMailServerIds

func (c *Client) FindIrMailServerIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrMailServerIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrMailServers

func (c *Client) FindIrMailServers(criteria *Criteria, options *Options) (*IrMailServers, error)

FindIrMailServers finds ir.mail_server records by querying it and filtering it with criteria and options.

func (*Client) FindIrModel

func (c *Client) FindIrModel(criteria *Criteria) (*IrModel, error)

FindIrModel finds ir.model record by querying it with criteria.

func (*Client) FindIrModelAccess

func (c *Client) FindIrModelAccess(criteria *Criteria) (*IrModelAccess, error)

FindIrModelAccess finds ir.model.access record by querying it with criteria.

func (*Client) FindIrModelAccessId

func (c *Client) FindIrModelAccessId(criteria *Criteria, options *Options) (int64, error)

FindIrModelAccessId finds record id by querying it with criteria.

func (*Client) FindIrModelAccessIds

func (c *Client) FindIrModelAccessIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrModelAccessIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrModelAccesss

func (c *Client) FindIrModelAccesss(criteria *Criteria, options *Options) (*IrModelAccesss, error)

FindIrModelAccesss finds ir.model.access records by querying it and filtering it with criteria and options.

func (*Client) FindIrModelConstraint

func (c *Client) FindIrModelConstraint(criteria *Criteria) (*IrModelConstraint, error)

FindIrModelConstraint finds ir.model.constraint record by querying it with criteria.

func (*Client) FindIrModelConstraintId

func (c *Client) FindIrModelConstraintId(criteria *Criteria, options *Options) (int64, error)

FindIrModelConstraintId finds record id by querying it with criteria.

func (*Client) FindIrModelConstraintIds

func (c *Client) FindIrModelConstraintIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrModelConstraintIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrModelConstraints

func (c *Client) FindIrModelConstraints(criteria *Criteria, options *Options) (*IrModelConstraints, error)

FindIrModelConstraints finds ir.model.constraint records by querying it and filtering it with criteria and options.

func (*Client) FindIrModelData

func (c *Client) FindIrModelData(criteria *Criteria) (*IrModelData, error)

FindIrModelData finds ir.model.data record by querying it with criteria.

func (*Client) FindIrModelDataId

func (c *Client) FindIrModelDataId(criteria *Criteria, options *Options) (int64, error)

FindIrModelDataId finds record id by querying it with criteria.

func (*Client) FindIrModelDataIds

func (c *Client) FindIrModelDataIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrModelDataIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrModelDatas

func (c *Client) FindIrModelDatas(criteria *Criteria, options *Options) (*IrModelDatas, error)

FindIrModelDatas finds ir.model.data records by querying it and filtering it with criteria and options.

func (*Client) FindIrModelFields

func (c *Client) FindIrModelFields(criteria *Criteria) (*IrModelFields, error)

FindIrModelFields finds ir.model.fields record by querying it with criteria.

func (*Client) FindIrModelFieldsId

func (c *Client) FindIrModelFieldsId(criteria *Criteria, options *Options) (int64, error)

FindIrModelFieldsId finds record id by querying it with criteria.

func (*Client) FindIrModelFieldsIds

func (c *Client) FindIrModelFieldsIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrModelFieldsIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrModelFieldsSelection

func (c *Client) FindIrModelFieldsSelection(criteria *Criteria) (*IrModelFieldsSelection, error)

FindIrModelFieldsSelection finds ir.model.fields.selection record by querying it with criteria.

func (*Client) FindIrModelFieldsSelectionId

func (c *Client) FindIrModelFieldsSelectionId(criteria *Criteria, options *Options) (int64, error)

FindIrModelFieldsSelectionId finds record id by querying it with criteria.

func (*Client) FindIrModelFieldsSelectionIds

func (c *Client) FindIrModelFieldsSelectionIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrModelFieldsSelectionIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrModelFieldsSelections

func (c *Client) FindIrModelFieldsSelections(criteria *Criteria, options *Options) (*IrModelFieldsSelections, error)

FindIrModelFieldsSelections finds ir.model.fields.selection records by querying it and filtering it with criteria and options.

func (*Client) FindIrModelFieldss

func (c *Client) FindIrModelFieldss(criteria *Criteria, options *Options) (*IrModelFieldss, error)

FindIrModelFieldss finds ir.model.fields records by querying it and filtering it with criteria and options.

func (*Client) FindIrModelId

func (c *Client) FindIrModelId(criteria *Criteria, options *Options) (int64, error)

FindIrModelId finds record id by querying it with criteria.

func (*Client) FindIrModelIds

func (c *Client) FindIrModelIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrModelIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrModelRelation

func (c *Client) FindIrModelRelation(criteria *Criteria) (*IrModelRelation, error)

FindIrModelRelation finds ir.model.relation record by querying it with criteria.

func (*Client) FindIrModelRelationId

func (c *Client) FindIrModelRelationId(criteria *Criteria, options *Options) (int64, error)

FindIrModelRelationId finds record id by querying it with criteria.

func (*Client) FindIrModelRelationIds

func (c *Client) FindIrModelRelationIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrModelRelationIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrModelRelations

func (c *Client) FindIrModelRelations(criteria *Criteria, options *Options) (*IrModelRelations, error)

FindIrModelRelations finds ir.model.relation records by querying it and filtering it with criteria and options.

func (*Client) FindIrModels

func (c *Client) FindIrModels(criteria *Criteria, options *Options) (*IrModels, error)

FindIrModels finds ir.model records by querying it and filtering it with criteria and options.

func (*Client) FindIrModuleCategory

func (c *Client) FindIrModuleCategory(criteria *Criteria) (*IrModuleCategory, error)

FindIrModuleCategory finds ir.module.category record by querying it with criteria.

func (*Client) FindIrModuleCategoryId

func (c *Client) FindIrModuleCategoryId(criteria *Criteria, options *Options) (int64, error)

FindIrModuleCategoryId finds record id by querying it with criteria.

func (*Client) FindIrModuleCategoryIds

func (c *Client) FindIrModuleCategoryIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrModuleCategoryIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrModuleCategorys

func (c *Client) FindIrModuleCategorys(criteria *Criteria, options *Options) (*IrModuleCategorys, error)

FindIrModuleCategorys finds ir.module.category records by querying it and filtering it with criteria and options.

func (*Client) FindIrModuleModule

func (c *Client) FindIrModuleModule(criteria *Criteria) (*IrModuleModule, error)

FindIrModuleModule finds ir.module.module record by querying it with criteria.

func (*Client) FindIrModuleModuleDependency

func (c *Client) FindIrModuleModuleDependency(criteria *Criteria) (*IrModuleModuleDependency, error)

FindIrModuleModuleDependency finds ir.module.module.dependency record by querying it with criteria.

func (*Client) FindIrModuleModuleDependencyId

func (c *Client) FindIrModuleModuleDependencyId(criteria *Criteria, options *Options) (int64, error)

FindIrModuleModuleDependencyId finds record id by querying it with criteria.

func (*Client) FindIrModuleModuleDependencyIds

func (c *Client) FindIrModuleModuleDependencyIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrModuleModuleDependencyIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrModuleModuleDependencys

func (c *Client) FindIrModuleModuleDependencys(criteria *Criteria, options *Options) (*IrModuleModuleDependencys, error)

FindIrModuleModuleDependencys finds ir.module.module.dependency records by querying it and filtering it with criteria and options.

func (*Client) FindIrModuleModuleExclusion

func (c *Client) FindIrModuleModuleExclusion(criteria *Criteria) (*IrModuleModuleExclusion, error)

FindIrModuleModuleExclusion finds ir.module.module.exclusion record by querying it with criteria.

func (*Client) FindIrModuleModuleExclusionId

func (c *Client) FindIrModuleModuleExclusionId(criteria *Criteria, options *Options) (int64, error)

FindIrModuleModuleExclusionId finds record id by querying it with criteria.

func (*Client) FindIrModuleModuleExclusionIds

func (c *Client) FindIrModuleModuleExclusionIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrModuleModuleExclusionIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrModuleModuleExclusions

func (c *Client) FindIrModuleModuleExclusions(criteria *Criteria, options *Options) (*IrModuleModuleExclusions, error)

FindIrModuleModuleExclusions finds ir.module.module.exclusion records by querying it and filtering it with criteria and options.

func (*Client) FindIrModuleModuleId

func (c *Client) FindIrModuleModuleId(criteria *Criteria, options *Options) (int64, error)

FindIrModuleModuleId finds record id by querying it with criteria.

func (*Client) FindIrModuleModuleIds

func (c *Client) FindIrModuleModuleIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrModuleModuleIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrModuleModules

func (c *Client) FindIrModuleModules(criteria *Criteria, options *Options) (*IrModuleModules, error)

FindIrModuleModules finds ir.module.module records by querying it and filtering it with criteria and options.

func (*Client) FindIrProperty

func (c *Client) FindIrProperty(criteria *Criteria) (*IrProperty, error)

FindIrProperty finds ir.property record by querying it with criteria.

func (*Client) FindIrPropertyId

func (c *Client) FindIrPropertyId(criteria *Criteria, options *Options) (int64, error)

FindIrPropertyId finds record id by querying it with criteria.

func (*Client) FindIrPropertyIds

func (c *Client) FindIrPropertyIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrPropertyIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrPropertys

func (c *Client) FindIrPropertys(criteria *Criteria, options *Options) (*IrPropertys, error)

FindIrPropertys finds ir.property records by querying it and filtering it with criteria and options.

func (*Client) FindIrQweb

func (c *Client) FindIrQweb(criteria *Criteria) (*IrQweb, error)

FindIrQweb finds ir.qweb record by querying it with criteria.

func (*Client) FindIrQwebField

func (c *Client) FindIrQwebField(criteria *Criteria) (*IrQwebField, error)

FindIrQwebField finds ir.qweb.field record by querying it with criteria.

func (*Client) FindIrQwebFieldBarcode

func (c *Client) FindIrQwebFieldBarcode(criteria *Criteria) (*IrQwebFieldBarcode, error)

FindIrQwebFieldBarcode finds ir.qweb.field.barcode record by querying it with criteria.

func (*Client) FindIrQwebFieldBarcodeId

func (c *Client) FindIrQwebFieldBarcodeId(criteria *Criteria, options *Options) (int64, error)

FindIrQwebFieldBarcodeId finds record id by querying it with criteria.

func (*Client) FindIrQwebFieldBarcodeIds

func (c *Client) FindIrQwebFieldBarcodeIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrQwebFieldBarcodeIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrQwebFieldBarcodes

func (c *Client) FindIrQwebFieldBarcodes(criteria *Criteria, options *Options) (*IrQwebFieldBarcodes, error)

FindIrQwebFieldBarcodes finds ir.qweb.field.barcode records by querying it and filtering it with criteria and options.

func (*Client) FindIrQwebFieldContact

func (c *Client) FindIrQwebFieldContact(criteria *Criteria) (*IrQwebFieldContact, error)

FindIrQwebFieldContact finds ir.qweb.field.contact record by querying it with criteria.

func (*Client) FindIrQwebFieldContactId

func (c *Client) FindIrQwebFieldContactId(criteria *Criteria, options *Options) (int64, error)

FindIrQwebFieldContactId finds record id by querying it with criteria.

func (*Client) FindIrQwebFieldContactIds

func (c *Client) FindIrQwebFieldContactIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrQwebFieldContactIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrQwebFieldContacts

func (c *Client) FindIrQwebFieldContacts(criteria *Criteria, options *Options) (*IrQwebFieldContacts, error)

FindIrQwebFieldContacts finds ir.qweb.field.contact records by querying it and filtering it with criteria and options.

func (*Client) FindIrQwebFieldDate

func (c *Client) FindIrQwebFieldDate(criteria *Criteria) (*IrQwebFieldDate, error)

FindIrQwebFieldDate finds ir.qweb.field.date record by querying it with criteria.

func (*Client) FindIrQwebFieldDateId

func (c *Client) FindIrQwebFieldDateId(criteria *Criteria, options *Options) (int64, error)

FindIrQwebFieldDateId finds record id by querying it with criteria.

func (*Client) FindIrQwebFieldDateIds

func (c *Client) FindIrQwebFieldDateIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrQwebFieldDateIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrQwebFieldDates

func (c *Client) FindIrQwebFieldDates(criteria *Criteria, options *Options) (*IrQwebFieldDates, error)

FindIrQwebFieldDates finds ir.qweb.field.date records by querying it and filtering it with criteria and options.

func (*Client) FindIrQwebFieldDatetime

func (c *Client) FindIrQwebFieldDatetime(criteria *Criteria) (*IrQwebFieldDatetime, error)

FindIrQwebFieldDatetime finds ir.qweb.field.datetime record by querying it with criteria.

func (*Client) FindIrQwebFieldDatetimeId

func (c *Client) FindIrQwebFieldDatetimeId(criteria *Criteria, options *Options) (int64, error)

FindIrQwebFieldDatetimeId finds record id by querying it with criteria.

func (*Client) FindIrQwebFieldDatetimeIds

func (c *Client) FindIrQwebFieldDatetimeIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrQwebFieldDatetimeIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrQwebFieldDatetimes

func (c *Client) FindIrQwebFieldDatetimes(criteria *Criteria, options *Options) (*IrQwebFieldDatetimes, error)

FindIrQwebFieldDatetimes finds ir.qweb.field.datetime records by querying it and filtering it with criteria and options.

func (*Client) FindIrQwebFieldDuration

func (c *Client) FindIrQwebFieldDuration(criteria *Criteria) (*IrQwebFieldDuration, error)

FindIrQwebFieldDuration finds ir.qweb.field.duration record by querying it with criteria.

func (*Client) FindIrQwebFieldDurationId

func (c *Client) FindIrQwebFieldDurationId(criteria *Criteria, options *Options) (int64, error)

FindIrQwebFieldDurationId finds record id by querying it with criteria.

func (*Client) FindIrQwebFieldDurationIds

func (c *Client) FindIrQwebFieldDurationIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrQwebFieldDurationIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrQwebFieldDurations

func (c *Client) FindIrQwebFieldDurations(criteria *Criteria, options *Options) (*IrQwebFieldDurations, error)

FindIrQwebFieldDurations finds ir.qweb.field.duration records by querying it and filtering it with criteria and options.

func (*Client) FindIrQwebFieldFloat

func (c *Client) FindIrQwebFieldFloat(criteria *Criteria) (*IrQwebFieldFloat, error)

FindIrQwebFieldFloat finds ir.qweb.field.float record by querying it with criteria.

func (*Client) FindIrQwebFieldFloatId

func (c *Client) FindIrQwebFieldFloatId(criteria *Criteria, options *Options) (int64, error)

FindIrQwebFieldFloatId finds record id by querying it with criteria.

func (*Client) FindIrQwebFieldFloatIds

func (c *Client) FindIrQwebFieldFloatIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrQwebFieldFloatIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrQwebFieldFloatTime

func (c *Client) FindIrQwebFieldFloatTime(criteria *Criteria) (*IrQwebFieldFloatTime, error)

FindIrQwebFieldFloatTime finds ir.qweb.field.float_time record by querying it with criteria.

func (*Client) FindIrQwebFieldFloatTimeId

func (c *Client) FindIrQwebFieldFloatTimeId(criteria *Criteria, options *Options) (int64, error)

FindIrQwebFieldFloatTimeId finds record id by querying it with criteria.

func (*Client) FindIrQwebFieldFloatTimeIds

func (c *Client) FindIrQwebFieldFloatTimeIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrQwebFieldFloatTimeIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrQwebFieldFloatTimes

func (c *Client) FindIrQwebFieldFloatTimes(criteria *Criteria, options *Options) (*IrQwebFieldFloatTimes, error)

FindIrQwebFieldFloatTimes finds ir.qweb.field.float_time records by querying it and filtering it with criteria and options.

func (*Client) FindIrQwebFieldFloats

func (c *Client) FindIrQwebFieldFloats(criteria *Criteria, options *Options) (*IrQwebFieldFloats, error)

FindIrQwebFieldFloats finds ir.qweb.field.float records by querying it and filtering it with criteria and options.

func (*Client) FindIrQwebFieldHtml

func (c *Client) FindIrQwebFieldHtml(criteria *Criteria) (*IrQwebFieldHtml, error)

FindIrQwebFieldHtml finds ir.qweb.field.html record by querying it with criteria.

func (*Client) FindIrQwebFieldHtmlId

func (c *Client) FindIrQwebFieldHtmlId(criteria *Criteria, options *Options) (int64, error)

FindIrQwebFieldHtmlId finds record id by querying it with criteria.

func (*Client) FindIrQwebFieldHtmlIds

func (c *Client) FindIrQwebFieldHtmlIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrQwebFieldHtmlIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrQwebFieldHtmls

func (c *Client) FindIrQwebFieldHtmls(criteria *Criteria, options *Options) (*IrQwebFieldHtmls, error)

FindIrQwebFieldHtmls finds ir.qweb.field.html records by querying it and filtering it with criteria and options.

func (*Client) FindIrQwebFieldId

func (c *Client) FindIrQwebFieldId(criteria *Criteria, options *Options) (int64, error)

FindIrQwebFieldId finds record id by querying it with criteria.

func (*Client) FindIrQwebFieldIds

func (c *Client) FindIrQwebFieldIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrQwebFieldIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrQwebFieldImage

func (c *Client) FindIrQwebFieldImage(criteria *Criteria) (*IrQwebFieldImage, error)

FindIrQwebFieldImage finds ir.qweb.field.image record by querying it with criteria.

func (*Client) FindIrQwebFieldImageId

func (c *Client) FindIrQwebFieldImageId(criteria *Criteria, options *Options) (int64, error)

FindIrQwebFieldImageId finds record id by querying it with criteria.

func (*Client) FindIrQwebFieldImageIds

func (c *Client) FindIrQwebFieldImageIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrQwebFieldImageIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrQwebFieldImages

func (c *Client) FindIrQwebFieldImages(criteria *Criteria, options *Options) (*IrQwebFieldImages, error)

FindIrQwebFieldImages finds ir.qweb.field.image records by querying it and filtering it with criteria and options.

func (*Client) FindIrQwebFieldInteger

func (c *Client) FindIrQwebFieldInteger(criteria *Criteria) (*IrQwebFieldInteger, error)

FindIrQwebFieldInteger finds ir.qweb.field.integer record by querying it with criteria.

func (*Client) FindIrQwebFieldIntegerId

func (c *Client) FindIrQwebFieldIntegerId(criteria *Criteria, options *Options) (int64, error)

FindIrQwebFieldIntegerId finds record id by querying it with criteria.

func (*Client) FindIrQwebFieldIntegerIds

func (c *Client) FindIrQwebFieldIntegerIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrQwebFieldIntegerIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrQwebFieldIntegers

func (c *Client) FindIrQwebFieldIntegers(criteria *Criteria, options *Options) (*IrQwebFieldIntegers, error)

FindIrQwebFieldIntegers finds ir.qweb.field.integer records by querying it and filtering it with criteria and options.

func (*Client) FindIrQwebFieldMany2Many

func (c *Client) FindIrQwebFieldMany2Many(criteria *Criteria) (*IrQwebFieldMany2Many, error)

FindIrQwebFieldMany2Many finds ir.qweb.field.many2many record by querying it with criteria.

func (*Client) FindIrQwebFieldMany2ManyId

func (c *Client) FindIrQwebFieldMany2ManyId(criteria *Criteria, options *Options) (int64, error)

FindIrQwebFieldMany2ManyId finds record id by querying it with criteria.

func (*Client) FindIrQwebFieldMany2ManyIds

func (c *Client) FindIrQwebFieldMany2ManyIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrQwebFieldMany2ManyIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrQwebFieldMany2Manys

func (c *Client) FindIrQwebFieldMany2Manys(criteria *Criteria, options *Options) (*IrQwebFieldMany2Manys, error)

FindIrQwebFieldMany2Manys finds ir.qweb.field.many2many records by querying it and filtering it with criteria and options.

func (*Client) FindIrQwebFieldMany2One

func (c *Client) FindIrQwebFieldMany2One(criteria *Criteria) (*IrQwebFieldMany2One, error)

FindIrQwebFieldMany2One finds ir.qweb.field.many2one record by querying it with criteria.

func (*Client) FindIrQwebFieldMany2OneId

func (c *Client) FindIrQwebFieldMany2OneId(criteria *Criteria, options *Options) (int64, error)

FindIrQwebFieldMany2OneId finds record id by querying it with criteria.

func (*Client) FindIrQwebFieldMany2OneIds

func (c *Client) FindIrQwebFieldMany2OneIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrQwebFieldMany2OneIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrQwebFieldMany2Ones

func (c *Client) FindIrQwebFieldMany2Ones(criteria *Criteria, options *Options) (*IrQwebFieldMany2Ones, error)

FindIrQwebFieldMany2Ones finds ir.qweb.field.many2one records by querying it and filtering it with criteria and options.

func (*Client) FindIrQwebFieldMonetary

func (c *Client) FindIrQwebFieldMonetary(criteria *Criteria) (*IrQwebFieldMonetary, error)

FindIrQwebFieldMonetary finds ir.qweb.field.monetary record by querying it with criteria.

func (*Client) FindIrQwebFieldMonetaryId

func (c *Client) FindIrQwebFieldMonetaryId(criteria *Criteria, options *Options) (int64, error)

FindIrQwebFieldMonetaryId finds record id by querying it with criteria.

func (*Client) FindIrQwebFieldMonetaryIds

func (c *Client) FindIrQwebFieldMonetaryIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrQwebFieldMonetaryIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrQwebFieldMonetarys

func (c *Client) FindIrQwebFieldMonetarys(criteria *Criteria, options *Options) (*IrQwebFieldMonetarys, error)

FindIrQwebFieldMonetarys finds ir.qweb.field.monetary records by querying it and filtering it with criteria and options.

func (*Client) FindIrQwebFieldQweb

func (c *Client) FindIrQwebFieldQweb(criteria *Criteria) (*IrQwebFieldQweb, error)

FindIrQwebFieldQweb finds ir.qweb.field.qweb record by querying it with criteria.

func (*Client) FindIrQwebFieldQwebId

func (c *Client) FindIrQwebFieldQwebId(criteria *Criteria, options *Options) (int64, error)

FindIrQwebFieldQwebId finds record id by querying it with criteria.

func (*Client) FindIrQwebFieldQwebIds

func (c *Client) FindIrQwebFieldQwebIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrQwebFieldQwebIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrQwebFieldQwebs

func (c *Client) FindIrQwebFieldQwebs(criteria *Criteria, options *Options) (*IrQwebFieldQwebs, error)

FindIrQwebFieldQwebs finds ir.qweb.field.qweb records by querying it and filtering it with criteria and options.

func (*Client) FindIrQwebFieldRelative

func (c *Client) FindIrQwebFieldRelative(criteria *Criteria) (*IrQwebFieldRelative, error)

FindIrQwebFieldRelative finds ir.qweb.field.relative record by querying it with criteria.

func (*Client) FindIrQwebFieldRelativeId

func (c *Client) FindIrQwebFieldRelativeId(criteria *Criteria, options *Options) (int64, error)

FindIrQwebFieldRelativeId finds record id by querying it with criteria.

func (*Client) FindIrQwebFieldRelativeIds

func (c *Client) FindIrQwebFieldRelativeIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrQwebFieldRelativeIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrQwebFieldRelatives

func (c *Client) FindIrQwebFieldRelatives(criteria *Criteria, options *Options) (*IrQwebFieldRelatives, error)

FindIrQwebFieldRelatives finds ir.qweb.field.relative records by querying it and filtering it with criteria and options.

func (*Client) FindIrQwebFieldSelection

func (c *Client) FindIrQwebFieldSelection(criteria *Criteria) (*IrQwebFieldSelection, error)

FindIrQwebFieldSelection finds ir.qweb.field.selection record by querying it with criteria.

func (*Client) FindIrQwebFieldSelectionId

func (c *Client) FindIrQwebFieldSelectionId(criteria *Criteria, options *Options) (int64, error)

FindIrQwebFieldSelectionId finds record id by querying it with criteria.

func (*Client) FindIrQwebFieldSelectionIds

func (c *Client) FindIrQwebFieldSelectionIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrQwebFieldSelectionIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrQwebFieldSelections

func (c *Client) FindIrQwebFieldSelections(criteria *Criteria, options *Options) (*IrQwebFieldSelections, error)

FindIrQwebFieldSelections finds ir.qweb.field.selection records by querying it and filtering it with criteria and options.

func (*Client) FindIrQwebFieldText

func (c *Client) FindIrQwebFieldText(criteria *Criteria) (*IrQwebFieldText, error)

FindIrQwebFieldText finds ir.qweb.field.text record by querying it with criteria.

func (*Client) FindIrQwebFieldTextId

func (c *Client) FindIrQwebFieldTextId(criteria *Criteria, options *Options) (int64, error)

FindIrQwebFieldTextId finds record id by querying it with criteria.

func (*Client) FindIrQwebFieldTextIds

func (c *Client) FindIrQwebFieldTextIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrQwebFieldTextIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrQwebFieldTexts

func (c *Client) FindIrQwebFieldTexts(criteria *Criteria, options *Options) (*IrQwebFieldTexts, error)

FindIrQwebFieldTexts finds ir.qweb.field.text records by querying it and filtering it with criteria and options.

func (*Client) FindIrQwebFields

func (c *Client) FindIrQwebFields(criteria *Criteria, options *Options) (*IrQwebFields, error)

FindIrQwebFields finds ir.qweb.field records by querying it and filtering it with criteria and options.

func (*Client) FindIrQwebId

func (c *Client) FindIrQwebId(criteria *Criteria, options *Options) (int64, error)

FindIrQwebId finds record id by querying it with criteria.

func (*Client) FindIrQwebIds

func (c *Client) FindIrQwebIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrQwebIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrQwebs

func (c *Client) FindIrQwebs(criteria *Criteria, options *Options) (*IrQwebs, error)

FindIrQwebs finds ir.qweb records by querying it and filtering it with criteria and options.

func (*Client) FindIrRule

func (c *Client) FindIrRule(criteria *Criteria) (*IrRule, error)

FindIrRule finds ir.rule record by querying it with criteria.

func (*Client) FindIrRuleId

func (c *Client) FindIrRuleId(criteria *Criteria, options *Options) (int64, error)

FindIrRuleId finds record id by querying it with criteria.

func (*Client) FindIrRuleIds

func (c *Client) FindIrRuleIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrRuleIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrRules

func (c *Client) FindIrRules(criteria *Criteria, options *Options) (*IrRules, error)

FindIrRules finds ir.rule records by querying it and filtering it with criteria and options.

func (*Client) FindIrSequence

func (c *Client) FindIrSequence(criteria *Criteria) (*IrSequence, error)

FindIrSequence finds ir.sequence record by querying it with criteria.

func (*Client) FindIrSequenceDateRange

func (c *Client) FindIrSequenceDateRange(criteria *Criteria) (*IrSequenceDateRange, error)

FindIrSequenceDateRange finds ir.sequence.date_range record by querying it with criteria.

func (*Client) FindIrSequenceDateRangeId

func (c *Client) FindIrSequenceDateRangeId(criteria *Criteria, options *Options) (int64, error)

FindIrSequenceDateRangeId finds record id by querying it with criteria.

func (*Client) FindIrSequenceDateRangeIds

func (c *Client) FindIrSequenceDateRangeIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrSequenceDateRangeIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrSequenceDateRanges

func (c *Client) FindIrSequenceDateRanges(criteria *Criteria, options *Options) (*IrSequenceDateRanges, error)

FindIrSequenceDateRanges finds ir.sequence.date_range records by querying it and filtering it with criteria and options.

func (*Client) FindIrSequenceId

func (c *Client) FindIrSequenceId(criteria *Criteria, options *Options) (int64, error)

FindIrSequenceId finds record id by querying it with criteria.

func (*Client) FindIrSequenceIds

func (c *Client) FindIrSequenceIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrSequenceIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrSequences

func (c *Client) FindIrSequences(criteria *Criteria, options *Options) (*IrSequences, error)

FindIrSequences finds ir.sequence records by querying it and filtering it with criteria and options.

func (*Client) FindIrServerObjectLines

func (c *Client) FindIrServerObjectLines(criteria *Criteria) (*IrServerObjectLines, error)

FindIrServerObjectLines finds ir.server.object.lines record by querying it with criteria.

func (*Client) FindIrServerObjectLinesId

func (c *Client) FindIrServerObjectLinesId(criteria *Criteria, options *Options) (int64, error)

FindIrServerObjectLinesId finds record id by querying it with criteria.

func (*Client) FindIrServerObjectLinesIds

func (c *Client) FindIrServerObjectLinesIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrServerObjectLinesIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrServerObjectLiness

func (c *Client) FindIrServerObjectLiness(criteria *Criteria, options *Options) (*IrServerObjectLiness, error)

FindIrServerObjectLiness finds ir.server.object.lines records by querying it and filtering it with criteria and options.

func (*Client) FindIrTranslation

func (c *Client) FindIrTranslation(criteria *Criteria) (*IrTranslation, error)

FindIrTranslation finds ir.translation record by querying it with criteria.

func (*Client) FindIrTranslationId

func (c *Client) FindIrTranslationId(criteria *Criteria, options *Options) (int64, error)

FindIrTranslationId finds record id by querying it with criteria.

func (*Client) FindIrTranslationIds

func (c *Client) FindIrTranslationIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrTranslationIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrTranslations

func (c *Client) FindIrTranslations(criteria *Criteria, options *Options) (*IrTranslations, error)

FindIrTranslations finds ir.translation records by querying it and filtering it with criteria and options.

func (*Client) FindIrUiMenu

func (c *Client) FindIrUiMenu(criteria *Criteria) (*IrUiMenu, error)

FindIrUiMenu finds ir.ui.menu record by querying it with criteria.

func (*Client) FindIrUiMenuId

func (c *Client) FindIrUiMenuId(criteria *Criteria, options *Options) (int64, error)

FindIrUiMenuId finds record id by querying it with criteria.

func (*Client) FindIrUiMenuIds

func (c *Client) FindIrUiMenuIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrUiMenuIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrUiMenus

func (c *Client) FindIrUiMenus(criteria *Criteria, options *Options) (*IrUiMenus, error)

FindIrUiMenus finds ir.ui.menu records by querying it and filtering it with criteria and options.

func (*Client) FindIrUiView

func (c *Client) FindIrUiView(criteria *Criteria) (*IrUiView, error)

FindIrUiView finds ir.ui.view record by querying it with criteria.

func (*Client) FindIrUiViewCustom

func (c *Client) FindIrUiViewCustom(criteria *Criteria) (*IrUiViewCustom, error)

FindIrUiViewCustom finds ir.ui.view.custom record by querying it with criteria.

func (*Client) FindIrUiViewCustomId

func (c *Client) FindIrUiViewCustomId(criteria *Criteria, options *Options) (int64, error)

FindIrUiViewCustomId finds record id by querying it with criteria.

func (*Client) FindIrUiViewCustomIds

func (c *Client) FindIrUiViewCustomIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrUiViewCustomIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrUiViewCustoms

func (c *Client) FindIrUiViewCustoms(criteria *Criteria, options *Options) (*IrUiViewCustoms, error)

FindIrUiViewCustoms finds ir.ui.view.custom records by querying it and filtering it with criteria and options.

func (*Client) FindIrUiViewId

func (c *Client) FindIrUiViewId(criteria *Criteria, options *Options) (int64, error)

FindIrUiViewId finds record id by querying it with criteria.

func (*Client) FindIrUiViewIds

func (c *Client) FindIrUiViewIds(criteria *Criteria, options *Options) ([]int64, error)

FindIrUiViewIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindIrUiViews

func (c *Client) FindIrUiViews(criteria *Criteria, options *Options) (*IrUiViews, error)

FindIrUiViews finds ir.ui.view records by querying it and filtering it with criteria and options.

func (*Client) FindLinkTracker

func (c *Client) FindLinkTracker(criteria *Criteria) (*LinkTracker, error)

FindLinkTracker finds link.tracker record by querying it with criteria.

func (*Client) FindLinkTrackerClick

func (c *Client) FindLinkTrackerClick(criteria *Criteria) (*LinkTrackerClick, error)

FindLinkTrackerClick finds link.tracker.click record by querying it with criteria.

func (*Client) FindLinkTrackerClickId

func (c *Client) FindLinkTrackerClickId(criteria *Criteria, options *Options) (int64, error)

FindLinkTrackerClickId finds record id by querying it with criteria.

func (*Client) FindLinkTrackerClickIds

func (c *Client) FindLinkTrackerClickIds(criteria *Criteria, options *Options) ([]int64, error)

FindLinkTrackerClickIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindLinkTrackerClicks

func (c *Client) FindLinkTrackerClicks(criteria *Criteria, options *Options) (*LinkTrackerClicks, error)

FindLinkTrackerClicks finds link.tracker.click records by querying it and filtering it with criteria and options.

func (*Client) FindLinkTrackerCode

func (c *Client) FindLinkTrackerCode(criteria *Criteria) (*LinkTrackerCode, error)

FindLinkTrackerCode finds link.tracker.code record by querying it with criteria.

func (*Client) FindLinkTrackerCodeId

func (c *Client) FindLinkTrackerCodeId(criteria *Criteria, options *Options) (int64, error)

FindLinkTrackerCodeId finds record id by querying it with criteria.

func (*Client) FindLinkTrackerCodeIds

func (c *Client) FindLinkTrackerCodeIds(criteria *Criteria, options *Options) ([]int64, error)

FindLinkTrackerCodeIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindLinkTrackerCodes

func (c *Client) FindLinkTrackerCodes(criteria *Criteria, options *Options) (*LinkTrackerCodes, error)

FindLinkTrackerCodes finds link.tracker.code records by querying it and filtering it with criteria and options.

func (*Client) FindLinkTrackerId

func (c *Client) FindLinkTrackerId(criteria *Criteria, options *Options) (int64, error)

FindLinkTrackerId finds record id by querying it with criteria.

func (*Client) FindLinkTrackerIds

func (c *Client) FindLinkTrackerIds(criteria *Criteria, options *Options) ([]int64, error)

FindLinkTrackerIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindLinkTrackers

func (c *Client) FindLinkTrackers(criteria *Criteria, options *Options) (*LinkTrackers, error)

FindLinkTrackers finds link.tracker records by querying it and filtering it with criteria and options.

func (*Client) FindMailActivity

func (c *Client) FindMailActivity(criteria *Criteria) (*MailActivity, error)

FindMailActivity finds mail.activity record by querying it with criteria.

func (*Client) FindMailActivityId

func (c *Client) FindMailActivityId(criteria *Criteria, options *Options) (int64, error)

FindMailActivityId finds record id by querying it with criteria.

func (*Client) FindMailActivityIds

func (c *Client) FindMailActivityIds(criteria *Criteria, options *Options) ([]int64, error)

FindMailActivityIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindMailActivityMixin

func (c *Client) FindMailActivityMixin(criteria *Criteria) (*MailActivityMixin, error)

FindMailActivityMixin finds mail.activity.mixin record by querying it with criteria.

func (*Client) FindMailActivityMixinId

func (c *Client) FindMailActivityMixinId(criteria *Criteria, options *Options) (int64, error)

FindMailActivityMixinId finds record id by querying it with criteria.

func (*Client) FindMailActivityMixinIds

func (c *Client) FindMailActivityMixinIds(criteria *Criteria, options *Options) ([]int64, error)

FindMailActivityMixinIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindMailActivityMixins

func (c *Client) FindMailActivityMixins(criteria *Criteria, options *Options) (*MailActivityMixins, error)

FindMailActivityMixins finds mail.activity.mixin records by querying it and filtering it with criteria and options.

func (*Client) FindMailActivityType

func (c *Client) FindMailActivityType(criteria *Criteria) (*MailActivityType, error)

FindMailActivityType finds mail.activity.type record by querying it with criteria.

func (*Client) FindMailActivityTypeId

func (c *Client) FindMailActivityTypeId(criteria *Criteria, options *Options) (int64, error)

FindMailActivityTypeId finds record id by querying it with criteria.

func (*Client) FindMailActivityTypeIds

func (c *Client) FindMailActivityTypeIds(criteria *Criteria, options *Options) ([]int64, error)

FindMailActivityTypeIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindMailActivityTypes

func (c *Client) FindMailActivityTypes(criteria *Criteria, options *Options) (*MailActivityTypes, error)

FindMailActivityTypes finds mail.activity.type records by querying it and filtering it with criteria and options.

func (*Client) FindMailActivitys

func (c *Client) FindMailActivitys(criteria *Criteria, options *Options) (*MailActivitys, error)

FindMailActivitys finds mail.activity records by querying it and filtering it with criteria and options.

func (*Client) FindMailAddressMixin

func (c *Client) FindMailAddressMixin(criteria *Criteria) (*MailAddressMixin, error)

FindMailAddressMixin finds mail.address.mixin record by querying it with criteria.

func (*Client) FindMailAddressMixinId

func (c *Client) FindMailAddressMixinId(criteria *Criteria, options *Options) (int64, error)

FindMailAddressMixinId finds record id by querying it with criteria.

func (*Client) FindMailAddressMixinIds

func (c *Client) FindMailAddressMixinIds(criteria *Criteria, options *Options) ([]int64, error)

FindMailAddressMixinIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindMailAddressMixins

func (c *Client) FindMailAddressMixins(criteria *Criteria, options *Options) (*MailAddressMixins, error)

FindMailAddressMixins finds mail.address.mixin records by querying it and filtering it with criteria and options.

func (*Client) FindMailAlias

func (c *Client) FindMailAlias(criteria *Criteria) (*MailAlias, error)

FindMailAlias finds mail.alias record by querying it with criteria.

func (*Client) FindMailAliasId

func (c *Client) FindMailAliasId(criteria *Criteria, options *Options) (int64, error)

FindMailAliasId finds record id by querying it with criteria.

func (*Client) FindMailAliasIds

func (c *Client) FindMailAliasIds(criteria *Criteria, options *Options) ([]int64, error)

FindMailAliasIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindMailAliasMixin

func (c *Client) FindMailAliasMixin(criteria *Criteria) (*MailAliasMixin, error)

FindMailAliasMixin finds mail.alias.mixin record by querying it with criteria.

func (*Client) FindMailAliasMixinId

func (c *Client) FindMailAliasMixinId(criteria *Criteria, options *Options) (int64, error)

FindMailAliasMixinId finds record id by querying it with criteria.

func (*Client) FindMailAliasMixinIds

func (c *Client) FindMailAliasMixinIds(criteria *Criteria, options *Options) ([]int64, error)

FindMailAliasMixinIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindMailAliasMixins

func (c *Client) FindMailAliasMixins(criteria *Criteria, options *Options) (*MailAliasMixins, error)

FindMailAliasMixins finds mail.alias.mixin records by querying it and filtering it with criteria and options.

func (*Client) FindMailAliass

func (c *Client) FindMailAliass(criteria *Criteria, options *Options) (*MailAliass, error)

FindMailAliass finds mail.alias records by querying it and filtering it with criteria and options.

func (*Client) FindMailBlacklist

func (c *Client) FindMailBlacklist(criteria *Criteria) (*MailBlacklist, error)

FindMailBlacklist finds mail.blacklist record by querying it with criteria.

func (*Client) FindMailBlacklistId

func (c *Client) FindMailBlacklistId(criteria *Criteria, options *Options) (int64, error)

FindMailBlacklistId finds record id by querying it with criteria.

func (*Client) FindMailBlacklistIds

func (c *Client) FindMailBlacklistIds(criteria *Criteria, options *Options) ([]int64, error)

FindMailBlacklistIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindMailBlacklists

func (c *Client) FindMailBlacklists(criteria *Criteria, options *Options) (*MailBlacklists, error)

FindMailBlacklists finds mail.blacklist records by querying it and filtering it with criteria and options.

func (*Client) FindMailBot

func (c *Client) FindMailBot(criteria *Criteria) (*MailBot, error)

FindMailBot finds mail.bot record by querying it with criteria.

func (*Client) FindMailBotId

func (c *Client) FindMailBotId(criteria *Criteria, options *Options) (int64, error)

FindMailBotId finds record id by querying it with criteria.

func (*Client) FindMailBotIds

func (c *Client) FindMailBotIds(criteria *Criteria, options *Options) ([]int64, error)

FindMailBotIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindMailBots

func (c *Client) FindMailBots(criteria *Criteria, options *Options) (*MailBots, error)

FindMailBots finds mail.bot records by querying it and filtering it with criteria and options.

func (*Client) FindMailChannel

func (c *Client) FindMailChannel(criteria *Criteria) (*MailChannel, error)

FindMailChannel finds mail.channel record by querying it with criteria.

func (*Client) FindMailChannelId

func (c *Client) FindMailChannelId(criteria *Criteria, options *Options) (int64, error)

FindMailChannelId finds record id by querying it with criteria.

func (*Client) FindMailChannelIds

func (c *Client) FindMailChannelIds(criteria *Criteria, options *Options) ([]int64, error)

FindMailChannelIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindMailChannelPartner

func (c *Client) FindMailChannelPartner(criteria *Criteria) (*MailChannelPartner, error)

FindMailChannelPartner finds mail.channel.partner record by querying it with criteria.

func (*Client) FindMailChannelPartnerId

func (c *Client) FindMailChannelPartnerId(criteria *Criteria, options *Options) (int64, error)

FindMailChannelPartnerId finds record id by querying it with criteria.

func (*Client) FindMailChannelPartnerIds

func (c *Client) FindMailChannelPartnerIds(criteria *Criteria, options *Options) ([]int64, error)

FindMailChannelPartnerIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindMailChannelPartners

func (c *Client) FindMailChannelPartners(criteria *Criteria, options *Options) (*MailChannelPartners, error)

FindMailChannelPartners finds mail.channel.partner records by querying it and filtering it with criteria and options.

func (*Client) FindMailChannels

func (c *Client) FindMailChannels(criteria *Criteria, options *Options) (*MailChannels, error)

FindMailChannels finds mail.channel records by querying it and filtering it with criteria and options.

func (*Client) FindMailComposeMessage

func (c *Client) FindMailComposeMessage(criteria *Criteria) (*MailComposeMessage, error)

FindMailComposeMessage finds mail.compose.message record by querying it with criteria.

func (*Client) FindMailComposeMessageId

func (c *Client) FindMailComposeMessageId(criteria *Criteria, options *Options) (int64, error)

FindMailComposeMessageId finds record id by querying it with criteria.

func (*Client) FindMailComposeMessageIds

func (c *Client) FindMailComposeMessageIds(criteria *Criteria, options *Options) ([]int64, error)

FindMailComposeMessageIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindMailComposeMessages

func (c *Client) FindMailComposeMessages(criteria *Criteria, options *Options) (*MailComposeMessages, error)

FindMailComposeMessages finds mail.compose.message records by querying it and filtering it with criteria and options.

func (*Client) FindMailFollowers

func (c *Client) FindMailFollowers(criteria *Criteria) (*MailFollowers, error)

FindMailFollowers finds mail.followers record by querying it with criteria.

func (*Client) FindMailFollowersId

func (c *Client) FindMailFollowersId(criteria *Criteria, options *Options) (int64, error)

FindMailFollowersId finds record id by querying it with criteria.

func (*Client) FindMailFollowersIds

func (c *Client) FindMailFollowersIds(criteria *Criteria, options *Options) ([]int64, error)

FindMailFollowersIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindMailFollowerss

func (c *Client) FindMailFollowerss(criteria *Criteria, options *Options) (*MailFollowerss, error)

FindMailFollowerss finds mail.followers records by querying it and filtering it with criteria and options.

func (*Client) FindMailMail

func (c *Client) FindMailMail(criteria *Criteria) (*MailMail, error)

FindMailMail finds mail.mail record by querying it with criteria.

func (*Client) FindMailMailId

func (c *Client) FindMailMailId(criteria *Criteria, options *Options) (int64, error)

FindMailMailId finds record id by querying it with criteria.

func (*Client) FindMailMailIds

func (c *Client) FindMailMailIds(criteria *Criteria, options *Options) ([]int64, error)

FindMailMailIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindMailMails

func (c *Client) FindMailMails(criteria *Criteria, options *Options) (*MailMails, error)

FindMailMails finds mail.mail records by querying it and filtering it with criteria and options.

func (*Client) FindMailMessage

func (c *Client) FindMailMessage(criteria *Criteria) (*MailMessage, error)

FindMailMessage finds mail.message record by querying it with criteria.

func (*Client) FindMailMessageId

func (c *Client) FindMailMessageId(criteria *Criteria, options *Options) (int64, error)

FindMailMessageId finds record id by querying it with criteria.

func (*Client) FindMailMessageIds

func (c *Client) FindMailMessageIds(criteria *Criteria, options *Options) ([]int64, error)

FindMailMessageIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindMailMessageSubtype

func (c *Client) FindMailMessageSubtype(criteria *Criteria) (*MailMessageSubtype, error)

FindMailMessageSubtype finds mail.message.subtype record by querying it with criteria.

func (*Client) FindMailMessageSubtypeId

func (c *Client) FindMailMessageSubtypeId(criteria *Criteria, options *Options) (int64, error)

FindMailMessageSubtypeId finds record id by querying it with criteria.

func (*Client) FindMailMessageSubtypeIds

func (c *Client) FindMailMessageSubtypeIds(criteria *Criteria, options *Options) ([]int64, error)

FindMailMessageSubtypeIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindMailMessageSubtypes

func (c *Client) FindMailMessageSubtypes(criteria *Criteria, options *Options) (*MailMessageSubtypes, error)

FindMailMessageSubtypes finds mail.message.subtype records by querying it and filtering it with criteria and options.

func (*Client) FindMailMessages

func (c *Client) FindMailMessages(criteria *Criteria, options *Options) (*MailMessages, error)

FindMailMessages finds mail.message records by querying it and filtering it with criteria and options.

func (*Client) FindMailModeration

func (c *Client) FindMailModeration(criteria *Criteria) (*MailModeration, error)

FindMailModeration finds mail.moderation record by querying it with criteria.

func (*Client) FindMailModerationId

func (c *Client) FindMailModerationId(criteria *Criteria, options *Options) (int64, error)

FindMailModerationId finds record id by querying it with criteria.

func (*Client) FindMailModerationIds

func (c *Client) FindMailModerationIds(criteria *Criteria, options *Options) ([]int64, error)

FindMailModerationIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindMailModerations

func (c *Client) FindMailModerations(criteria *Criteria, options *Options) (*MailModerations, error)

FindMailModerations finds mail.moderation records by querying it and filtering it with criteria and options.

func (*Client) FindMailNotification

func (c *Client) FindMailNotification(criteria *Criteria) (*MailNotification, error)

FindMailNotification finds mail.notification record by querying it with criteria.

func (*Client) FindMailNotificationId

func (c *Client) FindMailNotificationId(criteria *Criteria, options *Options) (int64, error)

FindMailNotificationId finds record id by querying it with criteria.

func (*Client) FindMailNotificationIds

func (c *Client) FindMailNotificationIds(criteria *Criteria, options *Options) ([]int64, error)

FindMailNotificationIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindMailNotifications

func (c *Client) FindMailNotifications(criteria *Criteria, options *Options) (*MailNotifications, error)

FindMailNotifications finds mail.notification records by querying it and filtering it with criteria and options.

func (*Client) FindMailResendCancel

func (c *Client) FindMailResendCancel(criteria *Criteria) (*MailResendCancel, error)

FindMailResendCancel finds mail.resend.cancel record by querying it with criteria.

func (*Client) FindMailResendCancelId

func (c *Client) FindMailResendCancelId(criteria *Criteria, options *Options) (int64, error)

FindMailResendCancelId finds record id by querying it with criteria.

func (*Client) FindMailResendCancelIds

func (c *Client) FindMailResendCancelIds(criteria *Criteria, options *Options) ([]int64, error)

FindMailResendCancelIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindMailResendCancels

func (c *Client) FindMailResendCancels(criteria *Criteria, options *Options) (*MailResendCancels, error)

FindMailResendCancels finds mail.resend.cancel records by querying it and filtering it with criteria and options.

func (*Client) FindMailResendMessage

func (c *Client) FindMailResendMessage(criteria *Criteria) (*MailResendMessage, error)

FindMailResendMessage finds mail.resend.message record by querying it with criteria.

func (*Client) FindMailResendMessageId

func (c *Client) FindMailResendMessageId(criteria *Criteria, options *Options) (int64, error)

FindMailResendMessageId finds record id by querying it with criteria.

func (*Client) FindMailResendMessageIds

func (c *Client) FindMailResendMessageIds(criteria *Criteria, options *Options) ([]int64, error)

FindMailResendMessageIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindMailResendMessages

func (c *Client) FindMailResendMessages(criteria *Criteria, options *Options) (*MailResendMessages, error)

FindMailResendMessages finds mail.resend.message records by querying it and filtering it with criteria and options.

func (*Client) FindMailResendPartner

func (c *Client) FindMailResendPartner(criteria *Criteria) (*MailResendPartner, error)

FindMailResendPartner finds mail.resend.partner record by querying it with criteria.

func (*Client) FindMailResendPartnerId

func (c *Client) FindMailResendPartnerId(criteria *Criteria, options *Options) (int64, error)

FindMailResendPartnerId finds record id by querying it with criteria.

func (*Client) FindMailResendPartnerIds

func (c *Client) FindMailResendPartnerIds(criteria *Criteria, options *Options) ([]int64, error)

FindMailResendPartnerIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindMailResendPartners

func (c *Client) FindMailResendPartners(criteria *Criteria, options *Options) (*MailResendPartners, error)

FindMailResendPartners finds mail.resend.partner records by querying it and filtering it with criteria and options.

func (*Client) FindMailShortcode

func (c *Client) FindMailShortcode(criteria *Criteria) (*MailShortcode, error)

FindMailShortcode finds mail.shortcode record by querying it with criteria.

func (*Client) FindMailShortcodeId

func (c *Client) FindMailShortcodeId(criteria *Criteria, options *Options) (int64, error)

FindMailShortcodeId finds record id by querying it with criteria.

func (*Client) FindMailShortcodeIds

func (c *Client) FindMailShortcodeIds(criteria *Criteria, options *Options) ([]int64, error)

FindMailShortcodeIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindMailShortcodes

func (c *Client) FindMailShortcodes(criteria *Criteria, options *Options) (*MailShortcodes, error)

FindMailShortcodes finds mail.shortcode records by querying it and filtering it with criteria and options.

func (*Client) FindMailTemplate

func (c *Client) FindMailTemplate(criteria *Criteria) (*MailTemplate, error)

FindMailTemplate finds mail.template record by querying it with criteria.

func (*Client) FindMailTemplateId

func (c *Client) FindMailTemplateId(criteria *Criteria, options *Options) (int64, error)

FindMailTemplateId finds record id by querying it with criteria.

func (*Client) FindMailTemplateIds

func (c *Client) FindMailTemplateIds(criteria *Criteria, options *Options) ([]int64, error)

FindMailTemplateIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindMailTemplates

func (c *Client) FindMailTemplates(criteria *Criteria, options *Options) (*MailTemplates, error)

FindMailTemplates finds mail.template records by querying it and filtering it with criteria and options.

func (*Client) FindMailThread

func (c *Client) FindMailThread(criteria *Criteria) (*MailThread, error)

FindMailThread finds mail.thread record by querying it with criteria.

func (*Client) FindMailThreadBlacklist

func (c *Client) FindMailThreadBlacklist(criteria *Criteria) (*MailThreadBlacklist, error)

FindMailThreadBlacklist finds mail.thread.blacklist record by querying it with criteria.

func (*Client) FindMailThreadBlacklistId

func (c *Client) FindMailThreadBlacklistId(criteria *Criteria, options *Options) (int64, error)

FindMailThreadBlacklistId finds record id by querying it with criteria.

func (*Client) FindMailThreadBlacklistIds

func (c *Client) FindMailThreadBlacklistIds(criteria *Criteria, options *Options) ([]int64, error)

FindMailThreadBlacklistIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindMailThreadBlacklists

func (c *Client) FindMailThreadBlacklists(criteria *Criteria, options *Options) (*MailThreadBlacklists, error)

FindMailThreadBlacklists finds mail.thread.blacklist records by querying it and filtering it with criteria and options.

func (*Client) FindMailThreadCc

func (c *Client) FindMailThreadCc(criteria *Criteria) (*MailThreadCc, error)

FindMailThreadCc finds mail.thread.cc record by querying it with criteria.

func (*Client) FindMailThreadCcId

func (c *Client) FindMailThreadCcId(criteria *Criteria, options *Options) (int64, error)

FindMailThreadCcId finds record id by querying it with criteria.

func (*Client) FindMailThreadCcIds

func (c *Client) FindMailThreadCcIds(criteria *Criteria, options *Options) ([]int64, error)

FindMailThreadCcIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindMailThreadCcs

func (c *Client) FindMailThreadCcs(criteria *Criteria, options *Options) (*MailThreadCcs, error)

FindMailThreadCcs finds mail.thread.cc records by querying it and filtering it with criteria and options.

func (*Client) FindMailThreadId

func (c *Client) FindMailThreadId(criteria *Criteria, options *Options) (int64, error)

FindMailThreadId finds record id by querying it with criteria.

func (*Client) FindMailThreadIds

func (c *Client) FindMailThreadIds(criteria *Criteria, options *Options) ([]int64, error)

FindMailThreadIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindMailThreadPhone

func (c *Client) FindMailThreadPhone(criteria *Criteria) (*MailThreadPhone, error)

FindMailThreadPhone finds mail.thread.phone record by querying it with criteria.

func (*Client) FindMailThreadPhoneId

func (c *Client) FindMailThreadPhoneId(criteria *Criteria, options *Options) (int64, error)

FindMailThreadPhoneId finds record id by querying it with criteria.

func (*Client) FindMailThreadPhoneIds

func (c *Client) FindMailThreadPhoneIds(criteria *Criteria, options *Options) ([]int64, error)

FindMailThreadPhoneIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindMailThreadPhones

func (c *Client) FindMailThreadPhones(criteria *Criteria, options *Options) (*MailThreadPhones, error)

FindMailThreadPhones finds mail.thread.phone records by querying it and filtering it with criteria and options.

func (*Client) FindMailThreads

func (c *Client) FindMailThreads(criteria *Criteria, options *Options) (*MailThreads, error)

FindMailThreads finds mail.thread records by querying it and filtering it with criteria and options.

func (*Client) FindMailTrackingValue

func (c *Client) FindMailTrackingValue(criteria *Criteria) (*MailTrackingValue, error)

FindMailTrackingValue finds mail.tracking.value record by querying it with criteria.

func (*Client) FindMailTrackingValueId

func (c *Client) FindMailTrackingValueId(criteria *Criteria, options *Options) (int64, error)

FindMailTrackingValueId finds record id by querying it with criteria.

func (*Client) FindMailTrackingValueIds

func (c *Client) FindMailTrackingValueIds(criteria *Criteria, options *Options) ([]int64, error)

FindMailTrackingValueIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindMailTrackingValues

func (c *Client) FindMailTrackingValues(criteria *Criteria, options *Options) (*MailTrackingValues, error)

FindMailTrackingValues finds mail.tracking.value records by querying it and filtering it with criteria and options.

func (*Client) FindMailWizardInvite

func (c *Client) FindMailWizardInvite(criteria *Criteria) (*MailWizardInvite, error)

FindMailWizardInvite finds mail.wizard.invite record by querying it with criteria.

func (*Client) FindMailWizardInviteId

func (c *Client) FindMailWizardInviteId(criteria *Criteria, options *Options) (int64, error)

FindMailWizardInviteId finds record id by querying it with criteria.

func (*Client) FindMailWizardInviteIds

func (c *Client) FindMailWizardInviteIds(criteria *Criteria, options *Options) ([]int64, error)

FindMailWizardInviteIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindMailWizardInvites

func (c *Client) FindMailWizardInvites(criteria *Criteria, options *Options) (*MailWizardInvites, error)

FindMailWizardInvites finds mail.wizard.invite records by querying it and filtering it with criteria and options.

func (*Client) FindMailingContact

func (c *Client) FindMailingContact(criteria *Criteria) (*MailingContact, error)

FindMailingContact finds mailing.contact record by querying it with criteria.

func (*Client) FindMailingContactId

func (c *Client) FindMailingContactId(criteria *Criteria, options *Options) (int64, error)

FindMailingContactId finds record id by querying it with criteria.

func (*Client) FindMailingContactIds

func (c *Client) FindMailingContactIds(criteria *Criteria, options *Options) ([]int64, error)

FindMailingContactIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindMailingContactSubscription

func (c *Client) FindMailingContactSubscription(criteria *Criteria) (*MailingContactSubscription, error)

FindMailingContactSubscription finds mailing.contact.subscription record by querying it with criteria.

func (*Client) FindMailingContactSubscriptionId

func (c *Client) FindMailingContactSubscriptionId(criteria *Criteria, options *Options) (int64, error)

FindMailingContactSubscriptionId finds record id by querying it with criteria.

func (*Client) FindMailingContactSubscriptionIds

func (c *Client) FindMailingContactSubscriptionIds(criteria *Criteria, options *Options) ([]int64, error)

FindMailingContactSubscriptionIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindMailingContactSubscriptions

func (c *Client) FindMailingContactSubscriptions(criteria *Criteria, options *Options) (*MailingContactSubscriptions, error)

FindMailingContactSubscriptions finds mailing.contact.subscription records by querying it and filtering it with criteria and options.

func (*Client) FindMailingContacts

func (c *Client) FindMailingContacts(criteria *Criteria, options *Options) (*MailingContacts, error)

FindMailingContacts finds mailing.contact records by querying it and filtering it with criteria and options.

func (*Client) FindMailingList

func (c *Client) FindMailingList(criteria *Criteria) (*MailingList, error)

FindMailingList finds mailing.list record by querying it with criteria.

func (*Client) FindMailingListId

func (c *Client) FindMailingListId(criteria *Criteria, options *Options) (int64, error)

FindMailingListId finds record id by querying it with criteria.

func (*Client) FindMailingListIds

func (c *Client) FindMailingListIds(criteria *Criteria, options *Options) ([]int64, error)

FindMailingListIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindMailingListMerge

func (c *Client) FindMailingListMerge(criteria *Criteria) (*MailingListMerge, error)

FindMailingListMerge finds mailing.list.merge record by querying it with criteria.

func (*Client) FindMailingListMergeId

func (c *Client) FindMailingListMergeId(criteria *Criteria, options *Options) (int64, error)

FindMailingListMergeId finds record id by querying it with criteria.

func (*Client) FindMailingListMergeIds

func (c *Client) FindMailingListMergeIds(criteria *Criteria, options *Options) ([]int64, error)

FindMailingListMergeIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindMailingListMerges

func (c *Client) FindMailingListMerges(criteria *Criteria, options *Options) (*MailingListMerges, error)

FindMailingListMerges finds mailing.list.merge records by querying it and filtering it with criteria and options.

func (*Client) FindMailingLists

func (c *Client) FindMailingLists(criteria *Criteria, options *Options) (*MailingLists, error)

FindMailingLists finds mailing.list records by querying it and filtering it with criteria and options.

func (*Client) FindMailingMailing

func (c *Client) FindMailingMailing(criteria *Criteria) (*MailingMailing, error)

FindMailingMailing finds mailing.mailing record by querying it with criteria.

func (*Client) FindMailingMailingId

func (c *Client) FindMailingMailingId(criteria *Criteria, options *Options) (int64, error)

FindMailingMailingId finds record id by querying it with criteria.

func (*Client) FindMailingMailingIds

func (c *Client) FindMailingMailingIds(criteria *Criteria, options *Options) ([]int64, error)

FindMailingMailingIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindMailingMailingScheduleDate

func (c *Client) FindMailingMailingScheduleDate(criteria *Criteria) (*MailingMailingScheduleDate, error)

FindMailingMailingScheduleDate finds mailing.mailing.schedule.date record by querying it with criteria.

func (*Client) FindMailingMailingScheduleDateId

func (c *Client) FindMailingMailingScheduleDateId(criteria *Criteria, options *Options) (int64, error)

FindMailingMailingScheduleDateId finds record id by querying it with criteria.

func (*Client) FindMailingMailingScheduleDateIds

func (c *Client) FindMailingMailingScheduleDateIds(criteria *Criteria, options *Options) ([]int64, error)

FindMailingMailingScheduleDateIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindMailingMailingScheduleDates

func (c *Client) FindMailingMailingScheduleDates(criteria *Criteria, options *Options) (*MailingMailingScheduleDates, error)

FindMailingMailingScheduleDates finds mailing.mailing.schedule.date records by querying it and filtering it with criteria and options.

func (*Client) FindMailingMailings

func (c *Client) FindMailingMailings(criteria *Criteria, options *Options) (*MailingMailings, error)

FindMailingMailings finds mailing.mailing records by querying it and filtering it with criteria and options.

func (*Client) FindMailingTrace

func (c *Client) FindMailingTrace(criteria *Criteria) (*MailingTrace, error)

FindMailingTrace finds mailing.trace record by querying it with criteria.

func (*Client) FindMailingTraceId

func (c *Client) FindMailingTraceId(criteria *Criteria, options *Options) (int64, error)

FindMailingTraceId finds record id by querying it with criteria.

func (*Client) FindMailingTraceIds

func (c *Client) FindMailingTraceIds(criteria *Criteria, options *Options) ([]int64, error)

FindMailingTraceIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindMailingTraceReport

func (c *Client) FindMailingTraceReport(criteria *Criteria) (*MailingTraceReport, error)

FindMailingTraceReport finds mailing.trace.report record by querying it with criteria.

func (*Client) FindMailingTraceReportId

func (c *Client) FindMailingTraceReportId(criteria *Criteria, options *Options) (int64, error)

FindMailingTraceReportId finds record id by querying it with criteria.

func (*Client) FindMailingTraceReportIds

func (c *Client) FindMailingTraceReportIds(criteria *Criteria, options *Options) ([]int64, error)

FindMailingTraceReportIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindMailingTraceReports

func (c *Client) FindMailingTraceReports(criteria *Criteria, options *Options) (*MailingTraceReports, error)

FindMailingTraceReports finds mailing.trace.report records by querying it and filtering it with criteria and options.

func (*Client) FindMailingTraces

func (c *Client) FindMailingTraces(criteria *Criteria, options *Options) (*MailingTraces, error)

FindMailingTraces finds mailing.trace records by querying it and filtering it with criteria and options.

func (*Client) FindNoteNote

func (c *Client) FindNoteNote(criteria *Criteria) (*NoteNote, error)

FindNoteNote finds note.note record by querying it with criteria.

func (*Client) FindNoteNoteId

func (c *Client) FindNoteNoteId(criteria *Criteria, options *Options) (int64, error)

FindNoteNoteId finds record id by querying it with criteria.

func (*Client) FindNoteNoteIds

func (c *Client) FindNoteNoteIds(criteria *Criteria, options *Options) ([]int64, error)

FindNoteNoteIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindNoteNotes

func (c *Client) FindNoteNotes(criteria *Criteria, options *Options) (*NoteNotes, error)

FindNoteNotes finds note.note records by querying it and filtering it with criteria and options.

func (*Client) FindNoteStage

func (c *Client) FindNoteStage(criteria *Criteria) (*NoteStage, error)

FindNoteStage finds note.stage record by querying it with criteria.

func (*Client) FindNoteStageId

func (c *Client) FindNoteStageId(criteria *Criteria, options *Options) (int64, error)

FindNoteStageId finds record id by querying it with criteria.

func (*Client) FindNoteStageIds

func (c *Client) FindNoteStageIds(criteria *Criteria, options *Options) ([]int64, error)

FindNoteStageIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindNoteStages

func (c *Client) FindNoteStages(criteria *Criteria, options *Options) (*NoteStages, error)

FindNoteStages finds note.stage records by querying it and filtering it with criteria and options.

func (*Client) FindNoteTag

func (c *Client) FindNoteTag(criteria *Criteria) (*NoteTag, error)

FindNoteTag finds note.tag record by querying it with criteria.

func (*Client) FindNoteTagId

func (c *Client) FindNoteTagId(criteria *Criteria, options *Options) (int64, error)

FindNoteTagId finds record id by querying it with criteria.

func (*Client) FindNoteTagIds

func (c *Client) FindNoteTagIds(criteria *Criteria, options *Options) ([]int64, error)

FindNoteTagIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindNoteTags

func (c *Client) FindNoteTags(criteria *Criteria, options *Options) (*NoteTags, error)

FindNoteTags finds note.tag records by querying it and filtering it with criteria and options.

func (*Client) FindOpenacademyBundle

func (c *Client) FindOpenacademyBundle(criteria *Criteria) (*OpenacademyBundle, error)

FindOpenacademyBundle finds openacademy.bundle record by querying it with criteria.

func (*Client) FindOpenacademyBundleId

func (c *Client) FindOpenacademyBundleId(criteria *Criteria, options *Options) (int64, error)

FindOpenacademyBundleId finds record id by querying it with criteria.

func (*Client) FindOpenacademyBundleIds

func (c *Client) FindOpenacademyBundleIds(criteria *Criteria, options *Options) ([]int64, error)

FindOpenacademyBundleIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindOpenacademyBundles

func (c *Client) FindOpenacademyBundles(criteria *Criteria, options *Options) (*OpenacademyBundles, error)

FindOpenacademyBundles finds openacademy.bundle records by querying it and filtering it with criteria and options.

func (*Client) FindOpenacademyCourse

func (c *Client) FindOpenacademyCourse(criteria *Criteria) (*OpenacademyCourse, error)

FindOpenacademyCourse finds openacademy.course record by querying it with criteria.

func (*Client) FindOpenacademyCourseId

func (c *Client) FindOpenacademyCourseId(criteria *Criteria, options *Options) (int64, error)

FindOpenacademyCourseId finds record id by querying it with criteria.

func (*Client) FindOpenacademyCourseIds

func (c *Client) FindOpenacademyCourseIds(criteria *Criteria, options *Options) ([]int64, error)

FindOpenacademyCourseIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindOpenacademyCourses

func (c *Client) FindOpenacademyCourses(criteria *Criteria, options *Options) (*OpenacademyCourses, error)

FindOpenacademyCourses finds openacademy.course records by querying it and filtering it with criteria and options.

func (*Client) FindOpenacademySession

func (c *Client) FindOpenacademySession(criteria *Criteria) (*OpenacademySession, error)

FindOpenacademySession finds openacademy.session record by querying it with criteria.

func (*Client) FindOpenacademySessionId

func (c *Client) FindOpenacademySessionId(criteria *Criteria, options *Options) (int64, error)

FindOpenacademySessionId finds record id by querying it with criteria.

func (*Client) FindOpenacademySessionIds

func (c *Client) FindOpenacademySessionIds(criteria *Criteria, options *Options) ([]int64, error)

FindOpenacademySessionIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindOpenacademySessions

func (c *Client) FindOpenacademySessions(criteria *Criteria, options *Options) (*OpenacademySessions, error)

FindOpenacademySessions finds openacademy.session records by querying it and filtering it with criteria and options.

func (*Client) FindOpenacademyWizard

func (c *Client) FindOpenacademyWizard(criteria *Criteria) (*OpenacademyWizard, error)

FindOpenacademyWizard finds openacademy.wizard record by querying it with criteria.

func (*Client) FindOpenacademyWizardId

func (c *Client) FindOpenacademyWizardId(criteria *Criteria, options *Options) (int64, error)

FindOpenacademyWizardId finds record id by querying it with criteria.

func (*Client) FindOpenacademyWizardIds

func (c *Client) FindOpenacademyWizardIds(criteria *Criteria, options *Options) ([]int64, error)

FindOpenacademyWizardIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindOpenacademyWizards

func (c *Client) FindOpenacademyWizards(criteria *Criteria, options *Options) (*OpenacademyWizards, error)

FindOpenacademyWizards finds openacademy.wizard records by querying it and filtering it with criteria and options.

func (*Client) FindPaymentAcquirer

func (c *Client) FindPaymentAcquirer(criteria *Criteria) (*PaymentAcquirer, error)

FindPaymentAcquirer finds payment.acquirer record by querying it with criteria.

func (*Client) FindPaymentAcquirerId

func (c *Client) FindPaymentAcquirerId(criteria *Criteria, options *Options) (int64, error)

FindPaymentAcquirerId finds record id by querying it with criteria.

func (*Client) FindPaymentAcquirerIds

func (c *Client) FindPaymentAcquirerIds(criteria *Criteria, options *Options) ([]int64, error)

FindPaymentAcquirerIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindPaymentAcquirerOnboardingWizard

func (c *Client) FindPaymentAcquirerOnboardingWizard(criteria *Criteria) (*PaymentAcquirerOnboardingWizard, error)

FindPaymentAcquirerOnboardingWizard finds payment.acquirer.onboarding.wizard record by querying it with criteria.

func (*Client) FindPaymentAcquirerOnboardingWizardId

func (c *Client) FindPaymentAcquirerOnboardingWizardId(criteria *Criteria, options *Options) (int64, error)

FindPaymentAcquirerOnboardingWizardId finds record id by querying it with criteria.

func (*Client) FindPaymentAcquirerOnboardingWizardIds

func (c *Client) FindPaymentAcquirerOnboardingWizardIds(criteria *Criteria, options *Options) ([]int64, error)

FindPaymentAcquirerOnboardingWizardIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindPaymentAcquirerOnboardingWizards

func (c *Client) FindPaymentAcquirerOnboardingWizards(criteria *Criteria, options *Options) (*PaymentAcquirerOnboardingWizards, error)

FindPaymentAcquirerOnboardingWizards finds payment.acquirer.onboarding.wizard records by querying it and filtering it with criteria and options.

func (*Client) FindPaymentAcquirers

func (c *Client) FindPaymentAcquirers(criteria *Criteria, options *Options) (*PaymentAcquirers, error)

FindPaymentAcquirers finds payment.acquirer records by querying it and filtering it with criteria and options.

func (*Client) FindPaymentIcon

func (c *Client) FindPaymentIcon(criteria *Criteria) (*PaymentIcon, error)

FindPaymentIcon finds payment.icon record by querying it with criteria.

func (*Client) FindPaymentIconId

func (c *Client) FindPaymentIconId(criteria *Criteria, options *Options) (int64, error)

FindPaymentIconId finds record id by querying it with criteria.

func (*Client) FindPaymentIconIds

func (c *Client) FindPaymentIconIds(criteria *Criteria, options *Options) ([]int64, error)

FindPaymentIconIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindPaymentIcons

func (c *Client) FindPaymentIcons(criteria *Criteria, options *Options) (*PaymentIcons, error)

FindPaymentIcons finds payment.icon records by querying it and filtering it with criteria and options.

func (*Client) FindPaymentLinkWizard

func (c *Client) FindPaymentLinkWizard(criteria *Criteria) (*PaymentLinkWizard, error)

FindPaymentLinkWizard finds payment.link.wizard record by querying it with criteria.

func (*Client) FindPaymentLinkWizardId

func (c *Client) FindPaymentLinkWizardId(criteria *Criteria, options *Options) (int64, error)

FindPaymentLinkWizardId finds record id by querying it with criteria.

func (*Client) FindPaymentLinkWizardIds

func (c *Client) FindPaymentLinkWizardIds(criteria *Criteria, options *Options) ([]int64, error)

FindPaymentLinkWizardIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindPaymentLinkWizards

func (c *Client) FindPaymentLinkWizards(criteria *Criteria, options *Options) (*PaymentLinkWizards, error)

FindPaymentLinkWizards finds payment.link.wizard records by querying it and filtering it with criteria and options.

func (*Client) FindPaymentToken

func (c *Client) FindPaymentToken(criteria *Criteria) (*PaymentToken, error)

FindPaymentToken finds payment.token record by querying it with criteria.

func (*Client) FindPaymentTokenId

func (c *Client) FindPaymentTokenId(criteria *Criteria, options *Options) (int64, error)

FindPaymentTokenId finds record id by querying it with criteria.

func (*Client) FindPaymentTokenIds

func (c *Client) FindPaymentTokenIds(criteria *Criteria, options *Options) ([]int64, error)

FindPaymentTokenIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindPaymentTokens

func (c *Client) FindPaymentTokens(criteria *Criteria, options *Options) (*PaymentTokens, error)

FindPaymentTokens finds payment.token records by querying it and filtering it with criteria and options.

func (*Client) FindPaymentTransaction

func (c *Client) FindPaymentTransaction(criteria *Criteria) (*PaymentTransaction, error)

FindPaymentTransaction finds payment.transaction record by querying it with criteria.

func (*Client) FindPaymentTransactionId

func (c *Client) FindPaymentTransactionId(criteria *Criteria, options *Options) (int64, error)

FindPaymentTransactionId finds record id by querying it with criteria.

func (*Client) FindPaymentTransactionIds

func (c *Client) FindPaymentTransactionIds(criteria *Criteria, options *Options) ([]int64, error)

FindPaymentTransactionIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindPaymentTransactions

func (c *Client) FindPaymentTransactions(criteria *Criteria, options *Options) (*PaymentTransactions, error)

FindPaymentTransactions finds payment.transaction records by querying it and filtering it with criteria and options.

func (*Client) FindPhoneBlacklist

func (c *Client) FindPhoneBlacklist(criteria *Criteria) (*PhoneBlacklist, error)

FindPhoneBlacklist finds phone.blacklist record by querying it with criteria.

func (*Client) FindPhoneBlacklistId

func (c *Client) FindPhoneBlacklistId(criteria *Criteria, options *Options) (int64, error)

FindPhoneBlacklistId finds record id by querying it with criteria.

func (*Client) FindPhoneBlacklistIds

func (c *Client) FindPhoneBlacklistIds(criteria *Criteria, options *Options) ([]int64, error)

FindPhoneBlacklistIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindPhoneBlacklists

func (c *Client) FindPhoneBlacklists(criteria *Criteria, options *Options) (*PhoneBlacklists, error)

FindPhoneBlacklists finds phone.blacklist records by querying it and filtering it with criteria and options.

func (*Client) FindPhoneValidationMixin

func (c *Client) FindPhoneValidationMixin(criteria *Criteria) (*PhoneValidationMixin, error)

FindPhoneValidationMixin finds phone.validation.mixin record by querying it with criteria.

func (*Client) FindPhoneValidationMixinId

func (c *Client) FindPhoneValidationMixinId(criteria *Criteria, options *Options) (int64, error)

FindPhoneValidationMixinId finds record id by querying it with criteria.

func (*Client) FindPhoneValidationMixinIds

func (c *Client) FindPhoneValidationMixinIds(criteria *Criteria, options *Options) ([]int64, error)

FindPhoneValidationMixinIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindPhoneValidationMixins

func (c *Client) FindPhoneValidationMixins(criteria *Criteria, options *Options) (*PhoneValidationMixins, error)

FindPhoneValidationMixins finds phone.validation.mixin records by querying it and filtering it with criteria and options.

func (*Client) FindPortalMixin

func (c *Client) FindPortalMixin(criteria *Criteria) (*PortalMixin, error)

FindPortalMixin finds portal.mixin record by querying it with criteria.

func (*Client) FindPortalMixinId

func (c *Client) FindPortalMixinId(criteria *Criteria, options *Options) (int64, error)

FindPortalMixinId finds record id by querying it with criteria.

func (*Client) FindPortalMixinIds

func (c *Client) FindPortalMixinIds(criteria *Criteria, options *Options) ([]int64, error)

FindPortalMixinIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindPortalMixins

func (c *Client) FindPortalMixins(criteria *Criteria, options *Options) (*PortalMixins, error)

FindPortalMixins finds portal.mixin records by querying it and filtering it with criteria and options.

func (*Client) FindPortalShare

func (c *Client) FindPortalShare(criteria *Criteria) (*PortalShare, error)

FindPortalShare finds portal.share record by querying it with criteria.

func (*Client) FindPortalShareId

func (c *Client) FindPortalShareId(criteria *Criteria, options *Options) (int64, error)

FindPortalShareId finds record id by querying it with criteria.

func (*Client) FindPortalShareIds

func (c *Client) FindPortalShareIds(criteria *Criteria, options *Options) ([]int64, error)

FindPortalShareIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindPortalShares

func (c *Client) FindPortalShares(criteria *Criteria, options *Options) (*PortalShares, error)

FindPortalShares finds portal.share records by querying it and filtering it with criteria and options.

func (*Client) FindPortalWizard

func (c *Client) FindPortalWizard(criteria *Criteria) (*PortalWizard, error)

FindPortalWizard finds portal.wizard record by querying it with criteria.

func (*Client) FindPortalWizardId

func (c *Client) FindPortalWizardId(criteria *Criteria, options *Options) (int64, error)

FindPortalWizardId finds record id by querying it with criteria.

func (*Client) FindPortalWizardIds

func (c *Client) FindPortalWizardIds(criteria *Criteria, options *Options) ([]int64, error)

FindPortalWizardIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindPortalWizardUser

func (c *Client) FindPortalWizardUser(criteria *Criteria) (*PortalWizardUser, error)

FindPortalWizardUser finds portal.wizard.user record by querying it with criteria.

func (*Client) FindPortalWizardUserId

func (c *Client) FindPortalWizardUserId(criteria *Criteria, options *Options) (int64, error)

FindPortalWizardUserId finds record id by querying it with criteria.

func (*Client) FindPortalWizardUserIds

func (c *Client) FindPortalWizardUserIds(criteria *Criteria, options *Options) ([]int64, error)

FindPortalWizardUserIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindPortalWizardUsers

func (c *Client) FindPortalWizardUsers(criteria *Criteria, options *Options) (*PortalWizardUsers, error)

FindPortalWizardUsers finds portal.wizard.user records by querying it and filtering it with criteria and options.

func (*Client) FindPortalWizards

func (c *Client) FindPortalWizards(criteria *Criteria, options *Options) (*PortalWizards, error)

FindPortalWizards finds portal.wizard records by querying it and filtering it with criteria and options.

func (*Client) FindProductAttribute

func (c *Client) FindProductAttribute(criteria *Criteria) (*ProductAttribute, error)

FindProductAttribute finds product.attribute record by querying it with criteria.

func (*Client) FindProductAttributeCustomValue

func (c *Client) FindProductAttributeCustomValue(criteria *Criteria) (*ProductAttributeCustomValue, error)

FindProductAttributeCustomValue finds product.attribute.custom.value record by querying it with criteria.

func (*Client) FindProductAttributeCustomValueId

func (c *Client) FindProductAttributeCustomValueId(criteria *Criteria, options *Options) (int64, error)

FindProductAttributeCustomValueId finds record id by querying it with criteria.

func (*Client) FindProductAttributeCustomValueIds

func (c *Client) FindProductAttributeCustomValueIds(criteria *Criteria, options *Options) ([]int64, error)

FindProductAttributeCustomValueIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindProductAttributeCustomValues

func (c *Client) FindProductAttributeCustomValues(criteria *Criteria, options *Options) (*ProductAttributeCustomValues, error)

FindProductAttributeCustomValues finds product.attribute.custom.value records by querying it and filtering it with criteria and options.

func (*Client) FindProductAttributeId

func (c *Client) FindProductAttributeId(criteria *Criteria, options *Options) (int64, error)

FindProductAttributeId finds record id by querying it with criteria.

func (*Client) FindProductAttributeIds

func (c *Client) FindProductAttributeIds(criteria *Criteria, options *Options) ([]int64, error)

FindProductAttributeIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindProductAttributeValue

func (c *Client) FindProductAttributeValue(criteria *Criteria) (*ProductAttributeValue, error)

FindProductAttributeValue finds product.attribute.value record by querying it with criteria.

func (*Client) FindProductAttributeValueId

func (c *Client) FindProductAttributeValueId(criteria *Criteria, options *Options) (int64, error)

FindProductAttributeValueId finds record id by querying it with criteria.

func (*Client) FindProductAttributeValueIds

func (c *Client) FindProductAttributeValueIds(criteria *Criteria, options *Options) ([]int64, error)

FindProductAttributeValueIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindProductAttributeValues

func (c *Client) FindProductAttributeValues(criteria *Criteria, options *Options) (*ProductAttributeValues, error)

FindProductAttributeValues finds product.attribute.value records by querying it and filtering it with criteria and options.

func (*Client) FindProductAttributes

func (c *Client) FindProductAttributes(criteria *Criteria, options *Options) (*ProductAttributes, error)

FindProductAttributes finds product.attribute records by querying it and filtering it with criteria and options.

func (*Client) FindProductCategory

func (c *Client) FindProductCategory(criteria *Criteria) (*ProductCategory, error)

FindProductCategory finds product.category record by querying it with criteria.

func (*Client) FindProductCategoryId

func (c *Client) FindProductCategoryId(criteria *Criteria, options *Options) (int64, error)

FindProductCategoryId finds record id by querying it with criteria.

func (*Client) FindProductCategoryIds

func (c *Client) FindProductCategoryIds(criteria *Criteria, options *Options) ([]int64, error)

FindProductCategoryIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindProductCategorys

func (c *Client) FindProductCategorys(criteria *Criteria, options *Options) (*ProductCategorys, error)

FindProductCategorys finds product.category records by querying it and filtering it with criteria and options.

func (*Client) FindProductPackaging

func (c *Client) FindProductPackaging(criteria *Criteria) (*ProductPackaging, error)

FindProductPackaging finds product.packaging record by querying it with criteria.

func (*Client) FindProductPackagingId

func (c *Client) FindProductPackagingId(criteria *Criteria, options *Options) (int64, error)

FindProductPackagingId finds record id by querying it with criteria.

func (*Client) FindProductPackagingIds

func (c *Client) FindProductPackagingIds(criteria *Criteria, options *Options) ([]int64, error)

FindProductPackagingIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindProductPackagings

func (c *Client) FindProductPackagings(criteria *Criteria, options *Options) (*ProductPackagings, error)

FindProductPackagings finds product.packaging records by querying it and filtering it with criteria and options.

func (*Client) FindProductPriceList

func (c *Client) FindProductPriceList(criteria *Criteria) (*ProductPriceList, error)

FindProductPriceList finds product.price_list record by querying it with criteria.

func (*Client) FindProductPriceListId

func (c *Client) FindProductPriceListId(criteria *Criteria, options *Options) (int64, error)

FindProductPriceListId finds record id by querying it with criteria.

func (*Client) FindProductPriceListIds

func (c *Client) FindProductPriceListIds(criteria *Criteria, options *Options) ([]int64, error)

FindProductPriceListIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindProductPriceLists

func (c *Client) FindProductPriceLists(criteria *Criteria, options *Options) (*ProductPriceLists, error)

FindProductPriceLists finds product.price_list records by querying it and filtering it with criteria and options.

func (*Client) FindProductPricelist

func (c *Client) FindProductPricelist(criteria *Criteria) (*ProductPricelist, error)

FindProductPricelist finds product.pricelist record by querying it with criteria.

func (*Client) FindProductPricelistId

func (c *Client) FindProductPricelistId(criteria *Criteria, options *Options) (int64, error)

FindProductPricelistId finds record id by querying it with criteria.

func (*Client) FindProductPricelistIds

func (c *Client) FindProductPricelistIds(criteria *Criteria, options *Options) ([]int64, error)

FindProductPricelistIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindProductPricelistItem

func (c *Client) FindProductPricelistItem(criteria *Criteria) (*ProductPricelistItem, error)

FindProductPricelistItem finds product.pricelist.item record by querying it with criteria.

func (*Client) FindProductPricelistItemId

func (c *Client) FindProductPricelistItemId(criteria *Criteria, options *Options) (int64, error)

FindProductPricelistItemId finds record id by querying it with criteria.

func (*Client) FindProductPricelistItemIds

func (c *Client) FindProductPricelistItemIds(criteria *Criteria, options *Options) ([]int64, error)

FindProductPricelistItemIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindProductPricelistItems

func (c *Client) FindProductPricelistItems(criteria *Criteria, options *Options) (*ProductPricelistItems, error)

FindProductPricelistItems finds product.pricelist.item records by querying it and filtering it with criteria and options.

func (*Client) FindProductPricelists

func (c *Client) FindProductPricelists(criteria *Criteria, options *Options) (*ProductPricelists, error)

FindProductPricelists finds product.pricelist records by querying it and filtering it with criteria and options.

func (*Client) FindProductProduct

func (c *Client) FindProductProduct(criteria *Criteria) (*ProductProduct, error)

FindProductProduct finds product.product record by querying it with criteria.

func (*Client) FindProductProductId

func (c *Client) FindProductProductId(criteria *Criteria, options *Options) (int64, error)

FindProductProductId finds record id by querying it with criteria.

func (*Client) FindProductProductIds

func (c *Client) FindProductProductIds(criteria *Criteria, options *Options) ([]int64, error)

FindProductProductIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindProductProducts

func (c *Client) FindProductProducts(criteria *Criteria, options *Options) (*ProductProducts, error)

FindProductProducts finds product.product records by querying it and filtering it with criteria and options.

func (*Client) FindProductSupplierinfo

func (c *Client) FindProductSupplierinfo(criteria *Criteria) (*ProductSupplierinfo, error)

FindProductSupplierinfo finds product.supplierinfo record by querying it with criteria.

func (*Client) FindProductSupplierinfoId

func (c *Client) FindProductSupplierinfoId(criteria *Criteria, options *Options) (int64, error)

FindProductSupplierinfoId finds record id by querying it with criteria.

func (*Client) FindProductSupplierinfoIds

func (c *Client) FindProductSupplierinfoIds(criteria *Criteria, options *Options) ([]int64, error)

FindProductSupplierinfoIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindProductSupplierinfos

func (c *Client) FindProductSupplierinfos(criteria *Criteria, options *Options) (*ProductSupplierinfos, error)

FindProductSupplierinfos finds product.supplierinfo records by querying it and filtering it with criteria and options.

func (*Client) FindProductTemplate

func (c *Client) FindProductTemplate(criteria *Criteria) (*ProductTemplate, error)

FindProductTemplate finds product.template record by querying it with criteria.

func (*Client) FindProductTemplateAttributeExclusion

func (c *Client) FindProductTemplateAttributeExclusion(criteria *Criteria) (*ProductTemplateAttributeExclusion, error)

FindProductTemplateAttributeExclusion finds product.template.attribute.exclusion record by querying it with criteria.

func (*Client) FindProductTemplateAttributeExclusionId

func (c *Client) FindProductTemplateAttributeExclusionId(criteria *Criteria, options *Options) (int64, error)

FindProductTemplateAttributeExclusionId finds record id by querying it with criteria.

func (*Client) FindProductTemplateAttributeExclusionIds

func (c *Client) FindProductTemplateAttributeExclusionIds(criteria *Criteria, options *Options) ([]int64, error)

FindProductTemplateAttributeExclusionIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindProductTemplateAttributeExclusions

func (c *Client) FindProductTemplateAttributeExclusions(criteria *Criteria, options *Options) (*ProductTemplateAttributeExclusions, error)

FindProductTemplateAttributeExclusions finds product.template.attribute.exclusion records by querying it and filtering it with criteria and options.

func (*Client) FindProductTemplateAttributeLine

func (c *Client) FindProductTemplateAttributeLine(criteria *Criteria) (*ProductTemplateAttributeLine, error)

FindProductTemplateAttributeLine finds product.template.attribute.line record by querying it with criteria.

func (*Client) FindProductTemplateAttributeLineId

func (c *Client) FindProductTemplateAttributeLineId(criteria *Criteria, options *Options) (int64, error)

FindProductTemplateAttributeLineId finds record id by querying it with criteria.

func (*Client) FindProductTemplateAttributeLineIds

func (c *Client) FindProductTemplateAttributeLineIds(criteria *Criteria, options *Options) ([]int64, error)

FindProductTemplateAttributeLineIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindProductTemplateAttributeLines

func (c *Client) FindProductTemplateAttributeLines(criteria *Criteria, options *Options) (*ProductTemplateAttributeLines, error)

FindProductTemplateAttributeLines finds product.template.attribute.line records by querying it and filtering it with criteria and options.

func (*Client) FindProductTemplateAttributeValue

func (c *Client) FindProductTemplateAttributeValue(criteria *Criteria) (*ProductTemplateAttributeValue, error)

FindProductTemplateAttributeValue finds product.template.attribute.value record by querying it with criteria.

func (*Client) FindProductTemplateAttributeValueId

func (c *Client) FindProductTemplateAttributeValueId(criteria *Criteria, options *Options) (int64, error)

FindProductTemplateAttributeValueId finds record id by querying it with criteria.

func (*Client) FindProductTemplateAttributeValueIds

func (c *Client) FindProductTemplateAttributeValueIds(criteria *Criteria, options *Options) ([]int64, error)

FindProductTemplateAttributeValueIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindProductTemplateAttributeValues

func (c *Client) FindProductTemplateAttributeValues(criteria *Criteria, options *Options) (*ProductTemplateAttributeValues, error)

FindProductTemplateAttributeValues finds product.template.attribute.value records by querying it and filtering it with criteria and options.

func (*Client) FindProductTemplateId

func (c *Client) FindProductTemplateId(criteria *Criteria, options *Options) (int64, error)

FindProductTemplateId finds record id by querying it with criteria.

func (*Client) FindProductTemplateIds

func (c *Client) FindProductTemplateIds(criteria *Criteria, options *Options) ([]int64, error)

FindProductTemplateIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindProductTemplates

func (c *Client) FindProductTemplates(criteria *Criteria, options *Options) (*ProductTemplates, error)

FindProductTemplates finds product.template records by querying it and filtering it with criteria and options.

func (*Client) FindProjectProject

func (c *Client) FindProjectProject(criteria *Criteria) (*ProjectProject, error)

FindProjectProject finds project.project record by querying it with criteria.

func (*Client) FindProjectProjectId

func (c *Client) FindProjectProjectId(criteria *Criteria, options *Options) (int64, error)

FindProjectProjectId finds record id by querying it with criteria.

func (*Client) FindProjectProjectIds

func (c *Client) FindProjectProjectIds(criteria *Criteria, options *Options) ([]int64, error)

FindProjectProjectIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindProjectProjects

func (c *Client) FindProjectProjects(criteria *Criteria, options *Options) (*ProjectProjects, error)

FindProjectProjects finds project.project records by querying it and filtering it with criteria and options.

func (*Client) FindProjectTags

func (c *Client) FindProjectTags(criteria *Criteria) (*ProjectTags, error)

FindProjectTags finds project.tags record by querying it with criteria.

func (*Client) FindProjectTagsId

func (c *Client) FindProjectTagsId(criteria *Criteria, options *Options) (int64, error)

FindProjectTagsId finds record id by querying it with criteria.

func (*Client) FindProjectTagsIds

func (c *Client) FindProjectTagsIds(criteria *Criteria, options *Options) ([]int64, error)

FindProjectTagsIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindProjectTagss

func (c *Client) FindProjectTagss(criteria *Criteria, options *Options) (*ProjectTagss, error)

FindProjectTagss finds project.tags records by querying it and filtering it with criteria and options.

func (*Client) FindProjectTask

func (c *Client) FindProjectTask(criteria *Criteria) (*ProjectTask, error)

FindProjectTask finds project.task record by querying it with criteria.

func (*Client) FindProjectTaskId

func (c *Client) FindProjectTaskId(criteria *Criteria, options *Options) (int64, error)

FindProjectTaskId finds record id by querying it with criteria.

func (*Client) FindProjectTaskIds

func (c *Client) FindProjectTaskIds(criteria *Criteria, options *Options) ([]int64, error)

FindProjectTaskIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindProjectTaskType

func (c *Client) FindProjectTaskType(criteria *Criteria) (*ProjectTaskType, error)

FindProjectTaskType finds project.task.type record by querying it with criteria.

func (*Client) FindProjectTaskTypeId

func (c *Client) FindProjectTaskTypeId(criteria *Criteria, options *Options) (int64, error)

FindProjectTaskTypeId finds record id by querying it with criteria.

func (*Client) FindProjectTaskTypeIds

func (c *Client) FindProjectTaskTypeIds(criteria *Criteria, options *Options) ([]int64, error)

FindProjectTaskTypeIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindProjectTaskTypes

func (c *Client) FindProjectTaskTypes(criteria *Criteria, options *Options) (*ProjectTaskTypes, error)

FindProjectTaskTypes finds project.task.type records by querying it and filtering it with criteria and options.

func (*Client) FindProjectTasks

func (c *Client) FindProjectTasks(criteria *Criteria, options *Options) (*ProjectTasks, error)

FindProjectTasks finds project.task records by querying it and filtering it with criteria and options.

func (*Client) FindPublisherWarrantyContract

func (c *Client) FindPublisherWarrantyContract(criteria *Criteria) (*PublisherWarrantyContract, error)

FindPublisherWarrantyContract finds publisher_warranty.contract record by querying it with criteria.

func (*Client) FindPublisherWarrantyContractId

func (c *Client) FindPublisherWarrantyContractId(criteria *Criteria, options *Options) (int64, error)

FindPublisherWarrantyContractId finds record id by querying it with criteria.

func (*Client) FindPublisherWarrantyContractIds

func (c *Client) FindPublisherWarrantyContractIds(criteria *Criteria, options *Options) ([]int64, error)

FindPublisherWarrantyContractIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindPublisherWarrantyContracts

func (c *Client) FindPublisherWarrantyContracts(criteria *Criteria, options *Options) (*PublisherWarrantyContracts, error)

FindPublisherWarrantyContracts finds publisher_warranty.contract records by querying it and filtering it with criteria and options.

func (*Client) FindRatingMixin

func (c *Client) FindRatingMixin(criteria *Criteria) (*RatingMixin, error)

FindRatingMixin finds rating.mixin record by querying it with criteria.

func (*Client) FindRatingMixinId

func (c *Client) FindRatingMixinId(criteria *Criteria, options *Options) (int64, error)

FindRatingMixinId finds record id by querying it with criteria.

func (*Client) FindRatingMixinIds

func (c *Client) FindRatingMixinIds(criteria *Criteria, options *Options) ([]int64, error)

FindRatingMixinIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindRatingMixins

func (c *Client) FindRatingMixins(criteria *Criteria, options *Options) (*RatingMixins, error)

FindRatingMixins finds rating.mixin records by querying it and filtering it with criteria and options.

func (*Client) FindRatingParentMixin

func (c *Client) FindRatingParentMixin(criteria *Criteria) (*RatingParentMixin, error)

FindRatingParentMixin finds rating.parent.mixin record by querying it with criteria.

func (*Client) FindRatingParentMixinId

func (c *Client) FindRatingParentMixinId(criteria *Criteria, options *Options) (int64, error)

FindRatingParentMixinId finds record id by querying it with criteria.

func (*Client) FindRatingParentMixinIds

func (c *Client) FindRatingParentMixinIds(criteria *Criteria, options *Options) ([]int64, error)

FindRatingParentMixinIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindRatingParentMixins

func (c *Client) FindRatingParentMixins(criteria *Criteria, options *Options) (*RatingParentMixins, error)

FindRatingParentMixins finds rating.parent.mixin records by querying it and filtering it with criteria and options.

func (*Client) FindRatingRating

func (c *Client) FindRatingRating(criteria *Criteria) (*RatingRating, error)

FindRatingRating finds rating.rating record by querying it with criteria.

func (*Client) FindRatingRatingId

func (c *Client) FindRatingRatingId(criteria *Criteria, options *Options) (int64, error)

FindRatingRatingId finds record id by querying it with criteria.

func (*Client) FindRatingRatingIds

func (c *Client) FindRatingRatingIds(criteria *Criteria, options *Options) ([]int64, error)

FindRatingRatingIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindRatingRatings

func (c *Client) FindRatingRatings(criteria *Criteria, options *Options) (*RatingRatings, error)

FindRatingRatings finds rating.rating records by querying it and filtering it with criteria and options.

func (*Client) FindRegistrationEditor

func (c *Client) FindRegistrationEditor(criteria *Criteria) (*RegistrationEditor, error)

FindRegistrationEditor finds registration.editor record by querying it with criteria.

func (*Client) FindRegistrationEditorId

func (c *Client) FindRegistrationEditorId(criteria *Criteria, options *Options) (int64, error)

FindRegistrationEditorId finds record id by querying it with criteria.

func (*Client) FindRegistrationEditorIds

func (c *Client) FindRegistrationEditorIds(criteria *Criteria, options *Options) ([]int64, error)

FindRegistrationEditorIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindRegistrationEditorLine

func (c *Client) FindRegistrationEditorLine(criteria *Criteria) (*RegistrationEditorLine, error)

FindRegistrationEditorLine finds registration.editor.line record by querying it with criteria.

func (*Client) FindRegistrationEditorLineId

func (c *Client) FindRegistrationEditorLineId(criteria *Criteria, options *Options) (int64, error)

FindRegistrationEditorLineId finds record id by querying it with criteria.

func (*Client) FindRegistrationEditorLineIds

func (c *Client) FindRegistrationEditorLineIds(criteria *Criteria, options *Options) ([]int64, error)

FindRegistrationEditorLineIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindRegistrationEditorLines

func (c *Client) FindRegistrationEditorLines(criteria *Criteria, options *Options) (*RegistrationEditorLines, error)

FindRegistrationEditorLines finds registration.editor.line records by querying it and filtering it with criteria and options.

func (*Client) FindRegistrationEditors

func (c *Client) FindRegistrationEditors(criteria *Criteria, options *Options) (*RegistrationEditors, error)

FindRegistrationEditors finds registration.editor records by querying it and filtering it with criteria and options.

func (*Client) FindReportAccountReportAgedpartnerbalance

func (c *Client) FindReportAccountReportAgedpartnerbalance(criteria *Criteria) (*ReportAccountReportAgedpartnerbalance, error)

FindReportAccountReportAgedpartnerbalance finds report.account.report_agedpartnerbalance record by querying it with criteria.

func (*Client) FindReportAccountReportAgedpartnerbalanceId

func (c *Client) FindReportAccountReportAgedpartnerbalanceId(criteria *Criteria, options *Options) (int64, error)

FindReportAccountReportAgedpartnerbalanceId finds record id by querying it with criteria.

func (*Client) FindReportAccountReportAgedpartnerbalanceIds

func (c *Client) FindReportAccountReportAgedpartnerbalanceIds(criteria *Criteria, options *Options) ([]int64, error)

FindReportAccountReportAgedpartnerbalanceIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindReportAccountReportAgedpartnerbalances

func (c *Client) FindReportAccountReportAgedpartnerbalances(criteria *Criteria, options *Options) (*ReportAccountReportAgedpartnerbalances, error)

FindReportAccountReportAgedpartnerbalances finds report.account.report_agedpartnerbalance records by querying it and filtering it with criteria and options.

func (*Client) FindReportAccountReportHashIntegrity

func (c *Client) FindReportAccountReportHashIntegrity(criteria *Criteria) (*ReportAccountReportHashIntegrity, error)

FindReportAccountReportHashIntegrity finds report.account.report_hash_integrity record by querying it with criteria.

func (*Client) FindReportAccountReportHashIntegrityId

func (c *Client) FindReportAccountReportHashIntegrityId(criteria *Criteria, options *Options) (int64, error)

FindReportAccountReportHashIntegrityId finds record id by querying it with criteria.

func (*Client) FindReportAccountReportHashIntegrityIds

func (c *Client) FindReportAccountReportHashIntegrityIds(criteria *Criteria, options *Options) ([]int64, error)

FindReportAccountReportHashIntegrityIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindReportAccountReportHashIntegritys

func (c *Client) FindReportAccountReportHashIntegritys(criteria *Criteria, options *Options) (*ReportAccountReportHashIntegritys, error)

FindReportAccountReportHashIntegritys finds report.account.report_hash_integrity records by querying it and filtering it with criteria and options.

func (*Client) FindReportAccountReportInvoiceWithPayments

func (c *Client) FindReportAccountReportInvoiceWithPayments(criteria *Criteria) (*ReportAccountReportInvoiceWithPayments, error)

FindReportAccountReportInvoiceWithPayments finds report.account.report_invoice_with_payments record by querying it with criteria.

func (*Client) FindReportAccountReportInvoiceWithPaymentsId

func (c *Client) FindReportAccountReportInvoiceWithPaymentsId(criteria *Criteria, options *Options) (int64, error)

FindReportAccountReportInvoiceWithPaymentsId finds record id by querying it with criteria.

func (*Client) FindReportAccountReportInvoiceWithPaymentsIds

func (c *Client) FindReportAccountReportInvoiceWithPaymentsIds(criteria *Criteria, options *Options) ([]int64, error)

FindReportAccountReportInvoiceWithPaymentsIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindReportAccountReportInvoiceWithPaymentss

func (c *Client) FindReportAccountReportInvoiceWithPaymentss(criteria *Criteria, options *Options) (*ReportAccountReportInvoiceWithPaymentss, error)

FindReportAccountReportInvoiceWithPaymentss finds report.account.report_invoice_with_payments records by querying it and filtering it with criteria and options.

func (*Client) FindReportAccountReportJournal

func (c *Client) FindReportAccountReportJournal(criteria *Criteria) (*ReportAccountReportJournal, error)

FindReportAccountReportJournal finds report.account.report_journal record by querying it with criteria.

func (*Client) FindReportAccountReportJournalId

func (c *Client) FindReportAccountReportJournalId(criteria *Criteria, options *Options) (int64, error)

FindReportAccountReportJournalId finds record id by querying it with criteria.

func (*Client) FindReportAccountReportJournalIds

func (c *Client) FindReportAccountReportJournalIds(criteria *Criteria, options *Options) ([]int64, error)

FindReportAccountReportJournalIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindReportAccountReportJournals

func (c *Client) FindReportAccountReportJournals(criteria *Criteria, options *Options) (*ReportAccountReportJournals, error)

FindReportAccountReportJournals finds report.account.report_journal records by querying it and filtering it with criteria and options.

func (*Client) FindReportAllChannelsSales

func (c *Client) FindReportAllChannelsSales(criteria *Criteria) (*ReportAllChannelsSales, error)

FindReportAllChannelsSales finds report.all.channels.sales record by querying it with criteria.

func (*Client) FindReportAllChannelsSalesId

func (c *Client) FindReportAllChannelsSalesId(criteria *Criteria, options *Options) (int64, error)

FindReportAllChannelsSalesId finds record id by querying it with criteria.

func (*Client) FindReportAllChannelsSalesIds

func (c *Client) FindReportAllChannelsSalesIds(criteria *Criteria, options *Options) ([]int64, error)

FindReportAllChannelsSalesIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindReportAllChannelsSaless

func (c *Client) FindReportAllChannelsSaless(criteria *Criteria, options *Options) (*ReportAllChannelsSaless, error)

FindReportAllChannelsSaless finds report.all.channels.sales records by querying it and filtering it with criteria and options.

func (*Client) FindReportBaseReportIrmodulereference

func (c *Client) FindReportBaseReportIrmodulereference(criteria *Criteria) (*ReportBaseReportIrmodulereference, error)

FindReportBaseReportIrmodulereference finds report.base.report_irmodulereference record by querying it with criteria.

func (*Client) FindReportBaseReportIrmodulereferenceId

func (c *Client) FindReportBaseReportIrmodulereferenceId(criteria *Criteria, options *Options) (int64, error)

FindReportBaseReportIrmodulereferenceId finds record id by querying it with criteria.

func (*Client) FindReportBaseReportIrmodulereferenceIds

func (c *Client) FindReportBaseReportIrmodulereferenceIds(criteria *Criteria, options *Options) ([]int64, error)

FindReportBaseReportIrmodulereferenceIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindReportBaseReportIrmodulereferences

func (c *Client) FindReportBaseReportIrmodulereferences(criteria *Criteria, options *Options) (*ReportBaseReportIrmodulereferences, error)

FindReportBaseReportIrmodulereferences finds report.base.report_irmodulereference records by querying it and filtering it with criteria and options.

func (*Client) FindReportHrHolidaysReportHolidayssummary

func (c *Client) FindReportHrHolidaysReportHolidayssummary(criteria *Criteria) (*ReportHrHolidaysReportHolidayssummary, error)

FindReportHrHolidaysReportHolidayssummary finds report.hr_holidays.report_holidayssummary record by querying it with criteria.

func (*Client) FindReportHrHolidaysReportHolidayssummaryId

func (c *Client) FindReportHrHolidaysReportHolidayssummaryId(criteria *Criteria, options *Options) (int64, error)

FindReportHrHolidaysReportHolidayssummaryId finds record id by querying it with criteria.

func (*Client) FindReportHrHolidaysReportHolidayssummaryIds

func (c *Client) FindReportHrHolidaysReportHolidayssummaryIds(criteria *Criteria, options *Options) ([]int64, error)

FindReportHrHolidaysReportHolidayssummaryIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindReportHrHolidaysReportHolidayssummarys

func (c *Client) FindReportHrHolidaysReportHolidayssummarys(criteria *Criteria, options *Options) (*ReportHrHolidaysReportHolidayssummarys, error)

FindReportHrHolidaysReportHolidayssummarys finds report.hr_holidays.report_holidayssummary records by querying it and filtering it with criteria and options.

func (*Client) FindReportLayout

func (c *Client) FindReportLayout(criteria *Criteria) (*ReportLayout, error)

FindReportLayout finds report.layout record by querying it with criteria.

func (*Client) FindReportLayoutId

func (c *Client) FindReportLayoutId(criteria *Criteria, options *Options) (int64, error)

FindReportLayoutId finds record id by querying it with criteria.

func (*Client) FindReportLayoutIds

func (c *Client) FindReportLayoutIds(criteria *Criteria, options *Options) ([]int64, error)

FindReportLayoutIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindReportLayouts

func (c *Client) FindReportLayouts(criteria *Criteria, options *Options) (*ReportLayouts, error)

FindReportLayouts finds report.layout records by querying it and filtering it with criteria and options.

func (*Client) FindReportPaperformat

func (c *Client) FindReportPaperformat(criteria *Criteria) (*ReportPaperformat, error)

FindReportPaperformat finds report.paperformat record by querying it with criteria.

func (*Client) FindReportPaperformatId

func (c *Client) FindReportPaperformatId(criteria *Criteria, options *Options) (int64, error)

FindReportPaperformatId finds record id by querying it with criteria.

func (*Client) FindReportPaperformatIds

func (c *Client) FindReportPaperformatIds(criteria *Criteria, options *Options) ([]int64, error)

FindReportPaperformatIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindReportPaperformats

func (c *Client) FindReportPaperformats(criteria *Criteria, options *Options) (*ReportPaperformats, error)

FindReportPaperformats finds report.paperformat records by querying it and filtering it with criteria and options.

func (*Client) FindReportProductReportPricelist

func (c *Client) FindReportProductReportPricelist(criteria *Criteria) (*ReportProductReportPricelist, error)

FindReportProductReportPricelist finds report.product.report_pricelist record by querying it with criteria.

func (*Client) FindReportProductReportPricelistId

func (c *Client) FindReportProductReportPricelistId(criteria *Criteria, options *Options) (int64, error)

FindReportProductReportPricelistId finds record id by querying it with criteria.

func (*Client) FindReportProductReportPricelistIds

func (c *Client) FindReportProductReportPricelistIds(criteria *Criteria, options *Options) ([]int64, error)

FindReportProductReportPricelistIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindReportProductReportPricelists

func (c *Client) FindReportProductReportPricelists(criteria *Criteria, options *Options) (*ReportProductReportPricelists, error)

FindReportProductReportPricelists finds report.product.report_pricelist records by querying it and filtering it with criteria and options.

func (*Client) FindReportProjectTaskUser

func (c *Client) FindReportProjectTaskUser(criteria *Criteria) (*ReportProjectTaskUser, error)

FindReportProjectTaskUser finds report.project.task.user record by querying it with criteria.

func (*Client) FindReportProjectTaskUserId

func (c *Client) FindReportProjectTaskUserId(criteria *Criteria, options *Options) (int64, error)

FindReportProjectTaskUserId finds record id by querying it with criteria.

func (*Client) FindReportProjectTaskUserIds

func (c *Client) FindReportProjectTaskUserIds(criteria *Criteria, options *Options) ([]int64, error)

FindReportProjectTaskUserIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindReportProjectTaskUsers

func (c *Client) FindReportProjectTaskUsers(criteria *Criteria, options *Options) (*ReportProjectTaskUsers, error)

FindReportProjectTaskUsers finds report.project.task.user records by querying it and filtering it with criteria and options.

func (*Client) FindReportSaleReportSaleproforma

func (c *Client) FindReportSaleReportSaleproforma(criteria *Criteria) (*ReportSaleReportSaleproforma, error)

FindReportSaleReportSaleproforma finds report.sale.report_saleproforma record by querying it with criteria.

func (*Client) FindReportSaleReportSaleproformaId

func (c *Client) FindReportSaleReportSaleproformaId(criteria *Criteria, options *Options) (int64, error)

FindReportSaleReportSaleproformaId finds record id by querying it with criteria.

func (*Client) FindReportSaleReportSaleproformaIds

func (c *Client) FindReportSaleReportSaleproformaIds(criteria *Criteria, options *Options) ([]int64, error)

FindReportSaleReportSaleproformaIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindReportSaleReportSaleproformas

func (c *Client) FindReportSaleReportSaleproformas(criteria *Criteria, options *Options) (*ReportSaleReportSaleproformas, error)

FindReportSaleReportSaleproformas finds report.sale.report_saleproforma records by querying it and filtering it with criteria and options.

func (*Client) FindResBank

func (c *Client) FindResBank(criteria *Criteria) (*ResBank, error)

FindResBank finds res.bank record by querying it with criteria.

func (*Client) FindResBankId

func (c *Client) FindResBankId(criteria *Criteria, options *Options) (int64, error)

FindResBankId finds record id by querying it with criteria.

func (*Client) FindResBankIds

func (c *Client) FindResBankIds(criteria *Criteria, options *Options) ([]int64, error)

FindResBankIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindResBanks

func (c *Client) FindResBanks(criteria *Criteria, options *Options) (*ResBanks, error)

FindResBanks finds res.bank records by querying it and filtering it with criteria and options.

func (*Client) FindResCompany

func (c *Client) FindResCompany(criteria *Criteria) (*ResCompany, error)

FindResCompany finds res.company record by querying it with criteria.

func (*Client) FindResCompanyId

func (c *Client) FindResCompanyId(criteria *Criteria, options *Options) (int64, error)

FindResCompanyId finds record id by querying it with criteria.

func (*Client) FindResCompanyIds

func (c *Client) FindResCompanyIds(criteria *Criteria, options *Options) ([]int64, error)

FindResCompanyIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindResCompanys

func (c *Client) FindResCompanys(criteria *Criteria, options *Options) (*ResCompanys, error)

FindResCompanys finds res.company records by querying it and filtering it with criteria and options.

func (*Client) FindResConfig

func (c *Client) FindResConfig(criteria *Criteria) (*ResConfig, error)

FindResConfig finds res.config record by querying it with criteria.

func (*Client) FindResConfigId

func (c *Client) FindResConfigId(criteria *Criteria, options *Options) (int64, error)

FindResConfigId finds record id by querying it with criteria.

func (*Client) FindResConfigIds

func (c *Client) FindResConfigIds(criteria *Criteria, options *Options) ([]int64, error)

FindResConfigIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindResConfigInstaller

func (c *Client) FindResConfigInstaller(criteria *Criteria) (*ResConfigInstaller, error)

FindResConfigInstaller finds res.config.installer record by querying it with criteria.

func (*Client) FindResConfigInstallerId

func (c *Client) FindResConfigInstallerId(criteria *Criteria, options *Options) (int64, error)

FindResConfigInstallerId finds record id by querying it with criteria.

func (*Client) FindResConfigInstallerIds

func (c *Client) FindResConfigInstallerIds(criteria *Criteria, options *Options) ([]int64, error)

FindResConfigInstallerIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindResConfigInstallers

func (c *Client) FindResConfigInstallers(criteria *Criteria, options *Options) (*ResConfigInstallers, error)

FindResConfigInstallers finds res.config.installer records by querying it and filtering it with criteria and options.

func (*Client) FindResConfigSettings

func (c *Client) FindResConfigSettings(criteria *Criteria) (*ResConfigSettings, error)

FindResConfigSettings finds res.config.settings record by querying it with criteria.

func (*Client) FindResConfigSettingsId

func (c *Client) FindResConfigSettingsId(criteria *Criteria, options *Options) (int64, error)

FindResConfigSettingsId finds record id by querying it with criteria.

func (*Client) FindResConfigSettingsIds

func (c *Client) FindResConfigSettingsIds(criteria *Criteria, options *Options) ([]int64, error)

FindResConfigSettingsIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindResConfigSettingss

func (c *Client) FindResConfigSettingss(criteria *Criteria, options *Options) (*ResConfigSettingss, error)

FindResConfigSettingss finds res.config.settings records by querying it and filtering it with criteria and options.

func (*Client) FindResConfigs

func (c *Client) FindResConfigs(criteria *Criteria, options *Options) (*ResConfigs, error)

FindResConfigs finds res.config records by querying it and filtering it with criteria and options.

func (*Client) FindResCountry

func (c *Client) FindResCountry(criteria *Criteria) (*ResCountry, error)

FindResCountry finds res.country record by querying it with criteria.

func (*Client) FindResCountryGroup

func (c *Client) FindResCountryGroup(criteria *Criteria) (*ResCountryGroup, error)

FindResCountryGroup finds res.country.group record by querying it with criteria.

func (*Client) FindResCountryGroupId

func (c *Client) FindResCountryGroupId(criteria *Criteria, options *Options) (int64, error)

FindResCountryGroupId finds record id by querying it with criteria.

func (*Client) FindResCountryGroupIds

func (c *Client) FindResCountryGroupIds(criteria *Criteria, options *Options) ([]int64, error)

FindResCountryGroupIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindResCountryGroups

func (c *Client) FindResCountryGroups(criteria *Criteria, options *Options) (*ResCountryGroups, error)

FindResCountryGroups finds res.country.group records by querying it and filtering it with criteria and options.

func (*Client) FindResCountryId

func (c *Client) FindResCountryId(criteria *Criteria, options *Options) (int64, error)

FindResCountryId finds record id by querying it with criteria.

func (*Client) FindResCountryIds

func (c *Client) FindResCountryIds(criteria *Criteria, options *Options) ([]int64, error)

FindResCountryIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindResCountryState

func (c *Client) FindResCountryState(criteria *Criteria) (*ResCountryState, error)

FindResCountryState finds res.country.state record by querying it with criteria.

func (*Client) FindResCountryStateId

func (c *Client) FindResCountryStateId(criteria *Criteria, options *Options) (int64, error)

FindResCountryStateId finds record id by querying it with criteria.

func (*Client) FindResCountryStateIds

func (c *Client) FindResCountryStateIds(criteria *Criteria, options *Options) ([]int64, error)

FindResCountryStateIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindResCountryStates

func (c *Client) FindResCountryStates(criteria *Criteria, options *Options) (*ResCountryStates, error)

FindResCountryStates finds res.country.state records by querying it and filtering it with criteria and options.

func (*Client) FindResCountrys

func (c *Client) FindResCountrys(criteria *Criteria, options *Options) (*ResCountrys, error)

FindResCountrys finds res.country records by querying it and filtering it with criteria and options.

func (*Client) FindResCurrency

func (c *Client) FindResCurrency(criteria *Criteria) (*ResCurrency, error)

FindResCurrency finds res.currency record by querying it with criteria.

func (*Client) FindResCurrencyId

func (c *Client) FindResCurrencyId(criteria *Criteria, options *Options) (int64, error)

FindResCurrencyId finds record id by querying it with criteria.

func (*Client) FindResCurrencyIds

func (c *Client) FindResCurrencyIds(criteria *Criteria, options *Options) ([]int64, error)

FindResCurrencyIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindResCurrencyRate

func (c *Client) FindResCurrencyRate(criteria *Criteria) (*ResCurrencyRate, error)

FindResCurrencyRate finds res.currency.rate record by querying it with criteria.

func (*Client) FindResCurrencyRateId

func (c *Client) FindResCurrencyRateId(criteria *Criteria, options *Options) (int64, error)

FindResCurrencyRateId finds record id by querying it with criteria.

func (*Client) FindResCurrencyRateIds

func (c *Client) FindResCurrencyRateIds(criteria *Criteria, options *Options) ([]int64, error)

FindResCurrencyRateIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindResCurrencyRates

func (c *Client) FindResCurrencyRates(criteria *Criteria, options *Options) (*ResCurrencyRates, error)

FindResCurrencyRates finds res.currency.rate records by querying it and filtering it with criteria and options.

func (*Client) FindResCurrencys

func (c *Client) FindResCurrencys(criteria *Criteria, options *Options) (*ResCurrencys, error)

FindResCurrencys finds res.currency records by querying it and filtering it with criteria and options.

func (*Client) FindResGroups

func (c *Client) FindResGroups(criteria *Criteria) (*ResGroups, error)

FindResGroups finds res.groups record by querying it with criteria.

func (*Client) FindResGroupsId

func (c *Client) FindResGroupsId(criteria *Criteria, options *Options) (int64, error)

FindResGroupsId finds record id by querying it with criteria.

func (*Client) FindResGroupsIds

func (c *Client) FindResGroupsIds(criteria *Criteria, options *Options) ([]int64, error)

FindResGroupsIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindResGroupss

func (c *Client) FindResGroupss(criteria *Criteria, options *Options) (*ResGroupss, error)

FindResGroupss finds res.groups records by querying it and filtering it with criteria and options.

func (*Client) FindResLang

func (c *Client) FindResLang(criteria *Criteria) (*ResLang, error)

FindResLang finds res.lang record by querying it with criteria.

func (*Client) FindResLangId

func (c *Client) FindResLangId(criteria *Criteria, options *Options) (int64, error)

FindResLangId finds record id by querying it with criteria.

func (*Client) FindResLangIds

func (c *Client) FindResLangIds(criteria *Criteria, options *Options) ([]int64, error)

FindResLangIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindResLangs

func (c *Client) FindResLangs(criteria *Criteria, options *Options) (*ResLangs, error)

FindResLangs finds res.lang records by querying it and filtering it with criteria and options.

func (*Client) FindResPartner

func (c *Client) FindResPartner(criteria *Criteria) (*ResPartner, error)

FindResPartner finds res.partner record by querying it with criteria.

func (*Client) FindResPartnerAutocompleteSync

func (c *Client) FindResPartnerAutocompleteSync(criteria *Criteria) (*ResPartnerAutocompleteSync, error)

FindResPartnerAutocompleteSync finds res.partner.autocomplete.sync record by querying it with criteria.

func (*Client) FindResPartnerAutocompleteSyncId

func (c *Client) FindResPartnerAutocompleteSyncId(criteria *Criteria, options *Options) (int64, error)

FindResPartnerAutocompleteSyncId finds record id by querying it with criteria.

func (*Client) FindResPartnerAutocompleteSyncIds

func (c *Client) FindResPartnerAutocompleteSyncIds(criteria *Criteria, options *Options) ([]int64, error)

FindResPartnerAutocompleteSyncIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindResPartnerAutocompleteSyncs

func (c *Client) FindResPartnerAutocompleteSyncs(criteria *Criteria, options *Options) (*ResPartnerAutocompleteSyncs, error)

FindResPartnerAutocompleteSyncs finds res.partner.autocomplete.sync records by querying it and filtering it with criteria and options.

func (*Client) FindResPartnerBank

func (c *Client) FindResPartnerBank(criteria *Criteria) (*ResPartnerBank, error)

FindResPartnerBank finds res.partner.bank record by querying it with criteria.

func (*Client) FindResPartnerBankId

func (c *Client) FindResPartnerBankId(criteria *Criteria, options *Options) (int64, error)

FindResPartnerBankId finds record id by querying it with criteria.

func (*Client) FindResPartnerBankIds

func (c *Client) FindResPartnerBankIds(criteria *Criteria, options *Options) ([]int64, error)

FindResPartnerBankIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindResPartnerBanks

func (c *Client) FindResPartnerBanks(criteria *Criteria, options *Options) (*ResPartnerBanks, error)

FindResPartnerBanks finds res.partner.bank records by querying it and filtering it with criteria and options.

func (*Client) FindResPartnerCategory

func (c *Client) FindResPartnerCategory(criteria *Criteria) (*ResPartnerCategory, error)

FindResPartnerCategory finds res.partner.category record by querying it with criteria.

func (*Client) FindResPartnerCategoryId

func (c *Client) FindResPartnerCategoryId(criteria *Criteria, options *Options) (int64, error)

FindResPartnerCategoryId finds record id by querying it with criteria.

func (*Client) FindResPartnerCategoryIds

func (c *Client) FindResPartnerCategoryIds(criteria *Criteria, options *Options) ([]int64, error)

FindResPartnerCategoryIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindResPartnerCategorys

func (c *Client) FindResPartnerCategorys(criteria *Criteria, options *Options) (*ResPartnerCategorys, error)

FindResPartnerCategorys finds res.partner.category records by querying it and filtering it with criteria and options.

func (*Client) FindResPartnerId

func (c *Client) FindResPartnerId(criteria *Criteria, options *Options) (int64, error)

FindResPartnerId finds record id by querying it with criteria.

func (*Client) FindResPartnerIds

func (c *Client) FindResPartnerIds(criteria *Criteria, options *Options) ([]int64, error)

FindResPartnerIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindResPartnerIndustry

func (c *Client) FindResPartnerIndustry(criteria *Criteria) (*ResPartnerIndustry, error)

FindResPartnerIndustry finds res.partner.industry record by querying it with criteria.

func (*Client) FindResPartnerIndustryId

func (c *Client) FindResPartnerIndustryId(criteria *Criteria, options *Options) (int64, error)

FindResPartnerIndustryId finds record id by querying it with criteria.

func (*Client) FindResPartnerIndustryIds

func (c *Client) FindResPartnerIndustryIds(criteria *Criteria, options *Options) ([]int64, error)

FindResPartnerIndustryIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindResPartnerIndustrys

func (c *Client) FindResPartnerIndustrys(criteria *Criteria, options *Options) (*ResPartnerIndustrys, error)

FindResPartnerIndustrys finds res.partner.industry records by querying it and filtering it with criteria and options.

func (*Client) FindResPartnerTitle

func (c *Client) FindResPartnerTitle(criteria *Criteria) (*ResPartnerTitle, error)

FindResPartnerTitle finds res.partner.title record by querying it with criteria.

func (*Client) FindResPartnerTitleId

func (c *Client) FindResPartnerTitleId(criteria *Criteria, options *Options) (int64, error)

FindResPartnerTitleId finds record id by querying it with criteria.

func (*Client) FindResPartnerTitleIds

func (c *Client) FindResPartnerTitleIds(criteria *Criteria, options *Options) ([]int64, error)

FindResPartnerTitleIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindResPartnerTitles

func (c *Client) FindResPartnerTitles(criteria *Criteria, options *Options) (*ResPartnerTitles, error)

FindResPartnerTitles finds res.partner.title records by querying it and filtering it with criteria and options.

func (*Client) FindResPartners

func (c *Client) FindResPartners(criteria *Criteria, options *Options) (*ResPartners, error)

FindResPartners finds res.partner records by querying it and filtering it with criteria and options.

func (*Client) FindResUsers

func (c *Client) FindResUsers(criteria *Criteria) (*ResUsers, error)

FindResUsers finds res.users record by querying it with criteria.

func (*Client) FindResUsersId

func (c *Client) FindResUsersId(criteria *Criteria, options *Options) (int64, error)

FindResUsersId finds record id by querying it with criteria.

func (*Client) FindResUsersIds

func (c *Client) FindResUsersIds(criteria *Criteria, options *Options) ([]int64, error)

FindResUsersIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindResUsersLog

func (c *Client) FindResUsersLog(criteria *Criteria) (*ResUsersLog, error)

FindResUsersLog finds res.users.log record by querying it with criteria.

func (*Client) FindResUsersLogId

func (c *Client) FindResUsersLogId(criteria *Criteria, options *Options) (int64, error)

FindResUsersLogId finds record id by querying it with criteria.

func (*Client) FindResUsersLogIds

func (c *Client) FindResUsersLogIds(criteria *Criteria, options *Options) ([]int64, error)

FindResUsersLogIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindResUsersLogs

func (c *Client) FindResUsersLogs(criteria *Criteria, options *Options) (*ResUsersLogs, error)

FindResUsersLogs finds res.users.log records by querying it and filtering it with criteria and options.

func (*Client) FindResUserss

func (c *Client) FindResUserss(criteria *Criteria, options *Options) (*ResUserss, error)

FindResUserss finds res.users records by querying it and filtering it with criteria and options.

func (*Client) FindResetViewArchWizard

func (c *Client) FindResetViewArchWizard(criteria *Criteria) (*ResetViewArchWizard, error)

FindResetViewArchWizard finds reset.view.arch.wizard record by querying it with criteria.

func (*Client) FindResetViewArchWizardId

func (c *Client) FindResetViewArchWizardId(criteria *Criteria, options *Options) (int64, error)

FindResetViewArchWizardId finds record id by querying it with criteria.

func (*Client) FindResetViewArchWizardIds

func (c *Client) FindResetViewArchWizardIds(criteria *Criteria, options *Options) ([]int64, error)

FindResetViewArchWizardIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindResetViewArchWizards

func (c *Client) FindResetViewArchWizards(criteria *Criteria, options *Options) (*ResetViewArchWizards, error)

FindResetViewArchWizards finds reset.view.arch.wizard records by querying it and filtering it with criteria and options.

func (*Client) FindResourceCalendar

func (c *Client) FindResourceCalendar(criteria *Criteria) (*ResourceCalendar, error)

FindResourceCalendar finds resource.calendar record by querying it with criteria.

func (*Client) FindResourceCalendarAttendance

func (c *Client) FindResourceCalendarAttendance(criteria *Criteria) (*ResourceCalendarAttendance, error)

FindResourceCalendarAttendance finds resource.calendar.attendance record by querying it with criteria.

func (*Client) FindResourceCalendarAttendanceId

func (c *Client) FindResourceCalendarAttendanceId(criteria *Criteria, options *Options) (int64, error)

FindResourceCalendarAttendanceId finds record id by querying it with criteria.

func (*Client) FindResourceCalendarAttendanceIds

func (c *Client) FindResourceCalendarAttendanceIds(criteria *Criteria, options *Options) ([]int64, error)

FindResourceCalendarAttendanceIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindResourceCalendarAttendances

func (c *Client) FindResourceCalendarAttendances(criteria *Criteria, options *Options) (*ResourceCalendarAttendances, error)

FindResourceCalendarAttendances finds resource.calendar.attendance records by querying it and filtering it with criteria and options.

func (*Client) FindResourceCalendarId

func (c *Client) FindResourceCalendarId(criteria *Criteria, options *Options) (int64, error)

FindResourceCalendarId finds record id by querying it with criteria.

func (*Client) FindResourceCalendarIds

func (c *Client) FindResourceCalendarIds(criteria *Criteria, options *Options) ([]int64, error)

FindResourceCalendarIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindResourceCalendarLeaves

func (c *Client) FindResourceCalendarLeaves(criteria *Criteria) (*ResourceCalendarLeaves, error)

FindResourceCalendarLeaves finds resource.calendar.leaves record by querying it with criteria.

func (*Client) FindResourceCalendarLeavesId

func (c *Client) FindResourceCalendarLeavesId(criteria *Criteria, options *Options) (int64, error)

FindResourceCalendarLeavesId finds record id by querying it with criteria.

func (*Client) FindResourceCalendarLeavesIds

func (c *Client) FindResourceCalendarLeavesIds(criteria *Criteria, options *Options) ([]int64, error)

FindResourceCalendarLeavesIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindResourceCalendarLeavess

func (c *Client) FindResourceCalendarLeavess(criteria *Criteria, options *Options) (*ResourceCalendarLeavess, error)

FindResourceCalendarLeavess finds resource.calendar.leaves records by querying it and filtering it with criteria and options.

func (*Client) FindResourceCalendars

func (c *Client) FindResourceCalendars(criteria *Criteria, options *Options) (*ResourceCalendars, error)

FindResourceCalendars finds resource.calendar records by querying it and filtering it with criteria and options.

func (*Client) FindResourceMixin

func (c *Client) FindResourceMixin(criteria *Criteria) (*ResourceMixin, error)

FindResourceMixin finds resource.mixin record by querying it with criteria.

func (*Client) FindResourceMixinId

func (c *Client) FindResourceMixinId(criteria *Criteria, options *Options) (int64, error)

FindResourceMixinId finds record id by querying it with criteria.

func (*Client) FindResourceMixinIds

func (c *Client) FindResourceMixinIds(criteria *Criteria, options *Options) ([]int64, error)

FindResourceMixinIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindResourceMixins

func (c *Client) FindResourceMixins(criteria *Criteria, options *Options) (*ResourceMixins, error)

FindResourceMixins finds resource.mixin records by querying it and filtering it with criteria and options.

func (*Client) FindResourceResource

func (c *Client) FindResourceResource(criteria *Criteria) (*ResourceResource, error)

FindResourceResource finds resource.resource record by querying it with criteria.

func (*Client) FindResourceResourceId

func (c *Client) FindResourceResourceId(criteria *Criteria, options *Options) (int64, error)

FindResourceResourceId finds record id by querying it with criteria.

func (*Client) FindResourceResourceIds

func (c *Client) FindResourceResourceIds(criteria *Criteria, options *Options) ([]int64, error)

FindResourceResourceIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindResourceResources

func (c *Client) FindResourceResources(criteria *Criteria, options *Options) (*ResourceResources, error)

FindResourceResources finds resource.resource records by querying it and filtering it with criteria and options.

func (*Client) FindSaleAdvancePaymentInv

func (c *Client) FindSaleAdvancePaymentInv(criteria *Criteria) (*SaleAdvancePaymentInv, error)

FindSaleAdvancePaymentInv finds sale.advance.payment.inv record by querying it with criteria.

func (*Client) FindSaleAdvancePaymentInvId

func (c *Client) FindSaleAdvancePaymentInvId(criteria *Criteria, options *Options) (int64, error)

FindSaleAdvancePaymentInvId finds record id by querying it with criteria.

func (*Client) FindSaleAdvancePaymentInvIds

func (c *Client) FindSaleAdvancePaymentInvIds(criteria *Criteria, options *Options) ([]int64, error)

FindSaleAdvancePaymentInvIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindSaleAdvancePaymentInvs

func (c *Client) FindSaleAdvancePaymentInvs(criteria *Criteria, options *Options) (*SaleAdvancePaymentInvs, error)

FindSaleAdvancePaymentInvs finds sale.advance.payment.inv records by querying it and filtering it with criteria and options.

func (*Client) FindSaleOrder

func (c *Client) FindSaleOrder(criteria *Criteria) (*SaleOrder, error)

FindSaleOrder finds sale.order record by querying it with criteria.

func (*Client) FindSaleOrderId

func (c *Client) FindSaleOrderId(criteria *Criteria, options *Options) (int64, error)

FindSaleOrderId finds record id by querying it with criteria.

func (*Client) FindSaleOrderIds

func (c *Client) FindSaleOrderIds(criteria *Criteria, options *Options) ([]int64, error)

FindSaleOrderIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindSaleOrderLine

func (c *Client) FindSaleOrderLine(criteria *Criteria) (*SaleOrderLine, error)

FindSaleOrderLine finds sale.order.line record by querying it with criteria.

func (*Client) FindSaleOrderLineId

func (c *Client) FindSaleOrderLineId(criteria *Criteria, options *Options) (int64, error)

FindSaleOrderLineId finds record id by querying it with criteria.

func (*Client) FindSaleOrderLineIds

func (c *Client) FindSaleOrderLineIds(criteria *Criteria, options *Options) ([]int64, error)

FindSaleOrderLineIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindSaleOrderLines

func (c *Client) FindSaleOrderLines(criteria *Criteria, options *Options) (*SaleOrderLines, error)

FindSaleOrderLines finds sale.order.line records by querying it and filtering it with criteria and options.

func (*Client) FindSaleOrderOption

func (c *Client) FindSaleOrderOption(criteria *Criteria) (*SaleOrderOption, error)

FindSaleOrderOption finds sale.order.option record by querying it with criteria.

func (*Client) FindSaleOrderOptionId

func (c *Client) FindSaleOrderOptionId(criteria *Criteria, options *Options) (int64, error)

FindSaleOrderOptionId finds record id by querying it with criteria.

func (*Client) FindSaleOrderOptionIds

func (c *Client) FindSaleOrderOptionIds(criteria *Criteria, options *Options) ([]int64, error)

FindSaleOrderOptionIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindSaleOrderOptions

func (c *Client) FindSaleOrderOptions(criteria *Criteria, options *Options) (*SaleOrderOptions, error)

FindSaleOrderOptions finds sale.order.option records by querying it and filtering it with criteria and options.

func (*Client) FindSaleOrderTemplate

func (c *Client) FindSaleOrderTemplate(criteria *Criteria) (*SaleOrderTemplate, error)

FindSaleOrderTemplate finds sale.order.template record by querying it with criteria.

func (*Client) FindSaleOrderTemplateId

func (c *Client) FindSaleOrderTemplateId(criteria *Criteria, options *Options) (int64, error)

FindSaleOrderTemplateId finds record id by querying it with criteria.

func (*Client) FindSaleOrderTemplateIds

func (c *Client) FindSaleOrderTemplateIds(criteria *Criteria, options *Options) ([]int64, error)

FindSaleOrderTemplateIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindSaleOrderTemplateLine

func (c *Client) FindSaleOrderTemplateLine(criteria *Criteria) (*SaleOrderTemplateLine, error)

FindSaleOrderTemplateLine finds sale.order.template.line record by querying it with criteria.

func (*Client) FindSaleOrderTemplateLineId

func (c *Client) FindSaleOrderTemplateLineId(criteria *Criteria, options *Options) (int64, error)

FindSaleOrderTemplateLineId finds record id by querying it with criteria.

func (*Client) FindSaleOrderTemplateLineIds

func (c *Client) FindSaleOrderTemplateLineIds(criteria *Criteria, options *Options) ([]int64, error)

FindSaleOrderTemplateLineIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindSaleOrderTemplateLines

func (c *Client) FindSaleOrderTemplateLines(criteria *Criteria, options *Options) (*SaleOrderTemplateLines, error)

FindSaleOrderTemplateLines finds sale.order.template.line records by querying it and filtering it with criteria and options.

func (*Client) FindSaleOrderTemplateOption

func (c *Client) FindSaleOrderTemplateOption(criteria *Criteria) (*SaleOrderTemplateOption, error)

FindSaleOrderTemplateOption finds sale.order.template.option record by querying it with criteria.

func (*Client) FindSaleOrderTemplateOptionId

func (c *Client) FindSaleOrderTemplateOptionId(criteria *Criteria, options *Options) (int64, error)

FindSaleOrderTemplateOptionId finds record id by querying it with criteria.

func (*Client) FindSaleOrderTemplateOptionIds

func (c *Client) FindSaleOrderTemplateOptionIds(criteria *Criteria, options *Options) ([]int64, error)

FindSaleOrderTemplateOptionIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindSaleOrderTemplateOptions

func (c *Client) FindSaleOrderTemplateOptions(criteria *Criteria, options *Options) (*SaleOrderTemplateOptions, error)

FindSaleOrderTemplateOptions finds sale.order.template.option records by querying it and filtering it with criteria and options.

func (*Client) FindSaleOrderTemplates

func (c *Client) FindSaleOrderTemplates(criteria *Criteria, options *Options) (*SaleOrderTemplates, error)

FindSaleOrderTemplates finds sale.order.template records by querying it and filtering it with criteria and options.

func (*Client) FindSaleOrders

func (c *Client) FindSaleOrders(criteria *Criteria, options *Options) (*SaleOrders, error)

FindSaleOrders finds sale.order records by querying it and filtering it with criteria and options.

func (*Client) FindSalePaymentAcquirerOnboardingWizard

func (c *Client) FindSalePaymentAcquirerOnboardingWizard(criteria *Criteria) (*SalePaymentAcquirerOnboardingWizard, error)

FindSalePaymentAcquirerOnboardingWizard finds sale.payment.acquirer.onboarding.wizard record by querying it with criteria.

func (*Client) FindSalePaymentAcquirerOnboardingWizardId

func (c *Client) FindSalePaymentAcquirerOnboardingWizardId(criteria *Criteria, options *Options) (int64, error)

FindSalePaymentAcquirerOnboardingWizardId finds record id by querying it with criteria.

func (*Client) FindSalePaymentAcquirerOnboardingWizardIds

func (c *Client) FindSalePaymentAcquirerOnboardingWizardIds(criteria *Criteria, options *Options) ([]int64, error)

FindSalePaymentAcquirerOnboardingWizardIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindSalePaymentAcquirerOnboardingWizards

func (c *Client) FindSalePaymentAcquirerOnboardingWizards(criteria *Criteria, options *Options) (*SalePaymentAcquirerOnboardingWizards, error)

FindSalePaymentAcquirerOnboardingWizards finds sale.payment.acquirer.onboarding.wizard records by querying it and filtering it with criteria and options.

func (*Client) FindSaleReport

func (c *Client) FindSaleReport(criteria *Criteria) (*SaleReport, error)

FindSaleReport finds sale.report record by querying it with criteria.

func (*Client) FindSaleReportId

func (c *Client) FindSaleReportId(criteria *Criteria, options *Options) (int64, error)

FindSaleReportId finds record id by querying it with criteria.

func (*Client) FindSaleReportIds

func (c *Client) FindSaleReportIds(criteria *Criteria, options *Options) ([]int64, error)

FindSaleReportIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindSaleReports

func (c *Client) FindSaleReports(criteria *Criteria, options *Options) (*SaleReports, error)

FindSaleReports finds sale.report records by querying it and filtering it with criteria and options.

func (*Client) FindSlideAnswer

func (c *Client) FindSlideAnswer(criteria *Criteria) (*SlideAnswer, error)

FindSlideAnswer finds slide.answer record by querying it with criteria.

func (*Client) FindSlideAnswerId

func (c *Client) FindSlideAnswerId(criteria *Criteria, options *Options) (int64, error)

FindSlideAnswerId finds record id by querying it with criteria.

func (*Client) FindSlideAnswerIds

func (c *Client) FindSlideAnswerIds(criteria *Criteria, options *Options) ([]int64, error)

FindSlideAnswerIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindSlideAnswerUsers

func (c *Client) FindSlideAnswerUsers(criteria *Criteria) (*SlideAnswerUsers, error)

FindSlideAnswerUsers finds slide.answer_users record by querying it with criteria.

func (*Client) FindSlideAnswerUsersId

func (c *Client) FindSlideAnswerUsersId(criteria *Criteria, options *Options) (int64, error)

FindSlideAnswerUsersId finds record id by querying it with criteria.

func (*Client) FindSlideAnswerUsersIds

func (c *Client) FindSlideAnswerUsersIds(criteria *Criteria, options *Options) ([]int64, error)

FindSlideAnswerUsersIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindSlideAnswerUserss

func (c *Client) FindSlideAnswerUserss(criteria *Criteria, options *Options) (*SlideAnswerUserss, error)

FindSlideAnswerUserss finds slide.answer_users records by querying it and filtering it with criteria and options.

func (*Client) FindSlideAnswers

func (c *Client) FindSlideAnswers(criteria *Criteria, options *Options) (*SlideAnswers, error)

FindSlideAnswers finds slide.answer records by querying it and filtering it with criteria and options.

func (*Client) FindSlideChannel

func (c *Client) FindSlideChannel(criteria *Criteria) (*SlideChannel, error)

FindSlideChannel finds slide.channel record by querying it with criteria.

func (*Client) FindSlideChannelId

func (c *Client) FindSlideChannelId(criteria *Criteria, options *Options) (int64, error)

FindSlideChannelId finds record id by querying it with criteria.

func (*Client) FindSlideChannelIds

func (c *Client) FindSlideChannelIds(criteria *Criteria, options *Options) ([]int64, error)

FindSlideChannelIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindSlideChannelInvite

func (c *Client) FindSlideChannelInvite(criteria *Criteria) (*SlideChannelInvite, error)

FindSlideChannelInvite finds slide.channel.invite record by querying it with criteria.

func (*Client) FindSlideChannelInviteId

func (c *Client) FindSlideChannelInviteId(criteria *Criteria, options *Options) (int64, error)

FindSlideChannelInviteId finds record id by querying it with criteria.

func (*Client) FindSlideChannelInviteIds

func (c *Client) FindSlideChannelInviteIds(criteria *Criteria, options *Options) ([]int64, error)

FindSlideChannelInviteIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindSlideChannelInvites

func (c *Client) FindSlideChannelInvites(criteria *Criteria, options *Options) (*SlideChannelInvites, error)

FindSlideChannelInvites finds slide.channel.invite records by querying it and filtering it with criteria and options.

func (*Client) FindSlideChannelPartner

func (c *Client) FindSlideChannelPartner(criteria *Criteria) (*SlideChannelPartner, error)

FindSlideChannelPartner finds slide.channel.partner record by querying it with criteria.

func (*Client) FindSlideChannelPartnerId

func (c *Client) FindSlideChannelPartnerId(criteria *Criteria, options *Options) (int64, error)

FindSlideChannelPartnerId finds record id by querying it with criteria.

func (*Client) FindSlideChannelPartnerIds

func (c *Client) FindSlideChannelPartnerIds(criteria *Criteria, options *Options) ([]int64, error)

FindSlideChannelPartnerIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindSlideChannelPartners

func (c *Client) FindSlideChannelPartners(criteria *Criteria, options *Options) (*SlideChannelPartners, error)

FindSlideChannelPartners finds slide.channel.partner records by querying it and filtering it with criteria and options.

func (*Client) FindSlideChannelPrices

func (c *Client) FindSlideChannelPrices(criteria *Criteria) (*SlideChannelPrices, error)

FindSlideChannelPrices finds slide.channel_prices record by querying it with criteria.

func (*Client) FindSlideChannelPricesId

func (c *Client) FindSlideChannelPricesId(criteria *Criteria, options *Options) (int64, error)

FindSlideChannelPricesId finds record id by querying it with criteria.

func (*Client) FindSlideChannelPricesIds

func (c *Client) FindSlideChannelPricesIds(criteria *Criteria, options *Options) ([]int64, error)

FindSlideChannelPricesIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindSlideChannelPricess

func (c *Client) FindSlideChannelPricess(criteria *Criteria, options *Options) (*SlideChannelPricess, error)

FindSlideChannelPricess finds slide.channel_prices records by querying it and filtering it with criteria and options.

func (*Client) FindSlideChannelSchedules

func (c *Client) FindSlideChannelSchedules(criteria *Criteria) (*SlideChannelSchedules, error)

FindSlideChannelSchedules finds slide.channel_schedules record by querying it with criteria.

func (*Client) FindSlideChannelSchedulesId

func (c *Client) FindSlideChannelSchedulesId(criteria *Criteria, options *Options) (int64, error)

FindSlideChannelSchedulesId finds record id by querying it with criteria.

func (*Client) FindSlideChannelSchedulesIds

func (c *Client) FindSlideChannelSchedulesIds(criteria *Criteria, options *Options) ([]int64, error)

FindSlideChannelSchedulesIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindSlideChannelScheduless

func (c *Client) FindSlideChannelScheduless(criteria *Criteria, options *Options) (*SlideChannelScheduless, error)

FindSlideChannelScheduless finds slide.channel_schedules records by querying it and filtering it with criteria and options.

func (*Client) FindSlideChannelSfcPrices

func (c *Client) FindSlideChannelSfcPrices(criteria *Criteria) (*SlideChannelSfcPrices, error)

FindSlideChannelSfcPrices finds slide.channel_sfc_prices record by querying it with criteria.

func (*Client) FindSlideChannelSfcPricesId

func (c *Client) FindSlideChannelSfcPricesId(criteria *Criteria, options *Options) (int64, error)

FindSlideChannelSfcPricesId finds record id by querying it with criteria.

func (*Client) FindSlideChannelSfcPricesIds

func (c *Client) FindSlideChannelSfcPricesIds(criteria *Criteria, options *Options) ([]int64, error)

FindSlideChannelSfcPricesIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindSlideChannelSfcPricess

func (c *Client) FindSlideChannelSfcPricess(criteria *Criteria, options *Options) (*SlideChannelSfcPricess, error)

FindSlideChannelSfcPricess finds slide.channel_sfc_prices records by querying it and filtering it with criteria and options.

func (*Client) FindSlideChannelTag

func (c *Client) FindSlideChannelTag(criteria *Criteria) (*SlideChannelTag, error)

FindSlideChannelTag finds slide.channel.tag record by querying it with criteria.

func (*Client) FindSlideChannelTagGroup

func (c *Client) FindSlideChannelTagGroup(criteria *Criteria) (*SlideChannelTagGroup, error)

FindSlideChannelTagGroup finds slide.channel.tag.group record by querying it with criteria.

func (*Client) FindSlideChannelTagGroupId

func (c *Client) FindSlideChannelTagGroupId(criteria *Criteria, options *Options) (int64, error)

FindSlideChannelTagGroupId finds record id by querying it with criteria.

func (*Client) FindSlideChannelTagGroupIds

func (c *Client) FindSlideChannelTagGroupIds(criteria *Criteria, options *Options) ([]int64, error)

FindSlideChannelTagGroupIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindSlideChannelTagGroups

func (c *Client) FindSlideChannelTagGroups(criteria *Criteria, options *Options) (*SlideChannelTagGroups, error)

FindSlideChannelTagGroups finds slide.channel.tag.group records by querying it and filtering it with criteria and options.

func (*Client) FindSlideChannelTagId

func (c *Client) FindSlideChannelTagId(criteria *Criteria, options *Options) (int64, error)

FindSlideChannelTagId finds record id by querying it with criteria.

func (*Client) FindSlideChannelTagIds

func (c *Client) FindSlideChannelTagIds(criteria *Criteria, options *Options) ([]int64, error)

FindSlideChannelTagIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindSlideChannelTags

func (c *Client) FindSlideChannelTags(criteria *Criteria, options *Options) (*SlideChannelTags, error)

FindSlideChannelTags finds slide.channel.tag records by querying it and filtering it with criteria and options.

func (*Client) FindSlideChannels

func (c *Client) FindSlideChannels(criteria *Criteria, options *Options) (*SlideChannels, error)

FindSlideChannels finds slide.channel records by querying it and filtering it with criteria and options.

func (*Client) FindSlideCourseType

func (c *Client) FindSlideCourseType(criteria *Criteria) (*SlideCourseType, error)

FindSlideCourseType finds slide.course_type record by querying it with criteria.

func (*Client) FindSlideCourseTypeId

func (c *Client) FindSlideCourseTypeId(criteria *Criteria, options *Options) (int64, error)

FindSlideCourseTypeId finds record id by querying it with criteria.

func (*Client) FindSlideCourseTypeIds

func (c *Client) FindSlideCourseTypeIds(criteria *Criteria, options *Options) ([]int64, error)

FindSlideCourseTypeIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindSlideCourseTypes

func (c *Client) FindSlideCourseTypes(criteria *Criteria, options *Options) (*SlideCourseTypes, error)

FindSlideCourseTypes finds slide.course_type records by querying it and filtering it with criteria and options.

func (*Client) FindSlideEmbed

func (c *Client) FindSlideEmbed(criteria *Criteria) (*SlideEmbed, error)

FindSlideEmbed finds slide.embed record by querying it with criteria.

func (*Client) FindSlideEmbedId

func (c *Client) FindSlideEmbedId(criteria *Criteria, options *Options) (int64, error)

FindSlideEmbedId finds record id by querying it with criteria.

func (*Client) FindSlideEmbedIds

func (c *Client) FindSlideEmbedIds(criteria *Criteria, options *Options) ([]int64, error)

FindSlideEmbedIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindSlideEmbeds

func (c *Client) FindSlideEmbeds(criteria *Criteria, options *Options) (*SlideEmbeds, error)

FindSlideEmbeds finds slide.embed records by querying it and filtering it with criteria and options.

func (*Client) FindSlideQuestion

func (c *Client) FindSlideQuestion(criteria *Criteria) (*SlideQuestion, error)

FindSlideQuestion finds slide.question record by querying it with criteria.

func (*Client) FindSlideQuestionId

func (c *Client) FindSlideQuestionId(criteria *Criteria, options *Options) (int64, error)

FindSlideQuestionId finds record id by querying it with criteria.

func (*Client) FindSlideQuestionIds

func (c *Client) FindSlideQuestionIds(criteria *Criteria, options *Options) ([]int64, error)

FindSlideQuestionIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindSlideQuestions

func (c *Client) FindSlideQuestions(criteria *Criteria, options *Options) (*SlideQuestions, error)

FindSlideQuestions finds slide.question records by querying it and filtering it with criteria and options.

func (*Client) FindSlideSlide

func (c *Client) FindSlideSlide(criteria *Criteria) (*SlideSlide, error)

FindSlideSlide finds slide.slide record by querying it with criteria.

func (*Client) FindSlideSlideAttachment

func (c *Client) FindSlideSlideAttachment(criteria *Criteria) (*SlideSlideAttachment, error)

FindSlideSlideAttachment finds slide.slide_attachment record by querying it with criteria.

func (*Client) FindSlideSlideAttachmentId

func (c *Client) FindSlideSlideAttachmentId(criteria *Criteria, options *Options) (int64, error)

FindSlideSlideAttachmentId finds record id by querying it with criteria.

func (*Client) FindSlideSlideAttachmentIds

func (c *Client) FindSlideSlideAttachmentIds(criteria *Criteria, options *Options) ([]int64, error)

FindSlideSlideAttachmentIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindSlideSlideAttachments

func (c *Client) FindSlideSlideAttachments(criteria *Criteria, options *Options) (*SlideSlideAttachments, error)

FindSlideSlideAttachments finds slide.slide_attachment records by querying it and filtering it with criteria and options.

func (*Client) FindSlideSlideId

func (c *Client) FindSlideSlideId(criteria *Criteria, options *Options) (int64, error)

FindSlideSlideId finds record id by querying it with criteria.

func (*Client) FindSlideSlideIds

func (c *Client) FindSlideSlideIds(criteria *Criteria, options *Options) ([]int64, error)

FindSlideSlideIds finds records ids by querying it and filtering it with criteria and options.

func (c *Client) FindSlideSlideLink(criteria *Criteria) (*SlideSlideLink, error)

FindSlideSlideLink finds slide.slide.link record by querying it with criteria.

func (*Client) FindSlideSlideLinkId

func (c *Client) FindSlideSlideLinkId(criteria *Criteria, options *Options) (int64, error)

FindSlideSlideLinkId finds record id by querying it with criteria.

func (*Client) FindSlideSlideLinkIds

func (c *Client) FindSlideSlideLinkIds(criteria *Criteria, options *Options) ([]int64, error)

FindSlideSlideLinkIds finds records ids by querying it and filtering it with criteria and options.

func (c *Client) FindSlideSlideLinks(criteria *Criteria, options *Options) (*SlideSlideLinks, error)

FindSlideSlideLinks finds slide.slide.link records by querying it and filtering it with criteria and options.

func (*Client) FindSlideSlidePartner

func (c *Client) FindSlideSlidePartner(criteria *Criteria) (*SlideSlidePartner, error)

FindSlideSlidePartner finds slide.slide.partner record by querying it with criteria.

func (*Client) FindSlideSlidePartnerId

func (c *Client) FindSlideSlidePartnerId(criteria *Criteria, options *Options) (int64, error)

FindSlideSlidePartnerId finds record id by querying it with criteria.

func (*Client) FindSlideSlidePartnerIds

func (c *Client) FindSlideSlidePartnerIds(criteria *Criteria, options *Options) ([]int64, error)

FindSlideSlidePartnerIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindSlideSlidePartners

func (c *Client) FindSlideSlidePartners(criteria *Criteria, options *Options) (*SlideSlidePartners, error)

FindSlideSlidePartners finds slide.slide.partner records by querying it and filtering it with criteria and options.

func (*Client) FindSlideSlideSchedule

func (c *Client) FindSlideSlideSchedule(criteria *Criteria) (*SlideSlideSchedule, error)

FindSlideSlideSchedule finds slide.slide_schedule record by querying it with criteria.

func (*Client) FindSlideSlideScheduleId

func (c *Client) FindSlideSlideScheduleId(criteria *Criteria, options *Options) (int64, error)

FindSlideSlideScheduleId finds record id by querying it with criteria.

func (*Client) FindSlideSlideScheduleIds

func (c *Client) FindSlideSlideScheduleIds(criteria *Criteria, options *Options) ([]int64, error)

FindSlideSlideScheduleIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindSlideSlideSchedules

func (c *Client) FindSlideSlideSchedules(criteria *Criteria, options *Options) (*SlideSlideSchedules, error)

FindSlideSlideSchedules finds slide.slide_schedule records by querying it and filtering it with criteria and options.

func (*Client) FindSlideSlides

func (c *Client) FindSlideSlides(criteria *Criteria, options *Options) (*SlideSlides, error)

FindSlideSlides finds slide.slide records by querying it and filtering it with criteria and options.

func (*Client) FindSlideTag

func (c *Client) FindSlideTag(criteria *Criteria) (*SlideTag, error)

FindSlideTag finds slide.tag record by querying it with criteria.

func (*Client) FindSlideTagId

func (c *Client) FindSlideTagId(criteria *Criteria, options *Options) (int64, error)

FindSlideTagId finds record id by querying it with criteria.

func (*Client) FindSlideTagIds

func (c *Client) FindSlideTagIds(criteria *Criteria, options *Options) ([]int64, error)

FindSlideTagIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindSlideTags

func (c *Client) FindSlideTags(criteria *Criteria, options *Options) (*SlideTags, error)

FindSlideTags finds slide.tag records by querying it and filtering it with criteria and options.

func (*Client) FindSmsApi

func (c *Client) FindSmsApi(criteria *Criteria) (*SmsApi, error)

FindSmsApi finds sms.api record by querying it with criteria.

func (*Client) FindSmsApiId

func (c *Client) FindSmsApiId(criteria *Criteria, options *Options) (int64, error)

FindSmsApiId finds record id by querying it with criteria.

func (*Client) FindSmsApiIds

func (c *Client) FindSmsApiIds(criteria *Criteria, options *Options) ([]int64, error)

FindSmsApiIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindSmsApis

func (c *Client) FindSmsApis(criteria *Criteria, options *Options) (*SmsApis, error)

FindSmsApis finds sms.api records by querying it and filtering it with criteria and options.

func (*Client) FindSmsCancel

func (c *Client) FindSmsCancel(criteria *Criteria) (*SmsCancel, error)

FindSmsCancel finds sms.cancel record by querying it with criteria.

func (*Client) FindSmsCancelId

func (c *Client) FindSmsCancelId(criteria *Criteria, options *Options) (int64, error)

FindSmsCancelId finds record id by querying it with criteria.

func (*Client) FindSmsCancelIds

func (c *Client) FindSmsCancelIds(criteria *Criteria, options *Options) ([]int64, error)

FindSmsCancelIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindSmsCancels

func (c *Client) FindSmsCancels(criteria *Criteria, options *Options) (*SmsCancels, error)

FindSmsCancels finds sms.cancel records by querying it and filtering it with criteria and options.

func (*Client) FindSmsComposer

func (c *Client) FindSmsComposer(criteria *Criteria) (*SmsComposer, error)

FindSmsComposer finds sms.composer record by querying it with criteria.

func (*Client) FindSmsComposerId

func (c *Client) FindSmsComposerId(criteria *Criteria, options *Options) (int64, error)

FindSmsComposerId finds record id by querying it with criteria.

func (*Client) FindSmsComposerIds

func (c *Client) FindSmsComposerIds(criteria *Criteria, options *Options) ([]int64, error)

FindSmsComposerIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindSmsComposers

func (c *Client) FindSmsComposers(criteria *Criteria, options *Options) (*SmsComposers, error)

FindSmsComposers finds sms.composer records by querying it and filtering it with criteria and options.

func (*Client) FindSmsResend

func (c *Client) FindSmsResend(criteria *Criteria) (*SmsResend, error)

FindSmsResend finds sms.resend record by querying it with criteria.

func (*Client) FindSmsResendId

func (c *Client) FindSmsResendId(criteria *Criteria, options *Options) (int64, error)

FindSmsResendId finds record id by querying it with criteria.

func (*Client) FindSmsResendIds

func (c *Client) FindSmsResendIds(criteria *Criteria, options *Options) ([]int64, error)

FindSmsResendIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindSmsResendRecipient

func (c *Client) FindSmsResendRecipient(criteria *Criteria) (*SmsResendRecipient, error)

FindSmsResendRecipient finds sms.resend.recipient record by querying it with criteria.

func (*Client) FindSmsResendRecipientId

func (c *Client) FindSmsResendRecipientId(criteria *Criteria, options *Options) (int64, error)

FindSmsResendRecipientId finds record id by querying it with criteria.

func (*Client) FindSmsResendRecipientIds

func (c *Client) FindSmsResendRecipientIds(criteria *Criteria, options *Options) ([]int64, error)

FindSmsResendRecipientIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindSmsResendRecipients

func (c *Client) FindSmsResendRecipients(criteria *Criteria, options *Options) (*SmsResendRecipients, error)

FindSmsResendRecipients finds sms.resend.recipient records by querying it and filtering it with criteria and options.

func (*Client) FindSmsResends

func (c *Client) FindSmsResends(criteria *Criteria, options *Options) (*SmsResends, error)

FindSmsResends finds sms.resend records by querying it and filtering it with criteria and options.

func (*Client) FindSmsSms

func (c *Client) FindSmsSms(criteria *Criteria) (*SmsSms, error)

FindSmsSms finds sms.sms record by querying it with criteria.

func (*Client) FindSmsSmsId

func (c *Client) FindSmsSmsId(criteria *Criteria, options *Options) (int64, error)

FindSmsSmsId finds record id by querying it with criteria.

func (*Client) FindSmsSmsIds

func (c *Client) FindSmsSmsIds(criteria *Criteria, options *Options) ([]int64, error)

FindSmsSmsIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindSmsSmss

func (c *Client) FindSmsSmss(criteria *Criteria, options *Options) (*SmsSmss, error)

FindSmsSmss finds sms.sms records by querying it and filtering it with criteria and options.

func (*Client) FindSmsTemplate

func (c *Client) FindSmsTemplate(criteria *Criteria) (*SmsTemplate, error)

FindSmsTemplate finds sms.template record by querying it with criteria.

func (*Client) FindSmsTemplateId

func (c *Client) FindSmsTemplateId(criteria *Criteria, options *Options) (int64, error)

FindSmsTemplateId finds record id by querying it with criteria.

func (*Client) FindSmsTemplateIds

func (c *Client) FindSmsTemplateIds(criteria *Criteria, options *Options) ([]int64, error)

FindSmsTemplateIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindSmsTemplatePreview

func (c *Client) FindSmsTemplatePreview(criteria *Criteria) (*SmsTemplatePreview, error)

FindSmsTemplatePreview finds sms.template.preview record by querying it with criteria.

func (*Client) FindSmsTemplatePreviewId

func (c *Client) FindSmsTemplatePreviewId(criteria *Criteria, options *Options) (int64, error)

FindSmsTemplatePreviewId finds record id by querying it with criteria.

func (*Client) FindSmsTemplatePreviewIds

func (c *Client) FindSmsTemplatePreviewIds(criteria *Criteria, options *Options) ([]int64, error)

FindSmsTemplatePreviewIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindSmsTemplatePreviews

func (c *Client) FindSmsTemplatePreviews(criteria *Criteria, options *Options) (*SmsTemplatePreviews, error)

FindSmsTemplatePreviews finds sms.template.preview records by querying it and filtering it with criteria and options.

func (*Client) FindSmsTemplates

func (c *Client) FindSmsTemplates(criteria *Criteria, options *Options) (*SmsTemplates, error)

FindSmsTemplates finds sms.template records by querying it and filtering it with criteria and options.

func (*Client) FindSnailmailLetter

func (c *Client) FindSnailmailLetter(criteria *Criteria) (*SnailmailLetter, error)

FindSnailmailLetter finds snailmail.letter record by querying it with criteria.

func (*Client) FindSnailmailLetterCancel

func (c *Client) FindSnailmailLetterCancel(criteria *Criteria) (*SnailmailLetterCancel, error)

FindSnailmailLetterCancel finds snailmail.letter.cancel record by querying it with criteria.

func (*Client) FindSnailmailLetterCancelId

func (c *Client) FindSnailmailLetterCancelId(criteria *Criteria, options *Options) (int64, error)

FindSnailmailLetterCancelId finds record id by querying it with criteria.

func (*Client) FindSnailmailLetterCancelIds

func (c *Client) FindSnailmailLetterCancelIds(criteria *Criteria, options *Options) ([]int64, error)

FindSnailmailLetterCancelIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindSnailmailLetterCancels

func (c *Client) FindSnailmailLetterCancels(criteria *Criteria, options *Options) (*SnailmailLetterCancels, error)

FindSnailmailLetterCancels finds snailmail.letter.cancel records by querying it and filtering it with criteria and options.

func (*Client) FindSnailmailLetterFormatError

func (c *Client) FindSnailmailLetterFormatError(criteria *Criteria) (*SnailmailLetterFormatError, error)

FindSnailmailLetterFormatError finds snailmail.letter.format.error record by querying it with criteria.

func (*Client) FindSnailmailLetterFormatErrorId

func (c *Client) FindSnailmailLetterFormatErrorId(criteria *Criteria, options *Options) (int64, error)

FindSnailmailLetterFormatErrorId finds record id by querying it with criteria.

func (*Client) FindSnailmailLetterFormatErrorIds

func (c *Client) FindSnailmailLetterFormatErrorIds(criteria *Criteria, options *Options) ([]int64, error)

FindSnailmailLetterFormatErrorIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindSnailmailLetterFormatErrors

func (c *Client) FindSnailmailLetterFormatErrors(criteria *Criteria, options *Options) (*SnailmailLetterFormatErrors, error)

FindSnailmailLetterFormatErrors finds snailmail.letter.format.error records by querying it and filtering it with criteria and options.

func (*Client) FindSnailmailLetterId

func (c *Client) FindSnailmailLetterId(criteria *Criteria, options *Options) (int64, error)

FindSnailmailLetterId finds record id by querying it with criteria.

func (*Client) FindSnailmailLetterIds

func (c *Client) FindSnailmailLetterIds(criteria *Criteria, options *Options) ([]int64, error)

FindSnailmailLetterIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindSnailmailLetterMissingRequiredFields

func (c *Client) FindSnailmailLetterMissingRequiredFields(criteria *Criteria) (*SnailmailLetterMissingRequiredFields, error)

FindSnailmailLetterMissingRequiredFields finds snailmail.letter.missing.required.fields record by querying it with criteria.

func (*Client) FindSnailmailLetterMissingRequiredFieldsId

func (c *Client) FindSnailmailLetterMissingRequiredFieldsId(criteria *Criteria, options *Options) (int64, error)

FindSnailmailLetterMissingRequiredFieldsId finds record id by querying it with criteria.

func (*Client) FindSnailmailLetterMissingRequiredFieldsIds

func (c *Client) FindSnailmailLetterMissingRequiredFieldsIds(criteria *Criteria, options *Options) ([]int64, error)

FindSnailmailLetterMissingRequiredFieldsIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindSnailmailLetterMissingRequiredFieldss

func (c *Client) FindSnailmailLetterMissingRequiredFieldss(criteria *Criteria, options *Options) (*SnailmailLetterMissingRequiredFieldss, error)

FindSnailmailLetterMissingRequiredFieldss finds snailmail.letter.missing.required.fields records by querying it and filtering it with criteria and options.

func (*Client) FindSnailmailLetters

func (c *Client) FindSnailmailLetters(criteria *Criteria, options *Options) (*SnailmailLetters, error)

FindSnailmailLetters finds snailmail.letter records by querying it and filtering it with criteria and options.

func (*Client) FindSurveyInvite

func (c *Client) FindSurveyInvite(criteria *Criteria) (*SurveyInvite, error)

FindSurveyInvite finds survey.invite record by querying it with criteria.

func (*Client) FindSurveyInviteId

func (c *Client) FindSurveyInviteId(criteria *Criteria, options *Options) (int64, error)

FindSurveyInviteId finds record id by querying it with criteria.

func (*Client) FindSurveyInviteIds

func (c *Client) FindSurveyInviteIds(criteria *Criteria, options *Options) ([]int64, error)

FindSurveyInviteIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindSurveyInvites

func (c *Client) FindSurveyInvites(criteria *Criteria, options *Options) (*SurveyInvites, error)

FindSurveyInvites finds survey.invite records by querying it and filtering it with criteria and options.

func (*Client) FindSurveyLabel

func (c *Client) FindSurveyLabel(criteria *Criteria) (*SurveyLabel, error)

FindSurveyLabel finds survey.label record by querying it with criteria.

func (*Client) FindSurveyLabelId

func (c *Client) FindSurveyLabelId(criteria *Criteria, options *Options) (int64, error)

FindSurveyLabelId finds record id by querying it with criteria.

func (*Client) FindSurveyLabelIds

func (c *Client) FindSurveyLabelIds(criteria *Criteria, options *Options) ([]int64, error)

FindSurveyLabelIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindSurveyLabels

func (c *Client) FindSurveyLabels(criteria *Criteria, options *Options) (*SurveyLabels, error)

FindSurveyLabels finds survey.label records by querying it and filtering it with criteria and options.

func (*Client) FindSurveyQuestion

func (c *Client) FindSurveyQuestion(criteria *Criteria) (*SurveyQuestion, error)

FindSurveyQuestion finds survey.question record by querying it with criteria.

func (*Client) FindSurveyQuestionId

func (c *Client) FindSurveyQuestionId(criteria *Criteria, options *Options) (int64, error)

FindSurveyQuestionId finds record id by querying it with criteria.

func (*Client) FindSurveyQuestionIds

func (c *Client) FindSurveyQuestionIds(criteria *Criteria, options *Options) ([]int64, error)

FindSurveyQuestionIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindSurveyQuestions

func (c *Client) FindSurveyQuestions(criteria *Criteria, options *Options) (*SurveyQuestions, error)

FindSurveyQuestions finds survey.question records by querying it and filtering it with criteria and options.

func (*Client) FindSurveySurvey

func (c *Client) FindSurveySurvey(criteria *Criteria) (*SurveySurvey, error)

FindSurveySurvey finds survey.survey record by querying it with criteria.

func (*Client) FindSurveySurveyId

func (c *Client) FindSurveySurveyId(criteria *Criteria, options *Options) (int64, error)

FindSurveySurveyId finds record id by querying it with criteria.

func (*Client) FindSurveySurveyIds

func (c *Client) FindSurveySurveyIds(criteria *Criteria, options *Options) ([]int64, error)

FindSurveySurveyIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindSurveySurveys

func (c *Client) FindSurveySurveys(criteria *Criteria, options *Options) (*SurveySurveys, error)

FindSurveySurveys finds survey.survey records by querying it and filtering it with criteria and options.

func (*Client) FindSurveyUserInput

func (c *Client) FindSurveyUserInput(criteria *Criteria) (*SurveyUserInput, error)

FindSurveyUserInput finds survey.user_input record by querying it with criteria.

func (*Client) FindSurveyUserInputId

func (c *Client) FindSurveyUserInputId(criteria *Criteria, options *Options) (int64, error)

FindSurveyUserInputId finds record id by querying it with criteria.

func (*Client) FindSurveyUserInputIds

func (c *Client) FindSurveyUserInputIds(criteria *Criteria, options *Options) ([]int64, error)

FindSurveyUserInputIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindSurveyUserInputLine

func (c *Client) FindSurveyUserInputLine(criteria *Criteria) (*SurveyUserInputLine, error)

FindSurveyUserInputLine finds survey.user_input_line record by querying it with criteria.

func (*Client) FindSurveyUserInputLineId

func (c *Client) FindSurveyUserInputLineId(criteria *Criteria, options *Options) (int64, error)

FindSurveyUserInputLineId finds record id by querying it with criteria.

func (*Client) FindSurveyUserInputLineIds

func (c *Client) FindSurveyUserInputLineIds(criteria *Criteria, options *Options) ([]int64, error)

FindSurveyUserInputLineIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindSurveyUserInputLines

func (c *Client) FindSurveyUserInputLines(criteria *Criteria, options *Options) (*SurveyUserInputLines, error)

FindSurveyUserInputLines finds survey.user_input_line records by querying it and filtering it with criteria and options.

func (*Client) FindSurveyUserInputs

func (c *Client) FindSurveyUserInputs(criteria *Criteria, options *Options) (*SurveyUserInputs, error)

FindSurveyUserInputs finds survey.user_input records by querying it and filtering it with criteria and options.

func (*Client) FindTaxAdjustmentsWizard

func (c *Client) FindTaxAdjustmentsWizard(criteria *Criteria) (*TaxAdjustmentsWizard, error)

FindTaxAdjustmentsWizard finds tax.adjustments.wizard record by querying it with criteria.

func (*Client) FindTaxAdjustmentsWizardId

func (c *Client) FindTaxAdjustmentsWizardId(criteria *Criteria, options *Options) (int64, error)

FindTaxAdjustmentsWizardId finds record id by querying it with criteria.

func (*Client) FindTaxAdjustmentsWizardIds

func (c *Client) FindTaxAdjustmentsWizardIds(criteria *Criteria, options *Options) ([]int64, error)

FindTaxAdjustmentsWizardIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindTaxAdjustmentsWizards

func (c *Client) FindTaxAdjustmentsWizards(criteria *Criteria, options *Options) (*TaxAdjustmentsWizards, error)

FindTaxAdjustmentsWizards finds tax.adjustments.wizard records by querying it and filtering it with criteria and options.

func (*Client) FindThemeIrAttachment

func (c *Client) FindThemeIrAttachment(criteria *Criteria) (*ThemeIrAttachment, error)

FindThemeIrAttachment finds theme.ir.attachment record by querying it with criteria.

func (*Client) FindThemeIrAttachmentId

func (c *Client) FindThemeIrAttachmentId(criteria *Criteria, options *Options) (int64, error)

FindThemeIrAttachmentId finds record id by querying it with criteria.

func (*Client) FindThemeIrAttachmentIds

func (c *Client) FindThemeIrAttachmentIds(criteria *Criteria, options *Options) ([]int64, error)

FindThemeIrAttachmentIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindThemeIrAttachments

func (c *Client) FindThemeIrAttachments(criteria *Criteria, options *Options) (*ThemeIrAttachments, error)

FindThemeIrAttachments finds theme.ir.attachment records by querying it and filtering it with criteria and options.

func (*Client) FindThemeIrUiView

func (c *Client) FindThemeIrUiView(criteria *Criteria) (*ThemeIrUiView, error)

FindThemeIrUiView finds theme.ir.ui.view record by querying it with criteria.

func (*Client) FindThemeIrUiViewId

func (c *Client) FindThemeIrUiViewId(criteria *Criteria, options *Options) (int64, error)

FindThemeIrUiViewId finds record id by querying it with criteria.

func (*Client) FindThemeIrUiViewIds

func (c *Client) FindThemeIrUiViewIds(criteria *Criteria, options *Options) ([]int64, error)

FindThemeIrUiViewIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindThemeIrUiViews

func (c *Client) FindThemeIrUiViews(criteria *Criteria, options *Options) (*ThemeIrUiViews, error)

FindThemeIrUiViews finds theme.ir.ui.view records by querying it and filtering it with criteria and options.

func (*Client) FindThemeUtils

func (c *Client) FindThemeUtils(criteria *Criteria) (*ThemeUtils, error)

FindThemeUtils finds theme.utils record by querying it with criteria.

func (*Client) FindThemeUtilsId

func (c *Client) FindThemeUtilsId(criteria *Criteria, options *Options) (int64, error)

FindThemeUtilsId finds record id by querying it with criteria.

func (*Client) FindThemeUtilsIds

func (c *Client) FindThemeUtilsIds(criteria *Criteria, options *Options) ([]int64, error)

FindThemeUtilsIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindThemeUtilss

func (c *Client) FindThemeUtilss(criteria *Criteria, options *Options) (*ThemeUtilss, error)

FindThemeUtilss finds theme.utils records by querying it and filtering it with criteria and options.

func (*Client) FindThemeWebsiteMenu

func (c *Client) FindThemeWebsiteMenu(criteria *Criteria) (*ThemeWebsiteMenu, error)

FindThemeWebsiteMenu finds theme.website.menu record by querying it with criteria.

func (*Client) FindThemeWebsiteMenuId

func (c *Client) FindThemeWebsiteMenuId(criteria *Criteria, options *Options) (int64, error)

FindThemeWebsiteMenuId finds record id by querying it with criteria.

func (*Client) FindThemeWebsiteMenuIds

func (c *Client) FindThemeWebsiteMenuIds(criteria *Criteria, options *Options) ([]int64, error)

FindThemeWebsiteMenuIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindThemeWebsiteMenus

func (c *Client) FindThemeWebsiteMenus(criteria *Criteria, options *Options) (*ThemeWebsiteMenus, error)

FindThemeWebsiteMenus finds theme.website.menu records by querying it and filtering it with criteria and options.

func (*Client) FindThemeWebsitePage

func (c *Client) FindThemeWebsitePage(criteria *Criteria) (*ThemeWebsitePage, error)

FindThemeWebsitePage finds theme.website.page record by querying it with criteria.

func (*Client) FindThemeWebsitePageId

func (c *Client) FindThemeWebsitePageId(criteria *Criteria, options *Options) (int64, error)

FindThemeWebsitePageId finds record id by querying it with criteria.

func (*Client) FindThemeWebsitePageIds

func (c *Client) FindThemeWebsitePageIds(criteria *Criteria, options *Options) ([]int64, error)

FindThemeWebsitePageIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindThemeWebsitePages

func (c *Client) FindThemeWebsitePages(criteria *Criteria, options *Options) (*ThemeWebsitePages, error)

FindThemeWebsitePages finds theme.website.page records by querying it and filtering it with criteria and options.

func (*Client) FindUomCategory

func (c *Client) FindUomCategory(criteria *Criteria) (*UomCategory, error)

FindUomCategory finds uom.category record by querying it with criteria.

func (*Client) FindUomCategoryId

func (c *Client) FindUomCategoryId(criteria *Criteria, options *Options) (int64, error)

FindUomCategoryId finds record id by querying it with criteria.

func (*Client) FindUomCategoryIds

func (c *Client) FindUomCategoryIds(criteria *Criteria, options *Options) ([]int64, error)

FindUomCategoryIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindUomCategorys

func (c *Client) FindUomCategorys(criteria *Criteria, options *Options) (*UomCategorys, error)

FindUomCategorys finds uom.category records by querying it and filtering it with criteria and options.

func (*Client) FindUomUom

func (c *Client) FindUomUom(criteria *Criteria) (*UomUom, error)

FindUomUom finds uom.uom record by querying it with criteria.

func (*Client) FindUomUomId

func (c *Client) FindUomUomId(criteria *Criteria, options *Options) (int64, error)

FindUomUomId finds record id by querying it with criteria.

func (*Client) FindUomUomIds

func (c *Client) FindUomUomIds(criteria *Criteria, options *Options) ([]int64, error)

FindUomUomIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindUomUoms

func (c *Client) FindUomUoms(criteria *Criteria, options *Options) (*UomUoms, error)

FindUomUoms finds uom.uom records by querying it and filtering it with criteria and options.

func (*Client) FindUserPayment

func (c *Client) FindUserPayment(criteria *Criteria) (*UserPayment, error)

FindUserPayment finds user.payment record by querying it with criteria.

func (*Client) FindUserPaymentId

func (c *Client) FindUserPaymentId(criteria *Criteria, options *Options) (int64, error)

FindUserPaymentId finds record id by querying it with criteria.

func (*Client) FindUserPaymentIds

func (c *Client) FindUserPaymentIds(criteria *Criteria, options *Options) ([]int64, error)

FindUserPaymentIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindUserPayments

func (c *Client) FindUserPayments(criteria *Criteria, options *Options) (*UserPayments, error)

FindUserPayments finds user.payment records by querying it and filtering it with criteria and options.

func (*Client) FindUserProfile

func (c *Client) FindUserProfile(criteria *Criteria) (*UserProfile, error)

FindUserProfile finds user.profile record by querying it with criteria.

func (*Client) FindUserProfileId

func (c *Client) FindUserProfileId(criteria *Criteria, options *Options) (int64, error)

FindUserProfileId finds record id by querying it with criteria.

func (*Client) FindUserProfileIds

func (c *Client) FindUserProfileIds(criteria *Criteria, options *Options) ([]int64, error)

FindUserProfileIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindUserProfiles

func (c *Client) FindUserProfiles(criteria *Criteria, options *Options) (*UserProfiles, error)

FindUserProfiles finds user.profile records by querying it and filtering it with criteria and options.

func (*Client) FindUtmCampaign

func (c *Client) FindUtmCampaign(criteria *Criteria) (*UtmCampaign, error)

FindUtmCampaign finds utm.campaign record by querying it with criteria.

func (*Client) FindUtmCampaignId

func (c *Client) FindUtmCampaignId(criteria *Criteria, options *Options) (int64, error)

FindUtmCampaignId finds record id by querying it with criteria.

func (*Client) FindUtmCampaignIds

func (c *Client) FindUtmCampaignIds(criteria *Criteria, options *Options) ([]int64, error)

FindUtmCampaignIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindUtmCampaigns

func (c *Client) FindUtmCampaigns(criteria *Criteria, options *Options) (*UtmCampaigns, error)

FindUtmCampaigns finds utm.campaign records by querying it and filtering it with criteria and options.

func (*Client) FindUtmMedium

func (c *Client) FindUtmMedium(criteria *Criteria) (*UtmMedium, error)

FindUtmMedium finds utm.medium record by querying it with criteria.

func (*Client) FindUtmMediumId

func (c *Client) FindUtmMediumId(criteria *Criteria, options *Options) (int64, error)

FindUtmMediumId finds record id by querying it with criteria.

func (*Client) FindUtmMediumIds

func (c *Client) FindUtmMediumIds(criteria *Criteria, options *Options) ([]int64, error)

FindUtmMediumIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindUtmMediums

func (c *Client) FindUtmMediums(criteria *Criteria, options *Options) (*UtmMediums, error)

FindUtmMediums finds utm.medium records by querying it and filtering it with criteria and options.

func (*Client) FindUtmMixin

func (c *Client) FindUtmMixin(criteria *Criteria) (*UtmMixin, error)

FindUtmMixin finds utm.mixin record by querying it with criteria.

func (*Client) FindUtmMixinId

func (c *Client) FindUtmMixinId(criteria *Criteria, options *Options) (int64, error)

FindUtmMixinId finds record id by querying it with criteria.

func (*Client) FindUtmMixinIds

func (c *Client) FindUtmMixinIds(criteria *Criteria, options *Options) ([]int64, error)

FindUtmMixinIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindUtmMixins

func (c *Client) FindUtmMixins(criteria *Criteria, options *Options) (*UtmMixins, error)

FindUtmMixins finds utm.mixin records by querying it and filtering it with criteria and options.

func (*Client) FindUtmSource

func (c *Client) FindUtmSource(criteria *Criteria) (*UtmSource, error)

FindUtmSource finds utm.source record by querying it with criteria.

func (*Client) FindUtmSourceId

func (c *Client) FindUtmSourceId(criteria *Criteria, options *Options) (int64, error)

FindUtmSourceId finds record id by querying it with criteria.

func (*Client) FindUtmSourceIds

func (c *Client) FindUtmSourceIds(criteria *Criteria, options *Options) ([]int64, error)

FindUtmSourceIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindUtmSources

func (c *Client) FindUtmSources(criteria *Criteria, options *Options) (*UtmSources, error)

FindUtmSources finds utm.source records by querying it and filtering it with criteria and options.

func (*Client) FindUtmStage

func (c *Client) FindUtmStage(criteria *Criteria) (*UtmStage, error)

FindUtmStage finds utm.stage record by querying it with criteria.

func (*Client) FindUtmStageId

func (c *Client) FindUtmStageId(criteria *Criteria, options *Options) (int64, error)

FindUtmStageId finds record id by querying it with criteria.

func (*Client) FindUtmStageIds

func (c *Client) FindUtmStageIds(criteria *Criteria, options *Options) ([]int64, error)

FindUtmStageIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindUtmStages

func (c *Client) FindUtmStages(criteria *Criteria, options *Options) (*UtmStages, error)

FindUtmStages finds utm.stage records by querying it and filtering it with criteria and options.

func (*Client) FindUtmTag

func (c *Client) FindUtmTag(criteria *Criteria) (*UtmTag, error)

FindUtmTag finds utm.tag record by querying it with criteria.

func (*Client) FindUtmTagId

func (c *Client) FindUtmTagId(criteria *Criteria, options *Options) (int64, error)

FindUtmTagId finds record id by querying it with criteria.

func (*Client) FindUtmTagIds

func (c *Client) FindUtmTagIds(criteria *Criteria, options *Options) ([]int64, error)

FindUtmTagIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindUtmTags

func (c *Client) FindUtmTags(criteria *Criteria, options *Options) (*UtmTags, error)

FindUtmTags finds utm.tag records by querying it and filtering it with criteria and options.

func (*Client) FindValidateAccountMove

func (c *Client) FindValidateAccountMove(criteria *Criteria) (*ValidateAccountMove, error)

FindValidateAccountMove finds validate.account.move record by querying it with criteria.

func (*Client) FindValidateAccountMoveId

func (c *Client) FindValidateAccountMoveId(criteria *Criteria, options *Options) (int64, error)

FindValidateAccountMoveId finds record id by querying it with criteria.

func (*Client) FindValidateAccountMoveIds

func (c *Client) FindValidateAccountMoveIds(criteria *Criteria, options *Options) ([]int64, error)

FindValidateAccountMoveIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindValidateAccountMoves

func (c *Client) FindValidateAccountMoves(criteria *Criteria, options *Options) (*ValidateAccountMoves, error)

FindValidateAccountMoves finds validate.account.move records by querying it and filtering it with criteria and options.

func (*Client) FindWebEditorAssets

func (c *Client) FindWebEditorAssets(criteria *Criteria) (*WebEditorAssets, error)

FindWebEditorAssets finds web_editor.assets record by querying it with criteria.

func (*Client) FindWebEditorAssetsId

func (c *Client) FindWebEditorAssetsId(criteria *Criteria, options *Options) (int64, error)

FindWebEditorAssetsId finds record id by querying it with criteria.

func (*Client) FindWebEditorAssetsIds

func (c *Client) FindWebEditorAssetsIds(criteria *Criteria, options *Options) ([]int64, error)

FindWebEditorAssetsIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindWebEditorAssetss

func (c *Client) FindWebEditorAssetss(criteria *Criteria, options *Options) (*WebEditorAssetss, error)

FindWebEditorAssetss finds web_editor.assets records by querying it and filtering it with criteria and options.

func (*Client) FindWebEditorConverterTestSub

func (c *Client) FindWebEditorConverterTestSub(criteria *Criteria) (*WebEditorConverterTestSub, error)

FindWebEditorConverterTestSub finds web_editor.converter.test.sub record by querying it with criteria.

func (*Client) FindWebEditorConverterTestSubId

func (c *Client) FindWebEditorConverterTestSubId(criteria *Criteria, options *Options) (int64, error)

FindWebEditorConverterTestSubId finds record id by querying it with criteria.

func (*Client) FindWebEditorConverterTestSubIds

func (c *Client) FindWebEditorConverterTestSubIds(criteria *Criteria, options *Options) ([]int64, error)

FindWebEditorConverterTestSubIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindWebEditorConverterTestSubs

func (c *Client) FindWebEditorConverterTestSubs(criteria *Criteria, options *Options) (*WebEditorConverterTestSubs, error)

FindWebEditorConverterTestSubs finds web_editor.converter.test.sub records by querying it and filtering it with criteria and options.

func (*Client) FindWebTourTour

func (c *Client) FindWebTourTour(criteria *Criteria) (*WebTourTour, error)

FindWebTourTour finds web_tour.tour record by querying it with criteria.

func (*Client) FindWebTourTourId

func (c *Client) FindWebTourTourId(criteria *Criteria, options *Options) (int64, error)

FindWebTourTourId finds record id by querying it with criteria.

func (*Client) FindWebTourTourIds

func (c *Client) FindWebTourTourIds(criteria *Criteria, options *Options) ([]int64, error)

FindWebTourTourIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindWebTourTours

func (c *Client) FindWebTourTours(criteria *Criteria, options *Options) (*WebTourTours, error)

FindWebTourTours finds web_tour.tour records by querying it and filtering it with criteria and options.

func (*Client) FindWebsite

func (c *Client) FindWebsite(criteria *Criteria) (*Website, error)

FindWebsite finds website record by querying it with criteria.

func (*Client) FindWebsiteId

func (c *Client) FindWebsiteId(criteria *Criteria, options *Options) (int64, error)

FindWebsiteId finds record id by querying it with criteria.

func (*Client) FindWebsiteIds

func (c *Client) FindWebsiteIds(criteria *Criteria, options *Options) ([]int64, error)

FindWebsiteIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindWebsiteMassMailingPopup

func (c *Client) FindWebsiteMassMailingPopup(criteria *Criteria) (*WebsiteMassMailingPopup, error)

FindWebsiteMassMailingPopup finds website.mass_mailing.popup record by querying it with criteria.

func (*Client) FindWebsiteMassMailingPopupId

func (c *Client) FindWebsiteMassMailingPopupId(criteria *Criteria, options *Options) (int64, error)

FindWebsiteMassMailingPopupId finds record id by querying it with criteria.

func (*Client) FindWebsiteMassMailingPopupIds

func (c *Client) FindWebsiteMassMailingPopupIds(criteria *Criteria, options *Options) ([]int64, error)

FindWebsiteMassMailingPopupIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindWebsiteMassMailingPopups

func (c *Client) FindWebsiteMassMailingPopups(criteria *Criteria, options *Options) (*WebsiteMassMailingPopups, error)

FindWebsiteMassMailingPopups finds website.mass_mailing.popup records by querying it and filtering it with criteria and options.

func (*Client) FindWebsiteMenu

func (c *Client) FindWebsiteMenu(criteria *Criteria) (*WebsiteMenu, error)

FindWebsiteMenu finds website.menu record by querying it with criteria.

func (*Client) FindWebsiteMenuId

func (c *Client) FindWebsiteMenuId(criteria *Criteria, options *Options) (int64, error)

FindWebsiteMenuId finds record id by querying it with criteria.

func (*Client) FindWebsiteMenuIds

func (c *Client) FindWebsiteMenuIds(criteria *Criteria, options *Options) ([]int64, error)

FindWebsiteMenuIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindWebsiteMenus

func (c *Client) FindWebsiteMenus(criteria *Criteria, options *Options) (*WebsiteMenus, error)

FindWebsiteMenus finds website.menu records by querying it and filtering it with criteria and options.

func (*Client) FindWebsiteMultiMixin

func (c *Client) FindWebsiteMultiMixin(criteria *Criteria) (*WebsiteMultiMixin, error)

FindWebsiteMultiMixin finds website.multi.mixin record by querying it with criteria.

func (*Client) FindWebsiteMultiMixinId

func (c *Client) FindWebsiteMultiMixinId(criteria *Criteria, options *Options) (int64, error)

FindWebsiteMultiMixinId finds record id by querying it with criteria.

func (*Client) FindWebsiteMultiMixinIds

func (c *Client) FindWebsiteMultiMixinIds(criteria *Criteria, options *Options) ([]int64, error)

FindWebsiteMultiMixinIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindWebsiteMultiMixins

func (c *Client) FindWebsiteMultiMixins(criteria *Criteria, options *Options) (*WebsiteMultiMixins, error)

FindWebsiteMultiMixins finds website.multi.mixin records by querying it and filtering it with criteria and options.

func (*Client) FindWebsitePage

func (c *Client) FindWebsitePage(criteria *Criteria) (*WebsitePage, error)

FindWebsitePage finds website.page record by querying it with criteria.

func (*Client) FindWebsitePageId

func (c *Client) FindWebsitePageId(criteria *Criteria, options *Options) (int64, error)

FindWebsitePageId finds record id by querying it with criteria.

func (*Client) FindWebsitePageIds

func (c *Client) FindWebsitePageIds(criteria *Criteria, options *Options) ([]int64, error)

FindWebsitePageIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindWebsitePages

func (c *Client) FindWebsitePages(criteria *Criteria, options *Options) (*WebsitePages, error)

FindWebsitePages finds website.page records by querying it and filtering it with criteria and options.

func (*Client) FindWebsitePublishedMixin

func (c *Client) FindWebsitePublishedMixin(criteria *Criteria) (*WebsitePublishedMixin, error)

FindWebsitePublishedMixin finds website.published.mixin record by querying it with criteria.

func (*Client) FindWebsitePublishedMixinId

func (c *Client) FindWebsitePublishedMixinId(criteria *Criteria, options *Options) (int64, error)

FindWebsitePublishedMixinId finds record id by querying it with criteria.

func (*Client) FindWebsitePublishedMixinIds

func (c *Client) FindWebsitePublishedMixinIds(criteria *Criteria, options *Options) ([]int64, error)

FindWebsitePublishedMixinIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindWebsitePublishedMixins

func (c *Client) FindWebsitePublishedMixins(criteria *Criteria, options *Options) (*WebsitePublishedMixins, error)

FindWebsitePublishedMixins finds website.published.mixin records by querying it and filtering it with criteria and options.

func (*Client) FindWebsitePublishedMultiMixin

func (c *Client) FindWebsitePublishedMultiMixin(criteria *Criteria) (*WebsitePublishedMultiMixin, error)

FindWebsitePublishedMultiMixin finds website.published.multi.mixin record by querying it with criteria.

func (*Client) FindWebsitePublishedMultiMixinId

func (c *Client) FindWebsitePublishedMultiMixinId(criteria *Criteria, options *Options) (int64, error)

FindWebsitePublishedMultiMixinId finds record id by querying it with criteria.

func (*Client) FindWebsitePublishedMultiMixinIds

func (c *Client) FindWebsitePublishedMultiMixinIds(criteria *Criteria, options *Options) ([]int64, error)

FindWebsitePublishedMultiMixinIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindWebsitePublishedMultiMixins

func (c *Client) FindWebsitePublishedMultiMixins(criteria *Criteria, options *Options) (*WebsitePublishedMultiMixins, error)

FindWebsitePublishedMultiMixins finds website.published.multi.mixin records by querying it and filtering it with criteria and options.

func (*Client) FindWebsiteRewrite

func (c *Client) FindWebsiteRewrite(criteria *Criteria) (*WebsiteRewrite, error)

FindWebsiteRewrite finds website.rewrite record by querying it with criteria.

func (*Client) FindWebsiteRewriteId

func (c *Client) FindWebsiteRewriteId(criteria *Criteria, options *Options) (int64, error)

FindWebsiteRewriteId finds record id by querying it with criteria.

func (*Client) FindWebsiteRewriteIds

func (c *Client) FindWebsiteRewriteIds(criteria *Criteria, options *Options) ([]int64, error)

FindWebsiteRewriteIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindWebsiteRewrites

func (c *Client) FindWebsiteRewrites(criteria *Criteria, options *Options) (*WebsiteRewrites, error)

FindWebsiteRewrites finds website.rewrite records by querying it and filtering it with criteria and options.

func (*Client) FindWebsiteRoute

func (c *Client) FindWebsiteRoute(criteria *Criteria) (*WebsiteRoute, error)

FindWebsiteRoute finds website.route record by querying it with criteria.

func (*Client) FindWebsiteRouteId

func (c *Client) FindWebsiteRouteId(criteria *Criteria, options *Options) (int64, error)

FindWebsiteRouteId finds record id by querying it with criteria.

func (*Client) FindWebsiteRouteIds

func (c *Client) FindWebsiteRouteIds(criteria *Criteria, options *Options) ([]int64, error)

FindWebsiteRouteIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindWebsiteRoutes

func (c *Client) FindWebsiteRoutes(criteria *Criteria, options *Options) (*WebsiteRoutes, error)

FindWebsiteRoutes finds website.route records by querying it and filtering it with criteria and options.

func (*Client) FindWebsiteSeoMetadata

func (c *Client) FindWebsiteSeoMetadata(criteria *Criteria) (*WebsiteSeoMetadata, error)

FindWebsiteSeoMetadata finds website.seo.metadata record by querying it with criteria.

func (*Client) FindWebsiteSeoMetadataId

func (c *Client) FindWebsiteSeoMetadataId(criteria *Criteria, options *Options) (int64, error)

FindWebsiteSeoMetadataId finds record id by querying it with criteria.

func (*Client) FindWebsiteSeoMetadataIds

func (c *Client) FindWebsiteSeoMetadataIds(criteria *Criteria, options *Options) ([]int64, error)

FindWebsiteSeoMetadataIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindWebsiteSeoMetadatas

func (c *Client) FindWebsiteSeoMetadatas(criteria *Criteria, options *Options) (*WebsiteSeoMetadatas, error)

FindWebsiteSeoMetadatas finds website.seo.metadata records by querying it and filtering it with criteria and options.

func (*Client) FindWebsiteTrack

func (c *Client) FindWebsiteTrack(criteria *Criteria) (*WebsiteTrack, error)

FindWebsiteTrack finds website.track record by querying it with criteria.

func (*Client) FindWebsiteTrackId

func (c *Client) FindWebsiteTrackId(criteria *Criteria, options *Options) (int64, error)

FindWebsiteTrackId finds record id by querying it with criteria.

func (*Client) FindWebsiteTrackIds

func (c *Client) FindWebsiteTrackIds(criteria *Criteria, options *Options) ([]int64, error)

FindWebsiteTrackIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindWebsiteTracks

func (c *Client) FindWebsiteTracks(criteria *Criteria, options *Options) (*WebsiteTracks, error)

FindWebsiteTracks finds website.track records by querying it and filtering it with criteria and options.

func (*Client) FindWebsiteVisitor

func (c *Client) FindWebsiteVisitor(criteria *Criteria) (*WebsiteVisitor, error)

FindWebsiteVisitor finds website.visitor record by querying it with criteria.

func (*Client) FindWebsiteVisitorId

func (c *Client) FindWebsiteVisitorId(criteria *Criteria, options *Options) (int64, error)

FindWebsiteVisitorId finds record id by querying it with criteria.

func (*Client) FindWebsiteVisitorIds

func (c *Client) FindWebsiteVisitorIds(criteria *Criteria, options *Options) ([]int64, error)

FindWebsiteVisitorIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindWebsiteVisitors

func (c *Client) FindWebsiteVisitors(criteria *Criteria, options *Options) (*WebsiteVisitors, error)

FindWebsiteVisitors finds website.visitor records by querying it and filtering it with criteria and options.

func (*Client) FindWebsites

func (c *Client) FindWebsites(criteria *Criteria, options *Options) (*Websites, error)

FindWebsites finds website records by querying it and filtering it with criteria and options.

func (*Client) FindWizardIrModelMenuCreate

func (c *Client) FindWizardIrModelMenuCreate(criteria *Criteria) (*WizardIrModelMenuCreate, error)

FindWizardIrModelMenuCreate finds wizard.ir.model.menu.create record by querying it with criteria.

func (*Client) FindWizardIrModelMenuCreateId

func (c *Client) FindWizardIrModelMenuCreateId(criteria *Criteria, options *Options) (int64, error)

FindWizardIrModelMenuCreateId finds record id by querying it with criteria.

func (*Client) FindWizardIrModelMenuCreateIds

func (c *Client) FindWizardIrModelMenuCreateIds(criteria *Criteria, options *Options) ([]int64, error)

FindWizardIrModelMenuCreateIds finds records ids by querying it and filtering it with criteria and options.

func (*Client) FindWizardIrModelMenuCreates

func (c *Client) FindWizardIrModelMenuCreates(criteria *Criteria, options *Options) (*WizardIrModelMenuCreates, error)

FindWizardIrModelMenuCreates finds wizard.ir.model.menu.create records by querying it and filtering it with criteria and options.

func (*Client) GetAccountAccount

func (c *Client) GetAccountAccount(id int64) (*AccountAccount, error)

GetAccountAccount gets account.account existing record.

func (*Client) GetAccountAccountTag

func (c *Client) GetAccountAccountTag(id int64) (*AccountAccountTag, error)

GetAccountAccountTag gets account.account.tag existing record.

func (*Client) GetAccountAccountTags

func (c *Client) GetAccountAccountTags(ids []int64) (*AccountAccountTags, error)

GetAccountAccountTags gets account.account.tag existing records.

func (*Client) GetAccountAccountTemplate

func (c *Client) GetAccountAccountTemplate(id int64) (*AccountAccountTemplate, error)

GetAccountAccountTemplate gets account.account.template existing record.

func (*Client) GetAccountAccountTemplates

func (c *Client) GetAccountAccountTemplates(ids []int64) (*AccountAccountTemplates, error)

GetAccountAccountTemplates gets account.account.template existing records.

func (*Client) GetAccountAccountType

func (c *Client) GetAccountAccountType(id int64) (*AccountAccountType, error)

GetAccountAccountType gets account.account.type existing record.

func (*Client) GetAccountAccountTypes

func (c *Client) GetAccountAccountTypes(ids []int64) (*AccountAccountTypes, error)

GetAccountAccountTypes gets account.account.type existing records.

func (*Client) GetAccountAccounts

func (c *Client) GetAccountAccounts(ids []int64) (*AccountAccounts, error)

GetAccountAccounts gets account.account existing records.

func (*Client) GetAccountAccrualAccountingWizard

func (c *Client) GetAccountAccrualAccountingWizard(id int64) (*AccountAccrualAccountingWizard, error)

GetAccountAccrualAccountingWizard gets account.accrual.accounting.wizard existing record.

func (*Client) GetAccountAccrualAccountingWizards

func (c *Client) GetAccountAccrualAccountingWizards(ids []int64) (*AccountAccrualAccountingWizards, error)

GetAccountAccrualAccountingWizards gets account.accrual.accounting.wizard existing records.

func (*Client) GetAccountAnalyticAccount

func (c *Client) GetAccountAnalyticAccount(id int64) (*AccountAnalyticAccount, error)

GetAccountAnalyticAccount gets account.analytic.account existing record.

func (*Client) GetAccountAnalyticAccounts

func (c *Client) GetAccountAnalyticAccounts(ids []int64) (*AccountAnalyticAccounts, error)

GetAccountAnalyticAccounts gets account.analytic.account existing records.

func (*Client) GetAccountAnalyticDistribution

func (c *Client) GetAccountAnalyticDistribution(id int64) (*AccountAnalyticDistribution, error)

GetAccountAnalyticDistribution gets account.analytic.distribution existing record.

func (*Client) GetAccountAnalyticDistributions

func (c *Client) GetAccountAnalyticDistributions(ids []int64) (*AccountAnalyticDistributions, error)

GetAccountAnalyticDistributions gets account.analytic.distribution existing records.

func (*Client) GetAccountAnalyticGroup

func (c *Client) GetAccountAnalyticGroup(id int64) (*AccountAnalyticGroup, error)

GetAccountAnalyticGroup gets account.analytic.group existing record.

func (*Client) GetAccountAnalyticGroups

func (c *Client) GetAccountAnalyticGroups(ids []int64) (*AccountAnalyticGroups, error)

GetAccountAnalyticGroups gets account.analytic.group existing records.

func (*Client) GetAccountAnalyticLine

func (c *Client) GetAccountAnalyticLine(id int64) (*AccountAnalyticLine, error)

GetAccountAnalyticLine gets account.analytic.line existing record.

func (*Client) GetAccountAnalyticLines

func (c *Client) GetAccountAnalyticLines(ids []int64) (*AccountAnalyticLines, error)

GetAccountAnalyticLines gets account.analytic.line existing records.

func (*Client) GetAccountAnalyticTag

func (c *Client) GetAccountAnalyticTag(id int64) (*AccountAnalyticTag, error)

GetAccountAnalyticTag gets account.analytic.tag existing record.

func (*Client) GetAccountAnalyticTags

func (c *Client) GetAccountAnalyticTags(ids []int64) (*AccountAnalyticTags, error)

GetAccountAnalyticTags gets account.analytic.tag existing records.

func (*Client) GetAccountBankStatement

func (c *Client) GetAccountBankStatement(id int64) (*AccountBankStatement, error)

GetAccountBankStatement gets account.bank.statement existing record.

func (*Client) GetAccountBankStatementCashbox

func (c *Client) GetAccountBankStatementCashbox(id int64) (*AccountBankStatementCashbox, error)

GetAccountBankStatementCashbox gets account.bank.statement.cashbox existing record.

func (*Client) GetAccountBankStatementCashboxs

func (c *Client) GetAccountBankStatementCashboxs(ids []int64) (*AccountBankStatementCashboxs, error)

GetAccountBankStatementCashboxs gets account.bank.statement.cashbox existing records.

func (*Client) GetAccountBankStatementClosebalance

func (c *Client) GetAccountBankStatementClosebalance(id int64) (*AccountBankStatementClosebalance, error)

GetAccountBankStatementClosebalance gets account.bank.statement.closebalance existing record.

func (*Client) GetAccountBankStatementClosebalances

func (c *Client) GetAccountBankStatementClosebalances(ids []int64) (*AccountBankStatementClosebalances, error)

GetAccountBankStatementClosebalances gets account.bank.statement.closebalance existing records.

func (*Client) GetAccountBankStatementImport

func (c *Client) GetAccountBankStatementImport(id int64) (*AccountBankStatementImport, error)

GetAccountBankStatementImport gets account.bank.statement.import existing record.

func (*Client) GetAccountBankStatementImportJournalCreation

func (c *Client) GetAccountBankStatementImportJournalCreation(id int64) (*AccountBankStatementImportJournalCreation, error)

GetAccountBankStatementImportJournalCreation gets account.bank.statement.import.journal.creation existing record.

func (*Client) GetAccountBankStatementImportJournalCreations

func (c *Client) GetAccountBankStatementImportJournalCreations(ids []int64) (*AccountBankStatementImportJournalCreations, error)

GetAccountBankStatementImportJournalCreations gets account.bank.statement.import.journal.creation existing records.

func (*Client) GetAccountBankStatementImports

func (c *Client) GetAccountBankStatementImports(ids []int64) (*AccountBankStatementImports, error)

GetAccountBankStatementImports gets account.bank.statement.import existing records.

func (*Client) GetAccountBankStatementLine

func (c *Client) GetAccountBankStatementLine(id int64) (*AccountBankStatementLine, error)

GetAccountBankStatementLine gets account.bank.statement.line existing record.

func (*Client) GetAccountBankStatementLines

func (c *Client) GetAccountBankStatementLines(ids []int64) (*AccountBankStatementLines, error)

GetAccountBankStatementLines gets account.bank.statement.line existing records.

func (*Client) GetAccountBankStatements

func (c *Client) GetAccountBankStatements(ids []int64) (*AccountBankStatements, error)

GetAccountBankStatements gets account.bank.statement existing records.

func (*Client) GetAccountCashRounding

func (c *Client) GetAccountCashRounding(id int64) (*AccountCashRounding, error)

GetAccountCashRounding gets account.cash.rounding existing record.

func (*Client) GetAccountCashRoundings

func (c *Client) GetAccountCashRoundings(ids []int64) (*AccountCashRoundings, error)

GetAccountCashRoundings gets account.cash.rounding existing records.

func (*Client) GetAccountCashboxLine

func (c *Client) GetAccountCashboxLine(id int64) (*AccountCashboxLine, error)

GetAccountCashboxLine gets account.cashbox.line existing record.

func (*Client) GetAccountCashboxLines

func (c *Client) GetAccountCashboxLines(ids []int64) (*AccountCashboxLines, error)

GetAccountCashboxLines gets account.cashbox.line existing records.

func (*Client) GetAccountChartTemplate

func (c *Client) GetAccountChartTemplate(id int64) (*AccountChartTemplate, error)

GetAccountChartTemplate gets account.chart.template existing record.

func (*Client) GetAccountChartTemplates

func (c *Client) GetAccountChartTemplates(ids []int64) (*AccountChartTemplates, error)

GetAccountChartTemplates gets account.chart.template existing records.

func (*Client) GetAccountCommonJournalReport

func (c *Client) GetAccountCommonJournalReport(id int64) (*AccountCommonJournalReport, error)

GetAccountCommonJournalReport gets account.common.journal.report existing record.

func (*Client) GetAccountCommonJournalReports

func (c *Client) GetAccountCommonJournalReports(ids []int64) (*AccountCommonJournalReports, error)

GetAccountCommonJournalReports gets account.common.journal.report existing records.

func (*Client) GetAccountCommonReport

func (c *Client) GetAccountCommonReport(id int64) (*AccountCommonReport, error)

GetAccountCommonReport gets account.common.report existing record.

func (*Client) GetAccountCommonReports

func (c *Client) GetAccountCommonReports(ids []int64) (*AccountCommonReports, error)

GetAccountCommonReports gets account.common.report existing records.

func (*Client) GetAccountFinancialYearOp

func (c *Client) GetAccountFinancialYearOp(id int64) (*AccountFinancialYearOp, error)

GetAccountFinancialYearOp gets account.financial.year.op existing record.

func (*Client) GetAccountFinancialYearOps

func (c *Client) GetAccountFinancialYearOps(ids []int64) (*AccountFinancialYearOps, error)

GetAccountFinancialYearOps gets account.financial.year.op existing records.

func (*Client) GetAccountFiscalPosition

func (c *Client) GetAccountFiscalPosition(id int64) (*AccountFiscalPosition, error)

GetAccountFiscalPosition gets account.fiscal.position existing record.

func (*Client) GetAccountFiscalPositionAccount

func (c *Client) GetAccountFiscalPositionAccount(id int64) (*AccountFiscalPositionAccount, error)

GetAccountFiscalPositionAccount gets account.fiscal.position.account existing record.

func (*Client) GetAccountFiscalPositionAccountTemplate

func (c *Client) GetAccountFiscalPositionAccountTemplate(id int64) (*AccountFiscalPositionAccountTemplate, error)

GetAccountFiscalPositionAccountTemplate gets account.fiscal.position.account.template existing record.

func (*Client) GetAccountFiscalPositionAccountTemplates

func (c *Client) GetAccountFiscalPositionAccountTemplates(ids []int64) (*AccountFiscalPositionAccountTemplates, error)

GetAccountFiscalPositionAccountTemplates gets account.fiscal.position.account.template existing records.

func (*Client) GetAccountFiscalPositionAccounts

func (c *Client) GetAccountFiscalPositionAccounts(ids []int64) (*AccountFiscalPositionAccounts, error)

GetAccountFiscalPositionAccounts gets account.fiscal.position.account existing records.

func (*Client) GetAccountFiscalPositionTax

func (c *Client) GetAccountFiscalPositionTax(id int64) (*AccountFiscalPositionTax, error)

GetAccountFiscalPositionTax gets account.fiscal.position.tax existing record.

func (*Client) GetAccountFiscalPositionTaxTemplate

func (c *Client) GetAccountFiscalPositionTaxTemplate(id int64) (*AccountFiscalPositionTaxTemplate, error)

GetAccountFiscalPositionTaxTemplate gets account.fiscal.position.tax.template existing record.

func (*Client) GetAccountFiscalPositionTaxTemplates

func (c *Client) GetAccountFiscalPositionTaxTemplates(ids []int64) (*AccountFiscalPositionTaxTemplates, error)

GetAccountFiscalPositionTaxTemplates gets account.fiscal.position.tax.template existing records.

func (*Client) GetAccountFiscalPositionTaxs

func (c *Client) GetAccountFiscalPositionTaxs(ids []int64) (*AccountFiscalPositionTaxs, error)

GetAccountFiscalPositionTaxs gets account.fiscal.position.tax existing records.

func (*Client) GetAccountFiscalPositionTemplate

func (c *Client) GetAccountFiscalPositionTemplate(id int64) (*AccountFiscalPositionTemplate, error)

GetAccountFiscalPositionTemplate gets account.fiscal.position.template existing record.

func (*Client) GetAccountFiscalPositionTemplates

func (c *Client) GetAccountFiscalPositionTemplates(ids []int64) (*AccountFiscalPositionTemplates, error)

GetAccountFiscalPositionTemplates gets account.fiscal.position.template existing records.

func (*Client) GetAccountFiscalPositions

func (c *Client) GetAccountFiscalPositions(ids []int64) (*AccountFiscalPositions, error)

GetAccountFiscalPositions gets account.fiscal.position existing records.

func (*Client) GetAccountFiscalYear

func (c *Client) GetAccountFiscalYear(id int64) (*AccountFiscalYear, error)

GetAccountFiscalYear gets account.fiscal.year existing record.

func (*Client) GetAccountFiscalYears

func (c *Client) GetAccountFiscalYears(ids []int64) (*AccountFiscalYears, error)

GetAccountFiscalYears gets account.fiscal.year existing records.

func (*Client) GetAccountFullReconcile

func (c *Client) GetAccountFullReconcile(id int64) (*AccountFullReconcile, error)

GetAccountFullReconcile gets account.full.reconcile existing record.

func (*Client) GetAccountFullReconciles

func (c *Client) GetAccountFullReconciles(ids []int64) (*AccountFullReconciles, error)

GetAccountFullReconciles gets account.full.reconcile existing records.

func (*Client) GetAccountGroup

func (c *Client) GetAccountGroup(id int64) (*AccountGroup, error)

GetAccountGroup gets account.group existing record.

func (*Client) GetAccountGroups

func (c *Client) GetAccountGroups(ids []int64) (*AccountGroups, error)

GetAccountGroups gets account.group existing records.

func (*Client) GetAccountIncoterms

func (c *Client) GetAccountIncoterms(id int64) (*AccountIncoterms, error)

GetAccountIncoterms gets account.incoterms existing record.

func (*Client) GetAccountIncotermss

func (c *Client) GetAccountIncotermss(ids []int64) (*AccountIncotermss, error)

GetAccountIncotermss gets account.incoterms existing records.

func (*Client) GetAccountInvoiceReport

func (c *Client) GetAccountInvoiceReport(id int64) (*AccountInvoiceReport, error)

GetAccountInvoiceReport gets account.invoice.report existing record.

func (*Client) GetAccountInvoiceReports

func (c *Client) GetAccountInvoiceReports(ids []int64) (*AccountInvoiceReports, error)

GetAccountInvoiceReports gets account.invoice.report existing records.

func (*Client) GetAccountInvoiceSend

func (c *Client) GetAccountInvoiceSend(id int64) (*AccountInvoiceSend, error)

GetAccountInvoiceSend gets account.invoice.send existing record.

func (*Client) GetAccountInvoiceSends

func (c *Client) GetAccountInvoiceSends(ids []int64) (*AccountInvoiceSends, error)

GetAccountInvoiceSends gets account.invoice.send existing records.

func (*Client) GetAccountJournal

func (c *Client) GetAccountJournal(id int64) (*AccountJournal, error)

GetAccountJournal gets account.journal existing record.

func (*Client) GetAccountJournalGroup

func (c *Client) GetAccountJournalGroup(id int64) (*AccountJournalGroup, error)

GetAccountJournalGroup gets account.journal.group existing record.

func (*Client) GetAccountJournalGroups

func (c *Client) GetAccountJournalGroups(ids []int64) (*AccountJournalGroups, error)

GetAccountJournalGroups gets account.journal.group existing records.

func (*Client) GetAccountJournals

func (c *Client) GetAccountJournals(ids []int64) (*AccountJournals, error)

GetAccountJournals gets account.journal existing records.

func (*Client) GetAccountMove

func (c *Client) GetAccountMove(id int64) (*AccountMove, error)

GetAccountMove gets account.move existing record.

func (*Client) GetAccountMoveLine

func (c *Client) GetAccountMoveLine(id int64) (*AccountMoveLine, error)

GetAccountMoveLine gets account.move.line existing record.

func (*Client) GetAccountMoveLines

func (c *Client) GetAccountMoveLines(ids []int64) (*AccountMoveLines, error)

GetAccountMoveLines gets account.move.line existing records.

func (*Client) GetAccountMoveReversal

func (c *Client) GetAccountMoveReversal(id int64) (*AccountMoveReversal, error)

GetAccountMoveReversal gets account.move.reversal existing record.

func (*Client) GetAccountMoveReversals

func (c *Client) GetAccountMoveReversals(ids []int64) (*AccountMoveReversals, error)

GetAccountMoveReversals gets account.move.reversal existing records.

func (*Client) GetAccountMoves

func (c *Client) GetAccountMoves(ids []int64) (*AccountMoves, error)

GetAccountMoves gets account.move existing records.

func (*Client) GetAccountPartialReconcile

func (c *Client) GetAccountPartialReconcile(id int64) (*AccountPartialReconcile, error)

GetAccountPartialReconcile gets account.partial.reconcile existing record.

func (*Client) GetAccountPartialReconciles

func (c *Client) GetAccountPartialReconciles(ids []int64) (*AccountPartialReconciles, error)

GetAccountPartialReconciles gets account.partial.reconcile existing records.

func (*Client) GetAccountPayment

func (c *Client) GetAccountPayment(id int64) (*AccountPayment, error)

GetAccountPayment gets account.payment existing record.

func (*Client) GetAccountPaymentMethod

func (c *Client) GetAccountPaymentMethod(id int64) (*AccountPaymentMethod, error)

GetAccountPaymentMethod gets account.payment.method existing record.

func (*Client) GetAccountPaymentMethods

func (c *Client) GetAccountPaymentMethods(ids []int64) (*AccountPaymentMethods, error)

GetAccountPaymentMethods gets account.payment.method existing records.

func (*Client) GetAccountPaymentRegister

func (c *Client) GetAccountPaymentRegister(id int64) (*AccountPaymentRegister, error)

GetAccountPaymentRegister gets account.payment.register existing record.

func (*Client) GetAccountPaymentRegisters

func (c *Client) GetAccountPaymentRegisters(ids []int64) (*AccountPaymentRegisters, error)

GetAccountPaymentRegisters gets account.payment.register existing records.

func (*Client) GetAccountPaymentTerm

func (c *Client) GetAccountPaymentTerm(id int64) (*AccountPaymentTerm, error)

GetAccountPaymentTerm gets account.payment.term existing record.

func (*Client) GetAccountPaymentTermLine

func (c *Client) GetAccountPaymentTermLine(id int64) (*AccountPaymentTermLine, error)

GetAccountPaymentTermLine gets account.payment.term.line existing record.

func (*Client) GetAccountPaymentTermLines

func (c *Client) GetAccountPaymentTermLines(ids []int64) (*AccountPaymentTermLines, error)

GetAccountPaymentTermLines gets account.payment.term.line existing records.

func (*Client) GetAccountPaymentTerms

func (c *Client) GetAccountPaymentTerms(ids []int64) (*AccountPaymentTerms, error)

GetAccountPaymentTerms gets account.payment.term existing records.

func (*Client) GetAccountPayments

func (c *Client) GetAccountPayments(ids []int64) (*AccountPayments, error)

GetAccountPayments gets account.payment existing records.

func (*Client) GetAccountPrintJournal

func (c *Client) GetAccountPrintJournal(id int64) (*AccountPrintJournal, error)

GetAccountPrintJournal gets account.print.journal existing record.

func (*Client) GetAccountPrintJournals

func (c *Client) GetAccountPrintJournals(ids []int64) (*AccountPrintJournals, error)

GetAccountPrintJournals gets account.print.journal existing records.

func (*Client) GetAccountReconcileModel

func (c *Client) GetAccountReconcileModel(id int64) (*AccountReconcileModel, error)

GetAccountReconcileModel gets account.reconcile.model existing record.

func (*Client) GetAccountReconcileModelTemplate

func (c *Client) GetAccountReconcileModelTemplate(id int64) (*AccountReconcileModelTemplate, error)

GetAccountReconcileModelTemplate gets account.reconcile.model.template existing record.

func (*Client) GetAccountReconcileModelTemplates

func (c *Client) GetAccountReconcileModelTemplates(ids []int64) (*AccountReconcileModelTemplates, error)

GetAccountReconcileModelTemplates gets account.reconcile.model.template existing records.

func (*Client) GetAccountReconcileModels

func (c *Client) GetAccountReconcileModels(ids []int64) (*AccountReconcileModels, error)

GetAccountReconcileModels gets account.reconcile.model existing records.

func (*Client) GetAccountReconciliationWidget

func (c *Client) GetAccountReconciliationWidget(id int64) (*AccountReconciliationWidget, error)

GetAccountReconciliationWidget gets account.reconciliation.widget existing record.

func (*Client) GetAccountReconciliationWidgets

func (c *Client) GetAccountReconciliationWidgets(ids []int64) (*AccountReconciliationWidgets, error)

GetAccountReconciliationWidgets gets account.reconciliation.widget existing records.

func (*Client) GetAccountRoot

func (c *Client) GetAccountRoot(id int64) (*AccountRoot, error)

GetAccountRoot gets account.root existing record.

func (*Client) GetAccountRoots

func (c *Client) GetAccountRoots(ids []int64) (*AccountRoots, error)

GetAccountRoots gets account.root existing records.

func (*Client) GetAccountSetupBankManualConfig

func (c *Client) GetAccountSetupBankManualConfig(id int64) (*AccountSetupBankManualConfig, error)

GetAccountSetupBankManualConfig gets account.setup.bank.manual.config existing record.

func (*Client) GetAccountSetupBankManualConfigs

func (c *Client) GetAccountSetupBankManualConfigs(ids []int64) (*AccountSetupBankManualConfigs, error)

GetAccountSetupBankManualConfigs gets account.setup.bank.manual.config existing records.

func (*Client) GetAccountTax

func (c *Client) GetAccountTax(id int64) (*AccountTax, error)

GetAccountTax gets account.tax existing record.

func (*Client) GetAccountTaxGroup

func (c *Client) GetAccountTaxGroup(id int64) (*AccountTaxGroup, error)

GetAccountTaxGroup gets account.tax.group existing record.

func (*Client) GetAccountTaxGroups

func (c *Client) GetAccountTaxGroups(ids []int64) (*AccountTaxGroups, error)

GetAccountTaxGroups gets account.tax.group existing records.

func (*Client) GetAccountTaxRepartitionLine

func (c *Client) GetAccountTaxRepartitionLine(id int64) (*AccountTaxRepartitionLine, error)

GetAccountTaxRepartitionLine gets account.tax.repartition.line existing record.

func (*Client) GetAccountTaxRepartitionLineTemplate

func (c *Client) GetAccountTaxRepartitionLineTemplate(id int64) (*AccountTaxRepartitionLineTemplate, error)

GetAccountTaxRepartitionLineTemplate gets account.tax.repartition.line.template existing record.

func (*Client) GetAccountTaxRepartitionLineTemplates

func (c *Client) GetAccountTaxRepartitionLineTemplates(ids []int64) (*AccountTaxRepartitionLineTemplates, error)

GetAccountTaxRepartitionLineTemplates gets account.tax.repartition.line.template existing records.

func (*Client) GetAccountTaxRepartitionLines

func (c *Client) GetAccountTaxRepartitionLines(ids []int64) (*AccountTaxRepartitionLines, error)

GetAccountTaxRepartitionLines gets account.tax.repartition.line existing records.

func (*Client) GetAccountTaxReportLine

func (c *Client) GetAccountTaxReportLine(id int64) (*AccountTaxReportLine, error)

GetAccountTaxReportLine gets account.tax.report.line existing record.

func (*Client) GetAccountTaxReportLines

func (c *Client) GetAccountTaxReportLines(ids []int64) (*AccountTaxReportLines, error)

GetAccountTaxReportLines gets account.tax.report.line existing records.

func (*Client) GetAccountTaxTemplate

func (c *Client) GetAccountTaxTemplate(id int64) (*AccountTaxTemplate, error)

GetAccountTaxTemplate gets account.tax.template existing record.

func (*Client) GetAccountTaxTemplates

func (c *Client) GetAccountTaxTemplates(ids []int64) (*AccountTaxTemplates, error)

GetAccountTaxTemplates gets account.tax.template existing records.

func (*Client) GetAccountTaxs

func (c *Client) GetAccountTaxs(ids []int64) (*AccountTaxs, error)

GetAccountTaxs gets account.tax existing records.

func (*Client) GetAccountUnreconcile

func (c *Client) GetAccountUnreconcile(id int64) (*AccountUnreconcile, error)

GetAccountUnreconcile gets account.unreconcile existing record.

func (*Client) GetAccountUnreconciles

func (c *Client) GetAccountUnreconciles(ids []int64) (*AccountUnreconciles, error)

GetAccountUnreconciles gets account.unreconcile existing records.

func (*Client) GetBarcodeNomenclature

func (c *Client) GetBarcodeNomenclature(id int64) (*BarcodeNomenclature, error)

GetBarcodeNomenclature gets barcode.nomenclature existing record.

func (*Client) GetBarcodeNomenclatures

func (c *Client) GetBarcodeNomenclatures(ids []int64) (*BarcodeNomenclatures, error)

GetBarcodeNomenclatures gets barcode.nomenclature existing records.

func (*Client) GetBarcodeRule

func (c *Client) GetBarcodeRule(id int64) (*BarcodeRule, error)

GetBarcodeRule gets barcode.rule existing record.

func (*Client) GetBarcodeRules

func (c *Client) GetBarcodeRules(ids []int64) (*BarcodeRules, error)

GetBarcodeRules gets barcode.rule existing records.

func (*Client) GetBarcodesBarcodeEventsMixin

func (c *Client) GetBarcodesBarcodeEventsMixin(id int64) (*BarcodesBarcodeEventsMixin, error)

GetBarcodesBarcodeEventsMixin gets barcodes.barcode_events_mixin existing record.

func (*Client) GetBarcodesBarcodeEventsMixins

func (c *Client) GetBarcodesBarcodeEventsMixins(ids []int64) (*BarcodesBarcodeEventsMixins, error)

GetBarcodesBarcodeEventsMixins gets barcodes.barcode_events_mixin existing records.

func (*Client) GetBase

func (c *Client) GetBase(id int64) (*Base, error)

GetBase gets base existing record.

func (*Client) GetBaseDocumentLayout

func (c *Client) GetBaseDocumentLayout(id int64) (*BaseDocumentLayout, error)

GetBaseDocumentLayout gets base.document.layout existing record.

func (*Client) GetBaseDocumentLayouts

func (c *Client) GetBaseDocumentLayouts(ids []int64) (*BaseDocumentLayouts, error)

GetBaseDocumentLayouts gets base.document.layout existing records.

func (*Client) GetBaseImportImport

func (c *Client) GetBaseImportImport(id int64) (*BaseImportImport, error)

GetBaseImportImport gets base_import.import existing record.

func (*Client) GetBaseImportImports

func (c *Client) GetBaseImportImports(ids []int64) (*BaseImportImports, error)

GetBaseImportImports gets base_import.import existing records.

func (*Client) GetBaseImportMapping

func (c *Client) GetBaseImportMapping(id int64) (*BaseImportMapping, error)

GetBaseImportMapping gets base_import.mapping existing record.

func (*Client) GetBaseImportMappings

func (c *Client) GetBaseImportMappings(ids []int64) (*BaseImportMappings, error)

GetBaseImportMappings gets base_import.mapping existing records.

func (*Client) GetBaseImportTestsModelsChar

func (c *Client) GetBaseImportTestsModelsChar(id int64) (*BaseImportTestsModelsChar, error)

GetBaseImportTestsModelsChar gets base_import.tests.models.char existing record.

func (*Client) GetBaseImportTestsModelsCharNoreadonly

func (c *Client) GetBaseImportTestsModelsCharNoreadonly(id int64) (*BaseImportTestsModelsCharNoreadonly, error)

GetBaseImportTestsModelsCharNoreadonly gets base_import.tests.models.char.noreadonly existing record.

func (*Client) GetBaseImportTestsModelsCharNoreadonlys

func (c *Client) GetBaseImportTestsModelsCharNoreadonlys(ids []int64) (*BaseImportTestsModelsCharNoreadonlys, error)

GetBaseImportTestsModelsCharNoreadonlys gets base_import.tests.models.char.noreadonly existing records.

func (*Client) GetBaseImportTestsModelsCharReadonly

func (c *Client) GetBaseImportTestsModelsCharReadonly(id int64) (*BaseImportTestsModelsCharReadonly, error)

GetBaseImportTestsModelsCharReadonly gets base_import.tests.models.char.readonly existing record.

func (*Client) GetBaseImportTestsModelsCharReadonlys

func (c *Client) GetBaseImportTestsModelsCharReadonlys(ids []int64) (*BaseImportTestsModelsCharReadonlys, error)

GetBaseImportTestsModelsCharReadonlys gets base_import.tests.models.char.readonly existing records.

func (*Client) GetBaseImportTestsModelsCharRequired

func (c *Client) GetBaseImportTestsModelsCharRequired(id int64) (*BaseImportTestsModelsCharRequired, error)

GetBaseImportTestsModelsCharRequired gets base_import.tests.models.char.required existing record.

func (*Client) GetBaseImportTestsModelsCharRequireds

func (c *Client) GetBaseImportTestsModelsCharRequireds(ids []int64) (*BaseImportTestsModelsCharRequireds, error)

GetBaseImportTestsModelsCharRequireds gets base_import.tests.models.char.required existing records.

func (*Client) GetBaseImportTestsModelsCharStates

func (c *Client) GetBaseImportTestsModelsCharStates(id int64) (*BaseImportTestsModelsCharStates, error)

GetBaseImportTestsModelsCharStates gets base_import.tests.models.char.states existing record.

func (*Client) GetBaseImportTestsModelsCharStatess

func (c *Client) GetBaseImportTestsModelsCharStatess(ids []int64) (*BaseImportTestsModelsCharStatess, error)

GetBaseImportTestsModelsCharStatess gets base_import.tests.models.char.states existing records.

func (*Client) GetBaseImportTestsModelsCharStillreadonly

func (c *Client) GetBaseImportTestsModelsCharStillreadonly(id int64) (*BaseImportTestsModelsCharStillreadonly, error)

GetBaseImportTestsModelsCharStillreadonly gets base_import.tests.models.char.stillreadonly existing record.

func (*Client) GetBaseImportTestsModelsCharStillreadonlys

func (c *Client) GetBaseImportTestsModelsCharStillreadonlys(ids []int64) (*BaseImportTestsModelsCharStillreadonlys, error)

GetBaseImportTestsModelsCharStillreadonlys gets base_import.tests.models.char.stillreadonly existing records.

func (*Client) GetBaseImportTestsModelsChars

func (c *Client) GetBaseImportTestsModelsChars(ids []int64) (*BaseImportTestsModelsChars, error)

GetBaseImportTestsModelsChars gets base_import.tests.models.char existing records.

func (*Client) GetBaseImportTestsModelsComplex

func (c *Client) GetBaseImportTestsModelsComplex(id int64) (*BaseImportTestsModelsComplex, error)

GetBaseImportTestsModelsComplex gets base_import.tests.models.complex existing record.

func (*Client) GetBaseImportTestsModelsComplexs

func (c *Client) GetBaseImportTestsModelsComplexs(ids []int64) (*BaseImportTestsModelsComplexs, error)

GetBaseImportTestsModelsComplexs gets base_import.tests.models.complex existing records.

func (*Client) GetBaseImportTestsModelsFloat

func (c *Client) GetBaseImportTestsModelsFloat(id int64) (*BaseImportTestsModelsFloat, error)

GetBaseImportTestsModelsFloat gets base_import.tests.models.float existing record.

func (*Client) GetBaseImportTestsModelsFloats

func (c *Client) GetBaseImportTestsModelsFloats(ids []int64) (*BaseImportTestsModelsFloats, error)

GetBaseImportTestsModelsFloats gets base_import.tests.models.float existing records.

func (*Client) GetBaseImportTestsModelsM2O

func (c *Client) GetBaseImportTestsModelsM2O(id int64) (*BaseImportTestsModelsM2O, error)

GetBaseImportTestsModelsM2O gets base_import.tests.models.m2o existing record.

func (*Client) GetBaseImportTestsModelsM2ORelated

func (c *Client) GetBaseImportTestsModelsM2ORelated(id int64) (*BaseImportTestsModelsM2ORelated, error)

GetBaseImportTestsModelsM2ORelated gets base_import.tests.models.m2o.related existing record.

func (*Client) GetBaseImportTestsModelsM2ORelateds

func (c *Client) GetBaseImportTestsModelsM2ORelateds(ids []int64) (*BaseImportTestsModelsM2ORelateds, error)

GetBaseImportTestsModelsM2ORelateds gets base_import.tests.models.m2o.related existing records.

func (*Client) GetBaseImportTestsModelsM2ORequired

func (c *Client) GetBaseImportTestsModelsM2ORequired(id int64) (*BaseImportTestsModelsM2ORequired, error)

GetBaseImportTestsModelsM2ORequired gets base_import.tests.models.m2o.required existing record.

func (*Client) GetBaseImportTestsModelsM2ORequiredRelated

func (c *Client) GetBaseImportTestsModelsM2ORequiredRelated(id int64) (*BaseImportTestsModelsM2ORequiredRelated, error)

GetBaseImportTestsModelsM2ORequiredRelated gets base_import.tests.models.m2o.required.related existing record.

func (*Client) GetBaseImportTestsModelsM2ORequiredRelateds

func (c *Client) GetBaseImportTestsModelsM2ORequiredRelateds(ids []int64) (*BaseImportTestsModelsM2ORequiredRelateds, error)

GetBaseImportTestsModelsM2ORequiredRelateds gets base_import.tests.models.m2o.required.related existing records.

func (*Client) GetBaseImportTestsModelsM2ORequireds

func (c *Client) GetBaseImportTestsModelsM2ORequireds(ids []int64) (*BaseImportTestsModelsM2ORequireds, error)

GetBaseImportTestsModelsM2ORequireds gets base_import.tests.models.m2o.required existing records.

func (*Client) GetBaseImportTestsModelsM2Os

func (c *Client) GetBaseImportTestsModelsM2Os(ids []int64) (*BaseImportTestsModelsM2Os, error)

GetBaseImportTestsModelsM2Os gets base_import.tests.models.m2o existing records.

func (*Client) GetBaseImportTestsModelsO2M

func (c *Client) GetBaseImportTestsModelsO2M(id int64) (*BaseImportTestsModelsO2M, error)

GetBaseImportTestsModelsO2M gets base_import.tests.models.o2m existing record.

func (*Client) GetBaseImportTestsModelsO2MChild

func (c *Client) GetBaseImportTestsModelsO2MChild(id int64) (*BaseImportTestsModelsO2MChild, error)

GetBaseImportTestsModelsO2MChild gets base_import.tests.models.o2m.child existing record.

func (*Client) GetBaseImportTestsModelsO2MChilds

func (c *Client) GetBaseImportTestsModelsO2MChilds(ids []int64) (*BaseImportTestsModelsO2MChilds, error)

GetBaseImportTestsModelsO2MChilds gets base_import.tests.models.o2m.child existing records.

func (*Client) GetBaseImportTestsModelsO2Ms

func (c *Client) GetBaseImportTestsModelsO2Ms(ids []int64) (*BaseImportTestsModelsO2Ms, error)

GetBaseImportTestsModelsO2Ms gets base_import.tests.models.o2m existing records.

func (*Client) GetBaseImportTestsModelsPreview

func (c *Client) GetBaseImportTestsModelsPreview(id int64) (*BaseImportTestsModelsPreview, error)

GetBaseImportTestsModelsPreview gets base_import.tests.models.preview existing record.

func (*Client) GetBaseImportTestsModelsPreviews

func (c *Client) GetBaseImportTestsModelsPreviews(ids []int64) (*BaseImportTestsModelsPreviews, error)

GetBaseImportTestsModelsPreviews gets base_import.tests.models.preview existing records.

func (*Client) GetBaseLanguageExport

func (c *Client) GetBaseLanguageExport(id int64) (*BaseLanguageExport, error)

GetBaseLanguageExport gets base.language.export existing record.

func (*Client) GetBaseLanguageExports

func (c *Client) GetBaseLanguageExports(ids []int64) (*BaseLanguageExports, error)

GetBaseLanguageExports gets base.language.export existing records.

func (*Client) GetBaseLanguageImport

func (c *Client) GetBaseLanguageImport(id int64) (*BaseLanguageImport, error)

GetBaseLanguageImport gets base.language.import existing record.

func (*Client) GetBaseLanguageImports

func (c *Client) GetBaseLanguageImports(ids []int64) (*BaseLanguageImports, error)

GetBaseLanguageImports gets base.language.import existing records.

func (*Client) GetBaseLanguageInstall

func (c *Client) GetBaseLanguageInstall(id int64) (*BaseLanguageInstall, error)

GetBaseLanguageInstall gets base.language.install existing record.

func (*Client) GetBaseLanguageInstalls

func (c *Client) GetBaseLanguageInstalls(ids []int64) (*BaseLanguageInstalls, error)

GetBaseLanguageInstalls gets base.language.install existing records.

func (*Client) GetBaseModuleUninstall

func (c *Client) GetBaseModuleUninstall(id int64) (*BaseModuleUninstall, error)

GetBaseModuleUninstall gets base.module.uninstall existing record.

func (*Client) GetBaseModuleUninstalls

func (c *Client) GetBaseModuleUninstalls(ids []int64) (*BaseModuleUninstalls, error)

GetBaseModuleUninstalls gets base.module.uninstall existing records.

func (*Client) GetBaseModuleUpdate

func (c *Client) GetBaseModuleUpdate(id int64) (*BaseModuleUpdate, error)

GetBaseModuleUpdate gets base.module.update existing record.

func (*Client) GetBaseModuleUpdates

func (c *Client) GetBaseModuleUpdates(ids []int64) (*BaseModuleUpdates, error)

GetBaseModuleUpdates gets base.module.update existing records.

func (*Client) GetBaseModuleUpgrade

func (c *Client) GetBaseModuleUpgrade(id int64) (*BaseModuleUpgrade, error)

GetBaseModuleUpgrade gets base.module.upgrade existing record.

func (*Client) GetBaseModuleUpgrades

func (c *Client) GetBaseModuleUpgrades(ids []int64) (*BaseModuleUpgrades, error)

GetBaseModuleUpgrades gets base.module.upgrade existing records.

func (*Client) GetBasePartnerMergeAutomaticWizard

func (c *Client) GetBasePartnerMergeAutomaticWizard(id int64) (*BasePartnerMergeAutomaticWizard, error)

GetBasePartnerMergeAutomaticWizard gets base.partner.merge.automatic.wizard existing record.

func (*Client) GetBasePartnerMergeAutomaticWizards

func (c *Client) GetBasePartnerMergeAutomaticWizards(ids []int64) (*BasePartnerMergeAutomaticWizards, error)

GetBasePartnerMergeAutomaticWizards gets base.partner.merge.automatic.wizard existing records.

func (*Client) GetBasePartnerMergeLine

func (c *Client) GetBasePartnerMergeLine(id int64) (*BasePartnerMergeLine, error)

GetBasePartnerMergeLine gets base.partner.merge.line existing record.

func (*Client) GetBasePartnerMergeLines

func (c *Client) GetBasePartnerMergeLines(ids []int64) (*BasePartnerMergeLines, error)

GetBasePartnerMergeLines gets base.partner.merge.line existing records.

func (*Client) GetBaseUpdateTranslations

func (c *Client) GetBaseUpdateTranslations(id int64) (*BaseUpdateTranslations, error)

GetBaseUpdateTranslations gets base.update.translations existing record.

func (*Client) GetBaseUpdateTranslationss

func (c *Client) GetBaseUpdateTranslationss(ids []int64) (*BaseUpdateTranslationss, error)

GetBaseUpdateTranslationss gets base.update.translations existing records.

func (*Client) GetBases

func (c *Client) GetBases(ids []int64) (*Bases, error)

GetBases gets base existing records.

func (*Client) GetBlogBlog

func (c *Client) GetBlogBlog(id int64) (*BlogBlog, error)

GetBlogBlog gets blog.blog existing record.

func (*Client) GetBlogBlogs

func (c *Client) GetBlogBlogs(ids []int64) (*BlogBlogs, error)

GetBlogBlogs gets blog.blog existing records.

func (*Client) GetBlogPost

func (c *Client) GetBlogPost(id int64) (*BlogPost, error)

GetBlogPost gets blog.post existing record.

func (*Client) GetBlogPosts

func (c *Client) GetBlogPosts(ids []int64) (*BlogPosts, error)

GetBlogPosts gets blog.post existing records.

func (*Client) GetBlogTag

func (c *Client) GetBlogTag(id int64) (*BlogTag, error)

GetBlogTag gets blog.tag existing record.

func (*Client) GetBlogTagCategory

func (c *Client) GetBlogTagCategory(id int64) (*BlogTagCategory, error)

GetBlogTagCategory gets blog.tag.category existing record.

func (*Client) GetBlogTagCategorys

func (c *Client) GetBlogTagCategorys(ids []int64) (*BlogTagCategorys, error)

GetBlogTagCategorys gets blog.tag.category existing records.

func (*Client) GetBlogTags

func (c *Client) GetBlogTags(ids []int64) (*BlogTags, error)

GetBlogTags gets blog.tag existing records.

func (*Client) GetBoardBoard

func (c *Client) GetBoardBoard(id int64) (*BoardBoard, error)

GetBoardBoard gets board.board existing record.

func (*Client) GetBoardBoards

func (c *Client) GetBoardBoards(ids []int64) (*BoardBoards, error)

GetBoardBoards gets board.board existing records.

func (*Client) GetBusBus

func (c *Client) GetBusBus(id int64) (*BusBus, error)

GetBusBus gets bus.bus existing record.

func (*Client) GetBusBuss

func (c *Client) GetBusBuss(ids []int64) (*BusBuss, error)

GetBusBuss gets bus.bus existing records.

func (*Client) GetBusPresence

func (c *Client) GetBusPresence(id int64) (*BusPresence, error)

GetBusPresence gets bus.presence existing record.

func (*Client) GetBusPresences

func (c *Client) GetBusPresences(ids []int64) (*BusPresences, error)

GetBusPresences gets bus.presence existing records.

func (*Client) GetCalendarAlarm

func (c *Client) GetCalendarAlarm(id int64) (*CalendarAlarm, error)

GetCalendarAlarm gets calendar.alarm existing record.

func (*Client) GetCalendarAlarmManager

func (c *Client) GetCalendarAlarmManager(id int64) (*CalendarAlarmManager, error)

GetCalendarAlarmManager gets calendar.alarm_manager existing record.

func (*Client) GetCalendarAlarmManagers

func (c *Client) GetCalendarAlarmManagers(ids []int64) (*CalendarAlarmManagers, error)

GetCalendarAlarmManagers gets calendar.alarm_manager existing records.

func (*Client) GetCalendarAlarms

func (c *Client) GetCalendarAlarms(ids []int64) (*CalendarAlarms, error)

GetCalendarAlarms gets calendar.alarm existing records.

func (*Client) GetCalendarAttendee

func (c *Client) GetCalendarAttendee(id int64) (*CalendarAttendee, error)

GetCalendarAttendee gets calendar.attendee existing record.

func (*Client) GetCalendarAttendees

func (c *Client) GetCalendarAttendees(ids []int64) (*CalendarAttendees, error)

GetCalendarAttendees gets calendar.attendee existing records.

func (*Client) GetCalendarContacts

func (c *Client) GetCalendarContacts(id int64) (*CalendarContacts, error)

GetCalendarContacts gets calendar.contacts existing record.

func (*Client) GetCalendarContactss

func (c *Client) GetCalendarContactss(ids []int64) (*CalendarContactss, error)

GetCalendarContactss gets calendar.contacts existing records.

func (*Client) GetCalendarEvent

func (c *Client) GetCalendarEvent(id int64) (*CalendarEvent, error)

GetCalendarEvent gets calendar.event existing record.

func (*Client) GetCalendarEventType

func (c *Client) GetCalendarEventType(id int64) (*CalendarEventType, error)

GetCalendarEventType gets calendar.event.type existing record.

func (*Client) GetCalendarEventTypes

func (c *Client) GetCalendarEventTypes(ids []int64) (*CalendarEventTypes, error)

GetCalendarEventTypes gets calendar.event.type existing records.

func (*Client) GetCalendarEvents

func (c *Client) GetCalendarEvents(ids []int64) (*CalendarEvents, error)

GetCalendarEvents gets calendar.event existing records.

func (*Client) GetCashBoxOut

func (c *Client) GetCashBoxOut(id int64) (*CashBoxOut, error)

GetCashBoxOut gets cash.box.out existing record.

func (*Client) GetCashBoxOuts

func (c *Client) GetCashBoxOuts(ids []int64) (*CashBoxOuts, error)

GetCashBoxOuts gets cash.box.out existing records.

func (*Client) GetChangePasswordUser

func (c *Client) GetChangePasswordUser(id int64) (*ChangePasswordUser, error)

GetChangePasswordUser gets change.password.user existing record.

func (*Client) GetChangePasswordUsers

func (c *Client) GetChangePasswordUsers(ids []int64) (*ChangePasswordUsers, error)

GetChangePasswordUsers gets change.password.user existing records.

func (*Client) GetChangePasswordWizard

func (c *Client) GetChangePasswordWizard(id int64) (*ChangePasswordWizard, error)

GetChangePasswordWizard gets change.password.wizard existing record.

func (*Client) GetChangePasswordWizards

func (c *Client) GetChangePasswordWizards(ids []int64) (*ChangePasswordWizards, error)

GetChangePasswordWizards gets change.password.wizard existing records.

func (*Client) GetCmsArticle

func (c *Client) GetCmsArticle(id int64) (*CmsArticle, error)

GetCmsArticle gets cms.article existing record.

func (*Client) GetCmsArticles

func (c *Client) GetCmsArticles(ids []int64) (*CmsArticles, error)

GetCmsArticles gets cms.article existing records.

func (*Client) GetCrmActivityReport

func (c *Client) GetCrmActivityReport(id int64) (*CrmActivityReport, error)

GetCrmActivityReport gets crm.activity.report existing record.

func (*Client) GetCrmActivityReports

func (c *Client) GetCrmActivityReports(ids []int64) (*CrmActivityReports, error)

GetCrmActivityReports gets crm.activity.report existing records.

func (*Client) GetCrmLead

func (c *Client) GetCrmLead(id int64) (*CrmLead, error)

GetCrmLead gets crm.lead existing record.

func (*Client) GetCrmLead2OpportunityPartner

func (c *Client) GetCrmLead2OpportunityPartner(id int64) (*CrmLead2OpportunityPartner, error)

GetCrmLead2OpportunityPartner gets crm.lead2opportunity.partner existing record.

func (*Client) GetCrmLead2OpportunityPartnerMass

func (c *Client) GetCrmLead2OpportunityPartnerMass(id int64) (*CrmLead2OpportunityPartnerMass, error)

GetCrmLead2OpportunityPartnerMass gets crm.lead2opportunity.partner.mass existing record.

func (*Client) GetCrmLead2OpportunityPartnerMasss

func (c *Client) GetCrmLead2OpportunityPartnerMasss(ids []int64) (*CrmLead2OpportunityPartnerMasss, error)

GetCrmLead2OpportunityPartnerMasss gets crm.lead2opportunity.partner.mass existing records.

func (*Client) GetCrmLead2OpportunityPartners

func (c *Client) GetCrmLead2OpportunityPartners(ids []int64) (*CrmLead2OpportunityPartners, error)

GetCrmLead2OpportunityPartners gets crm.lead2opportunity.partner existing records.

func (*Client) GetCrmLeadLost

func (c *Client) GetCrmLeadLost(id int64) (*CrmLeadLost, error)

GetCrmLeadLost gets crm.lead.lost existing record.

func (*Client) GetCrmLeadLosts

func (c *Client) GetCrmLeadLosts(ids []int64) (*CrmLeadLosts, error)

GetCrmLeadLosts gets crm.lead.lost existing records.

func (*Client) GetCrmLeadScoringFrequency

func (c *Client) GetCrmLeadScoringFrequency(id int64) (*CrmLeadScoringFrequency, error)

GetCrmLeadScoringFrequency gets crm.lead.scoring.frequency existing record.

func (*Client) GetCrmLeadScoringFrequencyField

func (c *Client) GetCrmLeadScoringFrequencyField(id int64) (*CrmLeadScoringFrequencyField, error)

GetCrmLeadScoringFrequencyField gets crm.lead.scoring.frequency.field existing record.

func (*Client) GetCrmLeadScoringFrequencyFields

func (c *Client) GetCrmLeadScoringFrequencyFields(ids []int64) (*CrmLeadScoringFrequencyFields, error)

GetCrmLeadScoringFrequencyFields gets crm.lead.scoring.frequency.field existing records.

func (*Client) GetCrmLeadScoringFrequencys

func (c *Client) GetCrmLeadScoringFrequencys(ids []int64) (*CrmLeadScoringFrequencys, error)

GetCrmLeadScoringFrequencys gets crm.lead.scoring.frequency existing records.

func (*Client) GetCrmLeadTag

func (c *Client) GetCrmLeadTag(id int64) (*CrmLeadTag, error)

GetCrmLeadTag gets crm.lead.tag existing record.

func (*Client) GetCrmLeadTags

func (c *Client) GetCrmLeadTags(ids []int64) (*CrmLeadTags, error)

GetCrmLeadTags gets crm.lead.tag existing records.

func (*Client) GetCrmLeads

func (c *Client) GetCrmLeads(ids []int64) (*CrmLeads, error)

GetCrmLeads gets crm.lead existing records.

func (*Client) GetCrmLostReason

func (c *Client) GetCrmLostReason(id int64) (*CrmLostReason, error)

GetCrmLostReason gets crm.lost.reason existing record.

func (*Client) GetCrmLostReasons

func (c *Client) GetCrmLostReasons(ids []int64) (*CrmLostReasons, error)

GetCrmLostReasons gets crm.lost.reason existing records.

func (*Client) GetCrmMergeOpportunity

func (c *Client) GetCrmMergeOpportunity(id int64) (*CrmMergeOpportunity, error)

GetCrmMergeOpportunity gets crm.merge.opportunity existing record.

func (*Client) GetCrmMergeOpportunitys

func (c *Client) GetCrmMergeOpportunitys(ids []int64) (*CrmMergeOpportunitys, error)

GetCrmMergeOpportunitys gets crm.merge.opportunity existing records.

func (*Client) GetCrmPartnerBinding

func (c *Client) GetCrmPartnerBinding(id int64) (*CrmPartnerBinding, error)

GetCrmPartnerBinding gets crm.partner.binding existing record.

func (*Client) GetCrmPartnerBindings

func (c *Client) GetCrmPartnerBindings(ids []int64) (*CrmPartnerBindings, error)

GetCrmPartnerBindings gets crm.partner.binding existing records.

func (*Client) GetCrmQuotationPartner

func (c *Client) GetCrmQuotationPartner(id int64) (*CrmQuotationPartner, error)

GetCrmQuotationPartner gets crm.quotation.partner existing record.

func (*Client) GetCrmQuotationPartners

func (c *Client) GetCrmQuotationPartners(ids []int64) (*CrmQuotationPartners, error)

GetCrmQuotationPartners gets crm.quotation.partner existing records.

func (*Client) GetCrmStage

func (c *Client) GetCrmStage(id int64) (*CrmStage, error)

GetCrmStage gets crm.stage existing record.

func (*Client) GetCrmStages

func (c *Client) GetCrmStages(ids []int64) (*CrmStages, error)

GetCrmStages gets crm.stage existing records.

func (*Client) GetCrmTeam

func (c *Client) GetCrmTeam(id int64) (*CrmTeam, error)

GetCrmTeam gets crm.team existing record.

func (*Client) GetCrmTeams

func (c *Client) GetCrmTeams(ids []int64) (*CrmTeams, error)

GetCrmTeams gets crm.team existing records.

func (*Client) GetDecimalPrecision

func (c *Client) GetDecimalPrecision(id int64) (*DecimalPrecision, error)

GetDecimalPrecision gets decimal.precision existing record.

func (*Client) GetDecimalPrecisions

func (c *Client) GetDecimalPrecisions(ids []int64) (*DecimalPrecisions, error)

GetDecimalPrecisions gets decimal.precision existing records.

func (*Client) GetDigestDigest

func (c *Client) GetDigestDigest(id int64) (*DigestDigest, error)

GetDigestDigest gets digest.digest existing record.

func (*Client) GetDigestDigests

func (c *Client) GetDigestDigests(ids []int64) (*DigestDigests, error)

GetDigestDigests gets digest.digest existing records.

func (*Client) GetDigestTip

func (c *Client) GetDigestTip(id int64) (*DigestTip, error)

GetDigestTip gets digest.tip existing record.

func (*Client) GetDigestTips

func (c *Client) GetDigestTips(ids []int64) (*DigestTips, error)

GetDigestTips gets digest.tip existing records.

func (*Client) GetEmailTemplatePreview

func (c *Client) GetEmailTemplatePreview(id int64) (*EmailTemplatePreview, error)

GetEmailTemplatePreview gets email_template.preview existing record.

func (*Client) GetEmailTemplatePreviews

func (c *Client) GetEmailTemplatePreviews(ids []int64) (*EmailTemplatePreviews, error)

GetEmailTemplatePreviews gets email_template.preview existing records.

func (*Client) GetEventConfirm

func (c *Client) GetEventConfirm(id int64) (*EventConfirm, error)

GetEventConfirm gets event.confirm existing record.

func (*Client) GetEventConfirms

func (c *Client) GetEventConfirms(ids []int64) (*EventConfirms, error)

GetEventConfirms gets event.confirm existing records.

func (*Client) GetEventEvent

func (c *Client) GetEventEvent(id int64) (*EventEvent, error)

GetEventEvent gets event.event existing record.

func (*Client) GetEventEventConfigurator

func (c *Client) GetEventEventConfigurator(id int64) (*EventEventConfigurator, error)

GetEventEventConfigurator gets event.event.configurator existing record.

func (*Client) GetEventEventConfigurators

func (c *Client) GetEventEventConfigurators(ids []int64) (*EventEventConfigurators, error)

GetEventEventConfigurators gets event.event.configurator existing records.

func (*Client) GetEventEventTicket

func (c *Client) GetEventEventTicket(id int64) (*EventEventTicket, error)

GetEventEventTicket gets event.event.ticket existing record.

func (*Client) GetEventEventTickets

func (c *Client) GetEventEventTickets(ids []int64) (*EventEventTickets, error)

GetEventEventTickets gets event.event.ticket existing records.

func (*Client) GetEventEvents

func (c *Client) GetEventEvents(ids []int64) (*EventEvents, error)

GetEventEvents gets event.event existing records.

func (*Client) GetEventMail

func (c *Client) GetEventMail(id int64) (*EventMail, error)

GetEventMail gets event.mail existing record.

func (*Client) GetEventMailRegistration

func (c *Client) GetEventMailRegistration(id int64) (*EventMailRegistration, error)

GetEventMailRegistration gets event.mail.registration existing record.

func (*Client) GetEventMailRegistrations

func (c *Client) GetEventMailRegistrations(ids []int64) (*EventMailRegistrations, error)

GetEventMailRegistrations gets event.mail.registration existing records.

func (*Client) GetEventMails

func (c *Client) GetEventMails(ids []int64) (*EventMails, error)

GetEventMails gets event.mail existing records.

func (*Client) GetEventRegistration

func (c *Client) GetEventRegistration(id int64) (*EventRegistration, error)

GetEventRegistration gets event.registration existing record.

func (*Client) GetEventRegistrations

func (c *Client) GetEventRegistrations(ids []int64) (*EventRegistrations, error)

GetEventRegistrations gets event.registration existing records.

func (*Client) GetEventType

func (c *Client) GetEventType(id int64) (*EventType, error)

GetEventType gets event.type existing record.

func (*Client) GetEventTypeMail

func (c *Client) GetEventTypeMail(id int64) (*EventTypeMail, error)

GetEventTypeMail gets event.type.mail existing record.

func (*Client) GetEventTypeMails

func (c *Client) GetEventTypeMails(ids []int64) (*EventTypeMails, error)

GetEventTypeMails gets event.type.mail existing records.

func (*Client) GetEventTypes

func (c *Client) GetEventTypes(ids []int64) (*EventTypes, error)

GetEventTypes gets event.type existing records.

func (*Client) GetFetchmailServer

func (c *Client) GetFetchmailServer(id int64) (*FetchmailServer, error)

GetFetchmailServer gets fetchmail.server existing record.

func (*Client) GetFetchmailServers

func (c *Client) GetFetchmailServers(ids []int64) (*FetchmailServers, error)

GetFetchmailServers gets fetchmail.server existing records.

func (*Client) GetFormatAddressMixin

func (c *Client) GetFormatAddressMixin(id int64) (*FormatAddressMixin, error)

GetFormatAddressMixin gets format.address.mixin existing record.

func (*Client) GetFormatAddressMixins

func (c *Client) GetFormatAddressMixins(ids []int64) (*FormatAddressMixins, error)

GetFormatAddressMixins gets format.address.mixin existing records.

func (*Client) GetGamificationBadge

func (c *Client) GetGamificationBadge(id int64) (*GamificationBadge, error)

GetGamificationBadge gets gamification.badge existing record.

func (*Client) GetGamificationBadgeUser

func (c *Client) GetGamificationBadgeUser(id int64) (*GamificationBadgeUser, error)

GetGamificationBadgeUser gets gamification.badge.user existing record.

func (*Client) GetGamificationBadgeUserWizard

func (c *Client) GetGamificationBadgeUserWizard(id int64) (*GamificationBadgeUserWizard, error)

GetGamificationBadgeUserWizard gets gamification.badge.user.wizard existing record.

func (*Client) GetGamificationBadgeUserWizards

func (c *Client) GetGamificationBadgeUserWizards(ids []int64) (*GamificationBadgeUserWizards, error)

GetGamificationBadgeUserWizards gets gamification.badge.user.wizard existing records.

func (*Client) GetGamificationBadgeUsers

func (c *Client) GetGamificationBadgeUsers(ids []int64) (*GamificationBadgeUsers, error)

GetGamificationBadgeUsers gets gamification.badge.user existing records.

func (*Client) GetGamificationBadges

func (c *Client) GetGamificationBadges(ids []int64) (*GamificationBadges, error)

GetGamificationBadges gets gamification.badge existing records.

func (*Client) GetGamificationChallenge

func (c *Client) GetGamificationChallenge(id int64) (*GamificationChallenge, error)

GetGamificationChallenge gets gamification.challenge existing record.

func (*Client) GetGamificationChallengeLine

func (c *Client) GetGamificationChallengeLine(id int64) (*GamificationChallengeLine, error)

GetGamificationChallengeLine gets gamification.challenge.line existing record.

func (*Client) GetGamificationChallengeLines

func (c *Client) GetGamificationChallengeLines(ids []int64) (*GamificationChallengeLines, error)

GetGamificationChallengeLines gets gamification.challenge.line existing records.

func (*Client) GetGamificationChallenges

func (c *Client) GetGamificationChallenges(ids []int64) (*GamificationChallenges, error)

GetGamificationChallenges gets gamification.challenge existing records.

func (*Client) GetGamificationGoal

func (c *Client) GetGamificationGoal(id int64) (*GamificationGoal, error)

GetGamificationGoal gets gamification.goal existing record.

func (*Client) GetGamificationGoalDefinition

func (c *Client) GetGamificationGoalDefinition(id int64) (*GamificationGoalDefinition, error)

GetGamificationGoalDefinition gets gamification.goal.definition existing record.

func (*Client) GetGamificationGoalDefinitions

func (c *Client) GetGamificationGoalDefinitions(ids []int64) (*GamificationGoalDefinitions, error)

GetGamificationGoalDefinitions gets gamification.goal.definition existing records.

func (*Client) GetGamificationGoalWizard

func (c *Client) GetGamificationGoalWizard(id int64) (*GamificationGoalWizard, error)

GetGamificationGoalWizard gets gamification.goal.wizard existing record.

func (*Client) GetGamificationGoalWizards

func (c *Client) GetGamificationGoalWizards(ids []int64) (*GamificationGoalWizards, error)

GetGamificationGoalWizards gets gamification.goal.wizard existing records.

func (*Client) GetGamificationGoals

func (c *Client) GetGamificationGoals(ids []int64) (*GamificationGoals, error)

GetGamificationGoals gets gamification.goal existing records.

func (*Client) GetGamificationKarmaRank

func (c *Client) GetGamificationKarmaRank(id int64) (*GamificationKarmaRank, error)

GetGamificationKarmaRank gets gamification.karma.rank existing record.

func (*Client) GetGamificationKarmaRanks

func (c *Client) GetGamificationKarmaRanks(ids []int64) (*GamificationKarmaRanks, error)

GetGamificationKarmaRanks gets gamification.karma.rank existing records.

func (*Client) GetHrApplicant

func (c *Client) GetHrApplicant(id int64) (*HrApplicant, error)

GetHrApplicant gets hr.applicant existing record.

func (*Client) GetHrApplicantCategory

func (c *Client) GetHrApplicantCategory(id int64) (*HrApplicantCategory, error)

GetHrApplicantCategory gets hr.applicant.category existing record.

func (*Client) GetHrApplicantCategorys

func (c *Client) GetHrApplicantCategorys(ids []int64) (*HrApplicantCategorys, error)

GetHrApplicantCategorys gets hr.applicant.category existing records.

func (*Client) GetHrApplicants

func (c *Client) GetHrApplicants(ids []int64) (*HrApplicants, error)

GetHrApplicants gets hr.applicant existing records.

func (*Client) GetHrAttendance

func (c *Client) GetHrAttendance(id int64) (*HrAttendance, error)

GetHrAttendance gets hr.attendance existing record.

func (*Client) GetHrAttendances

func (c *Client) GetHrAttendances(ids []int64) (*HrAttendances, error)

GetHrAttendances gets hr.attendance existing records.

func (*Client) GetHrContract

func (c *Client) GetHrContract(id int64) (*HrContract, error)

GetHrContract gets hr.contract existing record.

func (*Client) GetHrContracts

func (c *Client) GetHrContracts(ids []int64) (*HrContracts, error)

GetHrContracts gets hr.contract existing records.

func (*Client) GetHrDepartment

func (c *Client) GetHrDepartment(id int64) (*HrDepartment, error)

GetHrDepartment gets hr.department existing record.

func (*Client) GetHrDepartments

func (c *Client) GetHrDepartments(ids []int64) (*HrDepartments, error)

GetHrDepartments gets hr.department existing records.

func (*Client) GetHrDepartureWizard

func (c *Client) GetHrDepartureWizard(id int64) (*HrDepartureWizard, error)

GetHrDepartureWizard gets hr.departure.wizard existing record.

func (*Client) GetHrDepartureWizards

func (c *Client) GetHrDepartureWizards(ids []int64) (*HrDepartureWizards, error)

GetHrDepartureWizards gets hr.departure.wizard existing records.

func (*Client) GetHrEmployee

func (c *Client) GetHrEmployee(id int64) (*HrEmployee, error)

GetHrEmployee gets hr.employee existing record.

func (*Client) GetHrEmployeeBase

func (c *Client) GetHrEmployeeBase(id int64) (*HrEmployeeBase, error)

GetHrEmployeeBase gets hr.employee.base existing record.

func (*Client) GetHrEmployeeBases

func (c *Client) GetHrEmployeeBases(ids []int64) (*HrEmployeeBases, error)

GetHrEmployeeBases gets hr.employee.base existing records.

func (*Client) GetHrEmployeeCategory

func (c *Client) GetHrEmployeeCategory(id int64) (*HrEmployeeCategory, error)

GetHrEmployeeCategory gets hr.employee.category existing record.

func (*Client) GetHrEmployeeCategorys

func (c *Client) GetHrEmployeeCategorys(ids []int64) (*HrEmployeeCategorys, error)

GetHrEmployeeCategorys gets hr.employee.category existing records.

func (*Client) GetHrEmployeePublic

func (c *Client) GetHrEmployeePublic(id int64) (*HrEmployeePublic, error)

GetHrEmployeePublic gets hr.employee.public existing record.

func (*Client) GetHrEmployeePublics

func (c *Client) GetHrEmployeePublics(ids []int64) (*HrEmployeePublics, error)

GetHrEmployeePublics gets hr.employee.public existing records.

func (*Client) GetHrEmployees

func (c *Client) GetHrEmployees(ids []int64) (*HrEmployees, error)

GetHrEmployees gets hr.employee existing records.

func (*Client) GetHrExpense

func (c *Client) GetHrExpense(id int64) (*HrExpense, error)

GetHrExpense gets hr.expense existing record.

func (*Client) GetHrExpenseRefuseWizard

func (c *Client) GetHrExpenseRefuseWizard(id int64) (*HrExpenseRefuseWizard, error)

GetHrExpenseRefuseWizard gets hr.expense.refuse.wizard existing record.

func (*Client) GetHrExpenseRefuseWizards

func (c *Client) GetHrExpenseRefuseWizards(ids []int64) (*HrExpenseRefuseWizards, error)

GetHrExpenseRefuseWizards gets hr.expense.refuse.wizard existing records.

func (*Client) GetHrExpenseSheet

func (c *Client) GetHrExpenseSheet(id int64) (*HrExpenseSheet, error)

GetHrExpenseSheet gets hr.expense.sheet existing record.

func (*Client) GetHrExpenseSheetRegisterPaymentWizard

func (c *Client) GetHrExpenseSheetRegisterPaymentWizard(id int64) (*HrExpenseSheetRegisterPaymentWizard, error)

GetHrExpenseSheetRegisterPaymentWizard gets hr.expense.sheet.register.payment.wizard existing record.

func (*Client) GetHrExpenseSheetRegisterPaymentWizards

func (c *Client) GetHrExpenseSheetRegisterPaymentWizards(ids []int64) (*HrExpenseSheetRegisterPaymentWizards, error)

GetHrExpenseSheetRegisterPaymentWizards gets hr.expense.sheet.register.payment.wizard existing records.

func (*Client) GetHrExpenseSheets

func (c *Client) GetHrExpenseSheets(ids []int64) (*HrExpenseSheets, error)

GetHrExpenseSheets gets hr.expense.sheet existing records.

func (*Client) GetHrExpenses

func (c *Client) GetHrExpenses(ids []int64) (*HrExpenses, error)

GetHrExpenses gets hr.expense existing records.

func (*Client) GetHrHolidaysSummaryEmployee

func (c *Client) GetHrHolidaysSummaryEmployee(id int64) (*HrHolidaysSummaryEmployee, error)

GetHrHolidaysSummaryEmployee gets hr.holidays.summary.employee existing record.

func (*Client) GetHrHolidaysSummaryEmployees

func (c *Client) GetHrHolidaysSummaryEmployees(ids []int64) (*HrHolidaysSummaryEmployees, error)

GetHrHolidaysSummaryEmployees gets hr.holidays.summary.employee existing records.

func (*Client) GetHrJob

func (c *Client) GetHrJob(id int64) (*HrJob, error)

GetHrJob gets hr.job existing record.

func (*Client) GetHrJobs

func (c *Client) GetHrJobs(ids []int64) (*HrJobs, error)

GetHrJobs gets hr.job existing records.

func (*Client) GetHrLeave

func (c *Client) GetHrLeave(id int64) (*HrLeave, error)

GetHrLeave gets hr.leave existing record.

func (*Client) GetHrLeaveAllocation

func (c *Client) GetHrLeaveAllocation(id int64) (*HrLeaveAllocation, error)

GetHrLeaveAllocation gets hr.leave.allocation existing record.

func (*Client) GetHrLeaveAllocations

func (c *Client) GetHrLeaveAllocations(ids []int64) (*HrLeaveAllocations, error)

GetHrLeaveAllocations gets hr.leave.allocation existing records.

func (*Client) GetHrLeaveReport

func (c *Client) GetHrLeaveReport(id int64) (*HrLeaveReport, error)

GetHrLeaveReport gets hr.leave.report existing record.

func (*Client) GetHrLeaveReportCalendar

func (c *Client) GetHrLeaveReportCalendar(id int64) (*HrLeaveReportCalendar, error)

GetHrLeaveReportCalendar gets hr.leave.report.calendar existing record.

func (*Client) GetHrLeaveReportCalendars

func (c *Client) GetHrLeaveReportCalendars(ids []int64) (*HrLeaveReportCalendars, error)

GetHrLeaveReportCalendars gets hr.leave.report.calendar existing records.

func (*Client) GetHrLeaveReports

func (c *Client) GetHrLeaveReports(ids []int64) (*HrLeaveReports, error)

GetHrLeaveReports gets hr.leave.report existing records.

func (*Client) GetHrLeaveType

func (c *Client) GetHrLeaveType(id int64) (*HrLeaveType, error)

GetHrLeaveType gets hr.leave.type existing record.

func (*Client) GetHrLeaveTypes

func (c *Client) GetHrLeaveTypes(ids []int64) (*HrLeaveTypes, error)

GetHrLeaveTypes gets hr.leave.type existing records.

func (*Client) GetHrLeaves

func (c *Client) GetHrLeaves(ids []int64) (*HrLeaves, error)

GetHrLeaves gets hr.leave existing records.

func (*Client) GetHrPlan

func (c *Client) GetHrPlan(id int64) (*HrPlan, error)

GetHrPlan gets hr.plan existing record.

func (*Client) GetHrPlanActivityType

func (c *Client) GetHrPlanActivityType(id int64) (*HrPlanActivityType, error)

GetHrPlanActivityType gets hr.plan.activity.type existing record.

func (*Client) GetHrPlanActivityTypes

func (c *Client) GetHrPlanActivityTypes(ids []int64) (*HrPlanActivityTypes, error)

GetHrPlanActivityTypes gets hr.plan.activity.type existing records.

func (*Client) GetHrPlanWizard

func (c *Client) GetHrPlanWizard(id int64) (*HrPlanWizard, error)

GetHrPlanWizard gets hr.plan.wizard existing record.

func (*Client) GetHrPlanWizards

func (c *Client) GetHrPlanWizards(ids []int64) (*HrPlanWizards, error)

GetHrPlanWizards gets hr.plan.wizard existing records.

func (*Client) GetHrPlans

func (c *Client) GetHrPlans(ids []int64) (*HrPlans, error)

GetHrPlans gets hr.plan existing records.

func (*Client) GetHrRecruitmentDegree

func (c *Client) GetHrRecruitmentDegree(id int64) (*HrRecruitmentDegree, error)

GetHrRecruitmentDegree gets hr.recruitment.degree existing record.

func (*Client) GetHrRecruitmentDegrees

func (c *Client) GetHrRecruitmentDegrees(ids []int64) (*HrRecruitmentDegrees, error)

GetHrRecruitmentDegrees gets hr.recruitment.degree existing records.

func (*Client) GetHrRecruitmentSource

func (c *Client) GetHrRecruitmentSource(id int64) (*HrRecruitmentSource, error)

GetHrRecruitmentSource gets hr.recruitment.source existing record.

func (*Client) GetHrRecruitmentSources

func (c *Client) GetHrRecruitmentSources(ids []int64) (*HrRecruitmentSources, error)

GetHrRecruitmentSources gets hr.recruitment.source existing records.

func (*Client) GetHrRecruitmentStage

func (c *Client) GetHrRecruitmentStage(id int64) (*HrRecruitmentStage, error)

GetHrRecruitmentStage gets hr.recruitment.stage existing record.

func (*Client) GetHrRecruitmentStages

func (c *Client) GetHrRecruitmentStages(ids []int64) (*HrRecruitmentStages, error)

GetHrRecruitmentStages gets hr.recruitment.stage existing records.

func (*Client) GetIapAccount

func (c *Client) GetIapAccount(id int64) (*IapAccount, error)

GetIapAccount gets iap.account existing record.

func (*Client) GetIapAccounts

func (c *Client) GetIapAccounts(ids []int64) (*IapAccounts, error)

GetIapAccounts gets iap.account existing records.

func (*Client) GetImLivechatChannel

func (c *Client) GetImLivechatChannel(id int64) (*ImLivechatChannel, error)

GetImLivechatChannel gets im_livechat.channel existing record.

func (*Client) GetImLivechatChannelRule

func (c *Client) GetImLivechatChannelRule(id int64) (*ImLivechatChannelRule, error)

GetImLivechatChannelRule gets im_livechat.channel.rule existing record.

func (*Client) GetImLivechatChannelRules

func (c *Client) GetImLivechatChannelRules(ids []int64) (*ImLivechatChannelRules, error)

GetImLivechatChannelRules gets im_livechat.channel.rule existing records.

func (*Client) GetImLivechatChannels

func (c *Client) GetImLivechatChannels(ids []int64) (*ImLivechatChannels, error)

GetImLivechatChannels gets im_livechat.channel existing records.

func (*Client) GetImLivechatReportChannel

func (c *Client) GetImLivechatReportChannel(id int64) (*ImLivechatReportChannel, error)

GetImLivechatReportChannel gets im_livechat.report.channel existing record.

func (*Client) GetImLivechatReportChannels

func (c *Client) GetImLivechatReportChannels(ids []int64) (*ImLivechatReportChannels, error)

GetImLivechatReportChannels gets im_livechat.report.channel existing records.

func (*Client) GetImLivechatReportOperator

func (c *Client) GetImLivechatReportOperator(id int64) (*ImLivechatReportOperator, error)

GetImLivechatReportOperator gets im_livechat.report.operator existing record.

func (*Client) GetImLivechatReportOperators

func (c *Client) GetImLivechatReportOperators(ids []int64) (*ImLivechatReportOperators, error)

GetImLivechatReportOperators gets im_livechat.report.operator existing records.

func (*Client) GetImageMixin

func (c *Client) GetImageMixin(id int64) (*ImageMixin, error)

GetImageMixin gets image.mixin existing record.

func (*Client) GetImageMixins

func (c *Client) GetImageMixins(ids []int64) (*ImageMixins, error)

GetImageMixins gets image.mixin existing records.

func (*Client) GetIrActionsActUrl

func (c *Client) GetIrActionsActUrl(id int64) (*IrActionsActUrl, error)

GetIrActionsActUrl gets ir.actions.act_url existing record.

func (*Client) GetIrActionsActUrls

func (c *Client) GetIrActionsActUrls(ids []int64) (*IrActionsActUrls, error)

GetIrActionsActUrls gets ir.actions.act_url existing records.

func (*Client) GetIrActionsActWindow

func (c *Client) GetIrActionsActWindow(id int64) (*IrActionsActWindow, error)

GetIrActionsActWindow gets ir.actions.act_window existing record.

func (*Client) GetIrActionsActWindowClose

func (c *Client) GetIrActionsActWindowClose(id int64) (*IrActionsActWindowClose, error)

GetIrActionsActWindowClose gets ir.actions.act_window_close existing record.

func (*Client) GetIrActionsActWindowCloses

func (c *Client) GetIrActionsActWindowCloses(ids []int64) (*IrActionsActWindowCloses, error)

GetIrActionsActWindowCloses gets ir.actions.act_window_close existing records.

func (*Client) GetIrActionsActWindowView

func (c *Client) GetIrActionsActWindowView(id int64) (*IrActionsActWindowView, error)

GetIrActionsActWindowView gets ir.actions.act_window.view existing record.

func (*Client) GetIrActionsActWindowViews

func (c *Client) GetIrActionsActWindowViews(ids []int64) (*IrActionsActWindowViews, error)

GetIrActionsActWindowViews gets ir.actions.act_window.view existing records.

func (*Client) GetIrActionsActWindows

func (c *Client) GetIrActionsActWindows(ids []int64) (*IrActionsActWindows, error)

GetIrActionsActWindows gets ir.actions.act_window existing records.

func (*Client) GetIrActionsActions

func (c *Client) GetIrActionsActions(id int64) (*IrActionsActions, error)

GetIrActionsActions gets ir.actions.actions existing record.

func (*Client) GetIrActionsActionss

func (c *Client) GetIrActionsActionss(ids []int64) (*IrActionsActionss, error)

GetIrActionsActionss gets ir.actions.actions existing records.

func (*Client) GetIrActionsClient

func (c *Client) GetIrActionsClient(id int64) (*IrActionsClient, error)

GetIrActionsClient gets ir.actions.client existing record.

func (*Client) GetIrActionsClients

func (c *Client) GetIrActionsClients(ids []int64) (*IrActionsClients, error)

GetIrActionsClients gets ir.actions.client existing records.

func (*Client) GetIrActionsReport

func (c *Client) GetIrActionsReport(id int64) (*IrActionsReport, error)

GetIrActionsReport gets ir.actions.report existing record.

func (*Client) GetIrActionsReports

func (c *Client) GetIrActionsReports(ids []int64) (*IrActionsReports, error)

GetIrActionsReports gets ir.actions.report existing records.

func (*Client) GetIrActionsServer

func (c *Client) GetIrActionsServer(id int64) (*IrActionsServer, error)

GetIrActionsServer gets ir.actions.server existing record.

func (*Client) GetIrActionsServers

func (c *Client) GetIrActionsServers(ids []int64) (*IrActionsServers, error)

GetIrActionsServers gets ir.actions.server existing records.

func (*Client) GetIrActionsTodo

func (c *Client) GetIrActionsTodo(id int64) (*IrActionsTodo, error)

GetIrActionsTodo gets ir.actions.todo existing record.

func (*Client) GetIrActionsTodos

func (c *Client) GetIrActionsTodos(ids []int64) (*IrActionsTodos, error)

GetIrActionsTodos gets ir.actions.todo existing records.

func (*Client) GetIrAttachment

func (c *Client) GetIrAttachment(id int64) (*IrAttachment, error)

GetIrAttachment gets ir.attachment existing record.

func (*Client) GetIrAttachments

func (c *Client) GetIrAttachments(ids []int64) (*IrAttachments, error)

GetIrAttachments gets ir.attachment existing records.

func (*Client) GetIrAutovacuum

func (c *Client) GetIrAutovacuum(id int64) (*IrAutovacuum, error)

GetIrAutovacuum gets ir.autovacuum existing record.

func (*Client) GetIrAutovacuums

func (c *Client) GetIrAutovacuums(ids []int64) (*IrAutovacuums, error)

GetIrAutovacuums gets ir.autovacuum existing records.

func (*Client) GetIrConfigParameter

func (c *Client) GetIrConfigParameter(id int64) (*IrConfigParameter, error)

GetIrConfigParameter gets ir.config_parameter existing record.

func (*Client) GetIrConfigParameters

func (c *Client) GetIrConfigParameters(ids []int64) (*IrConfigParameters, error)

GetIrConfigParameters gets ir.config_parameter existing records.

func (*Client) GetIrCron

func (c *Client) GetIrCron(id int64) (*IrCron, error)

GetIrCron gets ir.cron existing record.

func (*Client) GetIrCrons

func (c *Client) GetIrCrons(ids []int64) (*IrCrons, error)

GetIrCrons gets ir.cron existing records.

func (*Client) GetIrDefault

func (c *Client) GetIrDefault(id int64) (*IrDefault, error)

GetIrDefault gets ir.default existing record.

func (*Client) GetIrDefaults

func (c *Client) GetIrDefaults(ids []int64) (*IrDefaults, error)

GetIrDefaults gets ir.default existing records.

func (*Client) GetIrDemo

func (c *Client) GetIrDemo(id int64) (*IrDemo, error)

GetIrDemo gets ir.demo existing record.

func (*Client) GetIrDemoFailure

func (c *Client) GetIrDemoFailure(id int64) (*IrDemoFailure, error)

GetIrDemoFailure gets ir.demo_failure existing record.

func (*Client) GetIrDemoFailureWizard

func (c *Client) GetIrDemoFailureWizard(id int64) (*IrDemoFailureWizard, error)

GetIrDemoFailureWizard gets ir.demo_failure.wizard existing record.

func (*Client) GetIrDemoFailureWizards

func (c *Client) GetIrDemoFailureWizards(ids []int64) (*IrDemoFailureWizards, error)

GetIrDemoFailureWizards gets ir.demo_failure.wizard existing records.

func (*Client) GetIrDemoFailures

func (c *Client) GetIrDemoFailures(ids []int64) (*IrDemoFailures, error)

GetIrDemoFailures gets ir.demo_failure existing records.

func (*Client) GetIrDemos

func (c *Client) GetIrDemos(ids []int64) (*IrDemos, error)

GetIrDemos gets ir.demo existing records.

func (*Client) GetIrExports

func (c *Client) GetIrExports(id int64) (*IrExports, error)

GetIrExports gets ir.exports existing record.

func (*Client) GetIrExportsLine

func (c *Client) GetIrExportsLine(id int64) (*IrExportsLine, error)

GetIrExportsLine gets ir.exports.line existing record.

func (*Client) GetIrExportsLines

func (c *Client) GetIrExportsLines(ids []int64) (*IrExportsLines, error)

GetIrExportsLines gets ir.exports.line existing records.

func (*Client) GetIrExportss

func (c *Client) GetIrExportss(ids []int64) (*IrExportss, error)

GetIrExportss gets ir.exports existing records.

func (*Client) GetIrFieldsConverter

func (c *Client) GetIrFieldsConverter(id int64) (*IrFieldsConverter, error)

GetIrFieldsConverter gets ir.fields.converter existing record.

func (*Client) GetIrFieldsConverters

func (c *Client) GetIrFieldsConverters(ids []int64) (*IrFieldsConverters, error)

GetIrFieldsConverters gets ir.fields.converter existing records.

func (*Client) GetIrFilters

func (c *Client) GetIrFilters(id int64) (*IrFilters, error)

GetIrFilters gets ir.filters existing record.

func (*Client) GetIrFilterss

func (c *Client) GetIrFilterss(ids []int64) (*IrFilterss, error)

GetIrFilterss gets ir.filters existing records.

func (*Client) GetIrHttp

func (c *Client) GetIrHttp(id int64) (*IrHttp, error)

GetIrHttp gets ir.http existing record.

func (*Client) GetIrHttps

func (c *Client) GetIrHttps(ids []int64) (*IrHttps, error)

GetIrHttps gets ir.http existing records.

func (*Client) GetIrLogging

func (c *Client) GetIrLogging(id int64) (*IrLogging, error)

GetIrLogging gets ir.logging existing record.

func (*Client) GetIrLoggings

func (c *Client) GetIrLoggings(ids []int64) (*IrLoggings, error)

GetIrLoggings gets ir.logging existing records.

func (*Client) GetIrMailServer

func (c *Client) GetIrMailServer(id int64) (*IrMailServer, error)

GetIrMailServer gets ir.mail_server existing record.

func (*Client) GetIrMailServers

func (c *Client) GetIrMailServers(ids []int64) (*IrMailServers, error)

GetIrMailServers gets ir.mail_server existing records.

func (*Client) GetIrModel

func (c *Client) GetIrModel(id int64) (*IrModel, error)

GetIrModel gets ir.model existing record.

func (*Client) GetIrModelAccess

func (c *Client) GetIrModelAccess(id int64) (*IrModelAccess, error)

GetIrModelAccess gets ir.model.access existing record.

func (*Client) GetIrModelAccesss

func (c *Client) GetIrModelAccesss(ids []int64) (*IrModelAccesss, error)

GetIrModelAccesss gets ir.model.access existing records.

func (*Client) GetIrModelConstraint

func (c *Client) GetIrModelConstraint(id int64) (*IrModelConstraint, error)

GetIrModelConstraint gets ir.model.constraint existing record.

func (*Client) GetIrModelConstraints

func (c *Client) GetIrModelConstraints(ids []int64) (*IrModelConstraints, error)

GetIrModelConstraints gets ir.model.constraint existing records.

func (*Client) GetIrModelData

func (c *Client) GetIrModelData(id int64) (*IrModelData, error)

GetIrModelData gets ir.model.data existing record.

func (*Client) GetIrModelDatas

func (c *Client) GetIrModelDatas(ids []int64) (*IrModelDatas, error)

GetIrModelDatas gets ir.model.data existing records.

func (*Client) GetIrModelFields

func (c *Client) GetIrModelFields(id int64) (*IrModelFields, error)

GetIrModelFields gets ir.model.fields existing record.

func (*Client) GetIrModelFieldsSelection

func (c *Client) GetIrModelFieldsSelection(id int64) (*IrModelFieldsSelection, error)

GetIrModelFieldsSelection gets ir.model.fields.selection existing record.

func (*Client) GetIrModelFieldsSelections

func (c *Client) GetIrModelFieldsSelections(ids []int64) (*IrModelFieldsSelections, error)

GetIrModelFieldsSelections gets ir.model.fields.selection existing records.

func (*Client) GetIrModelFieldss

func (c *Client) GetIrModelFieldss(ids []int64) (*IrModelFieldss, error)

GetIrModelFieldss gets ir.model.fields existing records.

func (*Client) GetIrModelRelation

func (c *Client) GetIrModelRelation(id int64) (*IrModelRelation, error)

GetIrModelRelation gets ir.model.relation existing record.

func (*Client) GetIrModelRelations

func (c *Client) GetIrModelRelations(ids []int64) (*IrModelRelations, error)

GetIrModelRelations gets ir.model.relation existing records.

func (*Client) GetIrModels

func (c *Client) GetIrModels(ids []int64) (*IrModels, error)

GetIrModels gets ir.model existing records.

func (*Client) GetIrModuleCategory

func (c *Client) GetIrModuleCategory(id int64) (*IrModuleCategory, error)

GetIrModuleCategory gets ir.module.category existing record.

func (*Client) GetIrModuleCategorys

func (c *Client) GetIrModuleCategorys(ids []int64) (*IrModuleCategorys, error)

GetIrModuleCategorys gets ir.module.category existing records.

func (*Client) GetIrModuleModule

func (c *Client) GetIrModuleModule(id int64) (*IrModuleModule, error)

GetIrModuleModule gets ir.module.module existing record.

func (*Client) GetIrModuleModuleDependency

func (c *Client) GetIrModuleModuleDependency(id int64) (*IrModuleModuleDependency, error)

GetIrModuleModuleDependency gets ir.module.module.dependency existing record.

func (*Client) GetIrModuleModuleDependencys

func (c *Client) GetIrModuleModuleDependencys(ids []int64) (*IrModuleModuleDependencys, error)

GetIrModuleModuleDependencys gets ir.module.module.dependency existing records.

func (*Client) GetIrModuleModuleExclusion

func (c *Client) GetIrModuleModuleExclusion(id int64) (*IrModuleModuleExclusion, error)

GetIrModuleModuleExclusion gets ir.module.module.exclusion existing record.

func (*Client) GetIrModuleModuleExclusions

func (c *Client) GetIrModuleModuleExclusions(ids []int64) (*IrModuleModuleExclusions, error)

GetIrModuleModuleExclusions gets ir.module.module.exclusion existing records.

func (*Client) GetIrModuleModules

func (c *Client) GetIrModuleModules(ids []int64) (*IrModuleModules, error)

GetIrModuleModules gets ir.module.module existing records.

func (*Client) GetIrProperty

func (c *Client) GetIrProperty(id int64) (*IrProperty, error)

GetIrProperty gets ir.property existing record.

func (*Client) GetIrPropertys

func (c *Client) GetIrPropertys(ids []int64) (*IrPropertys, error)

GetIrPropertys gets ir.property existing records.

func (*Client) GetIrQweb

func (c *Client) GetIrQweb(id int64) (*IrQweb, error)

GetIrQweb gets ir.qweb existing record.

func (*Client) GetIrQwebField

func (c *Client) GetIrQwebField(id int64) (*IrQwebField, error)

GetIrQwebField gets ir.qweb.field existing record.

func (*Client) GetIrQwebFieldBarcode

func (c *Client) GetIrQwebFieldBarcode(id int64) (*IrQwebFieldBarcode, error)

GetIrQwebFieldBarcode gets ir.qweb.field.barcode existing record.

func (*Client) GetIrQwebFieldBarcodes

func (c *Client) GetIrQwebFieldBarcodes(ids []int64) (*IrQwebFieldBarcodes, error)

GetIrQwebFieldBarcodes gets ir.qweb.field.barcode existing records.

func (*Client) GetIrQwebFieldContact

func (c *Client) GetIrQwebFieldContact(id int64) (*IrQwebFieldContact, error)

GetIrQwebFieldContact gets ir.qweb.field.contact existing record.

func (*Client) GetIrQwebFieldContacts

func (c *Client) GetIrQwebFieldContacts(ids []int64) (*IrQwebFieldContacts, error)

GetIrQwebFieldContacts gets ir.qweb.field.contact existing records.

func (*Client) GetIrQwebFieldDate

func (c *Client) GetIrQwebFieldDate(id int64) (*IrQwebFieldDate, error)

GetIrQwebFieldDate gets ir.qweb.field.date existing record.

func (*Client) GetIrQwebFieldDates

func (c *Client) GetIrQwebFieldDates(ids []int64) (*IrQwebFieldDates, error)

GetIrQwebFieldDates gets ir.qweb.field.date existing records.

func (*Client) GetIrQwebFieldDatetime

func (c *Client) GetIrQwebFieldDatetime(id int64) (*IrQwebFieldDatetime, error)

GetIrQwebFieldDatetime gets ir.qweb.field.datetime existing record.

func (*Client) GetIrQwebFieldDatetimes

func (c *Client) GetIrQwebFieldDatetimes(ids []int64) (*IrQwebFieldDatetimes, error)

GetIrQwebFieldDatetimes gets ir.qweb.field.datetime existing records.

func (*Client) GetIrQwebFieldDuration

func (c *Client) GetIrQwebFieldDuration(id int64) (*IrQwebFieldDuration, error)

GetIrQwebFieldDuration gets ir.qweb.field.duration existing record.

func (*Client) GetIrQwebFieldDurations

func (c *Client) GetIrQwebFieldDurations(ids []int64) (*IrQwebFieldDurations, error)

GetIrQwebFieldDurations gets ir.qweb.field.duration existing records.

func (*Client) GetIrQwebFieldFloat

func (c *Client) GetIrQwebFieldFloat(id int64) (*IrQwebFieldFloat, error)

GetIrQwebFieldFloat gets ir.qweb.field.float existing record.

func (*Client) GetIrQwebFieldFloatTime

func (c *Client) GetIrQwebFieldFloatTime(id int64) (*IrQwebFieldFloatTime, error)

GetIrQwebFieldFloatTime gets ir.qweb.field.float_time existing record.

func (*Client) GetIrQwebFieldFloatTimes

func (c *Client) GetIrQwebFieldFloatTimes(ids []int64) (*IrQwebFieldFloatTimes, error)

GetIrQwebFieldFloatTimes gets ir.qweb.field.float_time existing records.

func (*Client) GetIrQwebFieldFloats

func (c *Client) GetIrQwebFieldFloats(ids []int64) (*IrQwebFieldFloats, error)

GetIrQwebFieldFloats gets ir.qweb.field.float existing records.

func (*Client) GetIrQwebFieldHtml

func (c *Client) GetIrQwebFieldHtml(id int64) (*IrQwebFieldHtml, error)

GetIrQwebFieldHtml gets ir.qweb.field.html existing record.

func (*Client) GetIrQwebFieldHtmls

func (c *Client) GetIrQwebFieldHtmls(ids []int64) (*IrQwebFieldHtmls, error)

GetIrQwebFieldHtmls gets ir.qweb.field.html existing records.

func (*Client) GetIrQwebFieldImage

func (c *Client) GetIrQwebFieldImage(id int64) (*IrQwebFieldImage, error)

GetIrQwebFieldImage gets ir.qweb.field.image existing record.

func (*Client) GetIrQwebFieldImages

func (c *Client) GetIrQwebFieldImages(ids []int64) (*IrQwebFieldImages, error)

GetIrQwebFieldImages gets ir.qweb.field.image existing records.

func (*Client) GetIrQwebFieldInteger

func (c *Client) GetIrQwebFieldInteger(id int64) (*IrQwebFieldInteger, error)

GetIrQwebFieldInteger gets ir.qweb.field.integer existing record.

func (*Client) GetIrQwebFieldIntegers

func (c *Client) GetIrQwebFieldIntegers(ids []int64) (*IrQwebFieldIntegers, error)

GetIrQwebFieldIntegers gets ir.qweb.field.integer existing records.

func (*Client) GetIrQwebFieldMany2Many

func (c *Client) GetIrQwebFieldMany2Many(id int64) (*IrQwebFieldMany2Many, error)

GetIrQwebFieldMany2Many gets ir.qweb.field.many2many existing record.

func (*Client) GetIrQwebFieldMany2Manys

func (c *Client) GetIrQwebFieldMany2Manys(ids []int64) (*IrQwebFieldMany2Manys, error)

GetIrQwebFieldMany2Manys gets ir.qweb.field.many2many existing records.

func (*Client) GetIrQwebFieldMany2One

func (c *Client) GetIrQwebFieldMany2One(id int64) (*IrQwebFieldMany2One, error)

GetIrQwebFieldMany2One gets ir.qweb.field.many2one existing record.

func (*Client) GetIrQwebFieldMany2Ones

func (c *Client) GetIrQwebFieldMany2Ones(ids []int64) (*IrQwebFieldMany2Ones, error)

GetIrQwebFieldMany2Ones gets ir.qweb.field.many2one existing records.

func (*Client) GetIrQwebFieldMonetary

func (c *Client) GetIrQwebFieldMonetary(id int64) (*IrQwebFieldMonetary, error)

GetIrQwebFieldMonetary gets ir.qweb.field.monetary existing record.

func (*Client) GetIrQwebFieldMonetarys

func (c *Client) GetIrQwebFieldMonetarys(ids []int64) (*IrQwebFieldMonetarys, error)

GetIrQwebFieldMonetarys gets ir.qweb.field.monetary existing records.

func (*Client) GetIrQwebFieldQweb

func (c *Client) GetIrQwebFieldQweb(id int64) (*IrQwebFieldQweb, error)

GetIrQwebFieldQweb gets ir.qweb.field.qweb existing record.

func (*Client) GetIrQwebFieldQwebs

func (c *Client) GetIrQwebFieldQwebs(ids []int64) (*IrQwebFieldQwebs, error)

GetIrQwebFieldQwebs gets ir.qweb.field.qweb existing records.

func (*Client) GetIrQwebFieldRelative

func (c *Client) GetIrQwebFieldRelative(id int64) (*IrQwebFieldRelative, error)

GetIrQwebFieldRelative gets ir.qweb.field.relative existing record.

func (*Client) GetIrQwebFieldRelatives

func (c *Client) GetIrQwebFieldRelatives(ids []int64) (*IrQwebFieldRelatives, error)

GetIrQwebFieldRelatives gets ir.qweb.field.relative existing records.

func (*Client) GetIrQwebFieldSelection

func (c *Client) GetIrQwebFieldSelection(id int64) (*IrQwebFieldSelection, error)

GetIrQwebFieldSelection gets ir.qweb.field.selection existing record.

func (*Client) GetIrQwebFieldSelections

func (c *Client) GetIrQwebFieldSelections(ids []int64) (*IrQwebFieldSelections, error)

GetIrQwebFieldSelections gets ir.qweb.field.selection existing records.

func (*Client) GetIrQwebFieldText

func (c *Client) GetIrQwebFieldText(id int64) (*IrQwebFieldText, error)

GetIrQwebFieldText gets ir.qweb.field.text existing record.

func (*Client) GetIrQwebFieldTexts

func (c *Client) GetIrQwebFieldTexts(ids []int64) (*IrQwebFieldTexts, error)

GetIrQwebFieldTexts gets ir.qweb.field.text existing records.

func (*Client) GetIrQwebFields

func (c *Client) GetIrQwebFields(ids []int64) (*IrQwebFields, error)

GetIrQwebFields gets ir.qweb.field existing records.

func (*Client) GetIrQwebs

func (c *Client) GetIrQwebs(ids []int64) (*IrQwebs, error)

GetIrQwebs gets ir.qweb existing records.

func (*Client) GetIrRule

func (c *Client) GetIrRule(id int64) (*IrRule, error)

GetIrRule gets ir.rule existing record.

func (*Client) GetIrRules

func (c *Client) GetIrRules(ids []int64) (*IrRules, error)

GetIrRules gets ir.rule existing records.

func (*Client) GetIrSequence

func (c *Client) GetIrSequence(id int64) (*IrSequence, error)

GetIrSequence gets ir.sequence existing record.

func (*Client) GetIrSequenceDateRange

func (c *Client) GetIrSequenceDateRange(id int64) (*IrSequenceDateRange, error)

GetIrSequenceDateRange gets ir.sequence.date_range existing record.

func (*Client) GetIrSequenceDateRanges

func (c *Client) GetIrSequenceDateRanges(ids []int64) (*IrSequenceDateRanges, error)

GetIrSequenceDateRanges gets ir.sequence.date_range existing records.

func (*Client) GetIrSequences

func (c *Client) GetIrSequences(ids []int64) (*IrSequences, error)

GetIrSequences gets ir.sequence existing records.

func (*Client) GetIrServerObjectLines

func (c *Client) GetIrServerObjectLines(id int64) (*IrServerObjectLines, error)

GetIrServerObjectLines gets ir.server.object.lines existing record.

func (*Client) GetIrServerObjectLiness

func (c *Client) GetIrServerObjectLiness(ids []int64) (*IrServerObjectLiness, error)

GetIrServerObjectLiness gets ir.server.object.lines existing records.

func (*Client) GetIrTranslation

func (c *Client) GetIrTranslation(id int64) (*IrTranslation, error)

GetIrTranslation gets ir.translation existing record.

func (*Client) GetIrTranslations

func (c *Client) GetIrTranslations(ids []int64) (*IrTranslations, error)

GetIrTranslations gets ir.translation existing records.

func (*Client) GetIrUiMenu

func (c *Client) GetIrUiMenu(id int64) (*IrUiMenu, error)

GetIrUiMenu gets ir.ui.menu existing record.

func (*Client) GetIrUiMenus

func (c *Client) GetIrUiMenus(ids []int64) (*IrUiMenus, error)

GetIrUiMenus gets ir.ui.menu existing records.

func (*Client) GetIrUiView

func (c *Client) GetIrUiView(id int64) (*IrUiView, error)

GetIrUiView gets ir.ui.view existing record.

func (*Client) GetIrUiViewCustom

func (c *Client) GetIrUiViewCustom(id int64) (*IrUiViewCustom, error)

GetIrUiViewCustom gets ir.ui.view.custom existing record.

func (*Client) GetIrUiViewCustoms

func (c *Client) GetIrUiViewCustoms(ids []int64) (*IrUiViewCustoms, error)

GetIrUiViewCustoms gets ir.ui.view.custom existing records.

func (*Client) GetIrUiViews

func (c *Client) GetIrUiViews(ids []int64) (*IrUiViews, error)

GetIrUiViews gets ir.ui.view existing records.

func (*Client) GetLinkTracker

func (c *Client) GetLinkTracker(id int64) (*LinkTracker, error)

GetLinkTracker gets link.tracker existing record.

func (*Client) GetLinkTrackerClick

func (c *Client) GetLinkTrackerClick(id int64) (*LinkTrackerClick, error)

GetLinkTrackerClick gets link.tracker.click existing record.

func (*Client) GetLinkTrackerClicks

func (c *Client) GetLinkTrackerClicks(ids []int64) (*LinkTrackerClicks, error)

GetLinkTrackerClicks gets link.tracker.click existing records.

func (*Client) GetLinkTrackerCode

func (c *Client) GetLinkTrackerCode(id int64) (*LinkTrackerCode, error)

GetLinkTrackerCode gets link.tracker.code existing record.

func (*Client) GetLinkTrackerCodes

func (c *Client) GetLinkTrackerCodes(ids []int64) (*LinkTrackerCodes, error)

GetLinkTrackerCodes gets link.tracker.code existing records.

func (*Client) GetLinkTrackers

func (c *Client) GetLinkTrackers(ids []int64) (*LinkTrackers, error)

GetLinkTrackers gets link.tracker existing records.

func (*Client) GetMailActivity

func (c *Client) GetMailActivity(id int64) (*MailActivity, error)

GetMailActivity gets mail.activity existing record.

func (*Client) GetMailActivityMixin

func (c *Client) GetMailActivityMixin(id int64) (*MailActivityMixin, error)

GetMailActivityMixin gets mail.activity.mixin existing record.

func (*Client) GetMailActivityMixins

func (c *Client) GetMailActivityMixins(ids []int64) (*MailActivityMixins, error)

GetMailActivityMixins gets mail.activity.mixin existing records.

func (*Client) GetMailActivityType

func (c *Client) GetMailActivityType(id int64) (*MailActivityType, error)

GetMailActivityType gets mail.activity.type existing record.

func (*Client) GetMailActivityTypes

func (c *Client) GetMailActivityTypes(ids []int64) (*MailActivityTypes, error)

GetMailActivityTypes gets mail.activity.type existing records.

func (*Client) GetMailActivitys

func (c *Client) GetMailActivitys(ids []int64) (*MailActivitys, error)

GetMailActivitys gets mail.activity existing records.

func (*Client) GetMailAddressMixin

func (c *Client) GetMailAddressMixin(id int64) (*MailAddressMixin, error)

GetMailAddressMixin gets mail.address.mixin existing record.

func (*Client) GetMailAddressMixins

func (c *Client) GetMailAddressMixins(ids []int64) (*MailAddressMixins, error)

GetMailAddressMixins gets mail.address.mixin existing records.

func (*Client) GetMailAlias

func (c *Client) GetMailAlias(id int64) (*MailAlias, error)

GetMailAlias gets mail.alias existing record.

func (*Client) GetMailAliasMixin

func (c *Client) GetMailAliasMixin(id int64) (*MailAliasMixin, error)

GetMailAliasMixin gets mail.alias.mixin existing record.

func (*Client) GetMailAliasMixins

func (c *Client) GetMailAliasMixins(ids []int64) (*MailAliasMixins, error)

GetMailAliasMixins gets mail.alias.mixin existing records.

func (*Client) GetMailAliass

func (c *Client) GetMailAliass(ids []int64) (*MailAliass, error)

GetMailAliass gets mail.alias existing records.

func (*Client) GetMailBlacklist

func (c *Client) GetMailBlacklist(id int64) (*MailBlacklist, error)

GetMailBlacklist gets mail.blacklist existing record.

func (*Client) GetMailBlacklists

func (c *Client) GetMailBlacklists(ids []int64) (*MailBlacklists, error)

GetMailBlacklists gets mail.blacklist existing records.

func (*Client) GetMailBot

func (c *Client) GetMailBot(id int64) (*MailBot, error)

GetMailBot gets mail.bot existing record.

func (*Client) GetMailBots

func (c *Client) GetMailBots(ids []int64) (*MailBots, error)

GetMailBots gets mail.bot existing records.

func (*Client) GetMailChannel

func (c *Client) GetMailChannel(id int64) (*MailChannel, error)

GetMailChannel gets mail.channel existing record.

func (*Client) GetMailChannelPartner

func (c *Client) GetMailChannelPartner(id int64) (*MailChannelPartner, error)

GetMailChannelPartner gets mail.channel.partner existing record.

func (*Client) GetMailChannelPartners

func (c *Client) GetMailChannelPartners(ids []int64) (*MailChannelPartners, error)

GetMailChannelPartners gets mail.channel.partner existing records.

func (*Client) GetMailChannels

func (c *Client) GetMailChannels(ids []int64) (*MailChannels, error)

GetMailChannels gets mail.channel existing records.

func (*Client) GetMailComposeMessage

func (c *Client) GetMailComposeMessage(id int64) (*MailComposeMessage, error)

GetMailComposeMessage gets mail.compose.message existing record.

func (*Client) GetMailComposeMessages

func (c *Client) GetMailComposeMessages(ids []int64) (*MailComposeMessages, error)

GetMailComposeMessages gets mail.compose.message existing records.

func (*Client) GetMailFollowers

func (c *Client) GetMailFollowers(id int64) (*MailFollowers, error)

GetMailFollowers gets mail.followers existing record.

func (*Client) GetMailFollowerss

func (c *Client) GetMailFollowerss(ids []int64) (*MailFollowerss, error)

GetMailFollowerss gets mail.followers existing records.

func (*Client) GetMailMail

func (c *Client) GetMailMail(id int64) (*MailMail, error)

GetMailMail gets mail.mail existing record.

func (*Client) GetMailMails

func (c *Client) GetMailMails(ids []int64) (*MailMails, error)

GetMailMails gets mail.mail existing records.

func (*Client) GetMailMessage

func (c *Client) GetMailMessage(id int64) (*MailMessage, error)

GetMailMessage gets mail.message existing record.

func (*Client) GetMailMessageSubtype

func (c *Client) GetMailMessageSubtype(id int64) (*MailMessageSubtype, error)

GetMailMessageSubtype gets mail.message.subtype existing record.

func (*Client) GetMailMessageSubtypes

func (c *Client) GetMailMessageSubtypes(ids []int64) (*MailMessageSubtypes, error)

GetMailMessageSubtypes gets mail.message.subtype existing records.

func (*Client) GetMailMessages

func (c *Client) GetMailMessages(ids []int64) (*MailMessages, error)

GetMailMessages gets mail.message existing records.

func (*Client) GetMailModeration

func (c *Client) GetMailModeration(id int64) (*MailModeration, error)

GetMailModeration gets mail.moderation existing record.

func (*Client) GetMailModerations

func (c *Client) GetMailModerations(ids []int64) (*MailModerations, error)

GetMailModerations gets mail.moderation existing records.

func (*Client) GetMailNotification

func (c *Client) GetMailNotification(id int64) (*MailNotification, error)

GetMailNotification gets mail.notification existing record.

func (*Client) GetMailNotifications

func (c *Client) GetMailNotifications(ids []int64) (*MailNotifications, error)

GetMailNotifications gets mail.notification existing records.

func (*Client) GetMailResendCancel

func (c *Client) GetMailResendCancel(id int64) (*MailResendCancel, error)

GetMailResendCancel gets mail.resend.cancel existing record.

func (*Client) GetMailResendCancels

func (c *Client) GetMailResendCancels(ids []int64) (*MailResendCancels, error)

GetMailResendCancels gets mail.resend.cancel existing records.

func (*Client) GetMailResendMessage

func (c *Client) GetMailResendMessage(id int64) (*MailResendMessage, error)

GetMailResendMessage gets mail.resend.message existing record.

func (*Client) GetMailResendMessages

func (c *Client) GetMailResendMessages(ids []int64) (*MailResendMessages, error)

GetMailResendMessages gets mail.resend.message existing records.

func (*Client) GetMailResendPartner

func (c *Client) GetMailResendPartner(id int64) (*MailResendPartner, error)

GetMailResendPartner gets mail.resend.partner existing record.

func (*Client) GetMailResendPartners

func (c *Client) GetMailResendPartners(ids []int64) (*MailResendPartners, error)

GetMailResendPartners gets mail.resend.partner existing records.

func (*Client) GetMailShortcode

func (c *Client) GetMailShortcode(id int64) (*MailShortcode, error)

GetMailShortcode gets mail.shortcode existing record.

func (*Client) GetMailShortcodes

func (c *Client) GetMailShortcodes(ids []int64) (*MailShortcodes, error)

GetMailShortcodes gets mail.shortcode existing records.

func (*Client) GetMailTemplate

func (c *Client) GetMailTemplate(id int64) (*MailTemplate, error)

GetMailTemplate gets mail.template existing record.

func (*Client) GetMailTemplates

func (c *Client) GetMailTemplates(ids []int64) (*MailTemplates, error)

GetMailTemplates gets mail.template existing records.

func (*Client) GetMailThread

func (c *Client) GetMailThread(id int64) (*MailThread, error)

GetMailThread gets mail.thread existing record.

func (*Client) GetMailThreadBlacklist

func (c *Client) GetMailThreadBlacklist(id int64) (*MailThreadBlacklist, error)

GetMailThreadBlacklist gets mail.thread.blacklist existing record.

func (*Client) GetMailThreadBlacklists

func (c *Client) GetMailThreadBlacklists(ids []int64) (*MailThreadBlacklists, error)

GetMailThreadBlacklists gets mail.thread.blacklist existing records.

func (*Client) GetMailThreadCc

func (c *Client) GetMailThreadCc(id int64) (*MailThreadCc, error)

GetMailThreadCc gets mail.thread.cc existing record.

func (*Client) GetMailThreadCcs

func (c *Client) GetMailThreadCcs(ids []int64) (*MailThreadCcs, error)

GetMailThreadCcs gets mail.thread.cc existing records.

func (*Client) GetMailThreadPhone

func (c *Client) GetMailThreadPhone(id int64) (*MailThreadPhone, error)

GetMailThreadPhone gets mail.thread.phone existing record.

func (*Client) GetMailThreadPhones

func (c *Client) GetMailThreadPhones(ids []int64) (*MailThreadPhones, error)

GetMailThreadPhones gets mail.thread.phone existing records.

func (*Client) GetMailThreads

func (c *Client) GetMailThreads(ids []int64) (*MailThreads, error)

GetMailThreads gets mail.thread existing records.

func (*Client) GetMailTrackingValue

func (c *Client) GetMailTrackingValue(id int64) (*MailTrackingValue, error)

GetMailTrackingValue gets mail.tracking.value existing record.

func (*Client) GetMailTrackingValues

func (c *Client) GetMailTrackingValues(ids []int64) (*MailTrackingValues, error)

GetMailTrackingValues gets mail.tracking.value existing records.

func (*Client) GetMailWizardInvite

func (c *Client) GetMailWizardInvite(id int64) (*MailWizardInvite, error)

GetMailWizardInvite gets mail.wizard.invite existing record.

func (*Client) GetMailWizardInvites

func (c *Client) GetMailWizardInvites(ids []int64) (*MailWizardInvites, error)

GetMailWizardInvites gets mail.wizard.invite existing records.

func (*Client) GetMailingContact

func (c *Client) GetMailingContact(id int64) (*MailingContact, error)

GetMailingContact gets mailing.contact existing record.

func (*Client) GetMailingContactSubscription

func (c *Client) GetMailingContactSubscription(id int64) (*MailingContactSubscription, error)

GetMailingContactSubscription gets mailing.contact.subscription existing record.

func (*Client) GetMailingContactSubscriptions

func (c *Client) GetMailingContactSubscriptions(ids []int64) (*MailingContactSubscriptions, error)

GetMailingContactSubscriptions gets mailing.contact.subscription existing records.

func (*Client) GetMailingContacts

func (c *Client) GetMailingContacts(ids []int64) (*MailingContacts, error)

GetMailingContacts gets mailing.contact existing records.

func (*Client) GetMailingList

func (c *Client) GetMailingList(id int64) (*MailingList, error)

GetMailingList gets mailing.list existing record.

func (*Client) GetMailingListMerge

func (c *Client) GetMailingListMerge(id int64) (*MailingListMerge, error)

GetMailingListMerge gets mailing.list.merge existing record.

func (*Client) GetMailingListMerges

func (c *Client) GetMailingListMerges(ids []int64) (*MailingListMerges, error)

GetMailingListMerges gets mailing.list.merge existing records.

func (*Client) GetMailingLists

func (c *Client) GetMailingLists(ids []int64) (*MailingLists, error)

GetMailingLists gets mailing.list existing records.

func (*Client) GetMailingMailing

func (c *Client) GetMailingMailing(id int64) (*MailingMailing, error)

GetMailingMailing gets mailing.mailing existing record.

func (*Client) GetMailingMailingScheduleDate

func (c *Client) GetMailingMailingScheduleDate(id int64) (*MailingMailingScheduleDate, error)

GetMailingMailingScheduleDate gets mailing.mailing.schedule.date existing record.

func (*Client) GetMailingMailingScheduleDates

func (c *Client) GetMailingMailingScheduleDates(ids []int64) (*MailingMailingScheduleDates, error)

GetMailingMailingScheduleDates gets mailing.mailing.schedule.date existing records.

func (*Client) GetMailingMailings

func (c *Client) GetMailingMailings(ids []int64) (*MailingMailings, error)

GetMailingMailings gets mailing.mailing existing records.

func (*Client) GetMailingTrace

func (c *Client) GetMailingTrace(id int64) (*MailingTrace, error)

GetMailingTrace gets mailing.trace existing record.

func (*Client) GetMailingTraceReport

func (c *Client) GetMailingTraceReport(id int64) (*MailingTraceReport, error)

GetMailingTraceReport gets mailing.trace.report existing record.

func (*Client) GetMailingTraceReports

func (c *Client) GetMailingTraceReports(ids []int64) (*MailingTraceReports, error)

GetMailingTraceReports gets mailing.trace.report existing records.

func (*Client) GetMailingTraces

func (c *Client) GetMailingTraces(ids []int64) (*MailingTraces, error)

GetMailingTraces gets mailing.trace existing records.

func (*Client) GetNoteNote

func (c *Client) GetNoteNote(id int64) (*NoteNote, error)

GetNoteNote gets note.note existing record.

func (*Client) GetNoteNotes

func (c *Client) GetNoteNotes(ids []int64) (*NoteNotes, error)

GetNoteNotes gets note.note existing records.

func (*Client) GetNoteStage

func (c *Client) GetNoteStage(id int64) (*NoteStage, error)

GetNoteStage gets note.stage existing record.

func (*Client) GetNoteStages

func (c *Client) GetNoteStages(ids []int64) (*NoteStages, error)

GetNoteStages gets note.stage existing records.

func (*Client) GetNoteTag

func (c *Client) GetNoteTag(id int64) (*NoteTag, error)

GetNoteTag gets note.tag existing record.

func (*Client) GetNoteTags

func (c *Client) GetNoteTags(ids []int64) (*NoteTags, error)

GetNoteTags gets note.tag existing records.

func (*Client) GetOpenacademyBundle

func (c *Client) GetOpenacademyBundle(id int64) (*OpenacademyBundle, error)

GetOpenacademyBundle gets openacademy.bundle existing record.

func (*Client) GetOpenacademyBundles

func (c *Client) GetOpenacademyBundles(ids []int64) (*OpenacademyBundles, error)

GetOpenacademyBundles gets openacademy.bundle existing records.

func (*Client) GetOpenacademyCourse

func (c *Client) GetOpenacademyCourse(id int64) (*OpenacademyCourse, error)

GetOpenacademyCourse gets openacademy.course existing record.

func (*Client) GetOpenacademyCourses

func (c *Client) GetOpenacademyCourses(ids []int64) (*OpenacademyCourses, error)

GetOpenacademyCourses gets openacademy.course existing records.

func (*Client) GetOpenacademySession

func (c *Client) GetOpenacademySession(id int64) (*OpenacademySession, error)

GetOpenacademySession gets openacademy.session existing record.

func (*Client) GetOpenacademySessions

func (c *Client) GetOpenacademySessions(ids []int64) (*OpenacademySessions, error)

GetOpenacademySessions gets openacademy.session existing records.

func (*Client) GetOpenacademyWizard

func (c *Client) GetOpenacademyWizard(id int64) (*OpenacademyWizard, error)

GetOpenacademyWizard gets openacademy.wizard existing record.

func (*Client) GetOpenacademyWizards

func (c *Client) GetOpenacademyWizards(ids []int64) (*OpenacademyWizards, error)

GetOpenacademyWizards gets openacademy.wizard existing records.

func (*Client) GetPaymentAcquirer

func (c *Client) GetPaymentAcquirer(id int64) (*PaymentAcquirer, error)

GetPaymentAcquirer gets payment.acquirer existing record.

func (*Client) GetPaymentAcquirerOnboardingWizard

func (c *Client) GetPaymentAcquirerOnboardingWizard(id int64) (*PaymentAcquirerOnboardingWizard, error)

GetPaymentAcquirerOnboardingWizard gets payment.acquirer.onboarding.wizard existing record.

func (*Client) GetPaymentAcquirerOnboardingWizards

func (c *Client) GetPaymentAcquirerOnboardingWizards(ids []int64) (*PaymentAcquirerOnboardingWizards, error)

GetPaymentAcquirerOnboardingWizards gets payment.acquirer.onboarding.wizard existing records.

func (*Client) GetPaymentAcquirers

func (c *Client) GetPaymentAcquirers(ids []int64) (*PaymentAcquirers, error)

GetPaymentAcquirers gets payment.acquirer existing records.

func (*Client) GetPaymentIcon

func (c *Client) GetPaymentIcon(id int64) (*PaymentIcon, error)

GetPaymentIcon gets payment.icon existing record.

func (*Client) GetPaymentIcons

func (c *Client) GetPaymentIcons(ids []int64) (*PaymentIcons, error)

GetPaymentIcons gets payment.icon existing records.

func (*Client) GetPaymentLinkWizard

func (c *Client) GetPaymentLinkWizard(id int64) (*PaymentLinkWizard, error)

GetPaymentLinkWizard gets payment.link.wizard existing record.

func (*Client) GetPaymentLinkWizards

func (c *Client) GetPaymentLinkWizards(ids []int64) (*PaymentLinkWizards, error)

GetPaymentLinkWizards gets payment.link.wizard existing records.

func (*Client) GetPaymentToken

func (c *Client) GetPaymentToken(id int64) (*PaymentToken, error)

GetPaymentToken gets payment.token existing record.

func (*Client) GetPaymentTokens

func (c *Client) GetPaymentTokens(ids []int64) (*PaymentTokens, error)

GetPaymentTokens gets payment.token existing records.

func (*Client) GetPaymentTransaction

func (c *Client) GetPaymentTransaction(id int64) (*PaymentTransaction, error)

GetPaymentTransaction gets payment.transaction existing record.

func (*Client) GetPaymentTransactions

func (c *Client) GetPaymentTransactions(ids []int64) (*PaymentTransactions, error)

GetPaymentTransactions gets payment.transaction existing records.

func (*Client) GetPhoneBlacklist

func (c *Client) GetPhoneBlacklist(id int64) (*PhoneBlacklist, error)

GetPhoneBlacklist gets phone.blacklist existing record.

func (*Client) GetPhoneBlacklists

func (c *Client) GetPhoneBlacklists(ids []int64) (*PhoneBlacklists, error)

GetPhoneBlacklists gets phone.blacklist existing records.

func (*Client) GetPhoneValidationMixin

func (c *Client) GetPhoneValidationMixin(id int64) (*PhoneValidationMixin, error)

GetPhoneValidationMixin gets phone.validation.mixin existing record.

func (*Client) GetPhoneValidationMixins

func (c *Client) GetPhoneValidationMixins(ids []int64) (*PhoneValidationMixins, error)

GetPhoneValidationMixins gets phone.validation.mixin existing records.

func (*Client) GetPortalMixin

func (c *Client) GetPortalMixin(id int64) (*PortalMixin, error)

GetPortalMixin gets portal.mixin existing record.

func (*Client) GetPortalMixins

func (c *Client) GetPortalMixins(ids []int64) (*PortalMixins, error)

GetPortalMixins gets portal.mixin existing records.

func (*Client) GetPortalShare

func (c *Client) GetPortalShare(id int64) (*PortalShare, error)

GetPortalShare gets portal.share existing record.

func (*Client) GetPortalShares

func (c *Client) GetPortalShares(ids []int64) (*PortalShares, error)

GetPortalShares gets portal.share existing records.

func (*Client) GetPortalWizard

func (c *Client) GetPortalWizard(id int64) (*PortalWizard, error)

GetPortalWizard gets portal.wizard existing record.

func (*Client) GetPortalWizardUser

func (c *Client) GetPortalWizardUser(id int64) (*PortalWizardUser, error)

GetPortalWizardUser gets portal.wizard.user existing record.

func (*Client) GetPortalWizardUsers

func (c *Client) GetPortalWizardUsers(ids []int64) (*PortalWizardUsers, error)

GetPortalWizardUsers gets portal.wizard.user existing records.

func (*Client) GetPortalWizards

func (c *Client) GetPortalWizards(ids []int64) (*PortalWizards, error)

GetPortalWizards gets portal.wizard existing records.

func (*Client) GetProductAttribute

func (c *Client) GetProductAttribute(id int64) (*ProductAttribute, error)

GetProductAttribute gets product.attribute existing record.

func (*Client) GetProductAttributeCustomValue

func (c *Client) GetProductAttributeCustomValue(id int64) (*ProductAttributeCustomValue, error)

GetProductAttributeCustomValue gets product.attribute.custom.value existing record.

func (*Client) GetProductAttributeCustomValues

func (c *Client) GetProductAttributeCustomValues(ids []int64) (*ProductAttributeCustomValues, error)

GetProductAttributeCustomValues gets product.attribute.custom.value existing records.

func (*Client) GetProductAttributeValue

func (c *Client) GetProductAttributeValue(id int64) (*ProductAttributeValue, error)

GetProductAttributeValue gets product.attribute.value existing record.

func (*Client) GetProductAttributeValues

func (c *Client) GetProductAttributeValues(ids []int64) (*ProductAttributeValues, error)

GetProductAttributeValues gets product.attribute.value existing records.

func (*Client) GetProductAttributes

func (c *Client) GetProductAttributes(ids []int64) (*ProductAttributes, error)

GetProductAttributes gets product.attribute existing records.

func (*Client) GetProductCategory

func (c *Client) GetProductCategory(id int64) (*ProductCategory, error)

GetProductCategory gets product.category existing record.

func (*Client) GetProductCategorys

func (c *Client) GetProductCategorys(ids []int64) (*ProductCategorys, error)

GetProductCategorys gets product.category existing records.

func (*Client) GetProductPackaging

func (c *Client) GetProductPackaging(id int64) (*ProductPackaging, error)

GetProductPackaging gets product.packaging existing record.

func (*Client) GetProductPackagings

func (c *Client) GetProductPackagings(ids []int64) (*ProductPackagings, error)

GetProductPackagings gets product.packaging existing records.

func (*Client) GetProductPriceList

func (c *Client) GetProductPriceList(id int64) (*ProductPriceList, error)

GetProductPriceList gets product.price_list existing record.

func (*Client) GetProductPriceLists

func (c *Client) GetProductPriceLists(ids []int64) (*ProductPriceLists, error)

GetProductPriceLists gets product.price_list existing records.

func (*Client) GetProductPricelist

func (c *Client) GetProductPricelist(id int64) (*ProductPricelist, error)

GetProductPricelist gets product.pricelist existing record.

func (*Client) GetProductPricelistItem

func (c *Client) GetProductPricelistItem(id int64) (*ProductPricelistItem, error)

GetProductPricelistItem gets product.pricelist.item existing record.

func (*Client) GetProductPricelistItems

func (c *Client) GetProductPricelistItems(ids []int64) (*ProductPricelistItems, error)

GetProductPricelistItems gets product.pricelist.item existing records.

func (*Client) GetProductPricelists

func (c *Client) GetProductPricelists(ids []int64) (*ProductPricelists, error)

GetProductPricelists gets product.pricelist existing records.

func (*Client) GetProductProduct

func (c *Client) GetProductProduct(id int64) (*ProductProduct, error)

GetProductProduct gets product.product existing record.

func (*Client) GetProductProducts

func (c *Client) GetProductProducts(ids []int64) (*ProductProducts, error)

GetProductProducts gets product.product existing records.

func (*Client) GetProductSupplierinfo

func (c *Client) GetProductSupplierinfo(id int64) (*ProductSupplierinfo, error)

GetProductSupplierinfo gets product.supplierinfo existing record.

func (*Client) GetProductSupplierinfos

func (c *Client) GetProductSupplierinfos(ids []int64) (*ProductSupplierinfos, error)

GetProductSupplierinfos gets product.supplierinfo existing records.

func (*Client) GetProductTemplate

func (c *Client) GetProductTemplate(id int64) (*ProductTemplate, error)

GetProductTemplate gets product.template existing record.

func (*Client) GetProductTemplateAttributeExclusion

func (c *Client) GetProductTemplateAttributeExclusion(id int64) (*ProductTemplateAttributeExclusion, error)

GetProductTemplateAttributeExclusion gets product.template.attribute.exclusion existing record.

func (*Client) GetProductTemplateAttributeExclusions

func (c *Client) GetProductTemplateAttributeExclusions(ids []int64) (*ProductTemplateAttributeExclusions, error)

GetProductTemplateAttributeExclusions gets product.template.attribute.exclusion existing records.

func (*Client) GetProductTemplateAttributeLine

func (c *Client) GetProductTemplateAttributeLine(id int64) (*ProductTemplateAttributeLine, error)

GetProductTemplateAttributeLine gets product.template.attribute.line existing record.

func (*Client) GetProductTemplateAttributeLines

func (c *Client) GetProductTemplateAttributeLines(ids []int64) (*ProductTemplateAttributeLines, error)

GetProductTemplateAttributeLines gets product.template.attribute.line existing records.

func (*Client) GetProductTemplateAttributeValue

func (c *Client) GetProductTemplateAttributeValue(id int64) (*ProductTemplateAttributeValue, error)

GetProductTemplateAttributeValue gets product.template.attribute.value existing record.

func (*Client) GetProductTemplateAttributeValues

func (c *Client) GetProductTemplateAttributeValues(ids []int64) (*ProductTemplateAttributeValues, error)

GetProductTemplateAttributeValues gets product.template.attribute.value existing records.

func (*Client) GetProductTemplates

func (c *Client) GetProductTemplates(ids []int64) (*ProductTemplates, error)

GetProductTemplates gets product.template existing records.

func (*Client) GetProjectProject

func (c *Client) GetProjectProject(id int64) (*ProjectProject, error)

GetProjectProject gets project.project existing record.

func (*Client) GetProjectProjects

func (c *Client) GetProjectProjects(ids []int64) (*ProjectProjects, error)

GetProjectProjects gets project.project existing records.

func (*Client) GetProjectTags

func (c *Client) GetProjectTags(id int64) (*ProjectTags, error)

GetProjectTags gets project.tags existing record.

func (*Client) GetProjectTagss

func (c *Client) GetProjectTagss(ids []int64) (*ProjectTagss, error)

GetProjectTagss gets project.tags existing records.

func (*Client) GetProjectTask

func (c *Client) GetProjectTask(id int64) (*ProjectTask, error)

GetProjectTask gets project.task existing record.

func (*Client) GetProjectTaskType

func (c *Client) GetProjectTaskType(id int64) (*ProjectTaskType, error)

GetProjectTaskType gets project.task.type existing record.

func (*Client) GetProjectTaskTypes

func (c *Client) GetProjectTaskTypes(ids []int64) (*ProjectTaskTypes, error)

GetProjectTaskTypes gets project.task.type existing records.

func (*Client) GetProjectTasks

func (c *Client) GetProjectTasks(ids []int64) (*ProjectTasks, error)

GetProjectTasks gets project.task existing records.

func (*Client) GetPublisherWarrantyContract

func (c *Client) GetPublisherWarrantyContract(id int64) (*PublisherWarrantyContract, error)

GetPublisherWarrantyContract gets publisher_warranty.contract existing record.

func (*Client) GetPublisherWarrantyContracts

func (c *Client) GetPublisherWarrantyContracts(ids []int64) (*PublisherWarrantyContracts, error)

GetPublisherWarrantyContracts gets publisher_warranty.contract existing records.

func (*Client) GetRatingMixin

func (c *Client) GetRatingMixin(id int64) (*RatingMixin, error)

GetRatingMixin gets rating.mixin existing record.

func (*Client) GetRatingMixins

func (c *Client) GetRatingMixins(ids []int64) (*RatingMixins, error)

GetRatingMixins gets rating.mixin existing records.

func (*Client) GetRatingParentMixin

func (c *Client) GetRatingParentMixin(id int64) (*RatingParentMixin, error)

GetRatingParentMixin gets rating.parent.mixin existing record.

func (*Client) GetRatingParentMixins

func (c *Client) GetRatingParentMixins(ids []int64) (*RatingParentMixins, error)

GetRatingParentMixins gets rating.parent.mixin existing records.

func (*Client) GetRatingRating

func (c *Client) GetRatingRating(id int64) (*RatingRating, error)

GetRatingRating gets rating.rating existing record.

func (*Client) GetRatingRatings

func (c *Client) GetRatingRatings(ids []int64) (*RatingRatings, error)

GetRatingRatings gets rating.rating existing records.

func (*Client) GetRegistrationEditor

func (c *Client) GetRegistrationEditor(id int64) (*RegistrationEditor, error)

GetRegistrationEditor gets registration.editor existing record.

func (*Client) GetRegistrationEditorLine

func (c *Client) GetRegistrationEditorLine(id int64) (*RegistrationEditorLine, error)

GetRegistrationEditorLine gets registration.editor.line existing record.

func (*Client) GetRegistrationEditorLines

func (c *Client) GetRegistrationEditorLines(ids []int64) (*RegistrationEditorLines, error)

GetRegistrationEditorLines gets registration.editor.line existing records.

func (*Client) GetRegistrationEditors

func (c *Client) GetRegistrationEditors(ids []int64) (*RegistrationEditors, error)

GetRegistrationEditors gets registration.editor existing records.

func (*Client) GetReportAccountReportAgedpartnerbalance

func (c *Client) GetReportAccountReportAgedpartnerbalance(id int64) (*ReportAccountReportAgedpartnerbalance, error)

GetReportAccountReportAgedpartnerbalance gets report.account.report_agedpartnerbalance existing record.

func (*Client) GetReportAccountReportAgedpartnerbalances

func (c *Client) GetReportAccountReportAgedpartnerbalances(ids []int64) (*ReportAccountReportAgedpartnerbalances, error)

GetReportAccountReportAgedpartnerbalances gets report.account.report_agedpartnerbalance existing records.

func (*Client) GetReportAccountReportHashIntegrity

func (c *Client) GetReportAccountReportHashIntegrity(id int64) (*ReportAccountReportHashIntegrity, error)

GetReportAccountReportHashIntegrity gets report.account.report_hash_integrity existing record.

func (*Client) GetReportAccountReportHashIntegritys

func (c *Client) GetReportAccountReportHashIntegritys(ids []int64) (*ReportAccountReportHashIntegritys, error)

GetReportAccountReportHashIntegritys gets report.account.report_hash_integrity existing records.

func (*Client) GetReportAccountReportInvoiceWithPayments

func (c *Client) GetReportAccountReportInvoiceWithPayments(id int64) (*ReportAccountReportInvoiceWithPayments, error)

GetReportAccountReportInvoiceWithPayments gets report.account.report_invoice_with_payments existing record.

func (*Client) GetReportAccountReportInvoiceWithPaymentss

func (c *Client) GetReportAccountReportInvoiceWithPaymentss(ids []int64) (*ReportAccountReportInvoiceWithPaymentss, error)

GetReportAccountReportInvoiceWithPaymentss gets report.account.report_invoice_with_payments existing records.

func (*Client) GetReportAccountReportJournal

func (c *Client) GetReportAccountReportJournal(id int64) (*ReportAccountReportJournal, error)

GetReportAccountReportJournal gets report.account.report_journal existing record.

func (*Client) GetReportAccountReportJournals

func (c *Client) GetReportAccountReportJournals(ids []int64) (*ReportAccountReportJournals, error)

GetReportAccountReportJournals gets report.account.report_journal existing records.

func (*Client) GetReportAllChannelsSales

func (c *Client) GetReportAllChannelsSales(id int64) (*ReportAllChannelsSales, error)

GetReportAllChannelsSales gets report.all.channels.sales existing record.

func (*Client) GetReportAllChannelsSaless

func (c *Client) GetReportAllChannelsSaless(ids []int64) (*ReportAllChannelsSaless, error)

GetReportAllChannelsSaless gets report.all.channels.sales existing records.

func (*Client) GetReportBaseReportIrmodulereference

func (c *Client) GetReportBaseReportIrmodulereference(id int64) (*ReportBaseReportIrmodulereference, error)

GetReportBaseReportIrmodulereference gets report.base.report_irmodulereference existing record.

func (*Client) GetReportBaseReportIrmodulereferences

func (c *Client) GetReportBaseReportIrmodulereferences(ids []int64) (*ReportBaseReportIrmodulereferences, error)

GetReportBaseReportIrmodulereferences gets report.base.report_irmodulereference existing records.

func (*Client) GetReportHrHolidaysReportHolidayssummary

func (c *Client) GetReportHrHolidaysReportHolidayssummary(id int64) (*ReportHrHolidaysReportHolidayssummary, error)

GetReportHrHolidaysReportHolidayssummary gets report.hr_holidays.report_holidayssummary existing record.

func (*Client) GetReportHrHolidaysReportHolidayssummarys

func (c *Client) GetReportHrHolidaysReportHolidayssummarys(ids []int64) (*ReportHrHolidaysReportHolidayssummarys, error)

GetReportHrHolidaysReportHolidayssummarys gets report.hr_holidays.report_holidayssummary existing records.

func (*Client) GetReportLayout

func (c *Client) GetReportLayout(id int64) (*ReportLayout, error)

GetReportLayout gets report.layout existing record.

func (*Client) GetReportLayouts

func (c *Client) GetReportLayouts(ids []int64) (*ReportLayouts, error)

GetReportLayouts gets report.layout existing records.

func (*Client) GetReportPaperformat

func (c *Client) GetReportPaperformat(id int64) (*ReportPaperformat, error)

GetReportPaperformat gets report.paperformat existing record.

func (*Client) GetReportPaperformats

func (c *Client) GetReportPaperformats(ids []int64) (*ReportPaperformats, error)

GetReportPaperformats gets report.paperformat existing records.

func (*Client) GetReportProductReportPricelist

func (c *Client) GetReportProductReportPricelist(id int64) (*ReportProductReportPricelist, error)

GetReportProductReportPricelist gets report.product.report_pricelist existing record.

func (*Client) GetReportProductReportPricelists

func (c *Client) GetReportProductReportPricelists(ids []int64) (*ReportProductReportPricelists, error)

GetReportProductReportPricelists gets report.product.report_pricelist existing records.

func (*Client) GetReportProjectTaskUser

func (c *Client) GetReportProjectTaskUser(id int64) (*ReportProjectTaskUser, error)

GetReportProjectTaskUser gets report.project.task.user existing record.

func (*Client) GetReportProjectTaskUsers

func (c *Client) GetReportProjectTaskUsers(ids []int64) (*ReportProjectTaskUsers, error)

GetReportProjectTaskUsers gets report.project.task.user existing records.

func (*Client) GetReportSaleReportSaleproforma

func (c *Client) GetReportSaleReportSaleproforma(id int64) (*ReportSaleReportSaleproforma, error)

GetReportSaleReportSaleproforma gets report.sale.report_saleproforma existing record.

func (*Client) GetReportSaleReportSaleproformas

func (c *Client) GetReportSaleReportSaleproformas(ids []int64) (*ReportSaleReportSaleproformas, error)

GetReportSaleReportSaleproformas gets report.sale.report_saleproforma existing records.

func (*Client) GetResBank

func (c *Client) GetResBank(id int64) (*ResBank, error)

GetResBank gets res.bank existing record.

func (*Client) GetResBanks

func (c *Client) GetResBanks(ids []int64) (*ResBanks, error)

GetResBanks gets res.bank existing records.

func (*Client) GetResCompany

func (c *Client) GetResCompany(id int64) (*ResCompany, error)

GetResCompany gets res.company existing record.

func (*Client) GetResCompanys

func (c *Client) GetResCompanys(ids []int64) (*ResCompanys, error)

GetResCompanys gets res.company existing records.

func (*Client) GetResConfig

func (c *Client) GetResConfig(id int64) (*ResConfig, error)

GetResConfig gets res.config existing record.

func (*Client) GetResConfigInstaller

func (c *Client) GetResConfigInstaller(id int64) (*ResConfigInstaller, error)

GetResConfigInstaller gets res.config.installer existing record.

func (*Client) GetResConfigInstallers

func (c *Client) GetResConfigInstallers(ids []int64) (*ResConfigInstallers, error)

GetResConfigInstallers gets res.config.installer existing records.

func (*Client) GetResConfigSettings

func (c *Client) GetResConfigSettings(id int64) (*ResConfigSettings, error)

GetResConfigSettings gets res.config.settings existing record.

func (*Client) GetResConfigSettingss

func (c *Client) GetResConfigSettingss(ids []int64) (*ResConfigSettingss, error)

GetResConfigSettingss gets res.config.settings existing records.

func (*Client) GetResConfigs

func (c *Client) GetResConfigs(ids []int64) (*ResConfigs, error)

GetResConfigs gets res.config existing records.

func (*Client) GetResCountry

func (c *Client) GetResCountry(id int64) (*ResCountry, error)

GetResCountry gets res.country existing record.

func (*Client) GetResCountryGroup

func (c *Client) GetResCountryGroup(id int64) (*ResCountryGroup, error)

GetResCountryGroup gets res.country.group existing record.

func (*Client) GetResCountryGroups

func (c *Client) GetResCountryGroups(ids []int64) (*ResCountryGroups, error)

GetResCountryGroups gets res.country.group existing records.

func (*Client) GetResCountryState

func (c *Client) GetResCountryState(id int64) (*ResCountryState, error)

GetResCountryState gets res.country.state existing record.

func (*Client) GetResCountryStates

func (c *Client) GetResCountryStates(ids []int64) (*ResCountryStates, error)

GetResCountryStates gets res.country.state existing records.

func (*Client) GetResCountrys

func (c *Client) GetResCountrys(ids []int64) (*ResCountrys, error)

GetResCountrys gets res.country existing records.

func (*Client) GetResCurrency

func (c *Client) GetResCurrency(id int64) (*ResCurrency, error)

GetResCurrency gets res.currency existing record.

func (*Client) GetResCurrencyRate

func (c *Client) GetResCurrencyRate(id int64) (*ResCurrencyRate, error)

GetResCurrencyRate gets res.currency.rate existing record.

func (*Client) GetResCurrencyRates

func (c *Client) GetResCurrencyRates(ids []int64) (*ResCurrencyRates, error)

GetResCurrencyRates gets res.currency.rate existing records.

func (*Client) GetResCurrencys

func (c *Client) GetResCurrencys(ids []int64) (*ResCurrencys, error)

GetResCurrencys gets res.currency existing records.

func (*Client) GetResGroups

func (c *Client) GetResGroups(id int64) (*ResGroups, error)

GetResGroups gets res.groups existing record.

func (*Client) GetResGroupss

func (c *Client) GetResGroupss(ids []int64) (*ResGroupss, error)

GetResGroupss gets res.groups existing records.

func (*Client) GetResLang

func (c *Client) GetResLang(id int64) (*ResLang, error)

GetResLang gets res.lang existing record.

func (*Client) GetResLangs

func (c *Client) GetResLangs(ids []int64) (*ResLangs, error)

GetResLangs gets res.lang existing records.

func (*Client) GetResPartner

func (c *Client) GetResPartner(id int64) (*ResPartner, error)

GetResPartner gets res.partner existing record.

func (*Client) GetResPartnerAutocompleteSync

func (c *Client) GetResPartnerAutocompleteSync(id int64) (*ResPartnerAutocompleteSync, error)

GetResPartnerAutocompleteSync gets res.partner.autocomplete.sync existing record.

func (*Client) GetResPartnerAutocompleteSyncs

func (c *Client) GetResPartnerAutocompleteSyncs(ids []int64) (*ResPartnerAutocompleteSyncs, error)

GetResPartnerAutocompleteSyncs gets res.partner.autocomplete.sync existing records.

func (*Client) GetResPartnerBank

func (c *Client) GetResPartnerBank(id int64) (*ResPartnerBank, error)

GetResPartnerBank gets res.partner.bank existing record.

func (*Client) GetResPartnerBanks

func (c *Client) GetResPartnerBanks(ids []int64) (*ResPartnerBanks, error)

GetResPartnerBanks gets res.partner.bank existing records.

func (*Client) GetResPartnerCategory

func (c *Client) GetResPartnerCategory(id int64) (*ResPartnerCategory, error)

GetResPartnerCategory gets res.partner.category existing record.

func (*Client) GetResPartnerCategorys

func (c *Client) GetResPartnerCategorys(ids []int64) (*ResPartnerCategorys, error)

GetResPartnerCategorys gets res.partner.category existing records.

func (*Client) GetResPartnerIndustry

func (c *Client) GetResPartnerIndustry(id int64) (*ResPartnerIndustry, error)

GetResPartnerIndustry gets res.partner.industry existing record.

func (*Client) GetResPartnerIndustrys

func (c *Client) GetResPartnerIndustrys(ids []int64) (*ResPartnerIndustrys, error)

GetResPartnerIndustrys gets res.partner.industry existing records.

func (*Client) GetResPartnerTitle

func (c *Client) GetResPartnerTitle(id int64) (*ResPartnerTitle, error)

GetResPartnerTitle gets res.partner.title existing record.

func (*Client) GetResPartnerTitles

func (c *Client) GetResPartnerTitles(ids []int64) (*ResPartnerTitles, error)

GetResPartnerTitles gets res.partner.title existing records.

func (*Client) GetResPartners

func (c *Client) GetResPartners(ids []int64) (*ResPartners, error)

GetResPartners gets res.partner existing records.

func (*Client) GetResUsers

func (c *Client) GetResUsers(id int64) (*ResUsers, error)

GetResUsers gets res.users existing record.

func (*Client) GetResUsersLog

func (c *Client) GetResUsersLog(id int64) (*ResUsersLog, error)

GetResUsersLog gets res.users.log existing record.

func (*Client) GetResUsersLogs

func (c *Client) GetResUsersLogs(ids []int64) (*ResUsersLogs, error)

GetResUsersLogs gets res.users.log existing records.

func (*Client) GetResUserss

func (c *Client) GetResUserss(ids []int64) (*ResUserss, error)

GetResUserss gets res.users existing records.

func (*Client) GetResetViewArchWizard

func (c *Client) GetResetViewArchWizard(id int64) (*ResetViewArchWizard, error)

GetResetViewArchWizard gets reset.view.arch.wizard existing record.

func (*Client) GetResetViewArchWizards

func (c *Client) GetResetViewArchWizards(ids []int64) (*ResetViewArchWizards, error)

GetResetViewArchWizards gets reset.view.arch.wizard existing records.

func (*Client) GetResourceCalendar

func (c *Client) GetResourceCalendar(id int64) (*ResourceCalendar, error)

GetResourceCalendar gets resource.calendar existing record.

func (*Client) GetResourceCalendarAttendance

func (c *Client) GetResourceCalendarAttendance(id int64) (*ResourceCalendarAttendance, error)

GetResourceCalendarAttendance gets resource.calendar.attendance existing record.

func (*Client) GetResourceCalendarAttendances

func (c *Client) GetResourceCalendarAttendances(ids []int64) (*ResourceCalendarAttendances, error)

GetResourceCalendarAttendances gets resource.calendar.attendance existing records.

func (*Client) GetResourceCalendarLeaves

func (c *Client) GetResourceCalendarLeaves(id int64) (*ResourceCalendarLeaves, error)

GetResourceCalendarLeaves gets resource.calendar.leaves existing record.

func (*Client) GetResourceCalendarLeavess

func (c *Client) GetResourceCalendarLeavess(ids []int64) (*ResourceCalendarLeavess, error)

GetResourceCalendarLeavess gets resource.calendar.leaves existing records.

func (*Client) GetResourceCalendars

func (c *Client) GetResourceCalendars(ids []int64) (*ResourceCalendars, error)

GetResourceCalendars gets resource.calendar existing records.

func (*Client) GetResourceMixin

func (c *Client) GetResourceMixin(id int64) (*ResourceMixin, error)

GetResourceMixin gets resource.mixin existing record.

func (*Client) GetResourceMixins

func (c *Client) GetResourceMixins(ids []int64) (*ResourceMixins, error)

GetResourceMixins gets resource.mixin existing records.

func (*Client) GetResourceResource

func (c *Client) GetResourceResource(id int64) (*ResourceResource, error)

GetResourceResource gets resource.resource existing record.

func (*Client) GetResourceResources

func (c *Client) GetResourceResources(ids []int64) (*ResourceResources, error)

GetResourceResources gets resource.resource existing records.

func (*Client) GetSaleAdvancePaymentInv

func (c *Client) GetSaleAdvancePaymentInv(id int64) (*SaleAdvancePaymentInv, error)

GetSaleAdvancePaymentInv gets sale.advance.payment.inv existing record.

func (*Client) GetSaleAdvancePaymentInvs

func (c *Client) GetSaleAdvancePaymentInvs(ids []int64) (*SaleAdvancePaymentInvs, error)

GetSaleAdvancePaymentInvs gets sale.advance.payment.inv existing records.

func (*Client) GetSaleOrder

func (c *Client) GetSaleOrder(id int64) (*SaleOrder, error)

GetSaleOrder gets sale.order existing record.

func (*Client) GetSaleOrderLine

func (c *Client) GetSaleOrderLine(id int64) (*SaleOrderLine, error)

GetSaleOrderLine gets sale.order.line existing record.

func (*Client) GetSaleOrderLines

func (c *Client) GetSaleOrderLines(ids []int64) (*SaleOrderLines, error)

GetSaleOrderLines gets sale.order.line existing records.

func (*Client) GetSaleOrderOption

func (c *Client) GetSaleOrderOption(id int64) (*SaleOrderOption, error)

GetSaleOrderOption gets sale.order.option existing record.

func (*Client) GetSaleOrderOptions

func (c *Client) GetSaleOrderOptions(ids []int64) (*SaleOrderOptions, error)

GetSaleOrderOptions gets sale.order.option existing records.

func (*Client) GetSaleOrderTemplate

func (c *Client) GetSaleOrderTemplate(id int64) (*SaleOrderTemplate, error)

GetSaleOrderTemplate gets sale.order.template existing record.

func (*Client) GetSaleOrderTemplateLine

func (c *Client) GetSaleOrderTemplateLine(id int64) (*SaleOrderTemplateLine, error)

GetSaleOrderTemplateLine gets sale.order.template.line existing record.

func (*Client) GetSaleOrderTemplateLines

func (c *Client) GetSaleOrderTemplateLines(ids []int64) (*SaleOrderTemplateLines, error)

GetSaleOrderTemplateLines gets sale.order.template.line existing records.

func (*Client) GetSaleOrderTemplateOption

func (c *Client) GetSaleOrderTemplateOption(id int64) (*SaleOrderTemplateOption, error)

GetSaleOrderTemplateOption gets sale.order.template.option existing record.

func (*Client) GetSaleOrderTemplateOptions

func (c *Client) GetSaleOrderTemplateOptions(ids []int64) (*SaleOrderTemplateOptions, error)

GetSaleOrderTemplateOptions gets sale.order.template.option existing records.

func (*Client) GetSaleOrderTemplates

func (c *Client) GetSaleOrderTemplates(ids []int64) (*SaleOrderTemplates, error)

GetSaleOrderTemplates gets sale.order.template existing records.

func (*Client) GetSaleOrders

func (c *Client) GetSaleOrders(ids []int64) (*SaleOrders, error)

GetSaleOrders gets sale.order existing records.

func (*Client) GetSalePaymentAcquirerOnboardingWizard

func (c *Client) GetSalePaymentAcquirerOnboardingWizard(id int64) (*SalePaymentAcquirerOnboardingWizard, error)

GetSalePaymentAcquirerOnboardingWizard gets sale.payment.acquirer.onboarding.wizard existing record.

func (*Client) GetSalePaymentAcquirerOnboardingWizards

func (c *Client) GetSalePaymentAcquirerOnboardingWizards(ids []int64) (*SalePaymentAcquirerOnboardingWizards, error)

GetSalePaymentAcquirerOnboardingWizards gets sale.payment.acquirer.onboarding.wizard existing records.

func (*Client) GetSaleReport

func (c *Client) GetSaleReport(id int64) (*SaleReport, error)

GetSaleReport gets sale.report existing record.

func (*Client) GetSaleReports

func (c *Client) GetSaleReports(ids []int64) (*SaleReports, error)

GetSaleReports gets sale.report existing records.

func (*Client) GetSlideAnswer

func (c *Client) GetSlideAnswer(id int64) (*SlideAnswer, error)

GetSlideAnswer gets slide.answer existing record.

func (*Client) GetSlideAnswerUsers

func (c *Client) GetSlideAnswerUsers(id int64) (*SlideAnswerUsers, error)

GetSlideAnswerUsers gets slide.answer_users existing record.

func (*Client) GetSlideAnswerUserss

func (c *Client) GetSlideAnswerUserss(ids []int64) (*SlideAnswerUserss, error)

GetSlideAnswerUserss gets slide.answer_users existing records.

func (*Client) GetSlideAnswers

func (c *Client) GetSlideAnswers(ids []int64) (*SlideAnswers, error)

GetSlideAnswers gets slide.answer existing records.

func (*Client) GetSlideChannel

func (c *Client) GetSlideChannel(id int64) (*SlideChannel, error)

GetSlideChannel gets slide.channel existing record.

func (*Client) GetSlideChannelInvite

func (c *Client) GetSlideChannelInvite(id int64) (*SlideChannelInvite, error)

GetSlideChannelInvite gets slide.channel.invite existing record.

func (*Client) GetSlideChannelInvites

func (c *Client) GetSlideChannelInvites(ids []int64) (*SlideChannelInvites, error)

GetSlideChannelInvites gets slide.channel.invite existing records.

func (*Client) GetSlideChannelPartner

func (c *Client) GetSlideChannelPartner(id int64) (*SlideChannelPartner, error)

GetSlideChannelPartner gets slide.channel.partner existing record.

func (*Client) GetSlideChannelPartners

func (c *Client) GetSlideChannelPartners(ids []int64) (*SlideChannelPartners, error)

GetSlideChannelPartners gets slide.channel.partner existing records.

func (*Client) GetSlideChannelPrices

func (c *Client) GetSlideChannelPrices(id int64) (*SlideChannelPrices, error)

GetSlideChannelPrices gets slide.channel_prices existing record.

func (*Client) GetSlideChannelPricess

func (c *Client) GetSlideChannelPricess(ids []int64) (*SlideChannelPricess, error)

GetSlideChannelPricess gets slide.channel_prices existing records.

func (*Client) GetSlideChannelSchedules

func (c *Client) GetSlideChannelSchedules(id int64) (*SlideChannelSchedules, error)

GetSlideChannelSchedules gets slide.channel_schedules existing record.

func (*Client) GetSlideChannelScheduless

func (c *Client) GetSlideChannelScheduless(ids []int64) (*SlideChannelScheduless, error)

GetSlideChannelScheduless gets slide.channel_schedules existing records.

func (*Client) GetSlideChannelSfcPrices

func (c *Client) GetSlideChannelSfcPrices(id int64) (*SlideChannelSfcPrices, error)

GetSlideChannelSfcPrices gets slide.channel_sfc_prices existing record.

func (*Client) GetSlideChannelSfcPricess

func (c *Client) GetSlideChannelSfcPricess(ids []int64) (*SlideChannelSfcPricess, error)

GetSlideChannelSfcPricess gets slide.channel_sfc_prices existing records.

func (*Client) GetSlideChannelTag

func (c *Client) GetSlideChannelTag(id int64) (*SlideChannelTag, error)

GetSlideChannelTag gets slide.channel.tag existing record.

func (*Client) GetSlideChannelTagGroup

func (c *Client) GetSlideChannelTagGroup(id int64) (*SlideChannelTagGroup, error)

GetSlideChannelTagGroup gets slide.channel.tag.group existing record.

func (*Client) GetSlideChannelTagGroups

func (c *Client) GetSlideChannelTagGroups(ids []int64) (*SlideChannelTagGroups, error)

GetSlideChannelTagGroups gets slide.channel.tag.group existing records.

func (*Client) GetSlideChannelTags

func (c *Client) GetSlideChannelTags(ids []int64) (*SlideChannelTags, error)

GetSlideChannelTags gets slide.channel.tag existing records.

func (*Client) GetSlideChannels

func (c *Client) GetSlideChannels(ids []int64) (*SlideChannels, error)

GetSlideChannels gets slide.channel existing records.

func (*Client) GetSlideCourseType

func (c *Client) GetSlideCourseType(id int64) (*SlideCourseType, error)

GetSlideCourseType gets slide.course_type existing record.

func (*Client) GetSlideCourseTypes

func (c *Client) GetSlideCourseTypes(ids []int64) (*SlideCourseTypes, error)

GetSlideCourseTypes gets slide.course_type existing records.

func (*Client) GetSlideEmbed

func (c *Client) GetSlideEmbed(id int64) (*SlideEmbed, error)

GetSlideEmbed gets slide.embed existing record.

func (*Client) GetSlideEmbeds

func (c *Client) GetSlideEmbeds(ids []int64) (*SlideEmbeds, error)

GetSlideEmbeds gets slide.embed existing records.

func (*Client) GetSlideQuestion

func (c *Client) GetSlideQuestion(id int64) (*SlideQuestion, error)

GetSlideQuestion gets slide.question existing record.

func (*Client) GetSlideQuestions

func (c *Client) GetSlideQuestions(ids []int64) (*SlideQuestions, error)

GetSlideQuestions gets slide.question existing records.

func (*Client) GetSlideSlide

func (c *Client) GetSlideSlide(id int64) (*SlideSlide, error)

GetSlideSlide gets slide.slide existing record.

func (*Client) GetSlideSlideAttachment

func (c *Client) GetSlideSlideAttachment(id int64) (*SlideSlideAttachment, error)

GetSlideSlideAttachment gets slide.slide_attachment existing record.

func (*Client) GetSlideSlideAttachments

func (c *Client) GetSlideSlideAttachments(ids []int64) (*SlideSlideAttachments, error)

GetSlideSlideAttachments gets slide.slide_attachment existing records.

func (c *Client) GetSlideSlideLink(id int64) (*SlideSlideLink, error)

GetSlideSlideLink gets slide.slide.link existing record.

func (c *Client) GetSlideSlideLinks(ids []int64) (*SlideSlideLinks, error)

GetSlideSlideLinks gets slide.slide.link existing records.

func (*Client) GetSlideSlidePartner

func (c *Client) GetSlideSlidePartner(id int64) (*SlideSlidePartner, error)

GetSlideSlidePartner gets slide.slide.partner existing record.

func (*Client) GetSlideSlidePartners

func (c *Client) GetSlideSlidePartners(ids []int64) (*SlideSlidePartners, error)

GetSlideSlidePartners gets slide.slide.partner existing records.

func (*Client) GetSlideSlideSchedule

func (c *Client) GetSlideSlideSchedule(id int64) (*SlideSlideSchedule, error)

GetSlideSlideSchedule gets slide.slide_schedule existing record.

func (*Client) GetSlideSlideSchedules

func (c *Client) GetSlideSlideSchedules(ids []int64) (*SlideSlideSchedules, error)

GetSlideSlideSchedules gets slide.slide_schedule existing records.

func (*Client) GetSlideSlides

func (c *Client) GetSlideSlides(ids []int64) (*SlideSlides, error)

GetSlideSlides gets slide.slide existing records.

func (*Client) GetSlideTag

func (c *Client) GetSlideTag(id int64) (*SlideTag, error)

GetSlideTag gets slide.tag existing record.

func (*Client) GetSlideTags

func (c *Client) GetSlideTags(ids []int64) (*SlideTags, error)

GetSlideTags gets slide.tag existing records.

func (*Client) GetSmsApi

func (c *Client) GetSmsApi(id int64) (*SmsApi, error)

GetSmsApi gets sms.api existing record.

func (*Client) GetSmsApis

func (c *Client) GetSmsApis(ids []int64) (*SmsApis, error)

GetSmsApis gets sms.api existing records.

func (*Client) GetSmsCancel

func (c *Client) GetSmsCancel(id int64) (*SmsCancel, error)

GetSmsCancel gets sms.cancel existing record.

func (*Client) GetSmsCancels

func (c *Client) GetSmsCancels(ids []int64) (*SmsCancels, error)

GetSmsCancels gets sms.cancel existing records.

func (*Client) GetSmsComposer

func (c *Client) GetSmsComposer(id int64) (*SmsComposer, error)

GetSmsComposer gets sms.composer existing record.

func (*Client) GetSmsComposers

func (c *Client) GetSmsComposers(ids []int64) (*SmsComposers, error)

GetSmsComposers gets sms.composer existing records.

func (*Client) GetSmsResend

func (c *Client) GetSmsResend(id int64) (*SmsResend, error)

GetSmsResend gets sms.resend existing record.

func (*Client) GetSmsResendRecipient

func (c *Client) GetSmsResendRecipient(id int64) (*SmsResendRecipient, error)

GetSmsResendRecipient gets sms.resend.recipient existing record.

func (*Client) GetSmsResendRecipients

func (c *Client) GetSmsResendRecipients(ids []int64) (*SmsResendRecipients, error)

GetSmsResendRecipients gets sms.resend.recipient existing records.

func (*Client) GetSmsResends

func (c *Client) GetSmsResends(ids []int64) (*SmsResends, error)

GetSmsResends gets sms.resend existing records.

func (*Client) GetSmsSms

func (c *Client) GetSmsSms(id int64) (*SmsSms, error)

GetSmsSms gets sms.sms existing record.

func (*Client) GetSmsSmss

func (c *Client) GetSmsSmss(ids []int64) (*SmsSmss, error)

GetSmsSmss gets sms.sms existing records.

func (*Client) GetSmsTemplate

func (c *Client) GetSmsTemplate(id int64) (*SmsTemplate, error)

GetSmsTemplate gets sms.template existing record.

func (*Client) GetSmsTemplatePreview

func (c *Client) GetSmsTemplatePreview(id int64) (*SmsTemplatePreview, error)

GetSmsTemplatePreview gets sms.template.preview existing record.

func (*Client) GetSmsTemplatePreviews

func (c *Client) GetSmsTemplatePreviews(ids []int64) (*SmsTemplatePreviews, error)

GetSmsTemplatePreviews gets sms.template.preview existing records.

func (*Client) GetSmsTemplates

func (c *Client) GetSmsTemplates(ids []int64) (*SmsTemplates, error)

GetSmsTemplates gets sms.template existing records.

func (*Client) GetSnailmailLetter

func (c *Client) GetSnailmailLetter(id int64) (*SnailmailLetter, error)

GetSnailmailLetter gets snailmail.letter existing record.

func (*Client) GetSnailmailLetterCancel

func (c *Client) GetSnailmailLetterCancel(id int64) (*SnailmailLetterCancel, error)

GetSnailmailLetterCancel gets snailmail.letter.cancel existing record.

func (*Client) GetSnailmailLetterCancels

func (c *Client) GetSnailmailLetterCancels(ids []int64) (*SnailmailLetterCancels, error)

GetSnailmailLetterCancels gets snailmail.letter.cancel existing records.

func (*Client) GetSnailmailLetterFormatError

func (c *Client) GetSnailmailLetterFormatError(id int64) (*SnailmailLetterFormatError, error)

GetSnailmailLetterFormatError gets snailmail.letter.format.error existing record.

func (*Client) GetSnailmailLetterFormatErrors

func (c *Client) GetSnailmailLetterFormatErrors(ids []int64) (*SnailmailLetterFormatErrors, error)

GetSnailmailLetterFormatErrors gets snailmail.letter.format.error existing records.

func (*Client) GetSnailmailLetterMissingRequiredFields

func (c *Client) GetSnailmailLetterMissingRequiredFields(id int64) (*SnailmailLetterMissingRequiredFields, error)

GetSnailmailLetterMissingRequiredFields gets snailmail.letter.missing.required.fields existing record.

func (*Client) GetSnailmailLetterMissingRequiredFieldss

func (c *Client) GetSnailmailLetterMissingRequiredFieldss(ids []int64) (*SnailmailLetterMissingRequiredFieldss, error)

GetSnailmailLetterMissingRequiredFieldss gets snailmail.letter.missing.required.fields existing records.

func (*Client) GetSnailmailLetters

func (c *Client) GetSnailmailLetters(ids []int64) (*SnailmailLetters, error)

GetSnailmailLetters gets snailmail.letter existing records.

func (*Client) GetSurveyInvite

func (c *Client) GetSurveyInvite(id int64) (*SurveyInvite, error)

GetSurveyInvite gets survey.invite existing record.

func (*Client) GetSurveyInvites

func (c *Client) GetSurveyInvites(ids []int64) (*SurveyInvites, error)

GetSurveyInvites gets survey.invite existing records.

func (*Client) GetSurveyLabel

func (c *Client) GetSurveyLabel(id int64) (*SurveyLabel, error)

GetSurveyLabel gets survey.label existing record.

func (*Client) GetSurveyLabels

func (c *Client) GetSurveyLabels(ids []int64) (*SurveyLabels, error)

GetSurveyLabels gets survey.label existing records.

func (*Client) GetSurveyQuestion

func (c *Client) GetSurveyQuestion(id int64) (*SurveyQuestion, error)

GetSurveyQuestion gets survey.question existing record.

func (*Client) GetSurveyQuestions

func (c *Client) GetSurveyQuestions(ids []int64) (*SurveyQuestions, error)

GetSurveyQuestions gets survey.question existing records.

func (*Client) GetSurveySurvey

func (c *Client) GetSurveySurvey(id int64) (*SurveySurvey, error)

GetSurveySurvey gets survey.survey existing record.

func (*Client) GetSurveySurveys

func (c *Client) GetSurveySurveys(ids []int64) (*SurveySurveys, error)

GetSurveySurveys gets survey.survey existing records.

func (*Client) GetSurveyUserInput

func (c *Client) GetSurveyUserInput(id int64) (*SurveyUserInput, error)

GetSurveyUserInput gets survey.user_input existing record.

func (*Client) GetSurveyUserInputLine

func (c *Client) GetSurveyUserInputLine(id int64) (*SurveyUserInputLine, error)

GetSurveyUserInputLine gets survey.user_input_line existing record.

func (*Client) GetSurveyUserInputLines

func (c *Client) GetSurveyUserInputLines(ids []int64) (*SurveyUserInputLines, error)

GetSurveyUserInputLines gets survey.user_input_line existing records.

func (*Client) GetSurveyUserInputs

func (c *Client) GetSurveyUserInputs(ids []int64) (*SurveyUserInputs, error)

GetSurveyUserInputs gets survey.user_input existing records.

func (*Client) GetTaxAdjustmentsWizard

func (c *Client) GetTaxAdjustmentsWizard(id int64) (*TaxAdjustmentsWizard, error)

GetTaxAdjustmentsWizard gets tax.adjustments.wizard existing record.

func (*Client) GetTaxAdjustmentsWizards

func (c *Client) GetTaxAdjustmentsWizards(ids []int64) (*TaxAdjustmentsWizards, error)

GetTaxAdjustmentsWizards gets tax.adjustments.wizard existing records.

func (*Client) GetThemeIrAttachment

func (c *Client) GetThemeIrAttachment(id int64) (*ThemeIrAttachment, error)

GetThemeIrAttachment gets theme.ir.attachment existing record.

func (*Client) GetThemeIrAttachments

func (c *Client) GetThemeIrAttachments(ids []int64) (*ThemeIrAttachments, error)

GetThemeIrAttachments gets theme.ir.attachment existing records.

func (*Client) GetThemeIrUiView

func (c *Client) GetThemeIrUiView(id int64) (*ThemeIrUiView, error)

GetThemeIrUiView gets theme.ir.ui.view existing record.

func (*Client) GetThemeIrUiViews

func (c *Client) GetThemeIrUiViews(ids []int64) (*ThemeIrUiViews, error)

GetThemeIrUiViews gets theme.ir.ui.view existing records.

func (*Client) GetThemeUtils

func (c *Client) GetThemeUtils(id int64) (*ThemeUtils, error)

GetThemeUtils gets theme.utils existing record.

func (*Client) GetThemeUtilss

func (c *Client) GetThemeUtilss(ids []int64) (*ThemeUtilss, error)

GetThemeUtilss gets theme.utils existing records.

func (*Client) GetThemeWebsiteMenu

func (c *Client) GetThemeWebsiteMenu(id int64) (*ThemeWebsiteMenu, error)

GetThemeWebsiteMenu gets theme.website.menu existing record.

func (*Client) GetThemeWebsiteMenus

func (c *Client) GetThemeWebsiteMenus(ids []int64) (*ThemeWebsiteMenus, error)

GetThemeWebsiteMenus gets theme.website.menu existing records.

func (*Client) GetThemeWebsitePage

func (c *Client) GetThemeWebsitePage(id int64) (*ThemeWebsitePage, error)

GetThemeWebsitePage gets theme.website.page existing record.

func (*Client) GetThemeWebsitePages

func (c *Client) GetThemeWebsitePages(ids []int64) (*ThemeWebsitePages, error)

GetThemeWebsitePages gets theme.website.page existing records.

func (*Client) GetUomCategory

func (c *Client) GetUomCategory(id int64) (*UomCategory, error)

GetUomCategory gets uom.category existing record.

func (*Client) GetUomCategorys

func (c *Client) GetUomCategorys(ids []int64) (*UomCategorys, error)

GetUomCategorys gets uom.category existing records.

func (*Client) GetUomUom

func (c *Client) GetUomUom(id int64) (*UomUom, error)

GetUomUom gets uom.uom existing record.

func (*Client) GetUomUoms

func (c *Client) GetUomUoms(ids []int64) (*UomUoms, error)

GetUomUoms gets uom.uom existing records.

func (*Client) GetUserPayment

func (c *Client) GetUserPayment(id int64) (*UserPayment, error)

GetUserPayment gets user.payment existing record.

func (*Client) GetUserPayments

func (c *Client) GetUserPayments(ids []int64) (*UserPayments, error)

GetUserPayments gets user.payment existing records.

func (*Client) GetUserProfile

func (c *Client) GetUserProfile(id int64) (*UserProfile, error)

GetUserProfile gets user.profile existing record.

func (*Client) GetUserProfiles

func (c *Client) GetUserProfiles(ids []int64) (*UserProfiles, error)

GetUserProfiles gets user.profile existing records.

func (*Client) GetUtmCampaign

func (c *Client) GetUtmCampaign(id int64) (*UtmCampaign, error)

GetUtmCampaign gets utm.campaign existing record.

func (*Client) GetUtmCampaigns

func (c *Client) GetUtmCampaigns(ids []int64) (*UtmCampaigns, error)

GetUtmCampaigns gets utm.campaign existing records.

func (*Client) GetUtmMedium

func (c *Client) GetUtmMedium(id int64) (*UtmMedium, error)

GetUtmMedium gets utm.medium existing record.

func (*Client) GetUtmMediums

func (c *Client) GetUtmMediums(ids []int64) (*UtmMediums, error)

GetUtmMediums gets utm.medium existing records.

func (*Client) GetUtmMixin

func (c *Client) GetUtmMixin(id int64) (*UtmMixin, error)

GetUtmMixin gets utm.mixin existing record.

func (*Client) GetUtmMixins

func (c *Client) GetUtmMixins(ids []int64) (*UtmMixins, error)

GetUtmMixins gets utm.mixin existing records.

func (*Client) GetUtmSource

func (c *Client) GetUtmSource(id int64) (*UtmSource, error)

GetUtmSource gets utm.source existing record.

func (*Client) GetUtmSources

func (c *Client) GetUtmSources(ids []int64) (*UtmSources, error)

GetUtmSources gets utm.source existing records.

func (*Client) GetUtmStage

func (c *Client) GetUtmStage(id int64) (*UtmStage, error)

GetUtmStage gets utm.stage existing record.

func (*Client) GetUtmStages

func (c *Client) GetUtmStages(ids []int64) (*UtmStages, error)

GetUtmStages gets utm.stage existing records.

func (*Client) GetUtmTag

func (c *Client) GetUtmTag(id int64) (*UtmTag, error)

GetUtmTag gets utm.tag existing record.

func (*Client) GetUtmTags

func (c *Client) GetUtmTags(ids []int64) (*UtmTags, error)

GetUtmTags gets utm.tag existing records.

func (*Client) GetValidateAccountMove

func (c *Client) GetValidateAccountMove(id int64) (*ValidateAccountMove, error)

GetValidateAccountMove gets validate.account.move existing record.

func (*Client) GetValidateAccountMoves

func (c *Client) GetValidateAccountMoves(ids []int64) (*ValidateAccountMoves, error)

GetValidateAccountMoves gets validate.account.move existing records.

func (*Client) GetWebEditorAssets

func (c *Client) GetWebEditorAssets(id int64) (*WebEditorAssets, error)

GetWebEditorAssets gets web_editor.assets existing record.

func (*Client) GetWebEditorAssetss

func (c *Client) GetWebEditorAssetss(ids []int64) (*WebEditorAssetss, error)

GetWebEditorAssetss gets web_editor.assets existing records.

func (*Client) GetWebEditorConverterTestSub

func (c *Client) GetWebEditorConverterTestSub(id int64) (*WebEditorConverterTestSub, error)

GetWebEditorConverterTestSub gets web_editor.converter.test.sub existing record.

func (*Client) GetWebEditorConverterTestSubs

func (c *Client) GetWebEditorConverterTestSubs(ids []int64) (*WebEditorConverterTestSubs, error)

GetWebEditorConverterTestSubs gets web_editor.converter.test.sub existing records.

func (*Client) GetWebTourTour

func (c *Client) GetWebTourTour(id int64) (*WebTourTour, error)

GetWebTourTour gets web_tour.tour existing record.

func (*Client) GetWebTourTours

func (c *Client) GetWebTourTours(ids []int64) (*WebTourTours, error)

GetWebTourTours gets web_tour.tour existing records.

func (*Client) GetWebsite

func (c *Client) GetWebsite(id int64) (*Website, error)

GetWebsite gets website existing record.

func (*Client) GetWebsiteMassMailingPopup

func (c *Client) GetWebsiteMassMailingPopup(id int64) (*WebsiteMassMailingPopup, error)

GetWebsiteMassMailingPopup gets website.mass_mailing.popup existing record.

func (*Client) GetWebsiteMassMailingPopups

func (c *Client) GetWebsiteMassMailingPopups(ids []int64) (*WebsiteMassMailingPopups, error)

GetWebsiteMassMailingPopups gets website.mass_mailing.popup existing records.

func (*Client) GetWebsiteMenu

func (c *Client) GetWebsiteMenu(id int64) (*WebsiteMenu, error)

GetWebsiteMenu gets website.menu existing record.

func (*Client) GetWebsiteMenus

func (c *Client) GetWebsiteMenus(ids []int64) (*WebsiteMenus, error)

GetWebsiteMenus gets website.menu existing records.

func (*Client) GetWebsiteMultiMixin

func (c *Client) GetWebsiteMultiMixin(id int64) (*WebsiteMultiMixin, error)

GetWebsiteMultiMixin gets website.multi.mixin existing record.

func (*Client) GetWebsiteMultiMixins

func (c *Client) GetWebsiteMultiMixins(ids []int64) (*WebsiteMultiMixins, error)

GetWebsiteMultiMixins gets website.multi.mixin existing records.

func (*Client) GetWebsitePage

func (c *Client) GetWebsitePage(id int64) (*WebsitePage, error)

GetWebsitePage gets website.page existing record.

func (*Client) GetWebsitePages

func (c *Client) GetWebsitePages(ids []int64) (*WebsitePages, error)

GetWebsitePages gets website.page existing records.

func (*Client) GetWebsitePublishedMixin

func (c *Client) GetWebsitePublishedMixin(id int64) (*WebsitePublishedMixin, error)

GetWebsitePublishedMixin gets website.published.mixin existing record.

func (*Client) GetWebsitePublishedMixins

func (c *Client) GetWebsitePublishedMixins(ids []int64) (*WebsitePublishedMixins, error)

GetWebsitePublishedMixins gets website.published.mixin existing records.

func (*Client) GetWebsitePublishedMultiMixin

func (c *Client) GetWebsitePublishedMultiMixin(id int64) (*WebsitePublishedMultiMixin, error)

GetWebsitePublishedMultiMixin gets website.published.multi.mixin existing record.

func (*Client) GetWebsitePublishedMultiMixins

func (c *Client) GetWebsitePublishedMultiMixins(ids []int64) (*WebsitePublishedMultiMixins, error)

GetWebsitePublishedMultiMixins gets website.published.multi.mixin existing records.

func (*Client) GetWebsiteRewrite

func (c *Client) GetWebsiteRewrite(id int64) (*WebsiteRewrite, error)

GetWebsiteRewrite gets website.rewrite existing record.

func (*Client) GetWebsiteRewrites

func (c *Client) GetWebsiteRewrites(ids []int64) (*WebsiteRewrites, error)

GetWebsiteRewrites gets website.rewrite existing records.

func (*Client) GetWebsiteRoute

func (c *Client) GetWebsiteRoute(id int64) (*WebsiteRoute, error)

GetWebsiteRoute gets website.route existing record.

func (*Client) GetWebsiteRoutes

func (c *Client) GetWebsiteRoutes(ids []int64) (*WebsiteRoutes, error)

GetWebsiteRoutes gets website.route existing records.

func (*Client) GetWebsiteSeoMetadata

func (c *Client) GetWebsiteSeoMetadata(id int64) (*WebsiteSeoMetadata, error)

GetWebsiteSeoMetadata gets website.seo.metadata existing record.

func (*Client) GetWebsiteSeoMetadatas

func (c *Client) GetWebsiteSeoMetadatas(ids []int64) (*WebsiteSeoMetadatas, error)

GetWebsiteSeoMetadatas gets website.seo.metadata existing records.

func (*Client) GetWebsiteTrack

func (c *Client) GetWebsiteTrack(id int64) (*WebsiteTrack, error)

GetWebsiteTrack gets website.track existing record.

func (*Client) GetWebsiteTracks

func (c *Client) GetWebsiteTracks(ids []int64) (*WebsiteTracks, error)

GetWebsiteTracks gets website.track existing records.

func (*Client) GetWebsiteVisitor

func (c *Client) GetWebsiteVisitor(id int64) (*WebsiteVisitor, error)

GetWebsiteVisitor gets website.visitor existing record.

func (*Client) GetWebsiteVisitors

func (c *Client) GetWebsiteVisitors(ids []int64) (*WebsiteVisitors, error)

GetWebsiteVisitors gets website.visitor existing records.

func (*Client) GetWebsites

func (c *Client) GetWebsites(ids []int64) (*Websites, error)

GetWebsites gets website existing records.

func (*Client) GetWizardIrModelMenuCreate

func (c *Client) GetWizardIrModelMenuCreate(id int64) (*WizardIrModelMenuCreate, error)

GetWizardIrModelMenuCreate gets wizard.ir.model.menu.create existing record.

func (*Client) GetWizardIrModelMenuCreates

func (c *Client) GetWizardIrModelMenuCreates(ids []int64) (*WizardIrModelMenuCreates, error)

GetWizardIrModelMenuCreates gets wizard.ir.model.menu.create existing records.

func (*Client) Read

func (c *Client) Read(model string, ids []int64, options *Options, elem interface{}) error

Read model records matching with ids. https://www.odoo.com/documentation/13.0/webservices/odoo.html#read-records

func (*Client) ResetPasswordUsers

func (c *Client) ResetPasswordUsers(ids []int64) error

CreateResUsers creates a new res.users model and returns its id.

func (*Client) Search

func (c *Client) Search(model string, criteria *Criteria, options *Options) ([]int64, error)

Search model record ids matching with *Criteria. https://www.odoo.com/documentation/13.0/webservices/odoo.html#list-records

func (*Client) SearchRead

func (c *Client) SearchRead(model string, criteria *Criteria, options *Options, elem interface{}) error

SearchRead search model records matching with *Criteria and read it. https://www.odoo.com/documentation/13.0/webservices/odoo.html#search-and-read

func (*Client) Update

func (c *Client) Update(model string, ids []int64, values interface{}) error

Update existing model row(s). https://www.odoo.com/documentation/13.0/webservices/odoo.html#update-records

func (*Client) UpdateAccountAccount

func (c *Client) UpdateAccountAccount(aa *AccountAccount) error

UpdateAccountAccount updates an existing account.account record.

func (*Client) UpdateAccountAccountTag

func (c *Client) UpdateAccountAccountTag(aat *AccountAccountTag) error

UpdateAccountAccountTag updates an existing account.account.tag record.

func (*Client) UpdateAccountAccountTags

func (c *Client) UpdateAccountAccountTags(ids []int64, aat *AccountAccountTag) error

UpdateAccountAccountTags updates existing account.account.tag records. All records (represented by ids) will be updated by aat values.

func (*Client) UpdateAccountAccountTemplate

func (c *Client) UpdateAccountAccountTemplate(aat *AccountAccountTemplate) error

UpdateAccountAccountTemplate updates an existing account.account.template record.

func (*Client) UpdateAccountAccountTemplates

func (c *Client) UpdateAccountAccountTemplates(ids []int64, aat *AccountAccountTemplate) error

UpdateAccountAccountTemplates updates existing account.account.template records. All records (represented by ids) will be updated by aat values.

func (*Client) UpdateAccountAccountType

func (c *Client) UpdateAccountAccountType(aat *AccountAccountType) error

UpdateAccountAccountType updates an existing account.account.type record.

func (*Client) UpdateAccountAccountTypes

func (c *Client) UpdateAccountAccountTypes(ids []int64, aat *AccountAccountType) error

UpdateAccountAccountTypes updates existing account.account.type records. All records (represented by ids) will be updated by aat values.

func (*Client) UpdateAccountAccounts

func (c *Client) UpdateAccountAccounts(ids []int64, aa *AccountAccount) error

UpdateAccountAccounts updates existing account.account records. All records (represented by ids) will be updated by aa values.

func (*Client) UpdateAccountAccrualAccountingWizard

func (c *Client) UpdateAccountAccrualAccountingWizard(aaaw *AccountAccrualAccountingWizard) error

UpdateAccountAccrualAccountingWizard updates an existing account.accrual.accounting.wizard record.

func (*Client) UpdateAccountAccrualAccountingWizards

func (c *Client) UpdateAccountAccrualAccountingWizards(ids []int64, aaaw *AccountAccrualAccountingWizard) error

UpdateAccountAccrualAccountingWizards updates existing account.accrual.accounting.wizard records. All records (represented by ids) will be updated by aaaw values.

func (*Client) UpdateAccountAnalyticAccount

func (c *Client) UpdateAccountAnalyticAccount(aaa *AccountAnalyticAccount) error

UpdateAccountAnalyticAccount updates an existing account.analytic.account record.

func (*Client) UpdateAccountAnalyticAccounts

func (c *Client) UpdateAccountAnalyticAccounts(ids []int64, aaa *AccountAnalyticAccount) error

UpdateAccountAnalyticAccounts updates existing account.analytic.account records. All records (represented by ids) will be updated by aaa values.

func (*Client) UpdateAccountAnalyticDistribution

func (c *Client) UpdateAccountAnalyticDistribution(aad *AccountAnalyticDistribution) error

UpdateAccountAnalyticDistribution updates an existing account.analytic.distribution record.

func (*Client) UpdateAccountAnalyticDistributions

func (c *Client) UpdateAccountAnalyticDistributions(ids []int64, aad *AccountAnalyticDistribution) error

UpdateAccountAnalyticDistributions updates existing account.analytic.distribution records. All records (represented by ids) will be updated by aad values.

func (*Client) UpdateAccountAnalyticGroup

func (c *Client) UpdateAccountAnalyticGroup(aag *AccountAnalyticGroup) error

UpdateAccountAnalyticGroup updates an existing account.analytic.group record.

func (*Client) UpdateAccountAnalyticGroups

func (c *Client) UpdateAccountAnalyticGroups(ids []int64, aag *AccountAnalyticGroup) error

UpdateAccountAnalyticGroups updates existing account.analytic.group records. All records (represented by ids) will be updated by aag values.

func (*Client) UpdateAccountAnalyticLine

func (c *Client) UpdateAccountAnalyticLine(aal *AccountAnalyticLine) error

UpdateAccountAnalyticLine updates an existing account.analytic.line record.

func (*Client) UpdateAccountAnalyticLines

func (c *Client) UpdateAccountAnalyticLines(ids []int64, aal *AccountAnalyticLine) error

UpdateAccountAnalyticLines updates existing account.analytic.line records. All records (represented by ids) will be updated by aal values.

func (*Client) UpdateAccountAnalyticTag

func (c *Client) UpdateAccountAnalyticTag(aat *AccountAnalyticTag) error

UpdateAccountAnalyticTag updates an existing account.analytic.tag record.

func (*Client) UpdateAccountAnalyticTags

func (c *Client) UpdateAccountAnalyticTags(ids []int64, aat *AccountAnalyticTag) error

UpdateAccountAnalyticTags updates existing account.analytic.tag records. All records (represented by ids) will be updated by aat values.

func (*Client) UpdateAccountBankStatement

func (c *Client) UpdateAccountBankStatement(abs *AccountBankStatement) error

UpdateAccountBankStatement updates an existing account.bank.statement record.

func (*Client) UpdateAccountBankStatementCashbox

func (c *Client) UpdateAccountBankStatementCashbox(absc *AccountBankStatementCashbox) error

UpdateAccountBankStatementCashbox updates an existing account.bank.statement.cashbox record.

func (*Client) UpdateAccountBankStatementCashboxs

func (c *Client) UpdateAccountBankStatementCashboxs(ids []int64, absc *AccountBankStatementCashbox) error

UpdateAccountBankStatementCashboxs updates existing account.bank.statement.cashbox records. All records (represented by ids) will be updated by absc values.

func (*Client) UpdateAccountBankStatementClosebalance

func (c *Client) UpdateAccountBankStatementClosebalance(absc *AccountBankStatementClosebalance) error

UpdateAccountBankStatementClosebalance updates an existing account.bank.statement.closebalance record.

func (*Client) UpdateAccountBankStatementClosebalances

func (c *Client) UpdateAccountBankStatementClosebalances(ids []int64, absc *AccountBankStatementClosebalance) error

UpdateAccountBankStatementClosebalances updates existing account.bank.statement.closebalance records. All records (represented by ids) will be updated by absc values.

func (*Client) UpdateAccountBankStatementImport

func (c *Client) UpdateAccountBankStatementImport(absi *AccountBankStatementImport) error

UpdateAccountBankStatementImport updates an existing account.bank.statement.import record.

func (*Client) UpdateAccountBankStatementImportJournalCreation

func (c *Client) UpdateAccountBankStatementImportJournalCreation(absijc *AccountBankStatementImportJournalCreation) error

UpdateAccountBankStatementImportJournalCreation updates an existing account.bank.statement.import.journal.creation record.

func (*Client) UpdateAccountBankStatementImportJournalCreations

func (c *Client) UpdateAccountBankStatementImportJournalCreations(ids []int64, absijc *AccountBankStatementImportJournalCreation) error

UpdateAccountBankStatementImportJournalCreations updates existing account.bank.statement.import.journal.creation records. All records (represented by ids) will be updated by absijc values.

func (*Client) UpdateAccountBankStatementImports

func (c *Client) UpdateAccountBankStatementImports(ids []int64, absi *AccountBankStatementImport) error

UpdateAccountBankStatementImports updates existing account.bank.statement.import records. All records (represented by ids) will be updated by absi values.

func (*Client) UpdateAccountBankStatementLine

func (c *Client) UpdateAccountBankStatementLine(absl *AccountBankStatementLine) error

UpdateAccountBankStatementLine updates an existing account.bank.statement.line record.

func (*Client) UpdateAccountBankStatementLines

func (c *Client) UpdateAccountBankStatementLines(ids []int64, absl *AccountBankStatementLine) error

UpdateAccountBankStatementLines updates existing account.bank.statement.line records. All records (represented by ids) will be updated by absl values.

func (*Client) UpdateAccountBankStatements

func (c *Client) UpdateAccountBankStatements(ids []int64, abs *AccountBankStatement) error

UpdateAccountBankStatements updates existing account.bank.statement records. All records (represented by ids) will be updated by abs values.

func (*Client) UpdateAccountCashRounding

func (c *Client) UpdateAccountCashRounding(acr *AccountCashRounding) error

UpdateAccountCashRounding updates an existing account.cash.rounding record.

func (*Client) UpdateAccountCashRoundings

func (c *Client) UpdateAccountCashRoundings(ids []int64, acr *AccountCashRounding) error

UpdateAccountCashRoundings updates existing account.cash.rounding records. All records (represented by ids) will be updated by acr values.

func (*Client) UpdateAccountCashboxLine

func (c *Client) UpdateAccountCashboxLine(acl *AccountCashboxLine) error

UpdateAccountCashboxLine updates an existing account.cashbox.line record.

func (*Client) UpdateAccountCashboxLines

func (c *Client) UpdateAccountCashboxLines(ids []int64, acl *AccountCashboxLine) error

UpdateAccountCashboxLines updates existing account.cashbox.line records. All records (represented by ids) will be updated by acl values.

func (*Client) UpdateAccountChartTemplate

func (c *Client) UpdateAccountChartTemplate(act *AccountChartTemplate) error

UpdateAccountChartTemplate updates an existing account.chart.template record.

func (*Client) UpdateAccountChartTemplates

func (c *Client) UpdateAccountChartTemplates(ids []int64, act *AccountChartTemplate) error

UpdateAccountChartTemplates updates existing account.chart.template records. All records (represented by ids) will be updated by act values.

func (*Client) UpdateAccountCommonJournalReport

func (c *Client) UpdateAccountCommonJournalReport(acjr *AccountCommonJournalReport) error

UpdateAccountCommonJournalReport updates an existing account.common.journal.report record.

func (*Client) UpdateAccountCommonJournalReports

func (c *Client) UpdateAccountCommonJournalReports(ids []int64, acjr *AccountCommonJournalReport) error

UpdateAccountCommonJournalReports updates existing account.common.journal.report records. All records (represented by ids) will be updated by acjr values.

func (*Client) UpdateAccountCommonReport

func (c *Client) UpdateAccountCommonReport(acr *AccountCommonReport) error

UpdateAccountCommonReport updates an existing account.common.report record.

func (*Client) UpdateAccountCommonReports

func (c *Client) UpdateAccountCommonReports(ids []int64, acr *AccountCommonReport) error

UpdateAccountCommonReports updates existing account.common.report records. All records (represented by ids) will be updated by acr values.

func (*Client) UpdateAccountFinancialYearOp

func (c *Client) UpdateAccountFinancialYearOp(afyo *AccountFinancialYearOp) error

UpdateAccountFinancialYearOp updates an existing account.financial.year.op record.

func (*Client) UpdateAccountFinancialYearOps

func (c *Client) UpdateAccountFinancialYearOps(ids []int64, afyo *AccountFinancialYearOp) error

UpdateAccountFinancialYearOps updates existing account.financial.year.op records. All records (represented by ids) will be updated by afyo values.

func (*Client) UpdateAccountFiscalPosition

func (c *Client) UpdateAccountFiscalPosition(afp *AccountFiscalPosition) error

UpdateAccountFiscalPosition updates an existing account.fiscal.position record.

func (*Client) UpdateAccountFiscalPositionAccount

func (c *Client) UpdateAccountFiscalPositionAccount(afpa *AccountFiscalPositionAccount) error

UpdateAccountFiscalPositionAccount updates an existing account.fiscal.position.account record.

func (*Client) UpdateAccountFiscalPositionAccountTemplate

func (c *Client) UpdateAccountFiscalPositionAccountTemplate(afpat *AccountFiscalPositionAccountTemplate) error

UpdateAccountFiscalPositionAccountTemplate updates an existing account.fiscal.position.account.template record.

func (*Client) UpdateAccountFiscalPositionAccountTemplates

func (c *Client) UpdateAccountFiscalPositionAccountTemplates(ids []int64, afpat *AccountFiscalPositionAccountTemplate) error

UpdateAccountFiscalPositionAccountTemplates updates existing account.fiscal.position.account.template records. All records (represented by ids) will be updated by afpat values.

func (*Client) UpdateAccountFiscalPositionAccounts

func (c *Client) UpdateAccountFiscalPositionAccounts(ids []int64, afpa *AccountFiscalPositionAccount) error

UpdateAccountFiscalPositionAccounts updates existing account.fiscal.position.account records. All records (represented by ids) will be updated by afpa values.

func (*Client) UpdateAccountFiscalPositionTax

func (c *Client) UpdateAccountFiscalPositionTax(afpt *AccountFiscalPositionTax) error

UpdateAccountFiscalPositionTax updates an existing account.fiscal.position.tax record.

func (*Client) UpdateAccountFiscalPositionTaxTemplate

func (c *Client) UpdateAccountFiscalPositionTaxTemplate(afptt *AccountFiscalPositionTaxTemplate) error

UpdateAccountFiscalPositionTaxTemplate updates an existing account.fiscal.position.tax.template record.

func (*Client) UpdateAccountFiscalPositionTaxTemplates

func (c *Client) UpdateAccountFiscalPositionTaxTemplates(ids []int64, afptt *AccountFiscalPositionTaxTemplate) error

UpdateAccountFiscalPositionTaxTemplates updates existing account.fiscal.position.tax.template records. All records (represented by ids) will be updated by afptt values.

func (*Client) UpdateAccountFiscalPositionTaxs

func (c *Client) UpdateAccountFiscalPositionTaxs(ids []int64, afpt *AccountFiscalPositionTax) error

UpdateAccountFiscalPositionTaxs updates existing account.fiscal.position.tax records. All records (represented by ids) will be updated by afpt values.

func (*Client) UpdateAccountFiscalPositionTemplate

func (c *Client) UpdateAccountFiscalPositionTemplate(afpt *AccountFiscalPositionTemplate) error

UpdateAccountFiscalPositionTemplate updates an existing account.fiscal.position.template record.

func (*Client) UpdateAccountFiscalPositionTemplates

func (c *Client) UpdateAccountFiscalPositionTemplates(ids []int64, afpt *AccountFiscalPositionTemplate) error

UpdateAccountFiscalPositionTemplates updates existing account.fiscal.position.template records. All records (represented by ids) will be updated by afpt values.

func (*Client) UpdateAccountFiscalPositions

func (c *Client) UpdateAccountFiscalPositions(ids []int64, afp *AccountFiscalPosition) error

UpdateAccountFiscalPositions updates existing account.fiscal.position records. All records (represented by ids) will be updated by afp values.

func (*Client) UpdateAccountFiscalYear

func (c *Client) UpdateAccountFiscalYear(afy *AccountFiscalYear) error

UpdateAccountFiscalYear updates an existing account.fiscal.year record.

func (*Client) UpdateAccountFiscalYears

func (c *Client) UpdateAccountFiscalYears(ids []int64, afy *AccountFiscalYear) error

UpdateAccountFiscalYears updates existing account.fiscal.year records. All records (represented by ids) will be updated by afy values.

func (*Client) UpdateAccountFullReconcile

func (c *Client) UpdateAccountFullReconcile(afr *AccountFullReconcile) error

UpdateAccountFullReconcile updates an existing account.full.reconcile record.

func (*Client) UpdateAccountFullReconciles

func (c *Client) UpdateAccountFullReconciles(ids []int64, afr *AccountFullReconcile) error

UpdateAccountFullReconciles updates existing account.full.reconcile records. All records (represented by ids) will be updated by afr values.

func (*Client) UpdateAccountGroup

func (c *Client) UpdateAccountGroup(ag *AccountGroup) error

UpdateAccountGroup updates an existing account.group record.

func (*Client) UpdateAccountGroups

func (c *Client) UpdateAccountGroups(ids []int64, ag *AccountGroup) error

UpdateAccountGroups updates existing account.group records. All records (represented by ids) will be updated by ag values.

func (*Client) UpdateAccountIncoterms

func (c *Client) UpdateAccountIncoterms(ai *AccountIncoterms) error

UpdateAccountIncoterms updates an existing account.incoterms record.

func (*Client) UpdateAccountIncotermss

func (c *Client) UpdateAccountIncotermss(ids []int64, ai *AccountIncoterms) error

UpdateAccountIncotermss updates existing account.incoterms records. All records (represented by ids) will be updated by ai values.

func (*Client) UpdateAccountInvoiceReport

func (c *Client) UpdateAccountInvoiceReport(air *AccountInvoiceReport) error

UpdateAccountInvoiceReport updates an existing account.invoice.report record.

func (*Client) UpdateAccountInvoiceReports

func (c *Client) UpdateAccountInvoiceReports(ids []int64, air *AccountInvoiceReport) error

UpdateAccountInvoiceReports updates existing account.invoice.report records. All records (represented by ids) will be updated by air values.

func (*Client) UpdateAccountInvoiceSend

func (c *Client) UpdateAccountInvoiceSend(ais *AccountInvoiceSend) error

UpdateAccountInvoiceSend updates an existing account.invoice.send record.

func (*Client) UpdateAccountInvoiceSends

func (c *Client) UpdateAccountInvoiceSends(ids []int64, ais *AccountInvoiceSend) error

UpdateAccountInvoiceSends updates existing account.invoice.send records. All records (represented by ids) will be updated by ais values.

func (*Client) UpdateAccountJournal

func (c *Client) UpdateAccountJournal(aj *AccountJournal) error

UpdateAccountJournal updates an existing account.journal record.

func (*Client) UpdateAccountJournalGroup

func (c *Client) UpdateAccountJournalGroup(ajg *AccountJournalGroup) error

UpdateAccountJournalGroup updates an existing account.journal.group record.

func (*Client) UpdateAccountJournalGroups

func (c *Client) UpdateAccountJournalGroups(ids []int64, ajg *AccountJournalGroup) error

UpdateAccountJournalGroups updates existing account.journal.group records. All records (represented by ids) will be updated by ajg values.

func (*Client) UpdateAccountJournals

func (c *Client) UpdateAccountJournals(ids []int64, aj *AccountJournal) error

UpdateAccountJournals updates existing account.journal records. All records (represented by ids) will be updated by aj values.

func (*Client) UpdateAccountMove

func (c *Client) UpdateAccountMove(am *AccountMove) error

UpdateAccountMove updates an existing account.move record.

func (*Client) UpdateAccountMoveLine

func (c *Client) UpdateAccountMoveLine(aml *AccountMoveLine) error

UpdateAccountMoveLine updates an existing account.move.line record.

func (*Client) UpdateAccountMoveLines

func (c *Client) UpdateAccountMoveLines(ids []int64, aml *AccountMoveLine) error

UpdateAccountMoveLines updates existing account.move.line records. All records (represented by ids) will be updated by aml values.

func (*Client) UpdateAccountMoveReversal

func (c *Client) UpdateAccountMoveReversal(amr *AccountMoveReversal) error

UpdateAccountMoveReversal updates an existing account.move.reversal record.

func (*Client) UpdateAccountMoveReversals

func (c *Client) UpdateAccountMoveReversals(ids []int64, amr *AccountMoveReversal) error

UpdateAccountMoveReversals updates existing account.move.reversal records. All records (represented by ids) will be updated by amr values.

func (*Client) UpdateAccountMoves

func (c *Client) UpdateAccountMoves(ids []int64, am *AccountMove) error

UpdateAccountMoves updates existing account.move records. All records (represented by ids) will be updated by am values.

func (*Client) UpdateAccountPartialReconcile

func (c *Client) UpdateAccountPartialReconcile(apr *AccountPartialReconcile) error

UpdateAccountPartialReconcile updates an existing account.partial.reconcile record.

func (*Client) UpdateAccountPartialReconciles

func (c *Client) UpdateAccountPartialReconciles(ids []int64, apr *AccountPartialReconcile) error

UpdateAccountPartialReconciles updates existing account.partial.reconcile records. All records (represented by ids) will be updated by apr values.

func (*Client) UpdateAccountPayment

func (c *Client) UpdateAccountPayment(ap *AccountPayment) error

UpdateAccountPayment updates an existing account.payment record.

func (*Client) UpdateAccountPaymentMethod

func (c *Client) UpdateAccountPaymentMethod(apm *AccountPaymentMethod) error

UpdateAccountPaymentMethod updates an existing account.payment.method record.

func (*Client) UpdateAccountPaymentMethods

func (c *Client) UpdateAccountPaymentMethods(ids []int64, apm *AccountPaymentMethod) error

UpdateAccountPaymentMethods updates existing account.payment.method records. All records (represented by ids) will be updated by apm values.

func (*Client) UpdateAccountPaymentRegister

func (c *Client) UpdateAccountPaymentRegister(apr *AccountPaymentRegister) error

UpdateAccountPaymentRegister updates an existing account.payment.register record.

func (*Client) UpdateAccountPaymentRegisters

func (c *Client) UpdateAccountPaymentRegisters(ids []int64, apr *AccountPaymentRegister) error

UpdateAccountPaymentRegisters updates existing account.payment.register records. All records (represented by ids) will be updated by apr values.

func (*Client) UpdateAccountPaymentTerm

func (c *Client) UpdateAccountPaymentTerm(apt *AccountPaymentTerm) error

UpdateAccountPaymentTerm updates an existing account.payment.term record.

func (*Client) UpdateAccountPaymentTermLine

func (c *Client) UpdateAccountPaymentTermLine(aptl *AccountPaymentTermLine) error

UpdateAccountPaymentTermLine updates an existing account.payment.term.line record.

func (*Client) UpdateAccountPaymentTermLines

func (c *Client) UpdateAccountPaymentTermLines(ids []int64, aptl *AccountPaymentTermLine) error

UpdateAccountPaymentTermLines updates existing account.payment.term.line records. All records (represented by ids) will be updated by aptl values.

func (*Client) UpdateAccountPaymentTerms

func (c *Client) UpdateAccountPaymentTerms(ids []int64, apt *AccountPaymentTerm) error

UpdateAccountPaymentTerms updates existing account.payment.term records. All records (represented by ids) will be updated by apt values.

func (*Client) UpdateAccountPayments

func (c *Client) UpdateAccountPayments(ids []int64, ap *AccountPayment) error

UpdateAccountPayments updates existing account.payment records. All records (represented by ids) will be updated by ap values.

func (*Client) UpdateAccountPrintJournal

func (c *Client) UpdateAccountPrintJournal(apj *AccountPrintJournal) error

UpdateAccountPrintJournal updates an existing account.print.journal record.

func (*Client) UpdateAccountPrintJournals

func (c *Client) UpdateAccountPrintJournals(ids []int64, apj *AccountPrintJournal) error

UpdateAccountPrintJournals updates existing account.print.journal records. All records (represented by ids) will be updated by apj values.

func (*Client) UpdateAccountReconcileModel

func (c *Client) UpdateAccountReconcileModel(arm *AccountReconcileModel) error

UpdateAccountReconcileModel updates an existing account.reconcile.model record.

func (*Client) UpdateAccountReconcileModelTemplate

func (c *Client) UpdateAccountReconcileModelTemplate(armt *AccountReconcileModelTemplate) error

UpdateAccountReconcileModelTemplate updates an existing account.reconcile.model.template record.

func (*Client) UpdateAccountReconcileModelTemplates

func (c *Client) UpdateAccountReconcileModelTemplates(ids []int64, armt *AccountReconcileModelTemplate) error

UpdateAccountReconcileModelTemplates updates existing account.reconcile.model.template records. All records (represented by ids) will be updated by armt values.

func (*Client) UpdateAccountReconcileModels

func (c *Client) UpdateAccountReconcileModels(ids []int64, arm *AccountReconcileModel) error

UpdateAccountReconcileModels updates existing account.reconcile.model records. All records (represented by ids) will be updated by arm values.

func (*Client) UpdateAccountReconciliationWidget

func (c *Client) UpdateAccountReconciliationWidget(arw *AccountReconciliationWidget) error

UpdateAccountReconciliationWidget updates an existing account.reconciliation.widget record.

func (*Client) UpdateAccountReconciliationWidgets

func (c *Client) UpdateAccountReconciliationWidgets(ids []int64, arw *AccountReconciliationWidget) error

UpdateAccountReconciliationWidgets updates existing account.reconciliation.widget records. All records (represented by ids) will be updated by arw values.

func (*Client) UpdateAccountRoot

func (c *Client) UpdateAccountRoot(ar *AccountRoot) error

UpdateAccountRoot updates an existing account.root record.

func (*Client) UpdateAccountRoots

func (c *Client) UpdateAccountRoots(ids []int64, ar *AccountRoot) error

UpdateAccountRoots updates existing account.root records. All records (represented by ids) will be updated by ar values.

func (*Client) UpdateAccountSetupBankManualConfig

func (c *Client) UpdateAccountSetupBankManualConfig(asbmc *AccountSetupBankManualConfig) error

UpdateAccountSetupBankManualConfig updates an existing account.setup.bank.manual.config record.

func (*Client) UpdateAccountSetupBankManualConfigs

func (c *Client) UpdateAccountSetupBankManualConfigs(ids []int64, asbmc *AccountSetupBankManualConfig) error

UpdateAccountSetupBankManualConfigs updates existing account.setup.bank.manual.config records. All records (represented by ids) will be updated by asbmc values.

func (*Client) UpdateAccountTax

func (c *Client) UpdateAccountTax(at *AccountTax) error

UpdateAccountTax updates an existing account.tax record.

func (*Client) UpdateAccountTaxGroup

func (c *Client) UpdateAccountTaxGroup(atg *AccountTaxGroup) error

UpdateAccountTaxGroup updates an existing account.tax.group record.

func (*Client) UpdateAccountTaxGroups

func (c *Client) UpdateAccountTaxGroups(ids []int64, atg *AccountTaxGroup) error

UpdateAccountTaxGroups updates existing account.tax.group records. All records (represented by ids) will be updated by atg values.

func (*Client) UpdateAccountTaxRepartitionLine

func (c *Client) UpdateAccountTaxRepartitionLine(atrl *AccountTaxRepartitionLine) error

UpdateAccountTaxRepartitionLine updates an existing account.tax.repartition.line record.

func (*Client) UpdateAccountTaxRepartitionLineTemplate

func (c *Client) UpdateAccountTaxRepartitionLineTemplate(atrlt *AccountTaxRepartitionLineTemplate) error

UpdateAccountTaxRepartitionLineTemplate updates an existing account.tax.repartition.line.template record.

func (*Client) UpdateAccountTaxRepartitionLineTemplates

func (c *Client) UpdateAccountTaxRepartitionLineTemplates(ids []int64, atrlt *AccountTaxRepartitionLineTemplate) error

UpdateAccountTaxRepartitionLineTemplates updates existing account.tax.repartition.line.template records. All records (represented by ids) will be updated by atrlt values.

func (*Client) UpdateAccountTaxRepartitionLines

func (c *Client) UpdateAccountTaxRepartitionLines(ids []int64, atrl *AccountTaxRepartitionLine) error

UpdateAccountTaxRepartitionLines updates existing account.tax.repartition.line records. All records (represented by ids) will be updated by atrl values.

func (*Client) UpdateAccountTaxReportLine

func (c *Client) UpdateAccountTaxReportLine(atrl *AccountTaxReportLine) error

UpdateAccountTaxReportLine updates an existing account.tax.report.line record.

func (*Client) UpdateAccountTaxReportLines

func (c *Client) UpdateAccountTaxReportLines(ids []int64, atrl *AccountTaxReportLine) error

UpdateAccountTaxReportLines updates existing account.tax.report.line records. All records (represented by ids) will be updated by atrl values.

func (*Client) UpdateAccountTaxTemplate

func (c *Client) UpdateAccountTaxTemplate(att *AccountTaxTemplate) error

UpdateAccountTaxTemplate updates an existing account.tax.template record.

func (*Client) UpdateAccountTaxTemplates

func (c *Client) UpdateAccountTaxTemplates(ids []int64, att *AccountTaxTemplate) error

UpdateAccountTaxTemplates updates existing account.tax.template records. All records (represented by ids) will be updated by att values.

func (*Client) UpdateAccountTaxs

func (c *Client) UpdateAccountTaxs(ids []int64, at *AccountTax) error

UpdateAccountTaxs updates existing account.tax records. All records (represented by ids) will be updated by at values.

func (*Client) UpdateAccountUnreconcile

func (c *Client) UpdateAccountUnreconcile(au *AccountUnreconcile) error

UpdateAccountUnreconcile updates an existing account.unreconcile record.

func (*Client) UpdateAccountUnreconciles

func (c *Client) UpdateAccountUnreconciles(ids []int64, au *AccountUnreconcile) error

UpdateAccountUnreconciles updates existing account.unreconcile records. All records (represented by ids) will be updated by au values.

func (*Client) UpdateBarcodeNomenclature

func (c *Client) UpdateBarcodeNomenclature(bn *BarcodeNomenclature) error

UpdateBarcodeNomenclature updates an existing barcode.nomenclature record.

func (*Client) UpdateBarcodeNomenclatures

func (c *Client) UpdateBarcodeNomenclatures(ids []int64, bn *BarcodeNomenclature) error

UpdateBarcodeNomenclatures updates existing barcode.nomenclature records. All records (represented by ids) will be updated by bn values.

func (*Client) UpdateBarcodeRule

func (c *Client) UpdateBarcodeRule(br *BarcodeRule) error

UpdateBarcodeRule updates an existing barcode.rule record.

func (*Client) UpdateBarcodeRules

func (c *Client) UpdateBarcodeRules(ids []int64, br *BarcodeRule) error

UpdateBarcodeRules updates existing barcode.rule records. All records (represented by ids) will be updated by br values.

func (*Client) UpdateBarcodesBarcodeEventsMixin

func (c *Client) UpdateBarcodesBarcodeEventsMixin(bb *BarcodesBarcodeEventsMixin) error

UpdateBarcodesBarcodeEventsMixin updates an existing barcodes.barcode_events_mixin record.

func (*Client) UpdateBarcodesBarcodeEventsMixins

func (c *Client) UpdateBarcodesBarcodeEventsMixins(ids []int64, bb *BarcodesBarcodeEventsMixin) error

UpdateBarcodesBarcodeEventsMixins updates existing barcodes.barcode_events_mixin records. All records (represented by ids) will be updated by bb values.

func (*Client) UpdateBase

func (c *Client) UpdateBase(b *Base) error

UpdateBase updates an existing base record.

func (*Client) UpdateBaseDocumentLayout

func (c *Client) UpdateBaseDocumentLayout(bdl *BaseDocumentLayout) error

UpdateBaseDocumentLayout updates an existing base.document.layout record.

func (*Client) UpdateBaseDocumentLayouts

func (c *Client) UpdateBaseDocumentLayouts(ids []int64, bdl *BaseDocumentLayout) error

UpdateBaseDocumentLayouts updates existing base.document.layout records. All records (represented by ids) will be updated by bdl values.

func (*Client) UpdateBaseImportImport

func (c *Client) UpdateBaseImportImport(bi *BaseImportImport) error

UpdateBaseImportImport updates an existing base_import.import record.

func (*Client) UpdateBaseImportImports

func (c *Client) UpdateBaseImportImports(ids []int64, bi *BaseImportImport) error

UpdateBaseImportImports updates existing base_import.import records. All records (represented by ids) will be updated by bi values.

func (*Client) UpdateBaseImportMapping

func (c *Client) UpdateBaseImportMapping(bm *BaseImportMapping) error

UpdateBaseImportMapping updates an existing base_import.mapping record.

func (*Client) UpdateBaseImportMappings

func (c *Client) UpdateBaseImportMappings(ids []int64, bm *BaseImportMapping) error

UpdateBaseImportMappings updates existing base_import.mapping records. All records (represented by ids) will be updated by bm values.

func (*Client) UpdateBaseImportTestsModelsChar

func (c *Client) UpdateBaseImportTestsModelsChar(btmc *BaseImportTestsModelsChar) error

UpdateBaseImportTestsModelsChar updates an existing base_import.tests.models.char record.

func (*Client) UpdateBaseImportTestsModelsCharNoreadonly

func (c *Client) UpdateBaseImportTestsModelsCharNoreadonly(btmcn *BaseImportTestsModelsCharNoreadonly) error

UpdateBaseImportTestsModelsCharNoreadonly updates an existing base_import.tests.models.char.noreadonly record.

func (*Client) UpdateBaseImportTestsModelsCharNoreadonlys

func (c *Client) UpdateBaseImportTestsModelsCharNoreadonlys(ids []int64, btmcn *BaseImportTestsModelsCharNoreadonly) error

UpdateBaseImportTestsModelsCharNoreadonlys updates existing base_import.tests.models.char.noreadonly records. All records (represented by ids) will be updated by btmcn values.

func (*Client) UpdateBaseImportTestsModelsCharReadonly

func (c *Client) UpdateBaseImportTestsModelsCharReadonly(btmcr *BaseImportTestsModelsCharReadonly) error

UpdateBaseImportTestsModelsCharReadonly updates an existing base_import.tests.models.char.readonly record.

func (*Client) UpdateBaseImportTestsModelsCharReadonlys

func (c *Client) UpdateBaseImportTestsModelsCharReadonlys(ids []int64, btmcr *BaseImportTestsModelsCharReadonly) error

UpdateBaseImportTestsModelsCharReadonlys updates existing base_import.tests.models.char.readonly records. All records (represented by ids) will be updated by btmcr values.

func (*Client) UpdateBaseImportTestsModelsCharRequired

func (c *Client) UpdateBaseImportTestsModelsCharRequired(btmcr *BaseImportTestsModelsCharRequired) error

UpdateBaseImportTestsModelsCharRequired updates an existing base_import.tests.models.char.required record.

func (*Client) UpdateBaseImportTestsModelsCharRequireds

func (c *Client) UpdateBaseImportTestsModelsCharRequireds(ids []int64, btmcr *BaseImportTestsModelsCharRequired) error

UpdateBaseImportTestsModelsCharRequireds updates existing base_import.tests.models.char.required records. All records (represented by ids) will be updated by btmcr values.

func (*Client) UpdateBaseImportTestsModelsCharStates

func (c *Client) UpdateBaseImportTestsModelsCharStates(btmcs *BaseImportTestsModelsCharStates) error

UpdateBaseImportTestsModelsCharStates updates an existing base_import.tests.models.char.states record.

func (*Client) UpdateBaseImportTestsModelsCharStatess

func (c *Client) UpdateBaseImportTestsModelsCharStatess(ids []int64, btmcs *BaseImportTestsModelsCharStates) error

UpdateBaseImportTestsModelsCharStatess updates existing base_import.tests.models.char.states records. All records (represented by ids) will be updated by btmcs values.

func (*Client) UpdateBaseImportTestsModelsCharStillreadonly

func (c *Client) UpdateBaseImportTestsModelsCharStillreadonly(btmcs *BaseImportTestsModelsCharStillreadonly) error

UpdateBaseImportTestsModelsCharStillreadonly updates an existing base_import.tests.models.char.stillreadonly record.

func (*Client) UpdateBaseImportTestsModelsCharStillreadonlys

func (c *Client) UpdateBaseImportTestsModelsCharStillreadonlys(ids []int64, btmcs *BaseImportTestsModelsCharStillreadonly) error

UpdateBaseImportTestsModelsCharStillreadonlys updates existing base_import.tests.models.char.stillreadonly records. All records (represented by ids) will be updated by btmcs values.

func (*Client) UpdateBaseImportTestsModelsChars

func (c *Client) UpdateBaseImportTestsModelsChars(ids []int64, btmc *BaseImportTestsModelsChar) error

UpdateBaseImportTestsModelsChars updates existing base_import.tests.models.char records. All records (represented by ids) will be updated by btmc values.

func (*Client) UpdateBaseImportTestsModelsComplex

func (c *Client) UpdateBaseImportTestsModelsComplex(btmc *BaseImportTestsModelsComplex) error

UpdateBaseImportTestsModelsComplex updates an existing base_import.tests.models.complex record.

func (*Client) UpdateBaseImportTestsModelsComplexs

func (c *Client) UpdateBaseImportTestsModelsComplexs(ids []int64, btmc *BaseImportTestsModelsComplex) error

UpdateBaseImportTestsModelsComplexs updates existing base_import.tests.models.complex records. All records (represented by ids) will be updated by btmc values.

func (*Client) UpdateBaseImportTestsModelsFloat

func (c *Client) UpdateBaseImportTestsModelsFloat(btmf *BaseImportTestsModelsFloat) error

UpdateBaseImportTestsModelsFloat updates an existing base_import.tests.models.float record.

func (*Client) UpdateBaseImportTestsModelsFloats

func (c *Client) UpdateBaseImportTestsModelsFloats(ids []int64, btmf *BaseImportTestsModelsFloat) error

UpdateBaseImportTestsModelsFloats updates existing base_import.tests.models.float records. All records (represented by ids) will be updated by btmf values.

func (*Client) UpdateBaseImportTestsModelsM2O

func (c *Client) UpdateBaseImportTestsModelsM2O(btmm *BaseImportTestsModelsM2O) error

UpdateBaseImportTestsModelsM2O updates an existing base_import.tests.models.m2o record.

func (*Client) UpdateBaseImportTestsModelsM2ORelated

func (c *Client) UpdateBaseImportTestsModelsM2ORelated(btmmr *BaseImportTestsModelsM2ORelated) error

UpdateBaseImportTestsModelsM2ORelated updates an existing base_import.tests.models.m2o.related record.

func (*Client) UpdateBaseImportTestsModelsM2ORelateds

func (c *Client) UpdateBaseImportTestsModelsM2ORelateds(ids []int64, btmmr *BaseImportTestsModelsM2ORelated) error

UpdateBaseImportTestsModelsM2ORelateds updates existing base_import.tests.models.m2o.related records. All records (represented by ids) will be updated by btmmr values.

func (*Client) UpdateBaseImportTestsModelsM2ORequired

func (c *Client) UpdateBaseImportTestsModelsM2ORequired(btmmr *BaseImportTestsModelsM2ORequired) error

UpdateBaseImportTestsModelsM2ORequired updates an existing base_import.tests.models.m2o.required record.

func (*Client) UpdateBaseImportTestsModelsM2ORequiredRelated

func (c *Client) UpdateBaseImportTestsModelsM2ORequiredRelated(btmmrr *BaseImportTestsModelsM2ORequiredRelated) error

UpdateBaseImportTestsModelsM2ORequiredRelated updates an existing base_import.tests.models.m2o.required.related record.

func (*Client) UpdateBaseImportTestsModelsM2ORequiredRelateds

func (c *Client) UpdateBaseImportTestsModelsM2ORequiredRelateds(ids []int64, btmmrr *BaseImportTestsModelsM2ORequiredRelated) error

UpdateBaseImportTestsModelsM2ORequiredRelateds updates existing base_import.tests.models.m2o.required.related records. All records (represented by ids) will be updated by btmmrr values.

func (*Client) UpdateBaseImportTestsModelsM2ORequireds

func (c *Client) UpdateBaseImportTestsModelsM2ORequireds(ids []int64, btmmr *BaseImportTestsModelsM2ORequired) error

UpdateBaseImportTestsModelsM2ORequireds updates existing base_import.tests.models.m2o.required records. All records (represented by ids) will be updated by btmmr values.

func (*Client) UpdateBaseImportTestsModelsM2Os

func (c *Client) UpdateBaseImportTestsModelsM2Os(ids []int64, btmm *BaseImportTestsModelsM2O) error

UpdateBaseImportTestsModelsM2Os updates existing base_import.tests.models.m2o records. All records (represented by ids) will be updated by btmm values.

func (*Client) UpdateBaseImportTestsModelsO2M

func (c *Client) UpdateBaseImportTestsModelsO2M(btmo *BaseImportTestsModelsO2M) error

UpdateBaseImportTestsModelsO2M updates an existing base_import.tests.models.o2m record.

func (*Client) UpdateBaseImportTestsModelsO2MChild

func (c *Client) UpdateBaseImportTestsModelsO2MChild(btmoc *BaseImportTestsModelsO2MChild) error

UpdateBaseImportTestsModelsO2MChild updates an existing base_import.tests.models.o2m.child record.

func (*Client) UpdateBaseImportTestsModelsO2MChilds

func (c *Client) UpdateBaseImportTestsModelsO2MChilds(ids []int64, btmoc *BaseImportTestsModelsO2MChild) error

UpdateBaseImportTestsModelsO2MChilds updates existing base_import.tests.models.o2m.child records. All records (represented by ids) will be updated by btmoc values.

func (*Client) UpdateBaseImportTestsModelsO2Ms

func (c *Client) UpdateBaseImportTestsModelsO2Ms(ids []int64, btmo *BaseImportTestsModelsO2M) error

UpdateBaseImportTestsModelsO2Ms updates existing base_import.tests.models.o2m records. All records (represented by ids) will be updated by btmo values.

func (*Client) UpdateBaseImportTestsModelsPreview

func (c *Client) UpdateBaseImportTestsModelsPreview(btmp *BaseImportTestsModelsPreview) error

UpdateBaseImportTestsModelsPreview updates an existing base_import.tests.models.preview record.

func (*Client) UpdateBaseImportTestsModelsPreviews

func (c *Client) UpdateBaseImportTestsModelsPreviews(ids []int64, btmp *BaseImportTestsModelsPreview) error

UpdateBaseImportTestsModelsPreviews updates existing base_import.tests.models.preview records. All records (represented by ids) will be updated by btmp values.

func (*Client) UpdateBaseLanguageExport

func (c *Client) UpdateBaseLanguageExport(ble *BaseLanguageExport) error

UpdateBaseLanguageExport updates an existing base.language.export record.

func (*Client) UpdateBaseLanguageExports

func (c *Client) UpdateBaseLanguageExports(ids []int64, ble *BaseLanguageExport) error

UpdateBaseLanguageExports updates existing base.language.export records. All records (represented by ids) will be updated by ble values.

func (*Client) UpdateBaseLanguageImport

func (c *Client) UpdateBaseLanguageImport(bli *BaseLanguageImport) error

UpdateBaseLanguageImport updates an existing base.language.import record.

func (*Client) UpdateBaseLanguageImports

func (c *Client) UpdateBaseLanguageImports(ids []int64, bli *BaseLanguageImport) error

UpdateBaseLanguageImports updates existing base.language.import records. All records (represented by ids) will be updated by bli values.

func (*Client) UpdateBaseLanguageInstall

func (c *Client) UpdateBaseLanguageInstall(bli *BaseLanguageInstall) error

UpdateBaseLanguageInstall updates an existing base.language.install record.

func (*Client) UpdateBaseLanguageInstalls

func (c *Client) UpdateBaseLanguageInstalls(ids []int64, bli *BaseLanguageInstall) error

UpdateBaseLanguageInstalls updates existing base.language.install records. All records (represented by ids) will be updated by bli values.

func (*Client) UpdateBaseModuleUninstall

func (c *Client) UpdateBaseModuleUninstall(bmu *BaseModuleUninstall) error

UpdateBaseModuleUninstall updates an existing base.module.uninstall record.

func (*Client) UpdateBaseModuleUninstalls

func (c *Client) UpdateBaseModuleUninstalls(ids []int64, bmu *BaseModuleUninstall) error

UpdateBaseModuleUninstalls updates existing base.module.uninstall records. All records (represented by ids) will be updated by bmu values.

func (*Client) UpdateBaseModuleUpdate

func (c *Client) UpdateBaseModuleUpdate(bmu *BaseModuleUpdate) error

UpdateBaseModuleUpdate updates an existing base.module.update record.

func (*Client) UpdateBaseModuleUpdates

func (c *Client) UpdateBaseModuleUpdates(ids []int64, bmu *BaseModuleUpdate) error

UpdateBaseModuleUpdates updates existing base.module.update records. All records (represented by ids) will be updated by bmu values.

func (*Client) UpdateBaseModuleUpgrade

func (c *Client) UpdateBaseModuleUpgrade(bmu *BaseModuleUpgrade) error

UpdateBaseModuleUpgrade updates an existing base.module.upgrade record.

func (*Client) UpdateBaseModuleUpgrades

func (c *Client) UpdateBaseModuleUpgrades(ids []int64, bmu *BaseModuleUpgrade) error

UpdateBaseModuleUpgrades updates existing base.module.upgrade records. All records (represented by ids) will be updated by bmu values.

func (*Client) UpdateBasePartnerMergeAutomaticWizard

func (c *Client) UpdateBasePartnerMergeAutomaticWizard(bpmaw *BasePartnerMergeAutomaticWizard) error

UpdateBasePartnerMergeAutomaticWizard updates an existing base.partner.merge.automatic.wizard record.

func (*Client) UpdateBasePartnerMergeAutomaticWizards

func (c *Client) UpdateBasePartnerMergeAutomaticWizards(ids []int64, bpmaw *BasePartnerMergeAutomaticWizard) error

UpdateBasePartnerMergeAutomaticWizards updates existing base.partner.merge.automatic.wizard records. All records (represented by ids) will be updated by bpmaw values.

func (*Client) UpdateBasePartnerMergeLine

func (c *Client) UpdateBasePartnerMergeLine(bpml *BasePartnerMergeLine) error

UpdateBasePartnerMergeLine updates an existing base.partner.merge.line record.

func (*Client) UpdateBasePartnerMergeLines

func (c *Client) UpdateBasePartnerMergeLines(ids []int64, bpml *BasePartnerMergeLine) error

UpdateBasePartnerMergeLines updates existing base.partner.merge.line records. All records (represented by ids) will be updated by bpml values.

func (*Client) UpdateBaseUpdateTranslations

func (c *Client) UpdateBaseUpdateTranslations(but *BaseUpdateTranslations) error

UpdateBaseUpdateTranslations updates an existing base.update.translations record.

func (*Client) UpdateBaseUpdateTranslationss

func (c *Client) UpdateBaseUpdateTranslationss(ids []int64, but *BaseUpdateTranslations) error

UpdateBaseUpdateTranslationss updates existing base.update.translations records. All records (represented by ids) will be updated by but values.

func (*Client) UpdateBases

func (c *Client) UpdateBases(ids []int64, b *Base) error

UpdateBases updates existing base records. All records (represented by ids) will be updated by b values.

func (*Client) UpdateBlogBlog

func (c *Client) UpdateBlogBlog(bb *BlogBlog) error

UpdateBlogBlog updates an existing blog.blog record.

func (*Client) UpdateBlogBlogs

func (c *Client) UpdateBlogBlogs(ids []int64, bb *BlogBlog) error

UpdateBlogBlogs updates existing blog.blog records. All records (represented by ids) will be updated by bb values.

func (*Client) UpdateBlogPost

func (c *Client) UpdateBlogPost(bp *BlogPost) error

UpdateBlogPost updates an existing blog.post record.

func (*Client) UpdateBlogPosts

func (c *Client) UpdateBlogPosts(ids []int64, bp *BlogPost) error

UpdateBlogPosts updates existing blog.post records. All records (represented by ids) will be updated by bp values.

func (*Client) UpdateBlogTag

func (c *Client) UpdateBlogTag(bt *BlogTag) error

UpdateBlogTag updates an existing blog.tag record.

func (*Client) UpdateBlogTagCategory

func (c *Client) UpdateBlogTagCategory(btc *BlogTagCategory) error

UpdateBlogTagCategory updates an existing blog.tag.category record.

func (*Client) UpdateBlogTagCategorys

func (c *Client) UpdateBlogTagCategorys(ids []int64, btc *BlogTagCategory) error

UpdateBlogTagCategorys updates existing blog.tag.category records. All records (represented by ids) will be updated by btc values.

func (*Client) UpdateBlogTags

func (c *Client) UpdateBlogTags(ids []int64, bt *BlogTag) error

UpdateBlogTags updates existing blog.tag records. All records (represented by ids) will be updated by bt values.

func (*Client) UpdateBoardBoard

func (c *Client) UpdateBoardBoard(bb *BoardBoard) error

UpdateBoardBoard updates an existing board.board record.

func (*Client) UpdateBoardBoards

func (c *Client) UpdateBoardBoards(ids []int64, bb *BoardBoard) error

UpdateBoardBoards updates existing board.board records. All records (represented by ids) will be updated by bb values.

func (*Client) UpdateBusBus

func (c *Client) UpdateBusBus(bb *BusBus) error

UpdateBusBus updates an existing bus.bus record.

func (*Client) UpdateBusBuss

func (c *Client) UpdateBusBuss(ids []int64, bb *BusBus) error

UpdateBusBuss updates existing bus.bus records. All records (represented by ids) will be updated by bb values.

func (*Client) UpdateBusPresence

func (c *Client) UpdateBusPresence(bp *BusPresence) error

UpdateBusPresence updates an existing bus.presence record.

func (*Client) UpdateBusPresences

func (c *Client) UpdateBusPresences(ids []int64, bp *BusPresence) error

UpdateBusPresences updates existing bus.presence records. All records (represented by ids) will be updated by bp values.

func (*Client) UpdateCalendarAlarm

func (c *Client) UpdateCalendarAlarm(ca *CalendarAlarm) error

UpdateCalendarAlarm updates an existing calendar.alarm record.

func (*Client) UpdateCalendarAlarmManager

func (c *Client) UpdateCalendarAlarmManager(ca *CalendarAlarmManager) error

UpdateCalendarAlarmManager updates an existing calendar.alarm_manager record.

func (*Client) UpdateCalendarAlarmManagers

func (c *Client) UpdateCalendarAlarmManagers(ids []int64, ca *CalendarAlarmManager) error

UpdateCalendarAlarmManagers updates existing calendar.alarm_manager records. All records (represented by ids) will be updated by ca values.

func (*Client) UpdateCalendarAlarms

func (c *Client) UpdateCalendarAlarms(ids []int64, ca *CalendarAlarm) error

UpdateCalendarAlarms updates existing calendar.alarm records. All records (represented by ids) will be updated by ca values.

func (*Client) UpdateCalendarAttendee

func (c *Client) UpdateCalendarAttendee(ca *CalendarAttendee) error

UpdateCalendarAttendee updates an existing calendar.attendee record.

func (*Client) UpdateCalendarAttendees

func (c *Client) UpdateCalendarAttendees(ids []int64, ca *CalendarAttendee) error

UpdateCalendarAttendees updates existing calendar.attendee records. All records (represented by ids) will be updated by ca values.

func (*Client) UpdateCalendarContacts

func (c *Client) UpdateCalendarContacts(cc *CalendarContacts) error

UpdateCalendarContacts updates an existing calendar.contacts record.

func (*Client) UpdateCalendarContactss

func (c *Client) UpdateCalendarContactss(ids []int64, cc *CalendarContacts) error

UpdateCalendarContactss updates existing calendar.contacts records. All records (represented by ids) will be updated by cc values.

func (*Client) UpdateCalendarEvent

func (c *Client) UpdateCalendarEvent(ce *CalendarEvent) error

UpdateCalendarEvent updates an existing calendar.event record.

func (*Client) UpdateCalendarEventType

func (c *Client) UpdateCalendarEventType(cet *CalendarEventType) error

UpdateCalendarEventType updates an existing calendar.event.type record.

func (*Client) UpdateCalendarEventTypes

func (c *Client) UpdateCalendarEventTypes(ids []int64, cet *CalendarEventType) error

UpdateCalendarEventTypes updates existing calendar.event.type records. All records (represented by ids) will be updated by cet values.

func (*Client) UpdateCalendarEvents

func (c *Client) UpdateCalendarEvents(ids []int64, ce *CalendarEvent) error

UpdateCalendarEvents updates existing calendar.event records. All records (represented by ids) will be updated by ce values.

func (*Client) UpdateCashBoxOut

func (c *Client) UpdateCashBoxOut(cbo *CashBoxOut) error

UpdateCashBoxOut updates an existing cash.box.out record.

func (*Client) UpdateCashBoxOuts

func (c *Client) UpdateCashBoxOuts(ids []int64, cbo *CashBoxOut) error

UpdateCashBoxOuts updates existing cash.box.out records. All records (represented by ids) will be updated by cbo values.

func (*Client) UpdateChangePasswordUser

func (c *Client) UpdateChangePasswordUser(cpu *ChangePasswordUser) error

UpdateChangePasswordUser updates an existing change.password.user record.

func (*Client) UpdateChangePasswordUsers

func (c *Client) UpdateChangePasswordUsers(ids []int64, cpu *ChangePasswordUser) error

UpdateChangePasswordUsers updates existing change.password.user records. All records (represented by ids) will be updated by cpu values.

func (*Client) UpdateChangePasswordWizard

func (c *Client) UpdateChangePasswordWizard(cpw *ChangePasswordWizard) error

UpdateChangePasswordWizard updates an existing change.password.wizard record.

func (*Client) UpdateChangePasswordWizards

func (c *Client) UpdateChangePasswordWizards(ids []int64, cpw *ChangePasswordWizard) error

UpdateChangePasswordWizards updates existing change.password.wizard records. All records (represented by ids) will be updated by cpw values.

func (*Client) UpdateCmsArticle

func (c *Client) UpdateCmsArticle(ca *CmsArticle) error

UpdateCmsArticle updates an existing cms.article record.

func (*Client) UpdateCmsArticles

func (c *Client) UpdateCmsArticles(ids []int64, ca *CmsArticle) error

UpdateCmsArticles updates existing cms.article records. All records (represented by ids) will be updated by ca values.

func (*Client) UpdateCrmActivityReport

func (c *Client) UpdateCrmActivityReport(car *CrmActivityReport) error

UpdateCrmActivityReport updates an existing crm.activity.report record.

func (*Client) UpdateCrmActivityReports

func (c *Client) UpdateCrmActivityReports(ids []int64, car *CrmActivityReport) error

UpdateCrmActivityReports updates existing crm.activity.report records. All records (represented by ids) will be updated by car values.

func (*Client) UpdateCrmLead

func (c *Client) UpdateCrmLead(cl *CrmLead) error

UpdateCrmLead updates an existing crm.lead record.

func (*Client) UpdateCrmLead2OpportunityPartner

func (c *Client) UpdateCrmLead2OpportunityPartner(clp *CrmLead2OpportunityPartner) error

UpdateCrmLead2OpportunityPartner updates an existing crm.lead2opportunity.partner record.

func (*Client) UpdateCrmLead2OpportunityPartnerMass

func (c *Client) UpdateCrmLead2OpportunityPartnerMass(clpm *CrmLead2OpportunityPartnerMass) error

UpdateCrmLead2OpportunityPartnerMass updates an existing crm.lead2opportunity.partner.mass record.

func (*Client) UpdateCrmLead2OpportunityPartnerMasss

func (c *Client) UpdateCrmLead2OpportunityPartnerMasss(ids []int64, clpm *CrmLead2OpportunityPartnerMass) error

UpdateCrmLead2OpportunityPartnerMasss updates existing crm.lead2opportunity.partner.mass records. All records (represented by ids) will be updated by clpm values.

func (*Client) UpdateCrmLead2OpportunityPartners

func (c *Client) UpdateCrmLead2OpportunityPartners(ids []int64, clp *CrmLead2OpportunityPartner) error

UpdateCrmLead2OpportunityPartners updates existing crm.lead2opportunity.partner records. All records (represented by ids) will be updated by clp values.

func (*Client) UpdateCrmLeadLost

func (c *Client) UpdateCrmLeadLost(cll *CrmLeadLost) error

UpdateCrmLeadLost updates an existing crm.lead.lost record.

func (*Client) UpdateCrmLeadLosts

func (c *Client) UpdateCrmLeadLosts(ids []int64, cll *CrmLeadLost) error

UpdateCrmLeadLosts updates existing crm.lead.lost records. All records (represented by ids) will be updated by cll values.

func (*Client) UpdateCrmLeadScoringFrequency

func (c *Client) UpdateCrmLeadScoringFrequency(clsf *CrmLeadScoringFrequency) error

UpdateCrmLeadScoringFrequency updates an existing crm.lead.scoring.frequency record.

func (*Client) UpdateCrmLeadScoringFrequencyField

func (c *Client) UpdateCrmLeadScoringFrequencyField(clsff *CrmLeadScoringFrequencyField) error

UpdateCrmLeadScoringFrequencyField updates an existing crm.lead.scoring.frequency.field record.

func (*Client) UpdateCrmLeadScoringFrequencyFields

func (c *Client) UpdateCrmLeadScoringFrequencyFields(ids []int64, clsff *CrmLeadScoringFrequencyField) error

UpdateCrmLeadScoringFrequencyFields updates existing crm.lead.scoring.frequency.field records. All records (represented by ids) will be updated by clsff values.

func (*Client) UpdateCrmLeadScoringFrequencys

func (c *Client) UpdateCrmLeadScoringFrequencys(ids []int64, clsf *CrmLeadScoringFrequency) error

UpdateCrmLeadScoringFrequencys updates existing crm.lead.scoring.frequency records. All records (represented by ids) will be updated by clsf values.

func (*Client) UpdateCrmLeadTag

func (c *Client) UpdateCrmLeadTag(clt *CrmLeadTag) error

UpdateCrmLeadTag updates an existing crm.lead.tag record.

func (*Client) UpdateCrmLeadTags

func (c *Client) UpdateCrmLeadTags(ids []int64, clt *CrmLeadTag) error

UpdateCrmLeadTags updates existing crm.lead.tag records. All records (represented by ids) will be updated by clt values.

func (*Client) UpdateCrmLeads

func (c *Client) UpdateCrmLeads(ids []int64, cl *CrmLead) error

UpdateCrmLeads updates existing crm.lead records. All records (represented by ids) will be updated by cl values.

func (*Client) UpdateCrmLostReason

func (c *Client) UpdateCrmLostReason(clr *CrmLostReason) error

UpdateCrmLostReason updates an existing crm.lost.reason record.

func (*Client) UpdateCrmLostReasons

func (c *Client) UpdateCrmLostReasons(ids []int64, clr *CrmLostReason) error

UpdateCrmLostReasons updates existing crm.lost.reason records. All records (represented by ids) will be updated by clr values.

func (*Client) UpdateCrmMergeOpportunity

func (c *Client) UpdateCrmMergeOpportunity(cmo *CrmMergeOpportunity) error

UpdateCrmMergeOpportunity updates an existing crm.merge.opportunity record.

func (*Client) UpdateCrmMergeOpportunitys

func (c *Client) UpdateCrmMergeOpportunitys(ids []int64, cmo *CrmMergeOpportunity) error

UpdateCrmMergeOpportunitys updates existing crm.merge.opportunity records. All records (represented by ids) will be updated by cmo values.

func (*Client) UpdateCrmPartnerBinding

func (c *Client) UpdateCrmPartnerBinding(cpb *CrmPartnerBinding) error

UpdateCrmPartnerBinding updates an existing crm.partner.binding record.

func (*Client) UpdateCrmPartnerBindings

func (c *Client) UpdateCrmPartnerBindings(ids []int64, cpb *CrmPartnerBinding) error

UpdateCrmPartnerBindings updates existing crm.partner.binding records. All records (represented by ids) will be updated by cpb values.

func (*Client) UpdateCrmQuotationPartner

func (c *Client) UpdateCrmQuotationPartner(cqp *CrmQuotationPartner) error

UpdateCrmQuotationPartner updates an existing crm.quotation.partner record.

func (*Client) UpdateCrmQuotationPartners

func (c *Client) UpdateCrmQuotationPartners(ids []int64, cqp *CrmQuotationPartner) error

UpdateCrmQuotationPartners updates existing crm.quotation.partner records. All records (represented by ids) will be updated by cqp values.

func (*Client) UpdateCrmStage

func (c *Client) UpdateCrmStage(cs *CrmStage) error

UpdateCrmStage updates an existing crm.stage record.

func (*Client) UpdateCrmStages

func (c *Client) UpdateCrmStages(ids []int64, cs *CrmStage) error

UpdateCrmStages updates existing crm.stage records. All records (represented by ids) will be updated by cs values.

func (*Client) UpdateCrmTeam

func (c *Client) UpdateCrmTeam(ct *CrmTeam) error

UpdateCrmTeam updates an existing crm.team record.

func (*Client) UpdateCrmTeams

func (c *Client) UpdateCrmTeams(ids []int64, ct *CrmTeam) error

UpdateCrmTeams updates existing crm.team records. All records (represented by ids) will be updated by ct values.

func (*Client) UpdateDecimalPrecision

func (c *Client) UpdateDecimalPrecision(dp *DecimalPrecision) error

UpdateDecimalPrecision updates an existing decimal.precision record.

func (*Client) UpdateDecimalPrecisions

func (c *Client) UpdateDecimalPrecisions(ids []int64, dp *DecimalPrecision) error

UpdateDecimalPrecisions updates existing decimal.precision records. All records (represented by ids) will be updated by dp values.

func (*Client) UpdateDigestDigest

func (c *Client) UpdateDigestDigest(dd *DigestDigest) error

UpdateDigestDigest updates an existing digest.digest record.

func (*Client) UpdateDigestDigests

func (c *Client) UpdateDigestDigests(ids []int64, dd *DigestDigest) error

UpdateDigestDigests updates existing digest.digest records. All records (represented by ids) will be updated by dd values.

func (*Client) UpdateDigestTip

func (c *Client) UpdateDigestTip(dt *DigestTip) error

UpdateDigestTip updates an existing digest.tip record.

func (*Client) UpdateDigestTips

func (c *Client) UpdateDigestTips(ids []int64, dt *DigestTip) error

UpdateDigestTips updates existing digest.tip records. All records (represented by ids) will be updated by dt values.

func (*Client) UpdateEmailTemplatePreview

func (c *Client) UpdateEmailTemplatePreview(ep *EmailTemplatePreview) error

UpdateEmailTemplatePreview updates an existing email_template.preview record.

func (*Client) UpdateEmailTemplatePreviews

func (c *Client) UpdateEmailTemplatePreviews(ids []int64, ep *EmailTemplatePreview) error

UpdateEmailTemplatePreviews updates existing email_template.preview records. All records (represented by ids) will be updated by ep values.

func (*Client) UpdateEventConfirm

func (c *Client) UpdateEventConfirm(ec *EventConfirm) error

UpdateEventConfirm updates an existing event.confirm record.

func (*Client) UpdateEventConfirms

func (c *Client) UpdateEventConfirms(ids []int64, ec *EventConfirm) error

UpdateEventConfirms updates existing event.confirm records. All records (represented by ids) will be updated by ec values.

func (*Client) UpdateEventEvent

func (c *Client) UpdateEventEvent(ee *EventEvent) error

UpdateEventEvent updates an existing event.event record.

func (*Client) UpdateEventEventConfigurator

func (c *Client) UpdateEventEventConfigurator(eec *EventEventConfigurator) error

UpdateEventEventConfigurator updates an existing event.event.configurator record.

func (*Client) UpdateEventEventConfigurators

func (c *Client) UpdateEventEventConfigurators(ids []int64, eec *EventEventConfigurator) error

UpdateEventEventConfigurators updates existing event.event.configurator records. All records (represented by ids) will be updated by eec values.

func (*Client) UpdateEventEventTicket

func (c *Client) UpdateEventEventTicket(eet *EventEventTicket) error

UpdateEventEventTicket updates an existing event.event.ticket record.

func (*Client) UpdateEventEventTickets

func (c *Client) UpdateEventEventTickets(ids []int64, eet *EventEventTicket) error

UpdateEventEventTickets updates existing event.event.ticket records. All records (represented by ids) will be updated by eet values.

func (*Client) UpdateEventEvents

func (c *Client) UpdateEventEvents(ids []int64, ee *EventEvent) error

UpdateEventEvents updates existing event.event records. All records (represented by ids) will be updated by ee values.

func (*Client) UpdateEventMail

func (c *Client) UpdateEventMail(em *EventMail) error

UpdateEventMail updates an existing event.mail record.

func (*Client) UpdateEventMailRegistration

func (c *Client) UpdateEventMailRegistration(emr *EventMailRegistration) error

UpdateEventMailRegistration updates an existing event.mail.registration record.

func (*Client) UpdateEventMailRegistrations

func (c *Client) UpdateEventMailRegistrations(ids []int64, emr *EventMailRegistration) error

UpdateEventMailRegistrations updates existing event.mail.registration records. All records (represented by ids) will be updated by emr values.

func (*Client) UpdateEventMails

func (c *Client) UpdateEventMails(ids []int64, em *EventMail) error

UpdateEventMails updates existing event.mail records. All records (represented by ids) will be updated by em values.

func (*Client) UpdateEventRegistration

func (c *Client) UpdateEventRegistration(er *EventRegistration) error

UpdateEventRegistration updates an existing event.registration record.

func (*Client) UpdateEventRegistrations

func (c *Client) UpdateEventRegistrations(ids []int64, er *EventRegistration) error

UpdateEventRegistrations updates existing event.registration records. All records (represented by ids) will be updated by er values.

func (*Client) UpdateEventType

func (c *Client) UpdateEventType(et *EventType) error

UpdateEventType updates an existing event.type record.

func (*Client) UpdateEventTypeMail

func (c *Client) UpdateEventTypeMail(etm *EventTypeMail) error

UpdateEventTypeMail updates an existing event.type.mail record.

func (*Client) UpdateEventTypeMails

func (c *Client) UpdateEventTypeMails(ids []int64, etm *EventTypeMail) error

UpdateEventTypeMails updates existing event.type.mail records. All records (represented by ids) will be updated by etm values.

func (*Client) UpdateEventTypes

func (c *Client) UpdateEventTypes(ids []int64, et *EventType) error

UpdateEventTypes updates existing event.type records. All records (represented by ids) will be updated by et values.

func (*Client) UpdateFetchmailServer

func (c *Client) UpdateFetchmailServer(fs *FetchmailServer) error

UpdateFetchmailServer updates an existing fetchmail.server record.

func (*Client) UpdateFetchmailServers

func (c *Client) UpdateFetchmailServers(ids []int64, fs *FetchmailServer) error

UpdateFetchmailServers updates existing fetchmail.server records. All records (represented by ids) will be updated by fs values.

func (*Client) UpdateFormatAddressMixin

func (c *Client) UpdateFormatAddressMixin(fam *FormatAddressMixin) error

UpdateFormatAddressMixin updates an existing format.address.mixin record.

func (*Client) UpdateFormatAddressMixins

func (c *Client) UpdateFormatAddressMixins(ids []int64, fam *FormatAddressMixin) error

UpdateFormatAddressMixins updates existing format.address.mixin records. All records (represented by ids) will be updated by fam values.

func (*Client) UpdateGamificationBadge

func (c *Client) UpdateGamificationBadge(gb *GamificationBadge) error

UpdateGamificationBadge updates an existing gamification.badge record.

func (*Client) UpdateGamificationBadgeUser

func (c *Client) UpdateGamificationBadgeUser(gbu *GamificationBadgeUser) error

UpdateGamificationBadgeUser updates an existing gamification.badge.user record.

func (*Client) UpdateGamificationBadgeUserWizard

func (c *Client) UpdateGamificationBadgeUserWizard(gbuw *GamificationBadgeUserWizard) error

UpdateGamificationBadgeUserWizard updates an existing gamification.badge.user.wizard record.

func (*Client) UpdateGamificationBadgeUserWizards

func (c *Client) UpdateGamificationBadgeUserWizards(ids []int64, gbuw *GamificationBadgeUserWizard) error

UpdateGamificationBadgeUserWizards updates existing gamification.badge.user.wizard records. All records (represented by ids) will be updated by gbuw values.

func (*Client) UpdateGamificationBadgeUsers

func (c *Client) UpdateGamificationBadgeUsers(ids []int64, gbu *GamificationBadgeUser) error

UpdateGamificationBadgeUsers updates existing gamification.badge.user records. All records (represented by ids) will be updated by gbu values.

func (*Client) UpdateGamificationBadges

func (c *Client) UpdateGamificationBadges(ids []int64, gb *GamificationBadge) error

UpdateGamificationBadges updates existing gamification.badge records. All records (represented by ids) will be updated by gb values.

func (*Client) UpdateGamificationChallenge

func (c *Client) UpdateGamificationChallenge(gc *GamificationChallenge) error

UpdateGamificationChallenge updates an existing gamification.challenge record.

func (*Client) UpdateGamificationChallengeLine

func (c *Client) UpdateGamificationChallengeLine(gcl *GamificationChallengeLine) error

UpdateGamificationChallengeLine updates an existing gamification.challenge.line record.

func (*Client) UpdateGamificationChallengeLines

func (c *Client) UpdateGamificationChallengeLines(ids []int64, gcl *GamificationChallengeLine) error

UpdateGamificationChallengeLines updates existing gamification.challenge.line records. All records (represented by ids) will be updated by gcl values.

func (*Client) UpdateGamificationChallenges

func (c *Client) UpdateGamificationChallenges(ids []int64, gc *GamificationChallenge) error

UpdateGamificationChallenges updates existing gamification.challenge records. All records (represented by ids) will be updated by gc values.

func (*Client) UpdateGamificationGoal

func (c *Client) UpdateGamificationGoal(gg *GamificationGoal) error

UpdateGamificationGoal updates an existing gamification.goal record.

func (*Client) UpdateGamificationGoalDefinition

func (c *Client) UpdateGamificationGoalDefinition(ggd *GamificationGoalDefinition) error

UpdateGamificationGoalDefinition updates an existing gamification.goal.definition record.

func (*Client) UpdateGamificationGoalDefinitions

func (c *Client) UpdateGamificationGoalDefinitions(ids []int64, ggd *GamificationGoalDefinition) error

UpdateGamificationGoalDefinitions updates existing gamification.goal.definition records. All records (represented by ids) will be updated by ggd values.

func (*Client) UpdateGamificationGoalWizard

func (c *Client) UpdateGamificationGoalWizard(ggw *GamificationGoalWizard) error

UpdateGamificationGoalWizard updates an existing gamification.goal.wizard record.

func (*Client) UpdateGamificationGoalWizards

func (c *Client) UpdateGamificationGoalWizards(ids []int64, ggw *GamificationGoalWizard) error

UpdateGamificationGoalWizards updates existing gamification.goal.wizard records. All records (represented by ids) will be updated by ggw values.

func (*Client) UpdateGamificationGoals

func (c *Client) UpdateGamificationGoals(ids []int64, gg *GamificationGoal) error

UpdateGamificationGoals updates existing gamification.goal records. All records (represented by ids) will be updated by gg values.

func (*Client) UpdateGamificationKarmaRank

func (c *Client) UpdateGamificationKarmaRank(gkr *GamificationKarmaRank) error

UpdateGamificationKarmaRank updates an existing gamification.karma.rank record.

func (*Client) UpdateGamificationKarmaRanks

func (c *Client) UpdateGamificationKarmaRanks(ids []int64, gkr *GamificationKarmaRank) error

UpdateGamificationKarmaRanks updates existing gamification.karma.rank records. All records (represented by ids) will be updated by gkr values.

func (*Client) UpdateHrApplicant

func (c *Client) UpdateHrApplicant(ha *HrApplicant) error

UpdateHrApplicant updates an existing hr.applicant record.

func (*Client) UpdateHrApplicantCategory

func (c *Client) UpdateHrApplicantCategory(hac *HrApplicantCategory) error

UpdateHrApplicantCategory updates an existing hr.applicant.category record.

func (*Client) UpdateHrApplicantCategorys

func (c *Client) UpdateHrApplicantCategorys(ids []int64, hac *HrApplicantCategory) error

UpdateHrApplicantCategorys updates existing hr.applicant.category records. All records (represented by ids) will be updated by hac values.

func (*Client) UpdateHrApplicants

func (c *Client) UpdateHrApplicants(ids []int64, ha *HrApplicant) error

UpdateHrApplicants updates existing hr.applicant records. All records (represented by ids) will be updated by ha values.

func (*Client) UpdateHrAttendance

func (c *Client) UpdateHrAttendance(ha *HrAttendance) error

UpdateHrAttendance updates an existing hr.attendance record.

func (*Client) UpdateHrAttendances

func (c *Client) UpdateHrAttendances(ids []int64, ha *HrAttendance) error

UpdateHrAttendances updates existing hr.attendance records. All records (represented by ids) will be updated by ha values.

func (*Client) UpdateHrContract

func (c *Client) UpdateHrContract(hc *HrContract) error

UpdateHrContract updates an existing hr.contract record.

func (*Client) UpdateHrContracts

func (c *Client) UpdateHrContracts(ids []int64, hc *HrContract) error

UpdateHrContracts updates existing hr.contract records. All records (represented by ids) will be updated by hc values.

func (*Client) UpdateHrDepartment

func (c *Client) UpdateHrDepartment(hd *HrDepartment) error

UpdateHrDepartment updates an existing hr.department record.

func (*Client) UpdateHrDepartments

func (c *Client) UpdateHrDepartments(ids []int64, hd *HrDepartment) error

UpdateHrDepartments updates existing hr.department records. All records (represented by ids) will be updated by hd values.

func (*Client) UpdateHrDepartureWizard

func (c *Client) UpdateHrDepartureWizard(hdw *HrDepartureWizard) error

UpdateHrDepartureWizard updates an existing hr.departure.wizard record.

func (*Client) UpdateHrDepartureWizards

func (c *Client) UpdateHrDepartureWizards(ids []int64, hdw *HrDepartureWizard) error

UpdateHrDepartureWizards updates existing hr.departure.wizard records. All records (represented by ids) will be updated by hdw values.

func (*Client) UpdateHrEmployee

func (c *Client) UpdateHrEmployee(he *HrEmployee) error

UpdateHrEmployee updates an existing hr.employee record.

func (*Client) UpdateHrEmployeeBase

func (c *Client) UpdateHrEmployeeBase(heb *HrEmployeeBase) error

UpdateHrEmployeeBase updates an existing hr.employee.base record.

func (*Client) UpdateHrEmployeeBases

func (c *Client) UpdateHrEmployeeBases(ids []int64, heb *HrEmployeeBase) error

UpdateHrEmployeeBases updates existing hr.employee.base records. All records (represented by ids) will be updated by heb values.

func (*Client) UpdateHrEmployeeCategory

func (c *Client) UpdateHrEmployeeCategory(hec *HrEmployeeCategory) error

UpdateHrEmployeeCategory updates an existing hr.employee.category record.

func (*Client) UpdateHrEmployeeCategorys

func (c *Client) UpdateHrEmployeeCategorys(ids []int64, hec *HrEmployeeCategory) error

UpdateHrEmployeeCategorys updates existing hr.employee.category records. All records (represented by ids) will be updated by hec values.

func (*Client) UpdateHrEmployeePublic

func (c *Client) UpdateHrEmployeePublic(hep *HrEmployeePublic) error

UpdateHrEmployeePublic updates an existing hr.employee.public record.

func (*Client) UpdateHrEmployeePublics

func (c *Client) UpdateHrEmployeePublics(ids []int64, hep *HrEmployeePublic) error

UpdateHrEmployeePublics updates existing hr.employee.public records. All records (represented by ids) will be updated by hep values.

func (*Client) UpdateHrEmployees

func (c *Client) UpdateHrEmployees(ids []int64, he *HrEmployee) error

UpdateHrEmployees updates existing hr.employee records. All records (represented by ids) will be updated by he values.

func (*Client) UpdateHrExpense

func (c *Client) UpdateHrExpense(he *HrExpense) error

UpdateHrExpense updates an existing hr.expense record.

func (*Client) UpdateHrExpenseRefuseWizard

func (c *Client) UpdateHrExpenseRefuseWizard(herw *HrExpenseRefuseWizard) error

UpdateHrExpenseRefuseWizard updates an existing hr.expense.refuse.wizard record.

func (*Client) UpdateHrExpenseRefuseWizards

func (c *Client) UpdateHrExpenseRefuseWizards(ids []int64, herw *HrExpenseRefuseWizard) error

UpdateHrExpenseRefuseWizards updates existing hr.expense.refuse.wizard records. All records (represented by ids) will be updated by herw values.

func (*Client) UpdateHrExpenseSheet

func (c *Client) UpdateHrExpenseSheet(hes *HrExpenseSheet) error

UpdateHrExpenseSheet updates an existing hr.expense.sheet record.

func (*Client) UpdateHrExpenseSheetRegisterPaymentWizard

func (c *Client) UpdateHrExpenseSheetRegisterPaymentWizard(hesrpw *HrExpenseSheetRegisterPaymentWizard) error

UpdateHrExpenseSheetRegisterPaymentWizard updates an existing hr.expense.sheet.register.payment.wizard record.

func (*Client) UpdateHrExpenseSheetRegisterPaymentWizards

func (c *Client) UpdateHrExpenseSheetRegisterPaymentWizards(ids []int64, hesrpw *HrExpenseSheetRegisterPaymentWizard) error

UpdateHrExpenseSheetRegisterPaymentWizards updates existing hr.expense.sheet.register.payment.wizard records. All records (represented by ids) will be updated by hesrpw values.

func (*Client) UpdateHrExpenseSheets

func (c *Client) UpdateHrExpenseSheets(ids []int64, hes *HrExpenseSheet) error

UpdateHrExpenseSheets updates existing hr.expense.sheet records. All records (represented by ids) will be updated by hes values.

func (*Client) UpdateHrExpenses

func (c *Client) UpdateHrExpenses(ids []int64, he *HrExpense) error

UpdateHrExpenses updates existing hr.expense records. All records (represented by ids) will be updated by he values.

func (*Client) UpdateHrHolidaysSummaryEmployee

func (c *Client) UpdateHrHolidaysSummaryEmployee(hhse *HrHolidaysSummaryEmployee) error

UpdateHrHolidaysSummaryEmployee updates an existing hr.holidays.summary.employee record.

func (*Client) UpdateHrHolidaysSummaryEmployees

func (c *Client) UpdateHrHolidaysSummaryEmployees(ids []int64, hhse *HrHolidaysSummaryEmployee) error

UpdateHrHolidaysSummaryEmployees updates existing hr.holidays.summary.employee records. All records (represented by ids) will be updated by hhse values.

func (*Client) UpdateHrJob

func (c *Client) UpdateHrJob(hj *HrJob) error

UpdateHrJob updates an existing hr.job record.

func (*Client) UpdateHrJobs

func (c *Client) UpdateHrJobs(ids []int64, hj *HrJob) error

UpdateHrJobs updates existing hr.job records. All records (represented by ids) will be updated by hj values.

func (*Client) UpdateHrLeave

func (c *Client) UpdateHrLeave(hl *HrLeave) error

UpdateHrLeave updates an existing hr.leave record.

func (*Client) UpdateHrLeaveAllocation

func (c *Client) UpdateHrLeaveAllocation(hla *HrLeaveAllocation) error

UpdateHrLeaveAllocation updates an existing hr.leave.allocation record.

func (*Client) UpdateHrLeaveAllocations

func (c *Client) UpdateHrLeaveAllocations(ids []int64, hla *HrLeaveAllocation) error

UpdateHrLeaveAllocations updates existing hr.leave.allocation records. All records (represented by ids) will be updated by hla values.

func (*Client) UpdateHrLeaveReport

func (c *Client) UpdateHrLeaveReport(hlr *HrLeaveReport) error

UpdateHrLeaveReport updates an existing hr.leave.report record.

func (*Client) UpdateHrLeaveReportCalendar

func (c *Client) UpdateHrLeaveReportCalendar(hlrc *HrLeaveReportCalendar) error

UpdateHrLeaveReportCalendar updates an existing hr.leave.report.calendar record.

func (*Client) UpdateHrLeaveReportCalendars

func (c *Client) UpdateHrLeaveReportCalendars(ids []int64, hlrc *HrLeaveReportCalendar) error

UpdateHrLeaveReportCalendars updates existing hr.leave.report.calendar records. All records (represented by ids) will be updated by hlrc values.

func (*Client) UpdateHrLeaveReports

func (c *Client) UpdateHrLeaveReports(ids []int64, hlr *HrLeaveReport) error

UpdateHrLeaveReports updates existing hr.leave.report records. All records (represented by ids) will be updated by hlr values.

func (*Client) UpdateHrLeaveType

func (c *Client) UpdateHrLeaveType(hlt *HrLeaveType) error

UpdateHrLeaveType updates an existing hr.leave.type record.

func (*Client) UpdateHrLeaveTypes

func (c *Client) UpdateHrLeaveTypes(ids []int64, hlt *HrLeaveType) error

UpdateHrLeaveTypes updates existing hr.leave.type records. All records (represented by ids) will be updated by hlt values.

func (*Client) UpdateHrLeaves

func (c *Client) UpdateHrLeaves(ids []int64, hl *HrLeave) error

UpdateHrLeaves updates existing hr.leave records. All records (represented by ids) will be updated by hl values.

func (*Client) UpdateHrPlan

func (c *Client) UpdateHrPlan(hp *HrPlan) error

UpdateHrPlan updates an existing hr.plan record.

func (*Client) UpdateHrPlanActivityType

func (c *Client) UpdateHrPlanActivityType(hpat *HrPlanActivityType) error

UpdateHrPlanActivityType updates an existing hr.plan.activity.type record.

func (*Client) UpdateHrPlanActivityTypes

func (c *Client) UpdateHrPlanActivityTypes(ids []int64, hpat *HrPlanActivityType) error

UpdateHrPlanActivityTypes updates existing hr.plan.activity.type records. All records (represented by ids) will be updated by hpat values.

func (*Client) UpdateHrPlanWizard

func (c *Client) UpdateHrPlanWizard(hpw *HrPlanWizard) error

UpdateHrPlanWizard updates an existing hr.plan.wizard record.

func (*Client) UpdateHrPlanWizards

func (c *Client) UpdateHrPlanWizards(ids []int64, hpw *HrPlanWizard) error

UpdateHrPlanWizards updates existing hr.plan.wizard records. All records (represented by ids) will be updated by hpw values.

func (*Client) UpdateHrPlans

func (c *Client) UpdateHrPlans(ids []int64, hp *HrPlan) error

UpdateHrPlans updates existing hr.plan records. All records (represented by ids) will be updated by hp values.

func (*Client) UpdateHrRecruitmentDegree

func (c *Client) UpdateHrRecruitmentDegree(hrd *HrRecruitmentDegree) error

UpdateHrRecruitmentDegree updates an existing hr.recruitment.degree record.

func (*Client) UpdateHrRecruitmentDegrees

func (c *Client) UpdateHrRecruitmentDegrees(ids []int64, hrd *HrRecruitmentDegree) error

UpdateHrRecruitmentDegrees updates existing hr.recruitment.degree records. All records (represented by ids) will be updated by hrd values.

func (*Client) UpdateHrRecruitmentSource

func (c *Client) UpdateHrRecruitmentSource(hrs *HrRecruitmentSource) error

UpdateHrRecruitmentSource updates an existing hr.recruitment.source record.

func (*Client) UpdateHrRecruitmentSources

func (c *Client) UpdateHrRecruitmentSources(ids []int64, hrs *HrRecruitmentSource) error

UpdateHrRecruitmentSources updates existing hr.recruitment.source records. All records (represented by ids) will be updated by hrs values.

func (*Client) UpdateHrRecruitmentStage

func (c *Client) UpdateHrRecruitmentStage(hrs *HrRecruitmentStage) error

UpdateHrRecruitmentStage updates an existing hr.recruitment.stage record.

func (*Client) UpdateHrRecruitmentStages

func (c *Client) UpdateHrRecruitmentStages(ids []int64, hrs *HrRecruitmentStage) error

UpdateHrRecruitmentStages updates existing hr.recruitment.stage records. All records (represented by ids) will be updated by hrs values.

func (*Client) UpdateIapAccount

func (c *Client) UpdateIapAccount(ia *IapAccount) error

UpdateIapAccount updates an existing iap.account record.

func (*Client) UpdateIapAccounts

func (c *Client) UpdateIapAccounts(ids []int64, ia *IapAccount) error

UpdateIapAccounts updates existing iap.account records. All records (represented by ids) will be updated by ia values.

func (*Client) UpdateImLivechatChannel

func (c *Client) UpdateImLivechatChannel(ic *ImLivechatChannel) error

UpdateImLivechatChannel updates an existing im_livechat.channel record.

func (*Client) UpdateImLivechatChannelRule

func (c *Client) UpdateImLivechatChannelRule(icr *ImLivechatChannelRule) error

UpdateImLivechatChannelRule updates an existing im_livechat.channel.rule record.

func (*Client) UpdateImLivechatChannelRules

func (c *Client) UpdateImLivechatChannelRules(ids []int64, icr *ImLivechatChannelRule) error

UpdateImLivechatChannelRules updates existing im_livechat.channel.rule records. All records (represented by ids) will be updated by icr values.

func (*Client) UpdateImLivechatChannels

func (c *Client) UpdateImLivechatChannels(ids []int64, ic *ImLivechatChannel) error

UpdateImLivechatChannels updates existing im_livechat.channel records. All records (represented by ids) will be updated by ic values.

func (*Client) UpdateImLivechatReportChannel

func (c *Client) UpdateImLivechatReportChannel(irc *ImLivechatReportChannel) error

UpdateImLivechatReportChannel updates an existing im_livechat.report.channel record.

func (*Client) UpdateImLivechatReportChannels

func (c *Client) UpdateImLivechatReportChannels(ids []int64, irc *ImLivechatReportChannel) error

UpdateImLivechatReportChannels updates existing im_livechat.report.channel records. All records (represented by ids) will be updated by irc values.

func (*Client) UpdateImLivechatReportOperator

func (c *Client) UpdateImLivechatReportOperator(iro *ImLivechatReportOperator) error

UpdateImLivechatReportOperator updates an existing im_livechat.report.operator record.

func (*Client) UpdateImLivechatReportOperators

func (c *Client) UpdateImLivechatReportOperators(ids []int64, iro *ImLivechatReportOperator) error

UpdateImLivechatReportOperators updates existing im_livechat.report.operator records. All records (represented by ids) will be updated by iro values.

func (*Client) UpdateImageMixin

func (c *Client) UpdateImageMixin(im *ImageMixin) error

UpdateImageMixin updates an existing image.mixin record.

func (*Client) UpdateImageMixins

func (c *Client) UpdateImageMixins(ids []int64, im *ImageMixin) error

UpdateImageMixins updates existing image.mixin records. All records (represented by ids) will be updated by im values.

func (*Client) UpdateIrActionsActUrl

func (c *Client) UpdateIrActionsActUrl(iaa *IrActionsActUrl) error

UpdateIrActionsActUrl updates an existing ir.actions.act_url record.

func (*Client) UpdateIrActionsActUrls

func (c *Client) UpdateIrActionsActUrls(ids []int64, iaa *IrActionsActUrl) error

UpdateIrActionsActUrls updates existing ir.actions.act_url records. All records (represented by ids) will be updated by iaa values.

func (*Client) UpdateIrActionsActWindow

func (c *Client) UpdateIrActionsActWindow(iaa *IrActionsActWindow) error

UpdateIrActionsActWindow updates an existing ir.actions.act_window record.

func (*Client) UpdateIrActionsActWindowClose

func (c *Client) UpdateIrActionsActWindowClose(iaa *IrActionsActWindowClose) error

UpdateIrActionsActWindowClose updates an existing ir.actions.act_window_close record.

func (*Client) UpdateIrActionsActWindowCloses

func (c *Client) UpdateIrActionsActWindowCloses(ids []int64, iaa *IrActionsActWindowClose) error

UpdateIrActionsActWindowCloses updates existing ir.actions.act_window_close records. All records (represented by ids) will be updated by iaa values.

func (*Client) UpdateIrActionsActWindowView

func (c *Client) UpdateIrActionsActWindowView(iaav *IrActionsActWindowView) error

UpdateIrActionsActWindowView updates an existing ir.actions.act_window.view record.

func (*Client) UpdateIrActionsActWindowViews

func (c *Client) UpdateIrActionsActWindowViews(ids []int64, iaav *IrActionsActWindowView) error

UpdateIrActionsActWindowViews updates existing ir.actions.act_window.view records. All records (represented by ids) will be updated by iaav values.

func (*Client) UpdateIrActionsActWindows

func (c *Client) UpdateIrActionsActWindows(ids []int64, iaa *IrActionsActWindow) error

UpdateIrActionsActWindows updates existing ir.actions.act_window records. All records (represented by ids) will be updated by iaa values.

func (*Client) UpdateIrActionsActions

func (c *Client) UpdateIrActionsActions(iaa *IrActionsActions) error

UpdateIrActionsActions updates an existing ir.actions.actions record.

func (*Client) UpdateIrActionsActionss

func (c *Client) UpdateIrActionsActionss(ids []int64, iaa *IrActionsActions) error

UpdateIrActionsActionss updates existing ir.actions.actions records. All records (represented by ids) will be updated by iaa values.

func (*Client) UpdateIrActionsClient

func (c *Client) UpdateIrActionsClient(iac *IrActionsClient) error

UpdateIrActionsClient updates an existing ir.actions.client record.

func (*Client) UpdateIrActionsClients

func (c *Client) UpdateIrActionsClients(ids []int64, iac *IrActionsClient) error

UpdateIrActionsClients updates existing ir.actions.client records. All records (represented by ids) will be updated by iac values.

func (*Client) UpdateIrActionsReport

func (c *Client) UpdateIrActionsReport(iar *IrActionsReport) error

UpdateIrActionsReport updates an existing ir.actions.report record.

func (*Client) UpdateIrActionsReports

func (c *Client) UpdateIrActionsReports(ids []int64, iar *IrActionsReport) error

UpdateIrActionsReports updates existing ir.actions.report records. All records (represented by ids) will be updated by iar values.

func (*Client) UpdateIrActionsServer

func (c *Client) UpdateIrActionsServer(ias *IrActionsServer) error

UpdateIrActionsServer updates an existing ir.actions.server record.

func (*Client) UpdateIrActionsServers

func (c *Client) UpdateIrActionsServers(ids []int64, ias *IrActionsServer) error

UpdateIrActionsServers updates existing ir.actions.server records. All records (represented by ids) will be updated by ias values.

func (*Client) UpdateIrActionsTodo

func (c *Client) UpdateIrActionsTodo(iat *IrActionsTodo) error

UpdateIrActionsTodo updates an existing ir.actions.todo record.

func (*Client) UpdateIrActionsTodos

func (c *Client) UpdateIrActionsTodos(ids []int64, iat *IrActionsTodo) error

UpdateIrActionsTodos updates existing ir.actions.todo records. All records (represented by ids) will be updated by iat values.

func (*Client) UpdateIrAttachment

func (c *Client) UpdateIrAttachment(ia *IrAttachment) error

UpdateIrAttachment updates an existing ir.attachment record.

func (*Client) UpdateIrAttachments

func (c *Client) UpdateIrAttachments(ids []int64, ia *IrAttachment) error

UpdateIrAttachments updates existing ir.attachment records. All records (represented by ids) will be updated by ia values.

func (*Client) UpdateIrAutovacuum

func (c *Client) UpdateIrAutovacuum(ia *IrAutovacuum) error

UpdateIrAutovacuum updates an existing ir.autovacuum record.

func (*Client) UpdateIrAutovacuums

func (c *Client) UpdateIrAutovacuums(ids []int64, ia *IrAutovacuum) error

UpdateIrAutovacuums updates existing ir.autovacuum records. All records (represented by ids) will be updated by ia values.

func (*Client) UpdateIrConfigParameter

func (c *Client) UpdateIrConfigParameter(ic *IrConfigParameter) error

UpdateIrConfigParameter updates an existing ir.config_parameter record.

func (*Client) UpdateIrConfigParameters

func (c *Client) UpdateIrConfigParameters(ids []int64, ic *IrConfigParameter) error

UpdateIrConfigParameters updates existing ir.config_parameter records. All records (represented by ids) will be updated by ic values.

func (*Client) UpdateIrCron

func (c *Client) UpdateIrCron(ic *IrCron) error

UpdateIrCron updates an existing ir.cron record.

func (*Client) UpdateIrCrons

func (c *Client) UpdateIrCrons(ids []int64, ic *IrCron) error

UpdateIrCrons updates existing ir.cron records. All records (represented by ids) will be updated by ic values.

func (*Client) UpdateIrDefault

func (c *Client) UpdateIrDefault(ID *IrDefault) error

UpdateIrDefault updates an existing ir.default record.

func (*Client) UpdateIrDefaults

func (c *Client) UpdateIrDefaults(ids []int64, ID *IrDefault) error

UpdateIrDefaults updates existing ir.default records. All records (represented by ids) will be updated by ID values.

func (*Client) UpdateIrDemo

func (c *Client) UpdateIrDemo(ID *IrDemo) error

UpdateIrDemo updates an existing ir.demo record.

func (*Client) UpdateIrDemoFailure

func (c *Client) UpdateIrDemoFailure(ID *IrDemoFailure) error

UpdateIrDemoFailure updates an existing ir.demo_failure record.

func (*Client) UpdateIrDemoFailureWizard

func (c *Client) UpdateIrDemoFailureWizard(idw *IrDemoFailureWizard) error

UpdateIrDemoFailureWizard updates an existing ir.demo_failure.wizard record.

func (*Client) UpdateIrDemoFailureWizards

func (c *Client) UpdateIrDemoFailureWizards(ids []int64, idw *IrDemoFailureWizard) error

UpdateIrDemoFailureWizards updates existing ir.demo_failure.wizard records. All records (represented by ids) will be updated by idw values.

func (*Client) UpdateIrDemoFailures

func (c *Client) UpdateIrDemoFailures(ids []int64, ID *IrDemoFailure) error

UpdateIrDemoFailures updates existing ir.demo_failure records. All records (represented by ids) will be updated by ID values.

func (*Client) UpdateIrDemos

func (c *Client) UpdateIrDemos(ids []int64, ID *IrDemo) error

UpdateIrDemos updates existing ir.demo records. All records (represented by ids) will be updated by ID values.

func (*Client) UpdateIrExports

func (c *Client) UpdateIrExports(ie *IrExports) error

UpdateIrExports updates an existing ir.exports record.

func (*Client) UpdateIrExportsLine

func (c *Client) UpdateIrExportsLine(iel *IrExportsLine) error

UpdateIrExportsLine updates an existing ir.exports.line record.

func (*Client) UpdateIrExportsLines

func (c *Client) UpdateIrExportsLines(ids []int64, iel *IrExportsLine) error

UpdateIrExportsLines updates existing ir.exports.line records. All records (represented by ids) will be updated by iel values.

func (*Client) UpdateIrExportss

func (c *Client) UpdateIrExportss(ids []int64, ie *IrExports) error

UpdateIrExportss updates existing ir.exports records. All records (represented by ids) will be updated by ie values.

func (*Client) UpdateIrFieldsConverter

func (c *Client) UpdateIrFieldsConverter(ifc *IrFieldsConverter) error

UpdateIrFieldsConverter updates an existing ir.fields.converter record.

func (*Client) UpdateIrFieldsConverters

func (c *Client) UpdateIrFieldsConverters(ids []int64, ifc *IrFieldsConverter) error

UpdateIrFieldsConverters updates existing ir.fields.converter records. All records (represented by ids) will be updated by ifc values.

func (*Client) UpdateIrFilters

func (c *Client) UpdateIrFilters(IF *IrFilters) error

UpdateIrFilters updates an existing ir.filters record.

func (*Client) UpdateIrFilterss

func (c *Client) UpdateIrFilterss(ids []int64, IF *IrFilters) error

UpdateIrFilterss updates existing ir.filters records. All records (represented by ids) will be updated by IF values.

func (*Client) UpdateIrHttp

func (c *Client) UpdateIrHttp(ih *IrHttp) error

UpdateIrHttp updates an existing ir.http record.

func (*Client) UpdateIrHttps

func (c *Client) UpdateIrHttps(ids []int64, ih *IrHttp) error

UpdateIrHttps updates existing ir.http records. All records (represented by ids) will be updated by ih values.

func (*Client) UpdateIrLogging

func (c *Client) UpdateIrLogging(il *IrLogging) error

UpdateIrLogging updates an existing ir.logging record.

func (*Client) UpdateIrLoggings

func (c *Client) UpdateIrLoggings(ids []int64, il *IrLogging) error

UpdateIrLoggings updates existing ir.logging records. All records (represented by ids) will be updated by il values.

func (*Client) UpdateIrMailServer

func (c *Client) UpdateIrMailServer(im *IrMailServer) error

UpdateIrMailServer updates an existing ir.mail_server record.

func (*Client) UpdateIrMailServers

func (c *Client) UpdateIrMailServers(ids []int64, im *IrMailServer) error

UpdateIrMailServers updates existing ir.mail_server records. All records (represented by ids) will be updated by im values.

func (*Client) UpdateIrModel

func (c *Client) UpdateIrModel(im *IrModel) error

UpdateIrModel updates an existing ir.model record.

func (*Client) UpdateIrModelAccess

func (c *Client) UpdateIrModelAccess(ima *IrModelAccess) error

UpdateIrModelAccess updates an existing ir.model.access record.

func (*Client) UpdateIrModelAccesss

func (c *Client) UpdateIrModelAccesss(ids []int64, ima *IrModelAccess) error

UpdateIrModelAccesss updates existing ir.model.access records. All records (represented by ids) will be updated by ima values.

func (*Client) UpdateIrModelConstraint

func (c *Client) UpdateIrModelConstraint(imc *IrModelConstraint) error

UpdateIrModelConstraint updates an existing ir.model.constraint record.

func (*Client) UpdateIrModelConstraints

func (c *Client) UpdateIrModelConstraints(ids []int64, imc *IrModelConstraint) error

UpdateIrModelConstraints updates existing ir.model.constraint records. All records (represented by ids) will be updated by imc values.

func (*Client) UpdateIrModelData

func (c *Client) UpdateIrModelData(imd *IrModelData) error

UpdateIrModelData updates an existing ir.model.data record.

func (*Client) UpdateIrModelDatas

func (c *Client) UpdateIrModelDatas(ids []int64, imd *IrModelData) error

UpdateIrModelDatas updates existing ir.model.data records. All records (represented by ids) will be updated by imd values.

func (*Client) UpdateIrModelFields

func (c *Client) UpdateIrModelFields(imf *IrModelFields) error

UpdateIrModelFields updates an existing ir.model.fields record.

func (*Client) UpdateIrModelFieldsSelection

func (c *Client) UpdateIrModelFieldsSelection(imfs *IrModelFieldsSelection) error

UpdateIrModelFieldsSelection updates an existing ir.model.fields.selection record.

func (*Client) UpdateIrModelFieldsSelections

func (c *Client) UpdateIrModelFieldsSelections(ids []int64, imfs *IrModelFieldsSelection) error

UpdateIrModelFieldsSelections updates existing ir.model.fields.selection records. All records (represented by ids) will be updated by imfs values.

func (*Client) UpdateIrModelFieldss

func (c *Client) UpdateIrModelFieldss(ids []int64, imf *IrModelFields) error

UpdateIrModelFieldss updates existing ir.model.fields records. All records (represented by ids) will be updated by imf values.

func (*Client) UpdateIrModelRelation

func (c *Client) UpdateIrModelRelation(imr *IrModelRelation) error

UpdateIrModelRelation updates an existing ir.model.relation record.

func (*Client) UpdateIrModelRelations

func (c *Client) UpdateIrModelRelations(ids []int64, imr *IrModelRelation) error

UpdateIrModelRelations updates existing ir.model.relation records. All records (represented by ids) will be updated by imr values.

func (*Client) UpdateIrModels

func (c *Client) UpdateIrModels(ids []int64, im *IrModel) error

UpdateIrModels updates existing ir.model records. All records (represented by ids) will be updated by im values.

func (*Client) UpdateIrModuleCategory

func (c *Client) UpdateIrModuleCategory(imc *IrModuleCategory) error

UpdateIrModuleCategory updates an existing ir.module.category record.

func (*Client) UpdateIrModuleCategorys

func (c *Client) UpdateIrModuleCategorys(ids []int64, imc *IrModuleCategory) error

UpdateIrModuleCategorys updates existing ir.module.category records. All records (represented by ids) will be updated by imc values.

func (*Client) UpdateIrModuleModule

func (c *Client) UpdateIrModuleModule(imm *IrModuleModule) error

UpdateIrModuleModule updates an existing ir.module.module record.

func (*Client) UpdateIrModuleModuleDependency

func (c *Client) UpdateIrModuleModuleDependency(immd *IrModuleModuleDependency) error

UpdateIrModuleModuleDependency updates an existing ir.module.module.dependency record.

func (*Client) UpdateIrModuleModuleDependencys

func (c *Client) UpdateIrModuleModuleDependencys(ids []int64, immd *IrModuleModuleDependency) error

UpdateIrModuleModuleDependencys updates existing ir.module.module.dependency records. All records (represented by ids) will be updated by immd values.

func (*Client) UpdateIrModuleModuleExclusion

func (c *Client) UpdateIrModuleModuleExclusion(imme *IrModuleModuleExclusion) error

UpdateIrModuleModuleExclusion updates an existing ir.module.module.exclusion record.

func (*Client) UpdateIrModuleModuleExclusions

func (c *Client) UpdateIrModuleModuleExclusions(ids []int64, imme *IrModuleModuleExclusion) error

UpdateIrModuleModuleExclusions updates existing ir.module.module.exclusion records. All records (represented by ids) will be updated by imme values.

func (*Client) UpdateIrModuleModules

func (c *Client) UpdateIrModuleModules(ids []int64, imm *IrModuleModule) error

UpdateIrModuleModules updates existing ir.module.module records. All records (represented by ids) will be updated by imm values.

func (*Client) UpdateIrProperty

func (c *Client) UpdateIrProperty(ip *IrProperty) error

UpdateIrProperty updates an existing ir.property record.

func (*Client) UpdateIrPropertys

func (c *Client) UpdateIrPropertys(ids []int64, ip *IrProperty) error

UpdateIrPropertys updates existing ir.property records. All records (represented by ids) will be updated by ip values.

func (*Client) UpdateIrQweb

func (c *Client) UpdateIrQweb(iq *IrQweb) error

UpdateIrQweb updates an existing ir.qweb record.

func (*Client) UpdateIrQwebField

func (c *Client) UpdateIrQwebField(iqf *IrQwebField) error

UpdateIrQwebField updates an existing ir.qweb.field record.

func (*Client) UpdateIrQwebFieldBarcode

func (c *Client) UpdateIrQwebFieldBarcode(iqfb *IrQwebFieldBarcode) error

UpdateIrQwebFieldBarcode updates an existing ir.qweb.field.barcode record.

func (*Client) UpdateIrQwebFieldBarcodes

func (c *Client) UpdateIrQwebFieldBarcodes(ids []int64, iqfb *IrQwebFieldBarcode) error

UpdateIrQwebFieldBarcodes updates existing ir.qweb.field.barcode records. All records (represented by ids) will be updated by iqfb values.

func (*Client) UpdateIrQwebFieldContact

func (c *Client) UpdateIrQwebFieldContact(iqfc *IrQwebFieldContact) error

UpdateIrQwebFieldContact updates an existing ir.qweb.field.contact record.

func (*Client) UpdateIrQwebFieldContacts

func (c *Client) UpdateIrQwebFieldContacts(ids []int64, iqfc *IrQwebFieldContact) error

UpdateIrQwebFieldContacts updates existing ir.qweb.field.contact records. All records (represented by ids) will be updated by iqfc values.

func (*Client) UpdateIrQwebFieldDate

func (c *Client) UpdateIrQwebFieldDate(iqfd *IrQwebFieldDate) error

UpdateIrQwebFieldDate updates an existing ir.qweb.field.date record.

func (*Client) UpdateIrQwebFieldDates

func (c *Client) UpdateIrQwebFieldDates(ids []int64, iqfd *IrQwebFieldDate) error

UpdateIrQwebFieldDates updates existing ir.qweb.field.date records. All records (represented by ids) will be updated by iqfd values.

func (*Client) UpdateIrQwebFieldDatetime

func (c *Client) UpdateIrQwebFieldDatetime(iqfd *IrQwebFieldDatetime) error

UpdateIrQwebFieldDatetime updates an existing ir.qweb.field.datetime record.

func (*Client) UpdateIrQwebFieldDatetimes

func (c *Client) UpdateIrQwebFieldDatetimes(ids []int64, iqfd *IrQwebFieldDatetime) error

UpdateIrQwebFieldDatetimes updates existing ir.qweb.field.datetime records. All records (represented by ids) will be updated by iqfd values.

func (*Client) UpdateIrQwebFieldDuration

func (c *Client) UpdateIrQwebFieldDuration(iqfd *IrQwebFieldDuration) error

UpdateIrQwebFieldDuration updates an existing ir.qweb.field.duration record.

func (*Client) UpdateIrQwebFieldDurations

func (c *Client) UpdateIrQwebFieldDurations(ids []int64, iqfd *IrQwebFieldDuration) error

UpdateIrQwebFieldDurations updates existing ir.qweb.field.duration records. All records (represented by ids) will be updated by iqfd values.

func (*Client) UpdateIrQwebFieldFloat

func (c *Client) UpdateIrQwebFieldFloat(iqff *IrQwebFieldFloat) error

UpdateIrQwebFieldFloat updates an existing ir.qweb.field.float record.

func (*Client) UpdateIrQwebFieldFloatTime

func (c *Client) UpdateIrQwebFieldFloatTime(iqff *IrQwebFieldFloatTime) error

UpdateIrQwebFieldFloatTime updates an existing ir.qweb.field.float_time record.

func (*Client) UpdateIrQwebFieldFloatTimes

func (c *Client) UpdateIrQwebFieldFloatTimes(ids []int64, iqff *IrQwebFieldFloatTime) error

UpdateIrQwebFieldFloatTimes updates existing ir.qweb.field.float_time records. All records (represented by ids) will be updated by iqff values.

func (*Client) UpdateIrQwebFieldFloats

func (c *Client) UpdateIrQwebFieldFloats(ids []int64, iqff *IrQwebFieldFloat) error

UpdateIrQwebFieldFloats updates existing ir.qweb.field.float records. All records (represented by ids) will be updated by iqff values.

func (*Client) UpdateIrQwebFieldHtml

func (c *Client) UpdateIrQwebFieldHtml(iqfh *IrQwebFieldHtml) error

UpdateIrQwebFieldHtml updates an existing ir.qweb.field.html record.

func (*Client) UpdateIrQwebFieldHtmls

func (c *Client) UpdateIrQwebFieldHtmls(ids []int64, iqfh *IrQwebFieldHtml) error

UpdateIrQwebFieldHtmls updates existing ir.qweb.field.html records. All records (represented by ids) will be updated by iqfh values.

func (*Client) UpdateIrQwebFieldImage

func (c *Client) UpdateIrQwebFieldImage(iqfi *IrQwebFieldImage) error

UpdateIrQwebFieldImage updates an existing ir.qweb.field.image record.

func (*Client) UpdateIrQwebFieldImages

func (c *Client) UpdateIrQwebFieldImages(ids []int64, iqfi *IrQwebFieldImage) error

UpdateIrQwebFieldImages updates existing ir.qweb.field.image records. All records (represented by ids) will be updated by iqfi values.

func (*Client) UpdateIrQwebFieldInteger

func (c *Client) UpdateIrQwebFieldInteger(iqfi *IrQwebFieldInteger) error

UpdateIrQwebFieldInteger updates an existing ir.qweb.field.integer record.

func (*Client) UpdateIrQwebFieldIntegers

func (c *Client) UpdateIrQwebFieldIntegers(ids []int64, iqfi *IrQwebFieldInteger) error

UpdateIrQwebFieldIntegers updates existing ir.qweb.field.integer records. All records (represented by ids) will be updated by iqfi values.

func (*Client) UpdateIrQwebFieldMany2Many

func (c *Client) UpdateIrQwebFieldMany2Many(iqfm *IrQwebFieldMany2Many) error

UpdateIrQwebFieldMany2Many updates an existing ir.qweb.field.many2many record.

func (*Client) UpdateIrQwebFieldMany2Manys

func (c *Client) UpdateIrQwebFieldMany2Manys(ids []int64, iqfm *IrQwebFieldMany2Many) error

UpdateIrQwebFieldMany2Manys updates existing ir.qweb.field.many2many records. All records (represented by ids) will be updated by iqfm values.

func (*Client) UpdateIrQwebFieldMany2One

func (c *Client) UpdateIrQwebFieldMany2One(iqfm *IrQwebFieldMany2One) error

UpdateIrQwebFieldMany2One updates an existing ir.qweb.field.many2one record.

func (*Client) UpdateIrQwebFieldMany2Ones

func (c *Client) UpdateIrQwebFieldMany2Ones(ids []int64, iqfm *IrQwebFieldMany2One) error

UpdateIrQwebFieldMany2Ones updates existing ir.qweb.field.many2one records. All records (represented by ids) will be updated by iqfm values.

func (*Client) UpdateIrQwebFieldMonetary

func (c *Client) UpdateIrQwebFieldMonetary(iqfm *IrQwebFieldMonetary) error

UpdateIrQwebFieldMonetary updates an existing ir.qweb.field.monetary record.

func (*Client) UpdateIrQwebFieldMonetarys

func (c *Client) UpdateIrQwebFieldMonetarys(ids []int64, iqfm *IrQwebFieldMonetary) error

UpdateIrQwebFieldMonetarys updates existing ir.qweb.field.monetary records. All records (represented by ids) will be updated by iqfm values.

func (*Client) UpdateIrQwebFieldQweb

func (c *Client) UpdateIrQwebFieldQweb(iqfq *IrQwebFieldQweb) error

UpdateIrQwebFieldQweb updates an existing ir.qweb.field.qweb record.

func (*Client) UpdateIrQwebFieldQwebs

func (c *Client) UpdateIrQwebFieldQwebs(ids []int64, iqfq *IrQwebFieldQweb) error

UpdateIrQwebFieldQwebs updates existing ir.qweb.field.qweb records. All records (represented by ids) will be updated by iqfq values.

func (*Client) UpdateIrQwebFieldRelative

func (c *Client) UpdateIrQwebFieldRelative(iqfr *IrQwebFieldRelative) error

UpdateIrQwebFieldRelative updates an existing ir.qweb.field.relative record.

func (*Client) UpdateIrQwebFieldRelatives

func (c *Client) UpdateIrQwebFieldRelatives(ids []int64, iqfr *IrQwebFieldRelative) error

UpdateIrQwebFieldRelatives updates existing ir.qweb.field.relative records. All records (represented by ids) will be updated by iqfr values.

func (*Client) UpdateIrQwebFieldSelection

func (c *Client) UpdateIrQwebFieldSelection(iqfs *IrQwebFieldSelection) error

UpdateIrQwebFieldSelection updates an existing ir.qweb.field.selection record.

func (*Client) UpdateIrQwebFieldSelections

func (c *Client) UpdateIrQwebFieldSelections(ids []int64, iqfs *IrQwebFieldSelection) error

UpdateIrQwebFieldSelections updates existing ir.qweb.field.selection records. All records (represented by ids) will be updated by iqfs values.

func (*Client) UpdateIrQwebFieldText

func (c *Client) UpdateIrQwebFieldText(iqft *IrQwebFieldText) error

UpdateIrQwebFieldText updates an existing ir.qweb.field.text record.

func (*Client) UpdateIrQwebFieldTexts

func (c *Client) UpdateIrQwebFieldTexts(ids []int64, iqft *IrQwebFieldText) error

UpdateIrQwebFieldTexts updates existing ir.qweb.field.text records. All records (represented by ids) will be updated by iqft values.

func (*Client) UpdateIrQwebFields

func (c *Client) UpdateIrQwebFields(ids []int64, iqf *IrQwebField) error

UpdateIrQwebFields updates existing ir.qweb.field records. All records (represented by ids) will be updated by iqf values.

func (*Client) UpdateIrQwebs

func (c *Client) UpdateIrQwebs(ids []int64, iq *IrQweb) error

UpdateIrQwebs updates existing ir.qweb records. All records (represented by ids) will be updated by iq values.

func (*Client) UpdateIrRule

func (c *Client) UpdateIrRule(ir *IrRule) error

UpdateIrRule updates an existing ir.rule record.

func (*Client) UpdateIrRules

func (c *Client) UpdateIrRules(ids []int64, ir *IrRule) error

UpdateIrRules updates existing ir.rule records. All records (represented by ids) will be updated by ir values.

func (*Client) UpdateIrSequence

func (c *Client) UpdateIrSequence(is *IrSequence) error

UpdateIrSequence updates an existing ir.sequence record.

func (*Client) UpdateIrSequenceDateRange

func (c *Client) UpdateIrSequenceDateRange(isd *IrSequenceDateRange) error

UpdateIrSequenceDateRange updates an existing ir.sequence.date_range record.

func (*Client) UpdateIrSequenceDateRanges

func (c *Client) UpdateIrSequenceDateRanges(ids []int64, isd *IrSequenceDateRange) error

UpdateIrSequenceDateRanges updates existing ir.sequence.date_range records. All records (represented by ids) will be updated by isd values.

func (*Client) UpdateIrSequences

func (c *Client) UpdateIrSequences(ids []int64, is *IrSequence) error

UpdateIrSequences updates existing ir.sequence records. All records (represented by ids) will be updated by is values.

func (*Client) UpdateIrServerObjectLines

func (c *Client) UpdateIrServerObjectLines(isol *IrServerObjectLines) error

UpdateIrServerObjectLines updates an existing ir.server.object.lines record.

func (*Client) UpdateIrServerObjectLiness

func (c *Client) UpdateIrServerObjectLiness(ids []int64, isol *IrServerObjectLines) error

UpdateIrServerObjectLiness updates existing ir.server.object.lines records. All records (represented by ids) will be updated by isol values.

func (*Client) UpdateIrTranslation

func (c *Client) UpdateIrTranslation(it *IrTranslation) error

UpdateIrTranslation updates an existing ir.translation record.

func (*Client) UpdateIrTranslations

func (c *Client) UpdateIrTranslations(ids []int64, it *IrTranslation) error

UpdateIrTranslations updates existing ir.translation records. All records (represented by ids) will be updated by it values.

func (*Client) UpdateIrUiMenu

func (c *Client) UpdateIrUiMenu(ium *IrUiMenu) error

UpdateIrUiMenu updates an existing ir.ui.menu record.

func (*Client) UpdateIrUiMenus

func (c *Client) UpdateIrUiMenus(ids []int64, ium *IrUiMenu) error

UpdateIrUiMenus updates existing ir.ui.menu records. All records (represented by ids) will be updated by ium values.

func (*Client) UpdateIrUiView

func (c *Client) UpdateIrUiView(iuv *IrUiView) error

UpdateIrUiView updates an existing ir.ui.view record.

func (*Client) UpdateIrUiViewCustom

func (c *Client) UpdateIrUiViewCustom(iuvc *IrUiViewCustom) error

UpdateIrUiViewCustom updates an existing ir.ui.view.custom record.

func (*Client) UpdateIrUiViewCustoms

func (c *Client) UpdateIrUiViewCustoms(ids []int64, iuvc *IrUiViewCustom) error

UpdateIrUiViewCustoms updates existing ir.ui.view.custom records. All records (represented by ids) will be updated by iuvc values.

func (*Client) UpdateIrUiViews

func (c *Client) UpdateIrUiViews(ids []int64, iuv *IrUiView) error

UpdateIrUiViews updates existing ir.ui.view records. All records (represented by ids) will be updated by iuv values.

func (*Client) UpdateLinkTracker

func (c *Client) UpdateLinkTracker(lt *LinkTracker) error

UpdateLinkTracker updates an existing link.tracker record.

func (*Client) UpdateLinkTrackerClick

func (c *Client) UpdateLinkTrackerClick(ltc *LinkTrackerClick) error

UpdateLinkTrackerClick updates an existing link.tracker.click record.

func (*Client) UpdateLinkTrackerClicks

func (c *Client) UpdateLinkTrackerClicks(ids []int64, ltc *LinkTrackerClick) error

UpdateLinkTrackerClicks updates existing link.tracker.click records. All records (represented by ids) will be updated by ltc values.

func (*Client) UpdateLinkTrackerCode

func (c *Client) UpdateLinkTrackerCode(ltc *LinkTrackerCode) error

UpdateLinkTrackerCode updates an existing link.tracker.code record.

func (*Client) UpdateLinkTrackerCodes

func (c *Client) UpdateLinkTrackerCodes(ids []int64, ltc *LinkTrackerCode) error

UpdateLinkTrackerCodes updates existing link.tracker.code records. All records (represented by ids) will be updated by ltc values.

func (*Client) UpdateLinkTrackers

func (c *Client) UpdateLinkTrackers(ids []int64, lt *LinkTracker) error

UpdateLinkTrackers updates existing link.tracker records. All records (represented by ids) will be updated by lt values.

func (*Client) UpdateMailActivity

func (c *Client) UpdateMailActivity(ma *MailActivity) error

UpdateMailActivity updates an existing mail.activity record.

func (*Client) UpdateMailActivityMixin

func (c *Client) UpdateMailActivityMixin(mam *MailActivityMixin) error

UpdateMailActivityMixin updates an existing mail.activity.mixin record.

func (*Client) UpdateMailActivityMixins

func (c *Client) UpdateMailActivityMixins(ids []int64, mam *MailActivityMixin) error

UpdateMailActivityMixins updates existing mail.activity.mixin records. All records (represented by ids) will be updated by mam values.

func (*Client) UpdateMailActivityType

func (c *Client) UpdateMailActivityType(mat *MailActivityType) error

UpdateMailActivityType updates an existing mail.activity.type record.

func (*Client) UpdateMailActivityTypes

func (c *Client) UpdateMailActivityTypes(ids []int64, mat *MailActivityType) error

UpdateMailActivityTypes updates existing mail.activity.type records. All records (represented by ids) will be updated by mat values.

func (*Client) UpdateMailActivitys

func (c *Client) UpdateMailActivitys(ids []int64, ma *MailActivity) error

UpdateMailActivitys updates existing mail.activity records. All records (represented by ids) will be updated by ma values.

func (*Client) UpdateMailAddressMixin

func (c *Client) UpdateMailAddressMixin(mam *MailAddressMixin) error

UpdateMailAddressMixin updates an existing mail.address.mixin record.

func (*Client) UpdateMailAddressMixins

func (c *Client) UpdateMailAddressMixins(ids []int64, mam *MailAddressMixin) error

UpdateMailAddressMixins updates existing mail.address.mixin records. All records (represented by ids) will be updated by mam values.

func (*Client) UpdateMailAlias

func (c *Client) UpdateMailAlias(ma *MailAlias) error

UpdateMailAlias updates an existing mail.alias record.

func (*Client) UpdateMailAliasMixin

func (c *Client) UpdateMailAliasMixin(mam *MailAliasMixin) error

UpdateMailAliasMixin updates an existing mail.alias.mixin record.

func (*Client) UpdateMailAliasMixins

func (c *Client) UpdateMailAliasMixins(ids []int64, mam *MailAliasMixin) error

UpdateMailAliasMixins updates existing mail.alias.mixin records. All records (represented by ids) will be updated by mam values.

func (*Client) UpdateMailAliass

func (c *Client) UpdateMailAliass(ids []int64, ma *MailAlias) error

UpdateMailAliass updates existing mail.alias records. All records (represented by ids) will be updated by ma values.

func (*Client) UpdateMailBlacklist

func (c *Client) UpdateMailBlacklist(mb *MailBlacklist) error

UpdateMailBlacklist updates an existing mail.blacklist record.

func (*Client) UpdateMailBlacklists

func (c *Client) UpdateMailBlacklists(ids []int64, mb *MailBlacklist) error

UpdateMailBlacklists updates existing mail.blacklist records. All records (represented by ids) will be updated by mb values.

func (*Client) UpdateMailBot

func (c *Client) UpdateMailBot(mb *MailBot) error

UpdateMailBot updates an existing mail.bot record.

func (*Client) UpdateMailBots

func (c *Client) UpdateMailBots(ids []int64, mb *MailBot) error

UpdateMailBots updates existing mail.bot records. All records (represented by ids) will be updated by mb values.

func (*Client) UpdateMailChannel

func (c *Client) UpdateMailChannel(mc *MailChannel) error

UpdateMailChannel updates an existing mail.channel record.

func (*Client) UpdateMailChannelPartner

func (c *Client) UpdateMailChannelPartner(mcp *MailChannelPartner) error

UpdateMailChannelPartner updates an existing mail.channel.partner record.

func (*Client) UpdateMailChannelPartners

func (c *Client) UpdateMailChannelPartners(ids []int64, mcp *MailChannelPartner) error

UpdateMailChannelPartners updates existing mail.channel.partner records. All records (represented by ids) will be updated by mcp values.

func (*Client) UpdateMailChannels

func (c *Client) UpdateMailChannels(ids []int64, mc *MailChannel) error

UpdateMailChannels updates existing mail.channel records. All records (represented by ids) will be updated by mc values.

func (*Client) UpdateMailComposeMessage

func (c *Client) UpdateMailComposeMessage(mcm *MailComposeMessage) error

UpdateMailComposeMessage updates an existing mail.compose.message record.

func (*Client) UpdateMailComposeMessages

func (c *Client) UpdateMailComposeMessages(ids []int64, mcm *MailComposeMessage) error

UpdateMailComposeMessages updates existing mail.compose.message records. All records (represented by ids) will be updated by mcm values.

func (*Client) UpdateMailFollowers

func (c *Client) UpdateMailFollowers(mf *MailFollowers) error

UpdateMailFollowers updates an existing mail.followers record.

func (*Client) UpdateMailFollowerss

func (c *Client) UpdateMailFollowerss(ids []int64, mf *MailFollowers) error

UpdateMailFollowerss updates existing mail.followers records. All records (represented by ids) will be updated by mf values.

func (*Client) UpdateMailMail

func (c *Client) UpdateMailMail(mm *MailMail) error

UpdateMailMail updates an existing mail.mail record.

func (*Client) UpdateMailMails

func (c *Client) UpdateMailMails(ids []int64, mm *MailMail) error

UpdateMailMails updates existing mail.mail records. All records (represented by ids) will be updated by mm values.

func (*Client) UpdateMailMessage

func (c *Client) UpdateMailMessage(mm *MailMessage) error

UpdateMailMessage updates an existing mail.message record.

func (*Client) UpdateMailMessageSubtype

func (c *Client) UpdateMailMessageSubtype(mms *MailMessageSubtype) error

UpdateMailMessageSubtype updates an existing mail.message.subtype record.

func (*Client) UpdateMailMessageSubtypes

func (c *Client) UpdateMailMessageSubtypes(ids []int64, mms *MailMessageSubtype) error

UpdateMailMessageSubtypes updates existing mail.message.subtype records. All records (represented by ids) will be updated by mms values.

func (*Client) UpdateMailMessages

func (c *Client) UpdateMailMessages(ids []int64, mm *MailMessage) error

UpdateMailMessages updates existing mail.message records. All records (represented by ids) will be updated by mm values.

func (*Client) UpdateMailModeration

func (c *Client) UpdateMailModeration(mm *MailModeration) error

UpdateMailModeration updates an existing mail.moderation record.

func (*Client) UpdateMailModerations

func (c *Client) UpdateMailModerations(ids []int64, mm *MailModeration) error

UpdateMailModerations updates existing mail.moderation records. All records (represented by ids) will be updated by mm values.

func (*Client) UpdateMailNotification

func (c *Client) UpdateMailNotification(mn *MailNotification) error

UpdateMailNotification updates an existing mail.notification record.

func (*Client) UpdateMailNotifications

func (c *Client) UpdateMailNotifications(ids []int64, mn *MailNotification) error

UpdateMailNotifications updates existing mail.notification records. All records (represented by ids) will be updated by mn values.

func (*Client) UpdateMailResendCancel

func (c *Client) UpdateMailResendCancel(mrc *MailResendCancel) error

UpdateMailResendCancel updates an existing mail.resend.cancel record.

func (*Client) UpdateMailResendCancels

func (c *Client) UpdateMailResendCancels(ids []int64, mrc *MailResendCancel) error

UpdateMailResendCancels updates existing mail.resend.cancel records. All records (represented by ids) will be updated by mrc values.

func (*Client) UpdateMailResendMessage

func (c *Client) UpdateMailResendMessage(mrm *MailResendMessage) error

UpdateMailResendMessage updates an existing mail.resend.message record.

func (*Client) UpdateMailResendMessages

func (c *Client) UpdateMailResendMessages(ids []int64, mrm *MailResendMessage) error

UpdateMailResendMessages updates existing mail.resend.message records. All records (represented by ids) will be updated by mrm values.

func (*Client) UpdateMailResendPartner

func (c *Client) UpdateMailResendPartner(mrp *MailResendPartner) error

UpdateMailResendPartner updates an existing mail.resend.partner record.

func (*Client) UpdateMailResendPartners

func (c *Client) UpdateMailResendPartners(ids []int64, mrp *MailResendPartner) error

UpdateMailResendPartners updates existing mail.resend.partner records. All records (represented by ids) will be updated by mrp values.

func (*Client) UpdateMailShortcode

func (c *Client) UpdateMailShortcode(ms *MailShortcode) error

UpdateMailShortcode updates an existing mail.shortcode record.

func (*Client) UpdateMailShortcodes

func (c *Client) UpdateMailShortcodes(ids []int64, ms *MailShortcode) error

UpdateMailShortcodes updates existing mail.shortcode records. All records (represented by ids) will be updated by ms values.

func (*Client) UpdateMailTemplate

func (c *Client) UpdateMailTemplate(mt *MailTemplate) error

UpdateMailTemplate updates an existing mail.template record.

func (*Client) UpdateMailTemplates

func (c *Client) UpdateMailTemplates(ids []int64, mt *MailTemplate) error

UpdateMailTemplates updates existing mail.template records. All records (represented by ids) will be updated by mt values.

func (*Client) UpdateMailThread

func (c *Client) UpdateMailThread(mt *MailThread) error

UpdateMailThread updates an existing mail.thread record.

func (*Client) UpdateMailThreadBlacklist

func (c *Client) UpdateMailThreadBlacklist(mtb *MailThreadBlacklist) error

UpdateMailThreadBlacklist updates an existing mail.thread.blacklist record.

func (*Client) UpdateMailThreadBlacklists

func (c *Client) UpdateMailThreadBlacklists(ids []int64, mtb *MailThreadBlacklist) error

UpdateMailThreadBlacklists updates existing mail.thread.blacklist records. All records (represented by ids) will be updated by mtb values.

func (*Client) UpdateMailThreadCc

func (c *Client) UpdateMailThreadCc(mtc *MailThreadCc) error

UpdateMailThreadCc updates an existing mail.thread.cc record.

func (*Client) UpdateMailThreadCcs

func (c *Client) UpdateMailThreadCcs(ids []int64, mtc *MailThreadCc) error

UpdateMailThreadCcs updates existing mail.thread.cc records. All records (represented by ids) will be updated by mtc values.

func (*Client) UpdateMailThreadPhone

func (c *Client) UpdateMailThreadPhone(mtp *MailThreadPhone) error

UpdateMailThreadPhone updates an existing mail.thread.phone record.

func (*Client) UpdateMailThreadPhones

func (c *Client) UpdateMailThreadPhones(ids []int64, mtp *MailThreadPhone) error

UpdateMailThreadPhones updates existing mail.thread.phone records. All records (represented by ids) will be updated by mtp values.

func (*Client) UpdateMailThreads

func (c *Client) UpdateMailThreads(ids []int64, mt *MailThread) error

UpdateMailThreads updates existing mail.thread records. All records (represented by ids) will be updated by mt values.

func (*Client) UpdateMailTrackingValue

func (c *Client) UpdateMailTrackingValue(mtv *MailTrackingValue) error

UpdateMailTrackingValue updates an existing mail.tracking.value record.

func (*Client) UpdateMailTrackingValues

func (c *Client) UpdateMailTrackingValues(ids []int64, mtv *MailTrackingValue) error

UpdateMailTrackingValues updates existing mail.tracking.value records. All records (represented by ids) will be updated by mtv values.

func (*Client) UpdateMailWizardInvite

func (c *Client) UpdateMailWizardInvite(mwi *MailWizardInvite) error

UpdateMailWizardInvite updates an existing mail.wizard.invite record.

func (*Client) UpdateMailWizardInvites

func (c *Client) UpdateMailWizardInvites(ids []int64, mwi *MailWizardInvite) error

UpdateMailWizardInvites updates existing mail.wizard.invite records. All records (represented by ids) will be updated by mwi values.

func (*Client) UpdateMailingContact

func (c *Client) UpdateMailingContact(mc *MailingContact) error

UpdateMailingContact updates an existing mailing.contact record.

func (*Client) UpdateMailingContactSubscription

func (c *Client) UpdateMailingContactSubscription(mcs *MailingContactSubscription) error

UpdateMailingContactSubscription updates an existing mailing.contact.subscription record.

func (*Client) UpdateMailingContactSubscriptions

func (c *Client) UpdateMailingContactSubscriptions(ids []int64, mcs *MailingContactSubscription) error

UpdateMailingContactSubscriptions updates existing mailing.contact.subscription records. All records (represented by ids) will be updated by mcs values.

func (*Client) UpdateMailingContacts

func (c *Client) UpdateMailingContacts(ids []int64, mc *MailingContact) error

UpdateMailingContacts updates existing mailing.contact records. All records (represented by ids) will be updated by mc values.

func (*Client) UpdateMailingList

func (c *Client) UpdateMailingList(ml *MailingList) error

UpdateMailingList updates an existing mailing.list record.

func (*Client) UpdateMailingListMerge

func (c *Client) UpdateMailingListMerge(mlm *MailingListMerge) error

UpdateMailingListMerge updates an existing mailing.list.merge record.

func (*Client) UpdateMailingListMerges

func (c *Client) UpdateMailingListMerges(ids []int64, mlm *MailingListMerge) error

UpdateMailingListMerges updates existing mailing.list.merge records. All records (represented by ids) will be updated by mlm values.

func (*Client) UpdateMailingLists

func (c *Client) UpdateMailingLists(ids []int64, ml *MailingList) error

UpdateMailingLists updates existing mailing.list records. All records (represented by ids) will be updated by ml values.

func (*Client) UpdateMailingMailing

func (c *Client) UpdateMailingMailing(mm *MailingMailing) error

UpdateMailingMailing updates an existing mailing.mailing record.

func (*Client) UpdateMailingMailingScheduleDate

func (c *Client) UpdateMailingMailingScheduleDate(mmsd *MailingMailingScheduleDate) error

UpdateMailingMailingScheduleDate updates an existing mailing.mailing.schedule.date record.

func (*Client) UpdateMailingMailingScheduleDates

func (c *Client) UpdateMailingMailingScheduleDates(ids []int64, mmsd *MailingMailingScheduleDate) error

UpdateMailingMailingScheduleDates updates existing mailing.mailing.schedule.date records. All records (represented by ids) will be updated by mmsd values.

func (*Client) UpdateMailingMailings

func (c *Client) UpdateMailingMailings(ids []int64, mm *MailingMailing) error

UpdateMailingMailings updates existing mailing.mailing records. All records (represented by ids) will be updated by mm values.

func (*Client) UpdateMailingTrace

func (c *Client) UpdateMailingTrace(mt *MailingTrace) error

UpdateMailingTrace updates an existing mailing.trace record.

func (*Client) UpdateMailingTraceReport

func (c *Client) UpdateMailingTraceReport(mtr *MailingTraceReport) error

UpdateMailingTraceReport updates an existing mailing.trace.report record.

func (*Client) UpdateMailingTraceReports

func (c *Client) UpdateMailingTraceReports(ids []int64, mtr *MailingTraceReport) error

UpdateMailingTraceReports updates existing mailing.trace.report records. All records (represented by ids) will be updated by mtr values.

func (*Client) UpdateMailingTraces

func (c *Client) UpdateMailingTraces(ids []int64, mt *MailingTrace) error

UpdateMailingTraces updates existing mailing.trace records. All records (represented by ids) will be updated by mt values.

func (*Client) UpdateNoteNote

func (c *Client) UpdateNoteNote(nn *NoteNote) error

UpdateNoteNote updates an existing note.note record.

func (*Client) UpdateNoteNotes

func (c *Client) UpdateNoteNotes(ids []int64, nn *NoteNote) error

UpdateNoteNotes updates existing note.note records. All records (represented by ids) will be updated by nn values.

func (*Client) UpdateNoteStage

func (c *Client) UpdateNoteStage(ns *NoteStage) error

UpdateNoteStage updates an existing note.stage record.

func (*Client) UpdateNoteStages

func (c *Client) UpdateNoteStages(ids []int64, ns *NoteStage) error

UpdateNoteStages updates existing note.stage records. All records (represented by ids) will be updated by ns values.

func (*Client) UpdateNoteTag

func (c *Client) UpdateNoteTag(nt *NoteTag) error

UpdateNoteTag updates an existing note.tag record.

func (*Client) UpdateNoteTags

func (c *Client) UpdateNoteTags(ids []int64, nt *NoteTag) error

UpdateNoteTags updates existing note.tag records. All records (represented by ids) will be updated by nt values.

func (*Client) UpdateOpenacademyBundle

func (c *Client) UpdateOpenacademyBundle(ob *OpenacademyBundle) error

UpdateOpenacademyBundle updates an existing openacademy.bundle record.

func (*Client) UpdateOpenacademyBundles

func (c *Client) UpdateOpenacademyBundles(ids []int64, ob *OpenacademyBundle) error

UpdateOpenacademyBundles updates existing openacademy.bundle records. All records (represented by ids) will be updated by ob values.

func (*Client) UpdateOpenacademyCourse

func (c *Client) UpdateOpenacademyCourse(oc *OpenacademyCourse) error

UpdateOpenacademyCourse updates an existing openacademy.course record.

func (*Client) UpdateOpenacademyCourses

func (c *Client) UpdateOpenacademyCourses(ids []int64, oc *OpenacademyCourse) error

UpdateOpenacademyCourses updates existing openacademy.course records. All records (represented by ids) will be updated by oc values.

func (*Client) UpdateOpenacademySession

func (c *Client) UpdateOpenacademySession(os *OpenacademySession) error

UpdateOpenacademySession updates an existing openacademy.session record.

func (*Client) UpdateOpenacademySessions

func (c *Client) UpdateOpenacademySessions(ids []int64, os *OpenacademySession) error

UpdateOpenacademySessions updates existing openacademy.session records. All records (represented by ids) will be updated by os values.

func (*Client) UpdateOpenacademyWizard

func (c *Client) UpdateOpenacademyWizard(ow *OpenacademyWizard) error

UpdateOpenacademyWizard updates an existing openacademy.wizard record.

func (*Client) UpdateOpenacademyWizards

func (c *Client) UpdateOpenacademyWizards(ids []int64, ow *OpenacademyWizard) error

UpdateOpenacademyWizards updates existing openacademy.wizard records. All records (represented by ids) will be updated by ow values.

func (*Client) UpdatePaymentAcquirer

func (c *Client) UpdatePaymentAcquirer(pa *PaymentAcquirer) error

UpdatePaymentAcquirer updates an existing payment.acquirer record.

func (*Client) UpdatePaymentAcquirerOnboardingWizard

func (c *Client) UpdatePaymentAcquirerOnboardingWizard(paow *PaymentAcquirerOnboardingWizard) error

UpdatePaymentAcquirerOnboardingWizard updates an existing payment.acquirer.onboarding.wizard record.

func (*Client) UpdatePaymentAcquirerOnboardingWizards

func (c *Client) UpdatePaymentAcquirerOnboardingWizards(ids []int64, paow *PaymentAcquirerOnboardingWizard) error

UpdatePaymentAcquirerOnboardingWizards updates existing payment.acquirer.onboarding.wizard records. All records (represented by ids) will be updated by paow values.

func (*Client) UpdatePaymentAcquirers

func (c *Client) UpdatePaymentAcquirers(ids []int64, pa *PaymentAcquirer) error

UpdatePaymentAcquirers updates existing payment.acquirer records. All records (represented by ids) will be updated by pa values.

func (*Client) UpdatePaymentIcon

func (c *Client) UpdatePaymentIcon(pi *PaymentIcon) error

UpdatePaymentIcon updates an existing payment.icon record.

func (*Client) UpdatePaymentIcons

func (c *Client) UpdatePaymentIcons(ids []int64, pi *PaymentIcon) error

UpdatePaymentIcons updates existing payment.icon records. All records (represented by ids) will be updated by pi values.

func (*Client) UpdatePaymentLinkWizard

func (c *Client) UpdatePaymentLinkWizard(plw *PaymentLinkWizard) error

UpdatePaymentLinkWizard updates an existing payment.link.wizard record.

func (*Client) UpdatePaymentLinkWizards

func (c *Client) UpdatePaymentLinkWizards(ids []int64, plw *PaymentLinkWizard) error

UpdatePaymentLinkWizards updates existing payment.link.wizard records. All records (represented by ids) will be updated by plw values.

func (*Client) UpdatePaymentToken

func (c *Client) UpdatePaymentToken(pt *PaymentToken) error

UpdatePaymentToken updates an existing payment.token record.

func (*Client) UpdatePaymentTokens

func (c *Client) UpdatePaymentTokens(ids []int64, pt *PaymentToken) error

UpdatePaymentTokens updates existing payment.token records. All records (represented by ids) will be updated by pt values.

func (*Client) UpdatePaymentTransaction

func (c *Client) UpdatePaymentTransaction(pt *PaymentTransaction) error

UpdatePaymentTransaction updates an existing payment.transaction record.

func (*Client) UpdatePaymentTransactions

func (c *Client) UpdatePaymentTransactions(ids []int64, pt *PaymentTransaction) error

UpdatePaymentTransactions updates existing payment.transaction records. All records (represented by ids) will be updated by pt values.

func (*Client) UpdatePhoneBlacklist

func (c *Client) UpdatePhoneBlacklist(pb *PhoneBlacklist) error

UpdatePhoneBlacklist updates an existing phone.blacklist record.

func (*Client) UpdatePhoneBlacklists

func (c *Client) UpdatePhoneBlacklists(ids []int64, pb *PhoneBlacklist) error

UpdatePhoneBlacklists updates existing phone.blacklist records. All records (represented by ids) will be updated by pb values.

func (*Client) UpdatePhoneValidationMixin

func (c *Client) UpdatePhoneValidationMixin(pvm *PhoneValidationMixin) error

UpdatePhoneValidationMixin updates an existing phone.validation.mixin record.

func (*Client) UpdatePhoneValidationMixins

func (c *Client) UpdatePhoneValidationMixins(ids []int64, pvm *PhoneValidationMixin) error

UpdatePhoneValidationMixins updates existing phone.validation.mixin records. All records (represented by ids) will be updated by pvm values.

func (*Client) UpdatePortalMixin

func (c *Client) UpdatePortalMixin(pm *PortalMixin) error

UpdatePortalMixin updates an existing portal.mixin record.

func (*Client) UpdatePortalMixins

func (c *Client) UpdatePortalMixins(ids []int64, pm *PortalMixin) error

UpdatePortalMixins updates existing portal.mixin records. All records (represented by ids) will be updated by pm values.

func (*Client) UpdatePortalShare

func (c *Client) UpdatePortalShare(ps *PortalShare) error

UpdatePortalShare updates an existing portal.share record.

func (*Client) UpdatePortalShares

func (c *Client) UpdatePortalShares(ids []int64, ps *PortalShare) error

UpdatePortalShares updates existing portal.share records. All records (represented by ids) will be updated by ps values.

func (*Client) UpdatePortalWizard

func (c *Client) UpdatePortalWizard(pw *PortalWizard) error

UpdatePortalWizard updates an existing portal.wizard record.

func (*Client) UpdatePortalWizardUser

func (c *Client) UpdatePortalWizardUser(pwu *PortalWizardUser) error

UpdatePortalWizardUser updates an existing portal.wizard.user record.

func (*Client) UpdatePortalWizardUsers

func (c *Client) UpdatePortalWizardUsers(ids []int64, pwu *PortalWizardUser) error

UpdatePortalWizardUsers updates existing portal.wizard.user records. All records (represented by ids) will be updated by pwu values.

func (*Client) UpdatePortalWizards

func (c *Client) UpdatePortalWizards(ids []int64, pw *PortalWizard) error

UpdatePortalWizards updates existing portal.wizard records. All records (represented by ids) will be updated by pw values.

func (*Client) UpdateProductAttribute

func (c *Client) UpdateProductAttribute(pa *ProductAttribute) error

UpdateProductAttribute updates an existing product.attribute record.

func (*Client) UpdateProductAttributeCustomValue

func (c *Client) UpdateProductAttributeCustomValue(pacv *ProductAttributeCustomValue) error

UpdateProductAttributeCustomValue updates an existing product.attribute.custom.value record.

func (*Client) UpdateProductAttributeCustomValues

func (c *Client) UpdateProductAttributeCustomValues(ids []int64, pacv *ProductAttributeCustomValue) error

UpdateProductAttributeCustomValues updates existing product.attribute.custom.value records. All records (represented by ids) will be updated by pacv values.

func (*Client) UpdateProductAttributeValue

func (c *Client) UpdateProductAttributeValue(pav *ProductAttributeValue) error

UpdateProductAttributeValue updates an existing product.attribute.value record.

func (*Client) UpdateProductAttributeValues

func (c *Client) UpdateProductAttributeValues(ids []int64, pav *ProductAttributeValue) error

UpdateProductAttributeValues updates existing product.attribute.value records. All records (represented by ids) will be updated by pav values.

func (*Client) UpdateProductAttributes

func (c *Client) UpdateProductAttributes(ids []int64, pa *ProductAttribute) error

UpdateProductAttributes updates existing product.attribute records. All records (represented by ids) will be updated by pa values.

func (*Client) UpdateProductCategory

func (c *Client) UpdateProductCategory(pc *ProductCategory) error

UpdateProductCategory updates an existing product.category record.

func (*Client) UpdateProductCategorys

func (c *Client) UpdateProductCategorys(ids []int64, pc *ProductCategory) error

UpdateProductCategorys updates existing product.category records. All records (represented by ids) will be updated by pc values.

func (*Client) UpdateProductPackaging

func (c *Client) UpdateProductPackaging(pp *ProductPackaging) error

UpdateProductPackaging updates an existing product.packaging record.

func (*Client) UpdateProductPackagings

func (c *Client) UpdateProductPackagings(ids []int64, pp *ProductPackaging) error

UpdateProductPackagings updates existing product.packaging records. All records (represented by ids) will be updated by pp values.

func (*Client) UpdateProductPriceList

func (c *Client) UpdateProductPriceList(pp *ProductPriceList) error

UpdateProductPriceList updates an existing product.price_list record.

func (*Client) UpdateProductPriceLists

func (c *Client) UpdateProductPriceLists(ids []int64, pp *ProductPriceList) error

UpdateProductPriceLists updates existing product.price_list records. All records (represented by ids) will be updated by pp values.

func (*Client) UpdateProductPricelist

func (c *Client) UpdateProductPricelist(pp *ProductPricelist) error

UpdateProductPricelist updates an existing product.pricelist record.

func (*Client) UpdateProductPricelistItem

func (c *Client) UpdateProductPricelistItem(ppi *ProductPricelistItem) error

UpdateProductPricelistItem updates an existing product.pricelist.item record.

func (*Client) UpdateProductPricelistItems

func (c *Client) UpdateProductPricelistItems(ids []int64, ppi *ProductPricelistItem) error

UpdateProductPricelistItems updates existing product.pricelist.item records. All records (represented by ids) will be updated by ppi values.

func (*Client) UpdateProductPricelists

func (c *Client) UpdateProductPricelists(ids []int64, pp *ProductPricelist) error

UpdateProductPricelists updates existing product.pricelist records. All records (represented by ids) will be updated by pp values.

func (*Client) UpdateProductProduct

func (c *Client) UpdateProductProduct(pp *ProductProduct) error

UpdateProductProduct updates an existing product.product record.

func (*Client) UpdateProductProducts

func (c *Client) UpdateProductProducts(ids []int64, pp *ProductProduct) error

UpdateProductProducts updates existing product.product records. All records (represented by ids) will be updated by pp values.

func (*Client) UpdateProductSupplierinfo

func (c *Client) UpdateProductSupplierinfo(ps *ProductSupplierinfo) error

UpdateProductSupplierinfo updates an existing product.supplierinfo record.

func (*Client) UpdateProductSupplierinfos

func (c *Client) UpdateProductSupplierinfos(ids []int64, ps *ProductSupplierinfo) error

UpdateProductSupplierinfos updates existing product.supplierinfo records. All records (represented by ids) will be updated by ps values.

func (*Client) UpdateProductTemplate

func (c *Client) UpdateProductTemplate(pt *ProductTemplate) error

UpdateProductTemplate updates an existing product.template record.

func (*Client) UpdateProductTemplateAttributeExclusion

func (c *Client) UpdateProductTemplateAttributeExclusion(ptae *ProductTemplateAttributeExclusion) error

UpdateProductTemplateAttributeExclusion updates an existing product.template.attribute.exclusion record.

func (*Client) UpdateProductTemplateAttributeExclusions

func (c *Client) UpdateProductTemplateAttributeExclusions(ids []int64, ptae *ProductTemplateAttributeExclusion) error

UpdateProductTemplateAttributeExclusions updates existing product.template.attribute.exclusion records. All records (represented by ids) will be updated by ptae values.

func (*Client) UpdateProductTemplateAttributeLine

func (c *Client) UpdateProductTemplateAttributeLine(ptal *ProductTemplateAttributeLine) error

UpdateProductTemplateAttributeLine updates an existing product.template.attribute.line record.

func (*Client) UpdateProductTemplateAttributeLines

func (c *Client) UpdateProductTemplateAttributeLines(ids []int64, ptal *ProductTemplateAttributeLine) error

UpdateProductTemplateAttributeLines updates existing product.template.attribute.line records. All records (represented by ids) will be updated by ptal values.

func (*Client) UpdateProductTemplateAttributeValue

func (c *Client) UpdateProductTemplateAttributeValue(ptav *ProductTemplateAttributeValue) error

UpdateProductTemplateAttributeValue updates an existing product.template.attribute.value record.

func (*Client) UpdateProductTemplateAttributeValues

func (c *Client) UpdateProductTemplateAttributeValues(ids []int64, ptav *ProductTemplateAttributeValue) error

UpdateProductTemplateAttributeValues updates existing product.template.attribute.value records. All records (represented by ids) will be updated by ptav values.

func (*Client) UpdateProductTemplates

func (c *Client) UpdateProductTemplates(ids []int64, pt *ProductTemplate) error

UpdateProductTemplates updates existing product.template records. All records (represented by ids) will be updated by pt values.

func (*Client) UpdateProjectProject

func (c *Client) UpdateProjectProject(pp *ProjectProject) error

UpdateProjectProject updates an existing project.project record.

func (*Client) UpdateProjectProjects

func (c *Client) UpdateProjectProjects(ids []int64, pp *ProjectProject) error

UpdateProjectProjects updates existing project.project records. All records (represented by ids) will be updated by pp values.

func (*Client) UpdateProjectTags

func (c *Client) UpdateProjectTags(pt *ProjectTags) error

UpdateProjectTags updates an existing project.tags record.

func (*Client) UpdateProjectTagss

func (c *Client) UpdateProjectTagss(ids []int64, pt *ProjectTags) error

UpdateProjectTagss updates existing project.tags records. All records (represented by ids) will be updated by pt values.

func (*Client) UpdateProjectTask

func (c *Client) UpdateProjectTask(pt *ProjectTask) error

UpdateProjectTask updates an existing project.task record.

func (*Client) UpdateProjectTaskType

func (c *Client) UpdateProjectTaskType(ptt *ProjectTaskType) error

UpdateProjectTaskType updates an existing project.task.type record.

func (*Client) UpdateProjectTaskTypes

func (c *Client) UpdateProjectTaskTypes(ids []int64, ptt *ProjectTaskType) error

UpdateProjectTaskTypes updates existing project.task.type records. All records (represented by ids) will be updated by ptt values.

func (*Client) UpdateProjectTasks

func (c *Client) UpdateProjectTasks(ids []int64, pt *ProjectTask) error

UpdateProjectTasks updates existing project.task records. All records (represented by ids) will be updated by pt values.

func (*Client) UpdatePublisherWarrantyContract

func (c *Client) UpdatePublisherWarrantyContract(pc *PublisherWarrantyContract) error

UpdatePublisherWarrantyContract updates an existing publisher_warranty.contract record.

func (*Client) UpdatePublisherWarrantyContracts

func (c *Client) UpdatePublisherWarrantyContracts(ids []int64, pc *PublisherWarrantyContract) error

UpdatePublisherWarrantyContracts updates existing publisher_warranty.contract records. All records (represented by ids) will be updated by pc values.

func (*Client) UpdateRatingMixin

func (c *Client) UpdateRatingMixin(rm *RatingMixin) error

UpdateRatingMixin updates an existing rating.mixin record.

func (*Client) UpdateRatingMixins

func (c *Client) UpdateRatingMixins(ids []int64, rm *RatingMixin) error

UpdateRatingMixins updates existing rating.mixin records. All records (represented by ids) will be updated by rm values.

func (*Client) UpdateRatingParentMixin

func (c *Client) UpdateRatingParentMixin(rpm *RatingParentMixin) error

UpdateRatingParentMixin updates an existing rating.parent.mixin record.

func (*Client) UpdateRatingParentMixins

func (c *Client) UpdateRatingParentMixins(ids []int64, rpm *RatingParentMixin) error

UpdateRatingParentMixins updates existing rating.parent.mixin records. All records (represented by ids) will be updated by rpm values.

func (*Client) UpdateRatingRating

func (c *Client) UpdateRatingRating(rr *RatingRating) error

UpdateRatingRating updates an existing rating.rating record.

func (*Client) UpdateRatingRatings

func (c *Client) UpdateRatingRatings(ids []int64, rr *RatingRating) error

UpdateRatingRatings updates existing rating.rating records. All records (represented by ids) will be updated by rr values.

func (*Client) UpdateRegistrationEditor

func (c *Client) UpdateRegistrationEditor(re *RegistrationEditor) error

UpdateRegistrationEditor updates an existing registration.editor record.

func (*Client) UpdateRegistrationEditorLine

func (c *Client) UpdateRegistrationEditorLine(rel *RegistrationEditorLine) error

UpdateRegistrationEditorLine updates an existing registration.editor.line record.

func (*Client) UpdateRegistrationEditorLines

func (c *Client) UpdateRegistrationEditorLines(ids []int64, rel *RegistrationEditorLine) error

UpdateRegistrationEditorLines updates existing registration.editor.line records. All records (represented by ids) will be updated by rel values.

func (*Client) UpdateRegistrationEditors

func (c *Client) UpdateRegistrationEditors(ids []int64, re *RegistrationEditor) error

UpdateRegistrationEditors updates existing registration.editor records. All records (represented by ids) will be updated by re values.

func (*Client) UpdateReportAccountReportAgedpartnerbalance

func (c *Client) UpdateReportAccountReportAgedpartnerbalance(rar *ReportAccountReportAgedpartnerbalance) error

UpdateReportAccountReportAgedpartnerbalance updates an existing report.account.report_agedpartnerbalance record.

func (*Client) UpdateReportAccountReportAgedpartnerbalances

func (c *Client) UpdateReportAccountReportAgedpartnerbalances(ids []int64, rar *ReportAccountReportAgedpartnerbalance) error

UpdateReportAccountReportAgedpartnerbalances updates existing report.account.report_agedpartnerbalance records. All records (represented by ids) will be updated by rar values.

func (*Client) UpdateReportAccountReportHashIntegrity

func (c *Client) UpdateReportAccountReportHashIntegrity(rar *ReportAccountReportHashIntegrity) error

UpdateReportAccountReportHashIntegrity updates an existing report.account.report_hash_integrity record.

func (*Client) UpdateReportAccountReportHashIntegritys

func (c *Client) UpdateReportAccountReportHashIntegritys(ids []int64, rar *ReportAccountReportHashIntegrity) error

UpdateReportAccountReportHashIntegritys updates existing report.account.report_hash_integrity records. All records (represented by ids) will be updated by rar values.

func (*Client) UpdateReportAccountReportInvoiceWithPayments

func (c *Client) UpdateReportAccountReportInvoiceWithPayments(rar *ReportAccountReportInvoiceWithPayments) error

UpdateReportAccountReportInvoiceWithPayments updates an existing report.account.report_invoice_with_payments record.

func (*Client) UpdateReportAccountReportInvoiceWithPaymentss

func (c *Client) UpdateReportAccountReportInvoiceWithPaymentss(ids []int64, rar *ReportAccountReportInvoiceWithPayments) error

UpdateReportAccountReportInvoiceWithPaymentss updates existing report.account.report_invoice_with_payments records. All records (represented by ids) will be updated by rar values.

func (*Client) UpdateReportAccountReportJournal

func (c *Client) UpdateReportAccountReportJournal(rar *ReportAccountReportJournal) error

UpdateReportAccountReportJournal updates an existing report.account.report_journal record.

func (*Client) UpdateReportAccountReportJournals

func (c *Client) UpdateReportAccountReportJournals(ids []int64, rar *ReportAccountReportJournal) error

UpdateReportAccountReportJournals updates existing report.account.report_journal records. All records (represented by ids) will be updated by rar values.

func (*Client) UpdateReportAllChannelsSales

func (c *Client) UpdateReportAllChannelsSales(racs *ReportAllChannelsSales) error

UpdateReportAllChannelsSales updates an existing report.all.channels.sales record.

func (*Client) UpdateReportAllChannelsSaless

func (c *Client) UpdateReportAllChannelsSaless(ids []int64, racs *ReportAllChannelsSales) error

UpdateReportAllChannelsSaless updates existing report.all.channels.sales records. All records (represented by ids) will be updated by racs values.

func (*Client) UpdateReportBaseReportIrmodulereference

func (c *Client) UpdateReportBaseReportIrmodulereference(rbr *ReportBaseReportIrmodulereference) error

UpdateReportBaseReportIrmodulereference updates an existing report.base.report_irmodulereference record.

func (*Client) UpdateReportBaseReportIrmodulereferences

func (c *Client) UpdateReportBaseReportIrmodulereferences(ids []int64, rbr *ReportBaseReportIrmodulereference) error

UpdateReportBaseReportIrmodulereferences updates existing report.base.report_irmodulereference records. All records (represented by ids) will be updated by rbr values.

func (*Client) UpdateReportHrHolidaysReportHolidayssummary

func (c *Client) UpdateReportHrHolidaysReportHolidayssummary(rhr *ReportHrHolidaysReportHolidayssummary) error

UpdateReportHrHolidaysReportHolidayssummary updates an existing report.hr_holidays.report_holidayssummary record.

func (*Client) UpdateReportHrHolidaysReportHolidayssummarys

func (c *Client) UpdateReportHrHolidaysReportHolidayssummarys(ids []int64, rhr *ReportHrHolidaysReportHolidayssummary) error

UpdateReportHrHolidaysReportHolidayssummarys updates existing report.hr_holidays.report_holidayssummary records. All records (represented by ids) will be updated by rhr values.

func (*Client) UpdateReportLayout

func (c *Client) UpdateReportLayout(rl *ReportLayout) error

UpdateReportLayout updates an existing report.layout record.

func (*Client) UpdateReportLayouts

func (c *Client) UpdateReportLayouts(ids []int64, rl *ReportLayout) error

UpdateReportLayouts updates existing report.layout records. All records (represented by ids) will be updated by rl values.

func (*Client) UpdateReportPaperformat

func (c *Client) UpdateReportPaperformat(rp *ReportPaperformat) error

UpdateReportPaperformat updates an existing report.paperformat record.

func (*Client) UpdateReportPaperformats

func (c *Client) UpdateReportPaperformats(ids []int64, rp *ReportPaperformat) error

UpdateReportPaperformats updates existing report.paperformat records. All records (represented by ids) will be updated by rp values.

func (*Client) UpdateReportProductReportPricelist

func (c *Client) UpdateReportProductReportPricelist(rpr *ReportProductReportPricelist) error

UpdateReportProductReportPricelist updates an existing report.product.report_pricelist record.

func (*Client) UpdateReportProductReportPricelists

func (c *Client) UpdateReportProductReportPricelists(ids []int64, rpr *ReportProductReportPricelist) error

UpdateReportProductReportPricelists updates existing report.product.report_pricelist records. All records (represented by ids) will be updated by rpr values.

func (*Client) UpdateReportProjectTaskUser

func (c *Client) UpdateReportProjectTaskUser(rptu *ReportProjectTaskUser) error

UpdateReportProjectTaskUser updates an existing report.project.task.user record.

func (*Client) UpdateReportProjectTaskUsers

func (c *Client) UpdateReportProjectTaskUsers(ids []int64, rptu *ReportProjectTaskUser) error

UpdateReportProjectTaskUsers updates existing report.project.task.user records. All records (represented by ids) will be updated by rptu values.

func (*Client) UpdateReportSaleReportSaleproforma

func (c *Client) UpdateReportSaleReportSaleproforma(rsr *ReportSaleReportSaleproforma) error

UpdateReportSaleReportSaleproforma updates an existing report.sale.report_saleproforma record.

func (*Client) UpdateReportSaleReportSaleproformas

func (c *Client) UpdateReportSaleReportSaleproformas(ids []int64, rsr *ReportSaleReportSaleproforma) error

UpdateReportSaleReportSaleproformas updates existing report.sale.report_saleproforma records. All records (represented by ids) will be updated by rsr values.

func (*Client) UpdateResBank

func (c *Client) UpdateResBank(rb *ResBank) error

UpdateResBank updates an existing res.bank record.

func (*Client) UpdateResBanks

func (c *Client) UpdateResBanks(ids []int64, rb *ResBank) error

UpdateResBanks updates existing res.bank records. All records (represented by ids) will be updated by rb values.

func (*Client) UpdateResCompany

func (c *Client) UpdateResCompany(rc *ResCompany) error

UpdateResCompany updates an existing res.company record.

func (*Client) UpdateResCompanys

func (c *Client) UpdateResCompanys(ids []int64, rc *ResCompany) error

UpdateResCompanys updates existing res.company records. All records (represented by ids) will be updated by rc values.

func (*Client) UpdateResConfig

func (c *Client) UpdateResConfig(rc *ResConfig) error

UpdateResConfig updates an existing res.config record.

func (*Client) UpdateResConfigInstaller

func (c *Client) UpdateResConfigInstaller(rci *ResConfigInstaller) error

UpdateResConfigInstaller updates an existing res.config.installer record.

func (*Client) UpdateResConfigInstallers

func (c *Client) UpdateResConfigInstallers(ids []int64, rci *ResConfigInstaller) error

UpdateResConfigInstallers updates existing res.config.installer records. All records (represented by ids) will be updated by rci values.

func (*Client) UpdateResConfigSettings

func (c *Client) UpdateResConfigSettings(rcs *ResConfigSettings) error

UpdateResConfigSettings updates an existing res.config.settings record.

func (*Client) UpdateResConfigSettingss

func (c *Client) UpdateResConfigSettingss(ids []int64, rcs *ResConfigSettings) error

UpdateResConfigSettingss updates existing res.config.settings records. All records (represented by ids) will be updated by rcs values.

func (*Client) UpdateResConfigs

func (c *Client) UpdateResConfigs(ids []int64, rc *ResConfig) error

UpdateResConfigs updates existing res.config records. All records (represented by ids) will be updated by rc values.

func (*Client) UpdateResCountry

func (c *Client) UpdateResCountry(rc *ResCountry) error

UpdateResCountry updates an existing res.country record.

func (*Client) UpdateResCountryGroup

func (c *Client) UpdateResCountryGroup(rcg *ResCountryGroup) error

UpdateResCountryGroup updates an existing res.country.group record.

func (*Client) UpdateResCountryGroups

func (c *Client) UpdateResCountryGroups(ids []int64, rcg *ResCountryGroup) error

UpdateResCountryGroups updates existing res.country.group records. All records (represented by ids) will be updated by rcg values.

func (*Client) UpdateResCountryState

func (c *Client) UpdateResCountryState(rcs *ResCountryState) error

UpdateResCountryState updates an existing res.country.state record.

func (*Client) UpdateResCountryStates

func (c *Client) UpdateResCountryStates(ids []int64, rcs *ResCountryState) error

UpdateResCountryStates updates existing res.country.state records. All records (represented by ids) will be updated by rcs values.

func (*Client) UpdateResCountrys

func (c *Client) UpdateResCountrys(ids []int64, rc *ResCountry) error

UpdateResCountrys updates existing res.country records. All records (represented by ids) will be updated by rc values.

func (*Client) UpdateResCurrency

func (c *Client) UpdateResCurrency(rc *ResCurrency) error

UpdateResCurrency updates an existing res.currency record.

func (*Client) UpdateResCurrencyRate

func (c *Client) UpdateResCurrencyRate(rcr *ResCurrencyRate) error

UpdateResCurrencyRate updates an existing res.currency.rate record.

func (*Client) UpdateResCurrencyRates

func (c *Client) UpdateResCurrencyRates(ids []int64, rcr *ResCurrencyRate) error

UpdateResCurrencyRates updates existing res.currency.rate records. All records (represented by ids) will be updated by rcr values.

func (*Client) UpdateResCurrencys

func (c *Client) UpdateResCurrencys(ids []int64, rc *ResCurrency) error

UpdateResCurrencys updates existing res.currency records. All records (represented by ids) will be updated by rc values.

func (*Client) UpdateResGroups

func (c *Client) UpdateResGroups(rg *ResGroups) error

UpdateResGroups updates an existing res.groups record.

func (*Client) UpdateResGroupss

func (c *Client) UpdateResGroupss(ids []int64, rg *ResGroups) error

UpdateResGroupss updates existing res.groups records. All records (represented by ids) will be updated by rg values.

func (*Client) UpdateResLang

func (c *Client) UpdateResLang(rl *ResLang) error

UpdateResLang updates an existing res.lang record.

func (*Client) UpdateResLangs

func (c *Client) UpdateResLangs(ids []int64, rl *ResLang) error

UpdateResLangs updates existing res.lang records. All records (represented by ids) will be updated by rl values.

func (*Client) UpdateResPartner

func (c *Client) UpdateResPartner(rp *ResPartner) error

UpdateResPartner updates an existing res.partner record.

func (*Client) UpdateResPartnerAutocompleteSync

func (c *Client) UpdateResPartnerAutocompleteSync(rpas *ResPartnerAutocompleteSync) error

UpdateResPartnerAutocompleteSync updates an existing res.partner.autocomplete.sync record.

func (*Client) UpdateResPartnerAutocompleteSyncs

func (c *Client) UpdateResPartnerAutocompleteSyncs(ids []int64, rpas *ResPartnerAutocompleteSync) error

UpdateResPartnerAutocompleteSyncs updates existing res.partner.autocomplete.sync records. All records (represented by ids) will be updated by rpas values.

func (*Client) UpdateResPartnerBank

func (c *Client) UpdateResPartnerBank(rpb *ResPartnerBank) error

UpdateResPartnerBank updates an existing res.partner.bank record.

func (*Client) UpdateResPartnerBanks

func (c *Client) UpdateResPartnerBanks(ids []int64, rpb *ResPartnerBank) error

UpdateResPartnerBanks updates existing res.partner.bank records. All records (represented by ids) will be updated by rpb values.

func (*Client) UpdateResPartnerCategory

func (c *Client) UpdateResPartnerCategory(rpc *ResPartnerCategory) error

UpdateResPartnerCategory updates an existing res.partner.category record.

func (*Client) UpdateResPartnerCategorys

func (c *Client) UpdateResPartnerCategorys(ids []int64, rpc *ResPartnerCategory) error

UpdateResPartnerCategorys updates existing res.partner.category records. All records (represented by ids) will be updated by rpc values.

func (*Client) UpdateResPartnerIndustry

func (c *Client) UpdateResPartnerIndustry(rpi *ResPartnerIndustry) error

UpdateResPartnerIndustry updates an existing res.partner.industry record.

func (*Client) UpdateResPartnerIndustrys

func (c *Client) UpdateResPartnerIndustrys(ids []int64, rpi *ResPartnerIndustry) error

UpdateResPartnerIndustrys updates existing res.partner.industry records. All records (represented by ids) will be updated by rpi values.

func (*Client) UpdateResPartnerTitle

func (c *Client) UpdateResPartnerTitle(rpt *ResPartnerTitle) error

UpdateResPartnerTitle updates an existing res.partner.title record.

func (*Client) UpdateResPartnerTitles

func (c *Client) UpdateResPartnerTitles(ids []int64, rpt *ResPartnerTitle) error

UpdateResPartnerTitles updates existing res.partner.title records. All records (represented by ids) will be updated by rpt values.

func (*Client) UpdateResPartners

func (c *Client) UpdateResPartners(ids []int64, rp *ResPartner) error

UpdateResPartners updates existing res.partner records. All records (represented by ids) will be updated by rp values.

func (*Client) UpdateResUsers

func (c *Client) UpdateResUsers(ru *ResUsers) error

UpdateResUsers updates an existing res.users record.

func (*Client) UpdateResUsersLog

func (c *Client) UpdateResUsersLog(rul *ResUsersLog) error

UpdateResUsersLog updates an existing res.users.log record.

func (*Client) UpdateResUsersLogs

func (c *Client) UpdateResUsersLogs(ids []int64, rul *ResUsersLog) error

UpdateResUsersLogs updates existing res.users.log records. All records (represented by ids) will be updated by rul values.

func (*Client) UpdateResUserss

func (c *Client) UpdateResUserss(ids []int64, ru *ResUsers) error

UpdateResUserss updates existing res.users records. All records (represented by ids) will be updated by ru values.

func (*Client) UpdateResetViewArchWizard

func (c *Client) UpdateResetViewArchWizard(rvaw *ResetViewArchWizard) error

UpdateResetViewArchWizard updates an existing reset.view.arch.wizard record.

func (*Client) UpdateResetViewArchWizards

func (c *Client) UpdateResetViewArchWizards(ids []int64, rvaw *ResetViewArchWizard) error

UpdateResetViewArchWizards updates existing reset.view.arch.wizard records. All records (represented by ids) will be updated by rvaw values.

func (*Client) UpdateResourceCalendar

func (c *Client) UpdateResourceCalendar(rc *ResourceCalendar) error

UpdateResourceCalendar updates an existing resource.calendar record.

func (*Client) UpdateResourceCalendarAttendance

func (c *Client) UpdateResourceCalendarAttendance(rca *ResourceCalendarAttendance) error

UpdateResourceCalendarAttendance updates an existing resource.calendar.attendance record.

func (*Client) UpdateResourceCalendarAttendances

func (c *Client) UpdateResourceCalendarAttendances(ids []int64, rca *ResourceCalendarAttendance) error

UpdateResourceCalendarAttendances updates existing resource.calendar.attendance records. All records (represented by ids) will be updated by rca values.

func (*Client) UpdateResourceCalendarLeaves

func (c *Client) UpdateResourceCalendarLeaves(rcl *ResourceCalendarLeaves) error

UpdateResourceCalendarLeaves updates an existing resource.calendar.leaves record.

func (*Client) UpdateResourceCalendarLeavess

func (c *Client) UpdateResourceCalendarLeavess(ids []int64, rcl *ResourceCalendarLeaves) error

UpdateResourceCalendarLeavess updates existing resource.calendar.leaves records. All records (represented by ids) will be updated by rcl values.

func (*Client) UpdateResourceCalendars

func (c *Client) UpdateResourceCalendars(ids []int64, rc *ResourceCalendar) error

UpdateResourceCalendars updates existing resource.calendar records. All records (represented by ids) will be updated by rc values.

func (*Client) UpdateResourceMixin

func (c *Client) UpdateResourceMixin(rm *ResourceMixin) error

UpdateResourceMixin updates an existing resource.mixin record.

func (*Client) UpdateResourceMixins

func (c *Client) UpdateResourceMixins(ids []int64, rm *ResourceMixin) error

UpdateResourceMixins updates existing resource.mixin records. All records (represented by ids) will be updated by rm values.

func (*Client) UpdateResourceResource

func (c *Client) UpdateResourceResource(rr *ResourceResource) error

UpdateResourceResource updates an existing resource.resource record.

func (*Client) UpdateResourceResources

func (c *Client) UpdateResourceResources(ids []int64, rr *ResourceResource) error

UpdateResourceResources updates existing resource.resource records. All records (represented by ids) will be updated by rr values.

func (*Client) UpdateSaleAdvancePaymentInv

func (c *Client) UpdateSaleAdvancePaymentInv(sapi *SaleAdvancePaymentInv) error

UpdateSaleAdvancePaymentInv updates an existing sale.advance.payment.inv record.

func (*Client) UpdateSaleAdvancePaymentInvs

func (c *Client) UpdateSaleAdvancePaymentInvs(ids []int64, sapi *SaleAdvancePaymentInv) error

UpdateSaleAdvancePaymentInvs updates existing sale.advance.payment.inv records. All records (represented by ids) will be updated by sapi values.

func (*Client) UpdateSaleOrder

func (c *Client) UpdateSaleOrder(so *SaleOrder) error

UpdateSaleOrder updates an existing sale.order record.

func (*Client) UpdateSaleOrderLine

func (c *Client) UpdateSaleOrderLine(sol *SaleOrderLine) error

UpdateSaleOrderLine updates an existing sale.order.line record.

func (*Client) UpdateSaleOrderLines

func (c *Client) UpdateSaleOrderLines(ids []int64, sol *SaleOrderLine) error

UpdateSaleOrderLines updates existing sale.order.line records. All records (represented by ids) will be updated by sol values.

func (*Client) UpdateSaleOrderOption

func (c *Client) UpdateSaleOrderOption(soo *SaleOrderOption) error

UpdateSaleOrderOption updates an existing sale.order.option record.

func (*Client) UpdateSaleOrderOptions

func (c *Client) UpdateSaleOrderOptions(ids []int64, soo *SaleOrderOption) error

UpdateSaleOrderOptions updates existing sale.order.option records. All records (represented by ids) will be updated by soo values.

func (*Client) UpdateSaleOrderTemplate

func (c *Client) UpdateSaleOrderTemplate(sot *SaleOrderTemplate) error

UpdateSaleOrderTemplate updates an existing sale.order.template record.

func (*Client) UpdateSaleOrderTemplateLine

func (c *Client) UpdateSaleOrderTemplateLine(sotl *SaleOrderTemplateLine) error

UpdateSaleOrderTemplateLine updates an existing sale.order.template.line record.

func (*Client) UpdateSaleOrderTemplateLines

func (c *Client) UpdateSaleOrderTemplateLines(ids []int64, sotl *SaleOrderTemplateLine) error

UpdateSaleOrderTemplateLines updates existing sale.order.template.line records. All records (represented by ids) will be updated by sotl values.

func (*Client) UpdateSaleOrderTemplateOption

func (c *Client) UpdateSaleOrderTemplateOption(soto *SaleOrderTemplateOption) error

UpdateSaleOrderTemplateOption updates an existing sale.order.template.option record.

func (*Client) UpdateSaleOrderTemplateOptions

func (c *Client) UpdateSaleOrderTemplateOptions(ids []int64, soto *SaleOrderTemplateOption) error

UpdateSaleOrderTemplateOptions updates existing sale.order.template.option records. All records (represented by ids) will be updated by soto values.

func (*Client) UpdateSaleOrderTemplates

func (c *Client) UpdateSaleOrderTemplates(ids []int64, sot *SaleOrderTemplate) error

UpdateSaleOrderTemplates updates existing sale.order.template records. All records (represented by ids) will be updated by sot values.

func (*Client) UpdateSaleOrders

func (c *Client) UpdateSaleOrders(ids []int64, so *SaleOrder) error

UpdateSaleOrders updates existing sale.order records. All records (represented by ids) will be updated by so values.

func (*Client) UpdateSalePaymentAcquirerOnboardingWizard

func (c *Client) UpdateSalePaymentAcquirerOnboardingWizard(spaow *SalePaymentAcquirerOnboardingWizard) error

UpdateSalePaymentAcquirerOnboardingWizard updates an existing sale.payment.acquirer.onboarding.wizard record.

func (*Client) UpdateSalePaymentAcquirerOnboardingWizards

func (c *Client) UpdateSalePaymentAcquirerOnboardingWizards(ids []int64, spaow *SalePaymentAcquirerOnboardingWizard) error

UpdateSalePaymentAcquirerOnboardingWizards updates existing sale.payment.acquirer.onboarding.wizard records. All records (represented by ids) will be updated by spaow values.

func (*Client) UpdateSaleReport

func (c *Client) UpdateSaleReport(sr *SaleReport) error

UpdateSaleReport updates an existing sale.report record.

func (*Client) UpdateSaleReports

func (c *Client) UpdateSaleReports(ids []int64, sr *SaleReport) error

UpdateSaleReports updates existing sale.report records. All records (represented by ids) will be updated by sr values.

func (*Client) UpdateSlideAnswer

func (c *Client) UpdateSlideAnswer(sa *SlideAnswer) error

UpdateSlideAnswer updates an existing slide.answer record.

func (*Client) UpdateSlideAnswerUsers

func (c *Client) UpdateSlideAnswerUsers(sa *SlideAnswerUsers) error

UpdateSlideAnswerUsers updates an existing slide.answer_users record.

func (*Client) UpdateSlideAnswerUserss

func (c *Client) UpdateSlideAnswerUserss(ids []int64, sa *SlideAnswerUsers) error

UpdateSlideAnswerUserss updates existing slide.answer_users records. All records (represented by ids) will be updated by sa values.

func (*Client) UpdateSlideAnswers

func (c *Client) UpdateSlideAnswers(ids []int64, sa *SlideAnswer) error

UpdateSlideAnswers updates existing slide.answer records. All records (represented by ids) will be updated by sa values.

func (*Client) UpdateSlideChannel

func (c *Client) UpdateSlideChannel(sc *SlideChannel) error

UpdateSlideChannel updates an existing slide.channel record.

func (*Client) UpdateSlideChannelInvite

func (c *Client) UpdateSlideChannelInvite(sci *SlideChannelInvite) error

UpdateSlideChannelInvite updates an existing slide.channel.invite record.

func (*Client) UpdateSlideChannelInvites

func (c *Client) UpdateSlideChannelInvites(ids []int64, sci *SlideChannelInvite) error

UpdateSlideChannelInvites updates existing slide.channel.invite records. All records (represented by ids) will be updated by sci values.

func (*Client) UpdateSlideChannelPartner

func (c *Client) UpdateSlideChannelPartner(scp *SlideChannelPartner) error

UpdateSlideChannelPartner updates an existing slide.channel.partner record.

func (*Client) UpdateSlideChannelPartners

func (c *Client) UpdateSlideChannelPartners(ids []int64, scp *SlideChannelPartner) error

UpdateSlideChannelPartners updates existing slide.channel.partner records. All records (represented by ids) will be updated by scp values.

func (*Client) UpdateSlideChannelPrices

func (c *Client) UpdateSlideChannelPrices(sc *SlideChannelPrices) error

UpdateSlideChannelPrices updates an existing slide.channel_prices record.

func (*Client) UpdateSlideChannelPricess

func (c *Client) UpdateSlideChannelPricess(ids []int64, sc *SlideChannelPrices) error

UpdateSlideChannelPricess updates existing slide.channel_prices records. All records (represented by ids) will be updated by sc values.

func (*Client) UpdateSlideChannelSchedules

func (c *Client) UpdateSlideChannelSchedules(sc *SlideChannelSchedules) error

UpdateSlideChannelSchedules updates an existing slide.channel_schedules record.

func (*Client) UpdateSlideChannelScheduless

func (c *Client) UpdateSlideChannelScheduless(ids []int64, sc *SlideChannelSchedules) error

UpdateSlideChannelScheduless updates existing slide.channel_schedules records. All records (represented by ids) will be updated by sc values.

func (*Client) UpdateSlideChannelSfcPrices

func (c *Client) UpdateSlideChannelSfcPrices(sc *SlideChannelSfcPrices) error

UpdateSlideChannelSfcPrices updates an existing slide.channel_sfc_prices record.

func (*Client) UpdateSlideChannelSfcPricess

func (c *Client) UpdateSlideChannelSfcPricess(ids []int64, sc *SlideChannelSfcPrices) error

UpdateSlideChannelSfcPricess updates existing slide.channel_sfc_prices records. All records (represented by ids) will be updated by sc values.

func (*Client) UpdateSlideChannelTag

func (c *Client) UpdateSlideChannelTag(sct *SlideChannelTag) error

UpdateSlideChannelTag updates an existing slide.channel.tag record.

func (*Client) UpdateSlideChannelTagGroup

func (c *Client) UpdateSlideChannelTagGroup(sctg *SlideChannelTagGroup) error

UpdateSlideChannelTagGroup updates an existing slide.channel.tag.group record.

func (*Client) UpdateSlideChannelTagGroups

func (c *Client) UpdateSlideChannelTagGroups(ids []int64, sctg *SlideChannelTagGroup) error

UpdateSlideChannelTagGroups updates existing slide.channel.tag.group records. All records (represented by ids) will be updated by sctg values.

func (*Client) UpdateSlideChannelTags

func (c *Client) UpdateSlideChannelTags(ids []int64, sct *SlideChannelTag) error

UpdateSlideChannelTags updates existing slide.channel.tag records. All records (represented by ids) will be updated by sct values.

func (*Client) UpdateSlideChannels

func (c *Client) UpdateSlideChannels(ids []int64, sc *SlideChannel) error

UpdateSlideChannels updates existing slide.channel records. All records (represented by ids) will be updated by sc values.

func (*Client) UpdateSlideCourseType

func (c *Client) UpdateSlideCourseType(sc *SlideCourseType) error

UpdateSlideCourseType updates an existing slide.course_type record.

func (*Client) UpdateSlideCourseTypes

func (c *Client) UpdateSlideCourseTypes(ids []int64, sc *SlideCourseType) error

UpdateSlideCourseTypes updates existing slide.course_type records. All records (represented by ids) will be updated by sc values.

func (*Client) UpdateSlideEmbed

func (c *Client) UpdateSlideEmbed(se *SlideEmbed) error

UpdateSlideEmbed updates an existing slide.embed record.

func (*Client) UpdateSlideEmbeds

func (c *Client) UpdateSlideEmbeds(ids []int64, se *SlideEmbed) error

UpdateSlideEmbeds updates existing slide.embed records. All records (represented by ids) will be updated by se values.

func (*Client) UpdateSlideQuestion

func (c *Client) UpdateSlideQuestion(sq *SlideQuestion) error

UpdateSlideQuestion updates an existing slide.question record.

func (*Client) UpdateSlideQuestions

func (c *Client) UpdateSlideQuestions(ids []int64, sq *SlideQuestion) error

UpdateSlideQuestions updates existing slide.question records. All records (represented by ids) will be updated by sq values.

func (*Client) UpdateSlideSlide

func (c *Client) UpdateSlideSlide(ss *SlideSlide) error

UpdateSlideSlide updates an existing slide.slide record.

func (*Client) UpdateSlideSlideAttachment

func (c *Client) UpdateSlideSlideAttachment(ss *SlideSlideAttachment) error

UpdateSlideSlideAttachment updates an existing slide.slide_attachment record.

func (*Client) UpdateSlideSlideAttachments

func (c *Client) UpdateSlideSlideAttachments(ids []int64, ss *SlideSlideAttachment) error

UpdateSlideSlideAttachments updates existing slide.slide_attachment records. All records (represented by ids) will be updated by ss values.

func (c *Client) UpdateSlideSlideLink(ssl *SlideSlideLink) error

UpdateSlideSlideLink updates an existing slide.slide.link record.

func (c *Client) UpdateSlideSlideLinks(ids []int64, ssl *SlideSlideLink) error

UpdateSlideSlideLinks updates existing slide.slide.link records. All records (represented by ids) will be updated by ssl values.

func (*Client) UpdateSlideSlidePartner

func (c *Client) UpdateSlideSlidePartner(ssp *SlideSlidePartner) error

UpdateSlideSlidePartner updates an existing slide.slide.partner record.

func (*Client) UpdateSlideSlidePartners

func (c *Client) UpdateSlideSlidePartners(ids []int64, ssp *SlideSlidePartner) error

UpdateSlideSlidePartners updates existing slide.slide.partner records. All records (represented by ids) will be updated by ssp values.

func (*Client) UpdateSlideSlideSchedule

func (c *Client) UpdateSlideSlideSchedule(ss *SlideSlideSchedule) error

UpdateSlideSlideSchedule updates an existing slide.slide_schedule record.

func (*Client) UpdateSlideSlideSchedules

func (c *Client) UpdateSlideSlideSchedules(ids []int64, ss *SlideSlideSchedule) error

UpdateSlideSlideSchedules updates existing slide.slide_schedule records. All records (represented by ids) will be updated by ss values.

func (*Client) UpdateSlideSlides

func (c *Client) UpdateSlideSlides(ids []int64, ss *SlideSlide) error

UpdateSlideSlides updates existing slide.slide records. All records (represented by ids) will be updated by ss values.

func (*Client) UpdateSlideTag

func (c *Client) UpdateSlideTag(st *SlideTag) error

UpdateSlideTag updates an existing slide.tag record.

func (*Client) UpdateSlideTags

func (c *Client) UpdateSlideTags(ids []int64, st *SlideTag) error

UpdateSlideTags updates existing slide.tag records. All records (represented by ids) will be updated by st values.

func (*Client) UpdateSmsApi

func (c *Client) UpdateSmsApi(sa *SmsApi) error

UpdateSmsApi updates an existing sms.api record.

func (*Client) UpdateSmsApis

func (c *Client) UpdateSmsApis(ids []int64, sa *SmsApi) error

UpdateSmsApis updates existing sms.api records. All records (represented by ids) will be updated by sa values.

func (*Client) UpdateSmsCancel

func (c *Client) UpdateSmsCancel(sc *SmsCancel) error

UpdateSmsCancel updates an existing sms.cancel record.

func (*Client) UpdateSmsCancels

func (c *Client) UpdateSmsCancels(ids []int64, sc *SmsCancel) error

UpdateSmsCancels updates existing sms.cancel records. All records (represented by ids) will be updated by sc values.

func (*Client) UpdateSmsComposer

func (c *Client) UpdateSmsComposer(sc *SmsComposer) error

UpdateSmsComposer updates an existing sms.composer record.

func (*Client) UpdateSmsComposers

func (c *Client) UpdateSmsComposers(ids []int64, sc *SmsComposer) error

UpdateSmsComposers updates existing sms.composer records. All records (represented by ids) will be updated by sc values.

func (*Client) UpdateSmsResend

func (c *Client) UpdateSmsResend(sr *SmsResend) error

UpdateSmsResend updates an existing sms.resend record.

func (*Client) UpdateSmsResendRecipient

func (c *Client) UpdateSmsResendRecipient(srr *SmsResendRecipient) error

UpdateSmsResendRecipient updates an existing sms.resend.recipient record.

func (*Client) UpdateSmsResendRecipients

func (c *Client) UpdateSmsResendRecipients(ids []int64, srr *SmsResendRecipient) error

UpdateSmsResendRecipients updates existing sms.resend.recipient records. All records (represented by ids) will be updated by srr values.

func (*Client) UpdateSmsResends

func (c *Client) UpdateSmsResends(ids []int64, sr *SmsResend) error

UpdateSmsResends updates existing sms.resend records. All records (represented by ids) will be updated by sr values.

func (*Client) UpdateSmsSms

func (c *Client) UpdateSmsSms(ss *SmsSms) error

UpdateSmsSms updates an existing sms.sms record.

func (*Client) UpdateSmsSmss

func (c *Client) UpdateSmsSmss(ids []int64, ss *SmsSms) error

UpdateSmsSmss updates existing sms.sms records. All records (represented by ids) will be updated by ss values.

func (*Client) UpdateSmsTemplate

func (c *Client) UpdateSmsTemplate(st *SmsTemplate) error

UpdateSmsTemplate updates an existing sms.template record.

func (*Client) UpdateSmsTemplatePreview

func (c *Client) UpdateSmsTemplatePreview(stp *SmsTemplatePreview) error

UpdateSmsTemplatePreview updates an existing sms.template.preview record.

func (*Client) UpdateSmsTemplatePreviews

func (c *Client) UpdateSmsTemplatePreviews(ids []int64, stp *SmsTemplatePreview) error

UpdateSmsTemplatePreviews updates existing sms.template.preview records. All records (represented by ids) will be updated by stp values.

func (*Client) UpdateSmsTemplates

func (c *Client) UpdateSmsTemplates(ids []int64, st *SmsTemplate) error

UpdateSmsTemplates updates existing sms.template records. All records (represented by ids) will be updated by st values.

func (*Client) UpdateSnailmailLetter

func (c *Client) UpdateSnailmailLetter(sl *SnailmailLetter) error

UpdateSnailmailLetter updates an existing snailmail.letter record.

func (*Client) UpdateSnailmailLetterCancel

func (c *Client) UpdateSnailmailLetterCancel(slc *SnailmailLetterCancel) error

UpdateSnailmailLetterCancel updates an existing snailmail.letter.cancel record.

func (*Client) UpdateSnailmailLetterCancels

func (c *Client) UpdateSnailmailLetterCancels(ids []int64, slc *SnailmailLetterCancel) error

UpdateSnailmailLetterCancels updates existing snailmail.letter.cancel records. All records (represented by ids) will be updated by slc values.

func (*Client) UpdateSnailmailLetterFormatError

func (c *Client) UpdateSnailmailLetterFormatError(slfe *SnailmailLetterFormatError) error

UpdateSnailmailLetterFormatError updates an existing snailmail.letter.format.error record.

func (*Client) UpdateSnailmailLetterFormatErrors

func (c *Client) UpdateSnailmailLetterFormatErrors(ids []int64, slfe *SnailmailLetterFormatError) error

UpdateSnailmailLetterFormatErrors updates existing snailmail.letter.format.error records. All records (represented by ids) will be updated by slfe values.

func (*Client) UpdateSnailmailLetterMissingRequiredFields

func (c *Client) UpdateSnailmailLetterMissingRequiredFields(slmrf *SnailmailLetterMissingRequiredFields) error

UpdateSnailmailLetterMissingRequiredFields updates an existing snailmail.letter.missing.required.fields record.

func (*Client) UpdateSnailmailLetterMissingRequiredFieldss

func (c *Client) UpdateSnailmailLetterMissingRequiredFieldss(ids []int64, slmrf *SnailmailLetterMissingRequiredFields) error

UpdateSnailmailLetterMissingRequiredFieldss updates existing snailmail.letter.missing.required.fields records. All records (represented by ids) will be updated by slmrf values.

func (*Client) UpdateSnailmailLetters

func (c *Client) UpdateSnailmailLetters(ids []int64, sl *SnailmailLetter) error

UpdateSnailmailLetters updates existing snailmail.letter records. All records (represented by ids) will be updated by sl values.

func (*Client) UpdateSurveyInvite

func (c *Client) UpdateSurveyInvite(si *SurveyInvite) error

UpdateSurveyInvite updates an existing survey.invite record.

func (*Client) UpdateSurveyInvites

func (c *Client) UpdateSurveyInvites(ids []int64, si *SurveyInvite) error

UpdateSurveyInvites updates existing survey.invite records. All records (represented by ids) will be updated by si values.

func (*Client) UpdateSurveyLabel

func (c *Client) UpdateSurveyLabel(sl *SurveyLabel) error

UpdateSurveyLabel updates an existing survey.label record.

func (*Client) UpdateSurveyLabels

func (c *Client) UpdateSurveyLabels(ids []int64, sl *SurveyLabel) error

UpdateSurveyLabels updates existing survey.label records. All records (represented by ids) will be updated by sl values.

func (*Client) UpdateSurveyQuestion

func (c *Client) UpdateSurveyQuestion(sq *SurveyQuestion) error

UpdateSurveyQuestion updates an existing survey.question record.

func (*Client) UpdateSurveyQuestions

func (c *Client) UpdateSurveyQuestions(ids []int64, sq *SurveyQuestion) error

UpdateSurveyQuestions updates existing survey.question records. All records (represented by ids) will be updated by sq values.

func (*Client) UpdateSurveySurvey

func (c *Client) UpdateSurveySurvey(ss *SurveySurvey) error

UpdateSurveySurvey updates an existing survey.survey record.

func (*Client) UpdateSurveySurveys

func (c *Client) UpdateSurveySurveys(ids []int64, ss *SurveySurvey) error

UpdateSurveySurveys updates existing survey.survey records. All records (represented by ids) will be updated by ss values.

func (*Client) UpdateSurveyUserInput

func (c *Client) UpdateSurveyUserInput(su *SurveyUserInput) error

UpdateSurveyUserInput updates an existing survey.user_input record.

func (*Client) UpdateSurveyUserInputLine

func (c *Client) UpdateSurveyUserInputLine(su *SurveyUserInputLine) error

UpdateSurveyUserInputLine updates an existing survey.user_input_line record.

func (*Client) UpdateSurveyUserInputLines

func (c *Client) UpdateSurveyUserInputLines(ids []int64, su *SurveyUserInputLine) error

UpdateSurveyUserInputLines updates existing survey.user_input_line records. All records (represented by ids) will be updated by su values.

func (*Client) UpdateSurveyUserInputs

func (c *Client) UpdateSurveyUserInputs(ids []int64, su *SurveyUserInput) error

UpdateSurveyUserInputs updates existing survey.user_input records. All records (represented by ids) will be updated by su values.

func (*Client) UpdateTaxAdjustmentsWizard

func (c *Client) UpdateTaxAdjustmentsWizard(taw *TaxAdjustmentsWizard) error

UpdateTaxAdjustmentsWizard updates an existing tax.adjustments.wizard record.

func (*Client) UpdateTaxAdjustmentsWizards

func (c *Client) UpdateTaxAdjustmentsWizards(ids []int64, taw *TaxAdjustmentsWizard) error

UpdateTaxAdjustmentsWizards updates existing tax.adjustments.wizard records. All records (represented by ids) will be updated by taw values.

func (*Client) UpdateThemeIrAttachment

func (c *Client) UpdateThemeIrAttachment(tia *ThemeIrAttachment) error

UpdateThemeIrAttachment updates an existing theme.ir.attachment record.

func (*Client) UpdateThemeIrAttachments

func (c *Client) UpdateThemeIrAttachments(ids []int64, tia *ThemeIrAttachment) error

UpdateThemeIrAttachments updates existing theme.ir.attachment records. All records (represented by ids) will be updated by tia values.

func (*Client) UpdateThemeIrUiView

func (c *Client) UpdateThemeIrUiView(tiuv *ThemeIrUiView) error

UpdateThemeIrUiView updates an existing theme.ir.ui.view record.

func (*Client) UpdateThemeIrUiViews

func (c *Client) UpdateThemeIrUiViews(ids []int64, tiuv *ThemeIrUiView) error

UpdateThemeIrUiViews updates existing theme.ir.ui.view records. All records (represented by ids) will be updated by tiuv values.

func (*Client) UpdateThemeUtils

func (c *Client) UpdateThemeUtils(tu *ThemeUtils) error

UpdateThemeUtils updates an existing theme.utils record.

func (*Client) UpdateThemeUtilss

func (c *Client) UpdateThemeUtilss(ids []int64, tu *ThemeUtils) error

UpdateThemeUtilss updates existing theme.utils records. All records (represented by ids) will be updated by tu values.

func (*Client) UpdateThemeWebsiteMenu

func (c *Client) UpdateThemeWebsiteMenu(twm *ThemeWebsiteMenu) error

UpdateThemeWebsiteMenu updates an existing theme.website.menu record.

func (*Client) UpdateThemeWebsiteMenus

func (c *Client) UpdateThemeWebsiteMenus(ids []int64, twm *ThemeWebsiteMenu) error

UpdateThemeWebsiteMenus updates existing theme.website.menu records. All records (represented by ids) will be updated by twm values.

func (*Client) UpdateThemeWebsitePage

func (c *Client) UpdateThemeWebsitePage(twp *ThemeWebsitePage) error

UpdateThemeWebsitePage updates an existing theme.website.page record.

func (*Client) UpdateThemeWebsitePages

func (c *Client) UpdateThemeWebsitePages(ids []int64, twp *ThemeWebsitePage) error

UpdateThemeWebsitePages updates existing theme.website.page records. All records (represented by ids) will be updated by twp values.

func (*Client) UpdateUomCategory

func (c *Client) UpdateUomCategory(uc *UomCategory) error

UpdateUomCategory updates an existing uom.category record.

func (*Client) UpdateUomCategorys

func (c *Client) UpdateUomCategorys(ids []int64, uc *UomCategory) error

UpdateUomCategorys updates existing uom.category records. All records (represented by ids) will be updated by uc values.

func (*Client) UpdateUomUom

func (c *Client) UpdateUomUom(uu *UomUom) error

UpdateUomUom updates an existing uom.uom record.

func (*Client) UpdateUomUoms

func (c *Client) UpdateUomUoms(ids []int64, uu *UomUom) error

UpdateUomUoms updates existing uom.uom records. All records (represented by ids) will be updated by uu values.

func (*Client) UpdateUserPayment

func (c *Client) UpdateUserPayment(up *UserPayment) error

UpdateUserPayment updates an existing user.payment record.

func (*Client) UpdateUserPayments

func (c *Client) UpdateUserPayments(ids []int64, up *UserPayment) error

UpdateUserPayments updates existing user.payment records. All records (represented by ids) will be updated by up values.

func (*Client) UpdateUserProfile

func (c *Client) UpdateUserProfile(up *UserProfile) error

UpdateUserProfile updates an existing user.profile record.

func (*Client) UpdateUserProfiles

func (c *Client) UpdateUserProfiles(ids []int64, up *UserProfile) error

UpdateUserProfiles updates existing user.profile records. All records (represented by ids) will be updated by up values.

func (*Client) UpdateUtmCampaign

func (c *Client) UpdateUtmCampaign(uc *UtmCampaign) error

UpdateUtmCampaign updates an existing utm.campaign record.

func (*Client) UpdateUtmCampaigns

func (c *Client) UpdateUtmCampaigns(ids []int64, uc *UtmCampaign) error

UpdateUtmCampaigns updates existing utm.campaign records. All records (represented by ids) will be updated by uc values.

func (*Client) UpdateUtmMedium

func (c *Client) UpdateUtmMedium(um *UtmMedium) error

UpdateUtmMedium updates an existing utm.medium record.

func (*Client) UpdateUtmMediums

func (c *Client) UpdateUtmMediums(ids []int64, um *UtmMedium) error

UpdateUtmMediums updates existing utm.medium records. All records (represented by ids) will be updated by um values.

func (*Client) UpdateUtmMixin

func (c *Client) UpdateUtmMixin(um *UtmMixin) error

UpdateUtmMixin updates an existing utm.mixin record.

func (*Client) UpdateUtmMixins

func (c *Client) UpdateUtmMixins(ids []int64, um *UtmMixin) error

UpdateUtmMixins updates existing utm.mixin records. All records (represented by ids) will be updated by um values.

func (*Client) UpdateUtmSource

func (c *Client) UpdateUtmSource(us *UtmSource) error

UpdateUtmSource updates an existing utm.source record.

func (*Client) UpdateUtmSources

func (c *Client) UpdateUtmSources(ids []int64, us *UtmSource) error

UpdateUtmSources updates existing utm.source records. All records (represented by ids) will be updated by us values.

func (*Client) UpdateUtmStage

func (c *Client) UpdateUtmStage(us *UtmStage) error

UpdateUtmStage updates an existing utm.stage record.

func (*Client) UpdateUtmStages

func (c *Client) UpdateUtmStages(ids []int64, us *UtmStage) error

UpdateUtmStages updates existing utm.stage records. All records (represented by ids) will be updated by us values.

func (*Client) UpdateUtmTag

func (c *Client) UpdateUtmTag(ut *UtmTag) error

UpdateUtmTag updates an existing utm.tag record.

func (*Client) UpdateUtmTags

func (c *Client) UpdateUtmTags(ids []int64, ut *UtmTag) error

UpdateUtmTags updates existing utm.tag records. All records (represented by ids) will be updated by ut values.

func (*Client) UpdateValidateAccountMove

func (c *Client) UpdateValidateAccountMove(vam *ValidateAccountMove) error

UpdateValidateAccountMove updates an existing validate.account.move record.

func (*Client) UpdateValidateAccountMoves

func (c *Client) UpdateValidateAccountMoves(ids []int64, vam *ValidateAccountMove) error

UpdateValidateAccountMoves updates existing validate.account.move records. All records (represented by ids) will be updated by vam values.

func (*Client) UpdateWebEditorAssets

func (c *Client) UpdateWebEditorAssets(wa *WebEditorAssets) error

UpdateWebEditorAssets updates an existing web_editor.assets record.

func (*Client) UpdateWebEditorAssetss

func (c *Client) UpdateWebEditorAssetss(ids []int64, wa *WebEditorAssets) error

UpdateWebEditorAssetss updates existing web_editor.assets records. All records (represented by ids) will be updated by wa values.

func (*Client) UpdateWebEditorConverterTestSub

func (c *Client) UpdateWebEditorConverterTestSub(wcts *WebEditorConverterTestSub) error

UpdateWebEditorConverterTestSub updates an existing web_editor.converter.test.sub record.

func (*Client) UpdateWebEditorConverterTestSubs

func (c *Client) UpdateWebEditorConverterTestSubs(ids []int64, wcts *WebEditorConverterTestSub) error

UpdateWebEditorConverterTestSubs updates existing web_editor.converter.test.sub records. All records (represented by ids) will be updated by wcts values.

func (*Client) UpdateWebTourTour

func (c *Client) UpdateWebTourTour(wt *WebTourTour) error

UpdateWebTourTour updates an existing web_tour.tour record.

func (*Client) UpdateWebTourTours

func (c *Client) UpdateWebTourTours(ids []int64, wt *WebTourTour) error

UpdateWebTourTours updates existing web_tour.tour records. All records (represented by ids) will be updated by wt values.

func (*Client) UpdateWebsite

func (c *Client) UpdateWebsite(w *Website) error

UpdateWebsite updates an existing website record.

func (*Client) UpdateWebsiteMassMailingPopup

func (c *Client) UpdateWebsiteMassMailingPopup(wmp *WebsiteMassMailingPopup) error

UpdateWebsiteMassMailingPopup updates an existing website.mass_mailing.popup record.

func (*Client) UpdateWebsiteMassMailingPopups

func (c *Client) UpdateWebsiteMassMailingPopups(ids []int64, wmp *WebsiteMassMailingPopup) error

UpdateWebsiteMassMailingPopups updates existing website.mass_mailing.popup records. All records (represented by ids) will be updated by wmp values.

func (*Client) UpdateWebsiteMenu

func (c *Client) UpdateWebsiteMenu(wm *WebsiteMenu) error

UpdateWebsiteMenu updates an existing website.menu record.

func (*Client) UpdateWebsiteMenus

func (c *Client) UpdateWebsiteMenus(ids []int64, wm *WebsiteMenu) error

UpdateWebsiteMenus updates existing website.menu records. All records (represented by ids) will be updated by wm values.

func (*Client) UpdateWebsiteMultiMixin

func (c *Client) UpdateWebsiteMultiMixin(wmm *WebsiteMultiMixin) error

UpdateWebsiteMultiMixin updates an existing website.multi.mixin record.

func (*Client) UpdateWebsiteMultiMixins

func (c *Client) UpdateWebsiteMultiMixins(ids []int64, wmm *WebsiteMultiMixin) error

UpdateWebsiteMultiMixins updates existing website.multi.mixin records. All records (represented by ids) will be updated by wmm values.

func (*Client) UpdateWebsitePage

func (c *Client) UpdateWebsitePage(wp *WebsitePage) error

UpdateWebsitePage updates an existing website.page record.

func (*Client) UpdateWebsitePages

func (c *Client) UpdateWebsitePages(ids []int64, wp *WebsitePage) error

UpdateWebsitePages updates existing website.page records. All records (represented by ids) will be updated by wp values.

func (*Client) UpdateWebsitePublishedMixin

func (c *Client) UpdateWebsitePublishedMixin(wpm *WebsitePublishedMixin) error

UpdateWebsitePublishedMixin updates an existing website.published.mixin record.

func (*Client) UpdateWebsitePublishedMixins

func (c *Client) UpdateWebsitePublishedMixins(ids []int64, wpm *WebsitePublishedMixin) error

UpdateWebsitePublishedMixins updates existing website.published.mixin records. All records (represented by ids) will be updated by wpm values.

func (*Client) UpdateWebsitePublishedMultiMixin

func (c *Client) UpdateWebsitePublishedMultiMixin(wpmm *WebsitePublishedMultiMixin) error

UpdateWebsitePublishedMultiMixin updates an existing website.published.multi.mixin record.

func (*Client) UpdateWebsitePublishedMultiMixins

func (c *Client) UpdateWebsitePublishedMultiMixins(ids []int64, wpmm *WebsitePublishedMultiMixin) error

UpdateWebsitePublishedMultiMixins updates existing website.published.multi.mixin records. All records (represented by ids) will be updated by wpmm values.

func (*Client) UpdateWebsiteRewrite

func (c *Client) UpdateWebsiteRewrite(wr *WebsiteRewrite) error

UpdateWebsiteRewrite updates an existing website.rewrite record.

func (*Client) UpdateWebsiteRewrites

func (c *Client) UpdateWebsiteRewrites(ids []int64, wr *WebsiteRewrite) error

UpdateWebsiteRewrites updates existing website.rewrite records. All records (represented by ids) will be updated by wr values.

func (*Client) UpdateWebsiteRoute

func (c *Client) UpdateWebsiteRoute(wr *WebsiteRoute) error

UpdateWebsiteRoute updates an existing website.route record.

func (*Client) UpdateWebsiteRoutes

func (c *Client) UpdateWebsiteRoutes(ids []int64, wr *WebsiteRoute) error

UpdateWebsiteRoutes updates existing website.route records. All records (represented by ids) will be updated by wr values.

func (*Client) UpdateWebsiteSeoMetadata

func (c *Client) UpdateWebsiteSeoMetadata(wsm *WebsiteSeoMetadata) error

UpdateWebsiteSeoMetadata updates an existing website.seo.metadata record.

func (*Client) UpdateWebsiteSeoMetadatas

func (c *Client) UpdateWebsiteSeoMetadatas(ids []int64, wsm *WebsiteSeoMetadata) error

UpdateWebsiteSeoMetadatas updates existing website.seo.metadata records. All records (represented by ids) will be updated by wsm values.

func (*Client) UpdateWebsiteTrack

func (c *Client) UpdateWebsiteTrack(wt *WebsiteTrack) error

UpdateWebsiteTrack updates an existing website.track record.

func (*Client) UpdateWebsiteTracks

func (c *Client) UpdateWebsiteTracks(ids []int64, wt *WebsiteTrack) error

UpdateWebsiteTracks updates existing website.track records. All records (represented by ids) will be updated by wt values.

func (*Client) UpdateWebsiteVisitor

func (c *Client) UpdateWebsiteVisitor(wv *WebsiteVisitor) error

UpdateWebsiteVisitor updates an existing website.visitor record.

func (*Client) UpdateWebsiteVisitors

func (c *Client) UpdateWebsiteVisitors(ids []int64, wv *WebsiteVisitor) error

UpdateWebsiteVisitors updates existing website.visitor records. All records (represented by ids) will be updated by wv values.

func (*Client) UpdateWebsites

func (c *Client) UpdateWebsites(ids []int64, w *Website) error

UpdateWebsites updates existing website records. All records (represented by ids) will be updated by w values.

func (*Client) UpdateWizardIrModelMenuCreate

func (c *Client) UpdateWizardIrModelMenuCreate(wimmc *WizardIrModelMenuCreate) error

UpdateWizardIrModelMenuCreate updates an existing wizard.ir.model.menu.create record.

func (*Client) UpdateWizardIrModelMenuCreates

func (c *Client) UpdateWizardIrModelMenuCreates(ids []int64, wimmc *WizardIrModelMenuCreate) error

UpdateWizardIrModelMenuCreates updates existing wizard.ir.model.menu.create records. All records (represented by ids) will be updated by wimmc values.

func (*Client) Version

func (c *Client) Version() (Version, error)

Version get informations about your odoo instance version.

type ClientConfig

type ClientConfig struct {
	Database string
	Admin    string
	Password string
	URL      string
}

ClientConfig is the configuration to create a new *Client by givin connection infomations.

type CmsArticle

type CmsArticle struct {
	CreateDate       *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid        *Many2One `xmlrpc:"create_uid,omptempty"`
	DeletedAt        *Time     `xmlrpc:"deleted_at,omptempty"`
	Description      *String   `xmlrpc:"description,omptempty"`
	DisplayName      *String   `xmlrpc:"display_name,omptempty"`
	Id               *Int      `xmlrpc:"id,omptempty"`
	Image            *String   `xmlrpc:"image,omptempty"`
	LastUpdate       *Time     `xmlrpc:"__last_update,omptempty"`
	ShortDescription *String   `xmlrpc:"short_description,omptempty"`
	Status           *Bool     `xmlrpc:"status,omptempty"`
	Title            *String   `xmlrpc:"title,omptempty"`
	Slug             *String   `xmlrpc:"slug,omptempty"`
	WriteDate        *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid         *Many2One `xmlrpc:"write_uid,omptempty"`
}

CmsArticle represents cms.article model.

func (*CmsArticle) Many2One

func (ca *CmsArticle) Many2One() *Many2One

Many2One convert CmsArticle to *Many2One.

type CmsArticles

type CmsArticles []CmsArticle

CmsArticles represents array of cms.article model.

type Criteria

type Criteria []*criterion

Criteria is a set of criterion, each criterion is a triple (field_name, operator, value). It allow you to search models. see documentation: https://www.odoo.com/documentation/13.0/reference/orm.html#reference-orm-domains

func NewCriteria

func NewCriteria() *Criteria

NewCriteria creates a new *Criteria.

func (*Criteria) Add

func (c *Criteria) Add(field, operator string, value interface{}) *Criteria

Add a new criterion to a *Criteria.

type CrmActivityReport

type CrmActivityReport struct {
	Active             *Bool      `xmlrpc:"active,omptempty"`
	AuthorId           *Many2One  `xmlrpc:"author_id,omptempty"`
	Body               *String    `xmlrpc:"body,omptempty"`
	CompanyId          *Many2One  `xmlrpc:"company_id,omptempty"`
	CountryId          *Many2One  `xmlrpc:"country_id,omptempty"`
	Date               *Time      `xmlrpc:"date,omptempty"`
	DateClosed         *Time      `xmlrpc:"date_closed,omptempty"`
	DateConversion     *Time      `xmlrpc:"date_conversion,omptempty"`
	DateDeadline       *Time      `xmlrpc:"date_deadline,omptempty"`
	DisplayName        *String    `xmlrpc:"display_name,omptempty"`
	Id                 *Int       `xmlrpc:"id,omptempty"`
	LastUpdate         *Time      `xmlrpc:"__last_update,omptempty"`
	LeadCreateDate     *Time      `xmlrpc:"lead_create_date,omptempty"`
	LeadId             *Many2One  `xmlrpc:"lead_id,omptempty"`
	LeadType           *Selection `xmlrpc:"lead_type,omptempty"`
	MailActivityTypeId *Many2One  `xmlrpc:"mail_activity_type_id,omptempty"`
	PartnerId          *Many2One  `xmlrpc:"partner_id,omptempty"`
	StageId            *Many2One  `xmlrpc:"stage_id,omptempty"`
	SubtypeId          *Many2One  `xmlrpc:"subtype_id,omptempty"`
	TeamId             *Many2One  `xmlrpc:"team_id,omptempty"`
	UserId             *Many2One  `xmlrpc:"user_id,omptempty"`
}

CrmActivityReport represents crm.activity.report model.

func (*CrmActivityReport) Many2One

func (car *CrmActivityReport) Many2One() *Many2One

Many2One convert CrmActivityReport to *Many2One.

type CrmActivityReports

type CrmActivityReports []CrmActivityReport

CrmActivityReports represents array of crm.activity.report model.

type CrmLead

type CrmLead struct {
	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"`
	AutomatedProbability        *Float     `xmlrpc:"automated_probability,omptempty"`
	CampaignId                  *Many2One  `xmlrpc:"campaign_id,omptempty"`
	City                        *String    `xmlrpc:"city,omptempty"`
	Color                       *Int       `xmlrpc:"color,omptempty"`
	CompanyCurrency             *Many2One  `xmlrpc:"company_currency,omptempty"`
	CompanyId                   *Many2One  `xmlrpc:"company_id,omptempty"`
	ContactName                 *String    `xmlrpc:"contact_name,omptempty"`
	CountryId                   *Many2One  `xmlrpc:"country_id,omptempty"`
	CreateDate                  *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid                   *Many2One  `xmlrpc:"create_uid,omptempty"`
	DateActionLast              *Time      `xmlrpc:"date_action_last,omptempty"`
	DateClosed                  *Time      `xmlrpc:"date_closed,omptempty"`
	DateConversion              *Time      `xmlrpc:"date_conversion,omptempty"`
	DateDeadline                *Time      `xmlrpc:"date_deadline,omptempty"`
	DateLastStageUpdate         *Time      `xmlrpc:"date_last_stage_update,omptempty"`
	DateOpen                    *Time      `xmlrpc:"date_open,omptempty"`
	DayClose                    *Float     `xmlrpc:"day_close,omptempty"`
	DayOpen                     *Float     `xmlrpc:"day_open,omptempty"`
	Description                 *String    `xmlrpc:"description,omptempty"`
	DisplayName                 *String    `xmlrpc:"display_name,omptempty"`
	EmailCc                     *String    `xmlrpc:"email_cc,omptempty"`
	EmailFrom                   *String    `xmlrpc:"email_from,omptempty"`
	EmailNormalized             *String    `xmlrpc:"email_normalized,omptempty"`
	EmailState                  *Selection `xmlrpc:"email_state,omptempty"`
	ExpectedRevenue             *Float     `xmlrpc:"expected_revenue,omptempty"`
	Function                    *String    `xmlrpc:"function,omptempty"`
	Id                          *Int       `xmlrpc:"id,omptempty"`
	IsAutomatedProbability      *Bool      `xmlrpc:"is_automated_probability,omptempty"`
	IsBlacklisted               *Bool      `xmlrpc:"is_blacklisted,omptempty"`
	KanbanState                 *Selection `xmlrpc:"kanban_state,omptempty"`
	LangId                      *Many2One  `xmlrpc:"lang_id,omptempty"`
	LastUpdate                  *Time      `xmlrpc:"__last_update,omptempty"`
	LostReason                  *Many2One  `xmlrpc:"lost_reason,omptempty"`
	MediumId                    *Many2One  `xmlrpc:"medium_id,omptempty"`
	MeetingCount                *Int       `xmlrpc:"meeting_count,omptempty"`
	MessageAttachmentCount      *Int       `xmlrpc:"message_attachment_count,omptempty"`
	MessageBounce               *Int       `xmlrpc:"message_bounce,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"`
	Mobile                      *String    `xmlrpc:"mobile,omptempty"`
	Name                        *String    `xmlrpc:"name,omptempty"`
	OrderIds                    *Relation  `xmlrpc:"order_ids,omptempty"`
	PartnerAddressEmail         *String    `xmlrpc:"partner_address_email,omptempty"`
	PartnerAddressName          *String    `xmlrpc:"partner_address_name,omptempty"`
	PartnerAddressPhone         *String    `xmlrpc:"partner_address_phone,omptempty"`
	PartnerId                   *Many2One  `xmlrpc:"partner_id,omptempty"`
	PartnerIsBlacklisted        *Bool      `xmlrpc:"partner_is_blacklisted,omptempty"`
	PartnerName                 *String    `xmlrpc:"partner_name,omptempty"`
	Phone                       *String    `xmlrpc:"phone,omptempty"`
	PhoneState                  *Selection `xmlrpc:"phone_state,omptempty"`
	PlannedRevenue              *Float     `xmlrpc:"planned_revenue,omptempty"`
	Priority                    *Selection `xmlrpc:"priority,omptempty"`
	Probability                 *Float     `xmlrpc:"probability,omptempty"`
	QuotationCount              *Int       `xmlrpc:"quotation_count,omptempty"`
	Referred                    *String    `xmlrpc:"referred,omptempty"`
	SaleAmountTotal             *Float     `xmlrpc:"sale_amount_total,omptempty"`
	SaleOrderCount              *Int       `xmlrpc:"sale_order_count,omptempty"`
	SourceId                    *Many2One  `xmlrpc:"source_id,omptempty"`
	StageId                     *Many2One  `xmlrpc:"stage_id,omptempty"`
	StateId                     *Many2One  `xmlrpc:"state_id,omptempty"`
	Street                      *String    `xmlrpc:"street,omptempty"`
	Street2                     *String    `xmlrpc:"street2,omptempty"`
	TagIds                      *Relation  `xmlrpc:"tag_ids,omptempty"`
	TeamId                      *Many2One  `xmlrpc:"team_id,omptempty"`
	Title                       *Many2One  `xmlrpc:"title,omptempty"`
	Type                        *Selection `xmlrpc:"type,omptempty"`
	UserEmail                   *String    `xmlrpc:"user_email,omptempty"`
	UserId                      *Many2One  `xmlrpc:"user_id,omptempty"`
	UserLogin                   *String    `xmlrpc:"user_login,omptempty"`
	VisitorIds                  *Relation  `xmlrpc:"visitor_ids,omptempty"`
	VisitorPageCount            *Int       `xmlrpc:"visitor_page_count,omptempty"`
	VisitorSessionsCount        *Int       `xmlrpc:"visitor_sessions_count,omptempty"`
	Website                     *String    `xmlrpc:"website,omptempty"`
	WebsiteMessageIds           *Relation  `xmlrpc:"website_message_ids,omptempty"`
	WriteDate                   *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid                    *Many2One  `xmlrpc:"write_uid,omptempty"`
	Zip                         *String    `xmlrpc:"zip,omptempty"`
}

CrmLead represents crm.lead model.

func (*CrmLead) Many2One

func (cl *CrmLead) Many2One() *Many2One

Many2One convert CrmLead to *Many2One.

type CrmLead2OpportunityPartner

type CrmLead2OpportunityPartner struct {
	Action         *Selection `xmlrpc:"action,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           *Selection `xmlrpc:"name,omptempty"`
	OpportunityIds *Relation  `xmlrpc:"opportunity_ids,omptempty"`
	PartnerId      *Many2One  `xmlrpc:"partner_id,omptempty"`
	TeamId         *Many2One  `xmlrpc:"team_id,omptempty"`
	UserId         *Many2One  `xmlrpc:"user_id,omptempty"`
	WriteDate      *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid       *Many2One  `xmlrpc:"write_uid,omptempty"`
}

CrmLead2OpportunityPartner represents crm.lead2opportunity.partner model.

func (*CrmLead2OpportunityPartner) Many2One

func (clp *CrmLead2OpportunityPartner) Many2One() *Many2One

Many2One convert CrmLead2OpportunityPartner to *Many2One.

type CrmLead2OpportunityPartnerMass

type CrmLead2OpportunityPartnerMass struct {
	Action           *Selection `xmlrpc:"action,omptempty"`
	CreateDate       *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid        *Many2One  `xmlrpc:"create_uid,omptempty"`
	Deduplicate      *Bool      `xmlrpc:"deduplicate,omptempty"`
	DisplayName      *String    `xmlrpc:"display_name,omptempty"`
	ForceAssignation *Bool      `xmlrpc:"force_assignation,omptempty"`
	Id               *Int       `xmlrpc:"id,omptempty"`
	LastUpdate       *Time      `xmlrpc:"__last_update,omptempty"`
	Name             *Selection `xmlrpc:"name,omptempty"`
	OpportunityIds   *Relation  `xmlrpc:"opportunity_ids,omptempty"`
	PartnerId        *Many2One  `xmlrpc:"partner_id,omptempty"`
	TeamId           *Many2One  `xmlrpc:"team_id,omptempty"`
	UserId           *Many2One  `xmlrpc:"user_id,omptempty"`
	UserIds          *Relation  `xmlrpc:"user_ids,omptempty"`
	WriteDate        *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid         *Many2One  `xmlrpc:"write_uid,omptempty"`
}

CrmLead2OpportunityPartnerMass represents crm.lead2opportunity.partner.mass model.

func (*CrmLead2OpportunityPartnerMass) Many2One

func (clpm *CrmLead2OpportunityPartnerMass) Many2One() *Many2One

Many2One convert CrmLead2OpportunityPartnerMass to *Many2One.

type CrmLead2OpportunityPartnerMasss

type CrmLead2OpportunityPartnerMasss []CrmLead2OpportunityPartnerMass

CrmLead2OpportunityPartnerMasss represents array of crm.lead2opportunity.partner.mass model.

type CrmLead2OpportunityPartners

type CrmLead2OpportunityPartners []CrmLead2OpportunityPartner

CrmLead2OpportunityPartners represents array of crm.lead2opportunity.partner model.

type CrmLeadLost

type CrmLeadLost 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"`
	LostReasonId *Many2One `xmlrpc:"lost_reason_id,omptempty"`
	WriteDate    *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid     *Many2One `xmlrpc:"write_uid,omptempty"`
}

CrmLeadLost represents crm.lead.lost model.

func (*CrmLeadLost) Many2One

func (cll *CrmLeadLost) Many2One() *Many2One

Many2One convert CrmLeadLost to *Many2One.

type CrmLeadLosts

type CrmLeadLosts []CrmLeadLost

CrmLeadLosts represents array of crm.lead.lost model.

type CrmLeadScoringFrequency

type CrmLeadScoringFrequency 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"`
	LostCount   *Float    `xmlrpc:"lost_count,omptempty"`
	TeamId      *Many2One `xmlrpc:"team_id,omptempty"`
	Value       *String   `xmlrpc:"value,omptempty"`
	Variable    *String   `xmlrpc:"variable,omptempty"`
	WonCount    *Float    `xmlrpc:"won_count,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

CrmLeadScoringFrequency represents crm.lead.scoring.frequency model.

func (*CrmLeadScoringFrequency) Many2One

func (clsf *CrmLeadScoringFrequency) Many2One() *Many2One

Many2One convert CrmLeadScoringFrequency to *Many2One.

type CrmLeadScoringFrequencyField

type CrmLeadScoringFrequencyField struct {
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	FieldId     *Many2One `xmlrpc:"field_id,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"`
}

CrmLeadScoringFrequencyField represents crm.lead.scoring.frequency.field model.

func (*CrmLeadScoringFrequencyField) Many2One

func (clsff *CrmLeadScoringFrequencyField) Many2One() *Many2One

Many2One convert CrmLeadScoringFrequencyField to *Many2One.

type CrmLeadScoringFrequencyFields

type CrmLeadScoringFrequencyFields []CrmLeadScoringFrequencyField

CrmLeadScoringFrequencyFields represents array of crm.lead.scoring.frequency.field model.

type CrmLeadScoringFrequencys

type CrmLeadScoringFrequencys []CrmLeadScoringFrequency

CrmLeadScoringFrequencys represents array of crm.lead.scoring.frequency model.

type CrmLeadTag

type CrmLeadTag struct {
	Color       *Int      `xmlrpc:"color,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"`
}

CrmLeadTag represents crm.lead.tag model.

func (*CrmLeadTag) Many2One

func (clt *CrmLeadTag) Many2One() *Many2One

Many2One convert CrmLeadTag to *Many2One.

type CrmLeadTags

type CrmLeadTags []CrmLeadTag

CrmLeadTags represents array of crm.lead.tag model.

type CrmLeads

type CrmLeads []CrmLead

CrmLeads represents array of crm.lead model.

type CrmLostReason

type CrmLostReason 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"`
	Name        *String   `xmlrpc:"name,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

CrmLostReason represents crm.lost.reason model.

func (*CrmLostReason) Many2One

func (clr *CrmLostReason) Many2One() *Many2One

Many2One convert CrmLostReason to *Many2One.

type CrmLostReasons

type CrmLostReasons []CrmLostReason

CrmLostReasons represents array of crm.lost.reason model.

type CrmMergeOpportunity

type CrmMergeOpportunity 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"`
	OpportunityIds *Relation `xmlrpc:"opportunity_ids,omptempty"`
	TeamId         *Many2One `xmlrpc:"team_id,omptempty"`
	UserId         *Many2One `xmlrpc:"user_id,omptempty"`
	WriteDate      *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid       *Many2One `xmlrpc:"write_uid,omptempty"`
}

CrmMergeOpportunity represents crm.merge.opportunity model.

func (*CrmMergeOpportunity) Many2One

func (cmo *CrmMergeOpportunity) Many2One() *Many2One

Many2One convert CrmMergeOpportunity to *Many2One.

type CrmMergeOpportunitys

type CrmMergeOpportunitys []CrmMergeOpportunity

CrmMergeOpportunitys represents array of crm.merge.opportunity model.

type CrmPartnerBinding

type CrmPartnerBinding struct {
	Action      *Selection `xmlrpc:"action,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"`
	WriteDate   *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One  `xmlrpc:"write_uid,omptempty"`
}

CrmPartnerBinding represents crm.partner.binding model.

func (*CrmPartnerBinding) Many2One

func (cpb *CrmPartnerBinding) Many2One() *Many2One

Many2One convert CrmPartnerBinding to *Many2One.

type CrmPartnerBindings

type CrmPartnerBindings []CrmPartnerBinding

CrmPartnerBindings represents array of crm.partner.binding model.

type CrmQuotationPartner

type CrmQuotationPartner struct {
	Action      *Selection `xmlrpc:"action,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"`
	LeadId      *Many2One  `xmlrpc:"lead_id,omptempty"`
	PartnerId   *Many2One  `xmlrpc:"partner_id,omptempty"`
	WriteDate   *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One  `xmlrpc:"write_uid,omptempty"`
}

CrmQuotationPartner represents crm.quotation.partner model.

func (*CrmQuotationPartner) Many2One

func (cqp *CrmQuotationPartner) Many2One() *Many2One

Many2One convert CrmQuotationPartner to *Many2One.

type CrmQuotationPartners

type CrmQuotationPartners []CrmQuotationPartner

CrmQuotationPartners represents array of crm.quotation.partner model.

type CrmStage

type CrmStage struct {
	CreateDate   *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid    *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName  *String   `xmlrpc:"display_name,omptempty"`
	Fold         *Bool     `xmlrpc:"fold,omptempty"`
	Id           *Int      `xmlrpc:"id,omptempty"`
	IsWon        *Bool     `xmlrpc:"is_won,omptempty"`
	LastUpdate   *Time     `xmlrpc:"__last_update,omptempty"`
	Name         *String   `xmlrpc:"name,omptempty"`
	Requirements *String   `xmlrpc:"requirements,omptempty"`
	Sequence     *Int      `xmlrpc:"sequence,omptempty"`
	TeamCount    *Int      `xmlrpc:"team_count,omptempty"`
	TeamId       *Many2One `xmlrpc:"team_id,omptempty"`
	WriteDate    *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid     *Many2One `xmlrpc:"write_uid,omptempty"`
}

CrmStage represents crm.stage model.

func (*CrmStage) Many2One

func (cs *CrmStage) Many2One() *Many2One

Many2One convert CrmStage to *Many2One.

type CrmStages

type CrmStages []CrmStage

CrmStages represents array of crm.stage model.

type CrmTeam

type CrmTeam struct {
	Active                     *Bool      `xmlrpc:"active,omptempty"`
	AliasContact               *Selection `xmlrpc:"alias_contact,omptempty"`
	AliasDefaults              *String    `xmlrpc:"alias_defaults,omptempty"`
	AliasDomain                *String    `xmlrpc:"alias_domain,omptempty"`
	AliasForceThreadId         *Int       `xmlrpc:"alias_force_thread_id,omptempty"`
	AliasId                    *Many2One  `xmlrpc:"alias_id,omptempty"`
	AliasModelId               *Many2One  `xmlrpc:"alias_model_id,omptempty"`
	AliasName                  *String    `xmlrpc:"alias_name,omptempty"`
	AliasParentModelId         *Many2One  `xmlrpc:"alias_parent_model_id,omptempty"`
	AliasParentThreadId        *Int       `xmlrpc:"alias_parent_thread_id,omptempty"`
	AliasUserId                *Many2One  `xmlrpc:"alias_user_id,omptempty"`
	Color                      *Int       `xmlrpc:"color,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"`
	DashboardButtonName        *String    `xmlrpc:"dashboard_button_name,omptempty"`
	DashboardGraphData         *String    `xmlrpc:"dashboard_graph_data,omptempty"`
	DisplayName                *String    `xmlrpc:"display_name,omptempty"`
	FavoriteUserIds            *Relation  `xmlrpc:"favorite_user_ids,omptempty"`
	Id                         *Int       `xmlrpc:"id,omptempty"`
	Invoiced                   *Int       `xmlrpc:"invoiced,omptempty"`
	InvoicedTarget             *Int       `xmlrpc:"invoiced_target,omptempty"`
	IsFavorite                 *Bool      `xmlrpc:"is_favorite,omptempty"`
	LastUpdate                 *Time      `xmlrpc:"__last_update,omptempty"`
	MemberIds                  *Relation  `xmlrpc:"member_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"`
	OpportunitiesAmount        *Int       `xmlrpc:"opportunities_amount,omptempty"`
	OpportunitiesCount         *Int       `xmlrpc:"opportunities_count,omptempty"`
	OverdueOpportunitiesAmount *Int       `xmlrpc:"overdue_opportunities_amount,omptempty"`
	OverdueOpportunitiesCount  *Int       `xmlrpc:"overdue_opportunities_count,omptempty"`
	QuotationsAmount           *Int       `xmlrpc:"quotations_amount,omptempty"`
	QuotationsCount            *Int       `xmlrpc:"quotations_count,omptempty"`
	SalesToInvoiceCount        *Int       `xmlrpc:"sales_to_invoice_count,omptempty"`
	Sequence                   *Int       `xmlrpc:"sequence,omptempty"`
	UnassignedLeadsCount       *Int       `xmlrpc:"unassigned_leads_count,omptempty"`
	UseLeads                   *Bool      `xmlrpc:"use_leads,omptempty"`
	UseOpportunities           *Bool      `xmlrpc:"use_opportunities,omptempty"`
	UseQuotations              *Bool      `xmlrpc:"use_quotations,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"`
}

CrmTeam represents crm.team model.

func (*CrmTeam) Many2One

func (ct *CrmTeam) Many2One() *Many2One

Many2One convert CrmTeam to *Many2One.

type CrmTeams

type CrmTeams []CrmTeam

CrmTeams represents array of crm.team model.

type DecimalPrecision

type DecimalPrecision struct {
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	Digits      *Int      `xmlrpc:"digits,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"`
}

DecimalPrecision represents decimal.precision model.

func (*DecimalPrecision) Many2One

func (dp *DecimalPrecision) Many2One() *Many2One

Many2One convert DecimalPrecision to *Many2One.

type DecimalPrecisions

type DecimalPrecisions []DecimalPrecision

DecimalPrecisions represents array of decimal.precision model.

type DigestDigest

type DigestDigest struct {
	AvailableFields                    *String    `xmlrpc:"available_fields,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"`
	IsSubscribed                       *Bool      `xmlrpc:"is_subscribed,omptempty"`
	KpiAccountTotalRevenue             *Bool      `xmlrpc:"kpi_account_total_revenue,omptempty"`
	KpiAccountTotalRevenueValue        *Float     `xmlrpc:"kpi_account_total_revenue_value,omptempty"`
	KpiAllSaleTotal                    *Bool      `xmlrpc:"kpi_all_sale_total,omptempty"`
	KpiAllSaleTotalValue               *Float     `xmlrpc:"kpi_all_sale_total_value,omptempty"`
	KpiCrmLeadCreated                  *Bool      `xmlrpc:"kpi_crm_lead_created,omptempty"`
	KpiCrmLeadCreatedValue             *Int       `xmlrpc:"kpi_crm_lead_created_value,omptempty"`
	KpiCrmOpportunitiesWon             *Bool      `xmlrpc:"kpi_crm_opportunities_won,omptempty"`
	KpiCrmOpportunitiesWonValue        *Int       `xmlrpc:"kpi_crm_opportunities_won_value,omptempty"`
	KpiHrRecruitmentNewColleagues      *Bool      `xmlrpc:"kpi_hr_recruitment_new_colleagues,omptempty"`
	KpiHrRecruitmentNewColleaguesValue *Int       `xmlrpc:"kpi_hr_recruitment_new_colleagues_value,omptempty"`
	KpiMailMessageTotal                *Bool      `xmlrpc:"kpi_mail_message_total,omptempty"`
	KpiMailMessageTotalValue           *Int       `xmlrpc:"kpi_mail_message_total_value,omptempty"`
	KpiProjectTaskOpened               *Bool      `xmlrpc:"kpi_project_task_opened,omptempty"`
	KpiProjectTaskOpenedValue          *Int       `xmlrpc:"kpi_project_task_opened_value,omptempty"`
	KpiResUsersConnected               *Bool      `xmlrpc:"kpi_res_users_connected,omptempty"`
	KpiResUsersConnectedValue          *Int       `xmlrpc:"kpi_res_users_connected_value,omptempty"`
	LastUpdate                         *Time      `xmlrpc:"__last_update,omptempty"`
	Name                               *String    `xmlrpc:"name,omptempty"`
	NextRunDate                        *Time      `xmlrpc:"next_run_date,omptempty"`
	Periodicity                        *Selection `xmlrpc:"periodicity,omptempty"`
	State                              *Selection `xmlrpc:"state,omptempty"`
	TemplateId                         *Many2One  `xmlrpc:"template_id,omptempty"`
	UserIds                            *Relation  `xmlrpc:"user_ids,omptempty"`
	WriteDate                          *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid                           *Many2One  `xmlrpc:"write_uid,omptempty"`
}

DigestDigest represents digest.digest model.

func (*DigestDigest) Many2One

func (dd *DigestDigest) Many2One() *Many2One

Many2One convert DigestDigest to *Many2One.

type DigestDigests

type DigestDigests []DigestDigest

DigestDigests represents array of digest.digest model.

type DigestTip

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

DigestTip represents digest.tip model.

func (*DigestTip) Many2One

func (dt *DigestTip) Many2One() *Many2One

Many2One convert DigestTip to *Many2One.

type DigestTips

type DigestTips []DigestTip

DigestTips represents array of digest.tip model.

type EmailTemplatePreview

type EmailTemplatePreview struct {
	AttachmentIds       *Relation  `xmlrpc:"attachment_ids,omptempty"`
	AutoDelete          *Bool      `xmlrpc:"auto_delete,omptempty"`
	BodyHtml            *String    `xmlrpc:"body_html,omptempty"`
	Copyvalue           *String    `xmlrpc:"copyvalue,omptempty"`
	CreateDate          *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid           *Many2One  `xmlrpc:"create_uid,omptempty"`
	DisplayName         *String    `xmlrpc:"display_name,omptempty"`
	EmailCc             *String    `xmlrpc:"email_cc,omptempty"`
	EmailFrom           *String    `xmlrpc:"email_from,omptempty"`
	EmailTo             *String    `xmlrpc:"email_to,omptempty"`
	Id                  *Int       `xmlrpc:"id,omptempty"`
	Lang                *String    `xmlrpc:"lang,omptempty"`
	LastUpdate          *Time      `xmlrpc:"__last_update,omptempty"`
	MailServerId        *Many2One  `xmlrpc:"mail_server_id,omptempty"`
	Model               *String    `xmlrpc:"model,omptempty"`
	ModelId             *Many2One  `xmlrpc:"model_id,omptempty"`
	ModelObjectField    *Many2One  `xmlrpc:"model_object_field,omptempty"`
	Name                *String    `xmlrpc:"name,omptempty"`
	NullValue           *String    `xmlrpc:"null_value,omptempty"`
	PartnerIds          *Relation  `xmlrpc:"partner_ids,omptempty"`
	PartnerTo           *String    `xmlrpc:"partner_to,omptempty"`
	PreviewLang         *Selection `xmlrpc:"preview_lang,omptempty"`
	RefIrActWindow      *Many2One  `xmlrpc:"ref_ir_act_window,omptempty"`
	ReplyTo             *String    `xmlrpc:"reply_to,omptempty"`
	ReportName          *String    `xmlrpc:"report_name,omptempty"`
	ReportTemplate      *Many2One  `xmlrpc:"report_template,omptempty"`
	ResId               *Selection `xmlrpc:"res_id,omptempty"`
	ScheduledDate       *String    `xmlrpc:"scheduled_date,omptempty"`
	Subject             *String    `xmlrpc:"subject,omptempty"`
	SubModelObjectField *Many2One  `xmlrpc:"sub_model_object_field,omptempty"`
	SubObject           *Many2One  `xmlrpc:"sub_object,omptempty"`
	UseDefaultTo        *Bool      `xmlrpc:"use_default_to,omptempty"`
	UserSignature       *Bool      `xmlrpc:"user_signature,omptempty"`
	WriteDate           *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid            *Many2One  `xmlrpc:"write_uid,omptempty"`
}

EmailTemplatePreview represents email_template.preview model.

func (*EmailTemplatePreview) Many2One

func (ep *EmailTemplatePreview) Many2One() *Many2One

Many2One convert EmailTemplatePreview to *Many2One.

type EmailTemplatePreviews

type EmailTemplatePreviews []EmailTemplatePreview

EmailTemplatePreviews represents array of email_template.preview model.

type EventConfirm

type EventConfirm 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"`
}

EventConfirm represents event.confirm model.

func (*EventConfirm) Many2One

func (ec *EventConfirm) Many2One() *Many2One

Many2One convert EventConfirm to *Many2One.

type EventConfirms

type EventConfirms []EventConfirm

EventConfirms represents array of event.confirm model.

type EventEvent

type EventEvent struct {
	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"`
	AddressId                   *Many2One  `xmlrpc:"address_id,omptempty"`
	AutoConfirm                 *Bool      `xmlrpc:"auto_confirm,omptempty"`
	BadgeBack                   *String    `xmlrpc:"badge_back,omptempty"`
	BadgeFront                  *String    `xmlrpc:"badge_front,omptempty"`
	BadgeInnerleft              *String    `xmlrpc:"badge_innerleft,omptempty"`
	BadgeInnerright             *String    `xmlrpc:"badge_innerright,omptempty"`
	CanPublish                  *Bool      `xmlrpc:"can_publish,omptempty"`
	Color                       *Int       `xmlrpc:"color,omptempty"`
	CompanyId                   *Many2One  `xmlrpc:"company_id,omptempty"`
	CountryId                   *Many2One  `xmlrpc:"country_id,omptempty"`
	CoverProperties             *String    `xmlrpc:"cover_properties,omptempty"`
	CreateDate                  *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid                   *Many2One  `xmlrpc:"create_uid,omptempty"`
	DateBegin                   *Time      `xmlrpc:"date_begin,omptempty"`
	DateBeginLocated            *String    `xmlrpc:"date_begin_located,omptempty"`
	DateEnd                     *Time      `xmlrpc:"date_end,omptempty"`
	DateEndLocated              *String    `xmlrpc:"date_end_located,omptempty"`
	DateTz                      *Selection `xmlrpc:"date_tz,omptempty"`
	Description                 *String    `xmlrpc:"description,omptempty"`
	DisplayName                 *String    `xmlrpc:"display_name,omptempty"`
	EventMailIds                *Relation  `xmlrpc:"event_mail_ids,omptempty"`
	EventTicketIds              *Relation  `xmlrpc:"event_ticket_ids,omptempty"`
	EventTypeId                 *Many2One  `xmlrpc:"event_type_id,omptempty"`
	Id                          *Int       `xmlrpc:"id,omptempty"`
	IsOneDay                    *Bool      `xmlrpc:"is_one_day,omptempty"`
	IsOnline                    *Bool      `xmlrpc:"is_online,omptempty"`
	IsParticipating             *Bool      `xmlrpc:"is_participating,omptempty"`
	IsPublished                 *Bool      `xmlrpc:"is_published,omptempty"`
	IsSeoOptimized              *Bool      `xmlrpc:"is_seo_optimized,omptempty"`
	LastUpdate                  *Time      `xmlrpc:"__last_update,omptempty"`
	MenuId                      *Many2One  `xmlrpc:"menu_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"`
	OrganizerId                 *Many2One  `xmlrpc:"organizer_id,omptempty"`
	RegistrationIds             *Relation  `xmlrpc:"registration_ids,omptempty"`
	SeatsAvailability           *Selection `xmlrpc:"seats_availability,omptempty"`
	SeatsAvailable              *Int       `xmlrpc:"seats_available,omptempty"`
	SeatsExpected               *Int       `xmlrpc:"seats_expected,omptempty"`
	SeatsMax                    *Int       `xmlrpc:"seats_max,omptempty"`
	SeatsMin                    *Int       `xmlrpc:"seats_min,omptempty"`
	SeatsReserved               *Int       `xmlrpc:"seats_reserved,omptempty"`
	SeatsUnconfirmed            *Int       `xmlrpc:"seats_unconfirmed,omptempty"`
	SeatsUsed                   *Int       `xmlrpc:"seats_used,omptempty"`
	State                       *Selection `xmlrpc:"state,omptempty"`
	Subtitle                    *String    `xmlrpc:"subtitle,omptempty"`
	TwitterHashtag              *String    `xmlrpc:"twitter_hashtag,omptempty"`
	UserId                      *Many2One  `xmlrpc:"user_id,omptempty"`
	WebsiteId                   *Many2One  `xmlrpc:"website_id,omptempty"`
	WebsiteMenu                 *Bool      `xmlrpc:"website_menu,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"`
}

EventEvent represents event.event model.

func (*EventEvent) Many2One

func (ee *EventEvent) Many2One() *Many2One

Many2One convert EventEvent to *Many2One.

type EventEventConfigurator

type EventEventConfigurator struct {
	CreateDate    *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid     *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName   *String   `xmlrpc:"display_name,omptempty"`
	EventId       *Many2One `xmlrpc:"event_id,omptempty"`
	EventTicketId *Many2One `xmlrpc:"event_ticket_id,omptempty"`
	Id            *Int      `xmlrpc:"id,omptempty"`
	LastUpdate    *Time     `xmlrpc:"__last_update,omptempty"`
	ProductId     *Many2One `xmlrpc:"product_id,omptempty"`
	WriteDate     *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid      *Many2One `xmlrpc:"write_uid,omptempty"`
}

EventEventConfigurator represents event.event.configurator model.

func (*EventEventConfigurator) Many2One

func (eec *EventEventConfigurator) Many2One() *Many2One

Many2One convert EventEventConfigurator to *Many2One.

type EventEventConfigurators

type EventEventConfigurators []EventEventConfigurator

EventEventConfigurators represents array of event.event.configurator model.

type EventEventTicket

type EventEventTicket struct {
	CompanyId         *Many2One  `xmlrpc:"company_id,omptempty"`
	CreateDate        *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid         *Many2One  `xmlrpc:"create_uid,omptempty"`
	Deadline          *Time      `xmlrpc:"deadline,omptempty"`
	DisplayName       *String    `xmlrpc:"display_name,omptempty"`
	EventId           *Many2One  `xmlrpc:"event_id,omptempty"`
	EventTypeId       *Many2One  `xmlrpc:"event_type_id,omptempty"`
	Id                *Int       `xmlrpc:"id,omptempty"`
	IsExpired         *Bool      `xmlrpc:"is_expired,omptempty"`
	LastUpdate        *Time      `xmlrpc:"__last_update,omptempty"`
	Name              *String    `xmlrpc:"name,omptempty"`
	Price             *Float     `xmlrpc:"price,omptempty"`
	PriceReduce       *Float     `xmlrpc:"price_reduce,omptempty"`
	PriceReduceTaxinc *Float     `xmlrpc:"price_reduce_taxinc,omptempty"`
	ProductId         *Many2One  `xmlrpc:"product_id,omptempty"`
	RegistrationIds   *Relation  `xmlrpc:"registration_ids,omptempty"`
	SeatsAvailability *Selection `xmlrpc:"seats_availability,omptempty"`
	SeatsAvailable    *Int       `xmlrpc:"seats_available,omptempty"`
	SeatsMax          *Int       `xmlrpc:"seats_max,omptempty"`
	SeatsReserved     *Int       `xmlrpc:"seats_reserved,omptempty"`
	SeatsUnconfirmed  *Int       `xmlrpc:"seats_unconfirmed,omptempty"`
	SeatsUsed         *Int       `xmlrpc:"seats_used,omptempty"`
	WriteDate         *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid          *Many2One  `xmlrpc:"write_uid,omptempty"`
}

EventEventTicket represents event.event.ticket model.

func (*EventEventTicket) Many2One

func (eet *EventEventTicket) Many2One() *Many2One

Many2One convert EventEventTicket to *Many2One.

type EventEventTickets

type EventEventTickets []EventEventTicket

EventEventTickets represents array of event.event.ticket model.

type EventEvents

type EventEvents []EventEvent

EventEvents represents array of event.event model.

type EventMail

type EventMail struct {
	CreateDate          *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid           *Many2One  `xmlrpc:"create_uid,omptempty"`
	DisplayName         *String    `xmlrpc:"display_name,omptempty"`
	Done                *Bool      `xmlrpc:"done,omptempty"`
	EventId             *Many2One  `xmlrpc:"event_id,omptempty"`
	Id                  *Int       `xmlrpc:"id,omptempty"`
	IntervalNbr         *Int       `xmlrpc:"interval_nbr,omptempty"`
	IntervalType        *Selection `xmlrpc:"interval_type,omptempty"`
	IntervalUnit        *Selection `xmlrpc:"interval_unit,omptempty"`
	LastUpdate          *Time      `xmlrpc:"__last_update,omptempty"`
	MailRegistrationIds *Relation  `xmlrpc:"mail_registration_ids,omptempty"`
	MailSent            *Bool      `xmlrpc:"mail_sent,omptempty"`
	NotificationType    *Selection `xmlrpc:"notification_type,omptempty"`
	ScheduledDate       *Time      `xmlrpc:"scheduled_date,omptempty"`
	Sequence            *Int       `xmlrpc:"sequence,omptempty"`
	SmsTemplateId       *Many2One  `xmlrpc:"sms_template_id,omptempty"`
	TemplateId          *Many2One  `xmlrpc:"template_id,omptempty"`
	WriteDate           *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid            *Many2One  `xmlrpc:"write_uid,omptempty"`
}

EventMail represents event.mail model.

func (*EventMail) Many2One

func (em *EventMail) Many2One() *Many2One

Many2One convert EventMail to *Many2One.

type EventMailRegistration

type EventMailRegistration 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"`
	MailSent       *Bool     `xmlrpc:"mail_sent,omptempty"`
	RegistrationId *Many2One `xmlrpc:"registration_id,omptempty"`
	ScheduledDate  *Time     `xmlrpc:"scheduled_date,omptempty"`
	SchedulerId    *Many2One `xmlrpc:"scheduler_id,omptempty"`
	WriteDate      *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid       *Many2One `xmlrpc:"write_uid,omptempty"`
}

EventMailRegistration represents event.mail.registration model.

func (*EventMailRegistration) Many2One

func (emr *EventMailRegistration) Many2One() *Many2One

Many2One convert EventMailRegistration to *Many2One.

type EventMailRegistrations

type EventMailRegistrations []EventMailRegistration

EventMailRegistrations represents array of event.mail.registration model.

type EventMails

type EventMails []EventMail

EventMails represents array of event.mail model.

type EventRegistration

type EventRegistration 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"`
	CampaignId                  *Many2One  `xmlrpc:"campaign_id,omptempty"`
	CompanyId                   *Many2One  `xmlrpc:"company_id,omptempty"`
	CreateDate                  *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid                   *Many2One  `xmlrpc:"create_uid,omptempty"`
	DateClosed                  *Time      `xmlrpc:"date_closed,omptempty"`
	DateOpen                    *Time      `xmlrpc:"date_open,omptempty"`
	DisplayName                 *String    `xmlrpc:"display_name,omptempty"`
	Email                       *String    `xmlrpc:"email,omptempty"`
	EventBeginDate              *Time      `xmlrpc:"event_begin_date,omptempty"`
	EventEndDate                *Time      `xmlrpc:"event_end_date,omptempty"`
	EventId                     *Many2One  `xmlrpc:"event_id,omptempty"`
	EventTicketId               *Many2One  `xmlrpc:"event_ticket_id,omptempty"`
	Id                          *Int       `xmlrpc:"id,omptempty"`
	LastUpdate                  *Time      `xmlrpc:"__last_update,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"`
	Mobile                      *String    `xmlrpc:"mobile,omptempty"`
	Name                        *String    `xmlrpc:"name,omptempty"`
	Origin                      *String    `xmlrpc:"origin,omptempty"`
	PartnerId                   *Many2One  `xmlrpc:"partner_id,omptempty"`
	Phone                       *String    `xmlrpc:"phone,omptempty"`
	SaleOrderId                 *Many2One  `xmlrpc:"sale_order_id,omptempty"`
	SaleOrderLineId             *Many2One  `xmlrpc:"sale_order_line_id,omptempty"`
	SourceId                    *Many2One  `xmlrpc:"source_id,omptempty"`
	State                       *Selection `xmlrpc:"state,omptempty"`
	WebsiteMessageIds           *Relation  `xmlrpc:"website_message_ids,omptempty"`
	WriteDate                   *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid                    *Many2One  `xmlrpc:"write_uid,omptempty"`
}

EventRegistration represents event.registration model.

func (*EventRegistration) Many2One

func (er *EventRegistration) Many2One() *Many2One

Many2One convert EventRegistration to *Many2One.

type EventRegistrations

type EventRegistrations []EventRegistration

EventRegistrations represents array of event.registration model.

type EventType

type EventType struct {
	AutoConfirm            *Bool      `xmlrpc:"auto_confirm,omptempty"`
	CreateDate             *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid              *Many2One  `xmlrpc:"create_uid,omptempty"`
	DefaultHashtag         *String    `xmlrpc:"default_hashtag,omptempty"`
	DefaultRegistrationMax *Int       `xmlrpc:"default_registration_max,omptempty"`
	DefaultRegistrationMin *Int       `xmlrpc:"default_registration_min,omptempty"`
	DefaultTimezone        *Selection `xmlrpc:"default_timezone,omptempty"`
	DisplayName            *String    `xmlrpc:"display_name,omptempty"`
	EventTicketIds         *Relation  `xmlrpc:"event_ticket_ids,omptempty"`
	EventTypeMailIds       *Relation  `xmlrpc:"event_type_mail_ids,omptempty"`
	HasSeatsLimitation     *Bool      `xmlrpc:"has_seats_limitation,omptempty"`
	Id                     *Int       `xmlrpc:"id,omptempty"`
	IsOnline               *Bool      `xmlrpc:"is_online,omptempty"`
	LastUpdate             *Time      `xmlrpc:"__last_update,omptempty"`
	Name                   *String    `xmlrpc:"name,omptempty"`
	Sequence               *Int       `xmlrpc:"sequence,omptempty"`
	UseHashtag             *Bool      `xmlrpc:"use_hashtag,omptempty"`
	UseMailSchedule        *Bool      `xmlrpc:"use_mail_schedule,omptempty"`
	UseTicketing           *Bool      `xmlrpc:"use_ticketing,omptempty"`
	UseTimezone            *Bool      `xmlrpc:"use_timezone,omptempty"`
	WebsiteMenu            *Bool      `xmlrpc:"website_menu,omptempty"`
	WriteDate              *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid               *Many2One  `xmlrpc:"write_uid,omptempty"`
}

EventType represents event.type model.

func (*EventType) Many2One

func (et *EventType) Many2One() *Many2One

Many2One convert EventType to *Many2One.

type EventTypeMail

type EventTypeMail struct {
	CreateDate       *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid        *Many2One  `xmlrpc:"create_uid,omptempty"`
	DisplayName      *String    `xmlrpc:"display_name,omptempty"`
	EventTypeId      *Many2One  `xmlrpc:"event_type_id,omptempty"`
	Id               *Int       `xmlrpc:"id,omptempty"`
	IntervalNbr      *Int       `xmlrpc:"interval_nbr,omptempty"`
	IntervalType     *Selection `xmlrpc:"interval_type,omptempty"`
	IntervalUnit     *Selection `xmlrpc:"interval_unit,omptempty"`
	LastUpdate       *Time      `xmlrpc:"__last_update,omptempty"`
	NotificationType *Selection `xmlrpc:"notification_type,omptempty"`
	SmsTemplateId    *Many2One  `xmlrpc:"sms_template_id,omptempty"`
	TemplateId       *Many2One  `xmlrpc:"template_id,omptempty"`
	WriteDate        *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid         *Many2One  `xmlrpc:"write_uid,omptempty"`
}

EventTypeMail represents event.type.mail model.

func (*EventTypeMail) Many2One

func (etm *EventTypeMail) Many2One() *Many2One

Many2One convert EventTypeMail to *Many2One.

type EventTypeMails

type EventTypeMails []EventTypeMail

EventTypeMails represents array of event.type.mail model.

type EventTypes

type EventTypes []EventType

EventTypes represents array of event.type model.

type FetchmailServer

type FetchmailServer struct {
	Active        *Bool      `xmlrpc:"active,omptempty"`
	Attach        *Bool      `xmlrpc:"attach,omptempty"`
	Configuration *String    `xmlrpc:"configuration,omptempty"`
	CreateDate    *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid     *Many2One  `xmlrpc:"create_uid,omptempty"`
	Date          *Time      `xmlrpc:"date,omptempty"`
	DisplayName   *String    `xmlrpc:"display_name,omptempty"`
	Id            *Int       `xmlrpc:"id,omptempty"`
	IsSsl         *Bool      `xmlrpc:"is_ssl,omptempty"`
	LastUpdate    *Time      `xmlrpc:"__last_update,omptempty"`
	MessageIds    *Relation  `xmlrpc:"message_ids,omptempty"`
	Name          *String    `xmlrpc:"name,omptempty"`
	ObjectId      *Many2One  `xmlrpc:"object_id,omptempty"`
	Original      *Bool      `xmlrpc:"original,omptempty"`
	Password      *String    `xmlrpc:"password,omptempty"`
	Port          *Int       `xmlrpc:"port,omptempty"`
	Priority      *Int       `xmlrpc:"priority,omptempty"`
	Script        *String    `xmlrpc:"script,omptempty"`
	Server        *String    `xmlrpc:"server,omptempty"`
	ServerType    *Selection `xmlrpc:"server_type,omptempty"`
	State         *Selection `xmlrpc:"state,omptempty"`
	User          *String    `xmlrpc:"user,omptempty"`
	WriteDate     *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid      *Many2One  `xmlrpc:"write_uid,omptempty"`
}

FetchmailServer represents fetchmail.server model.

func (*FetchmailServer) Many2One

func (fs *FetchmailServer) Many2One() *Many2One

Many2One convert FetchmailServer to *Many2One.

type FetchmailServers

type FetchmailServers []FetchmailServer

FetchmailServers represents array of fetchmail.server model.

type Float

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

Float is a float64 wrapper

func NewFloat

func NewFloat(v float64) *Float

NewFloat creates a new *Float.

func (*Float) Get

func (f *Float) Get() float64

Get *Float value.

type FormatAddressMixin

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

FormatAddressMixin represents format.address.mixin model.

func (*FormatAddressMixin) Many2One

func (fam *FormatAddressMixin) Many2One() *Many2One

Many2One convert FormatAddressMixin to *Many2One.

type FormatAddressMixins

type FormatAddressMixins []FormatAddressMixin

FormatAddressMixins represents array of format.address.mixin model.

type GamificationBadge

type GamificationBadge struct {
	Active                   *Bool      `xmlrpc:"active,omptempty"`
	CanPublish               *Bool      `xmlrpc:"can_publish,omptempty"`
	ChallengeIds             *Relation  `xmlrpc:"challenge_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"`
	GoalDefinitionIds        *Relation  `xmlrpc:"goal_definition_ids,omptempty"`
	GrantedEmployeesCount    *Int       `xmlrpc:"granted_employees_count,omptempty"`
	Id                       *Int       `xmlrpc:"id,omptempty"`
	Image1024                *String    `xmlrpc:"image_1024,omptempty"`
	Image128                 *String    `xmlrpc:"image_128,omptempty"`
	Image1920                *String    `xmlrpc:"image_1920,omptempty"`
	Image256                 *String    `xmlrpc:"image_256,omptempty"`
	Image512                 *String    `xmlrpc:"image_512,omptempty"`
	IsPublished              *Bool      `xmlrpc:"is_published,omptempty"`
	LastUpdate               *Time      `xmlrpc:"__last_update,omptempty"`
	Level                    *Selection `xmlrpc:"level,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"`
	OwnerIds                 *Relation  `xmlrpc:"owner_ids,omptempty"`
	RemainingSending         *Int       `xmlrpc:"remaining_sending,omptempty"`
	RuleAuth                 *Selection `xmlrpc:"rule_auth,omptempty"`
	RuleAuthBadgeIds         *Relation  `xmlrpc:"rule_auth_badge_ids,omptempty"`
	RuleAuthUserIds          *Relation  `xmlrpc:"rule_auth_user_ids,omptempty"`
	RuleMax                  *Bool      `xmlrpc:"rule_max,omptempty"`
	RuleMaxNumber            *Int       `xmlrpc:"rule_max_number,omptempty"`
	StatCount                *Int       `xmlrpc:"stat_count,omptempty"`
	StatCountDistinct        *Int       `xmlrpc:"stat_count_distinct,omptempty"`
	StatMy                   *Int       `xmlrpc:"stat_my,omptempty"`
	StatMyMonthlySending     *Int       `xmlrpc:"stat_my_monthly_sending,omptempty"`
	StatMyThisMonth          *Int       `xmlrpc:"stat_my_this_month,omptempty"`
	StatThisMonth            *Int       `xmlrpc:"stat_this_month,omptempty"`
	SurveyId                 *Many2One  `xmlrpc:"survey_id,omptempty"`
	SurveyIds                *Relation  `xmlrpc:"survey_ids,omptempty"`
	UniqueOwnerIds           *Relation  `xmlrpc:"unique_owner_ids,omptempty"`
	WebsiteMessageIds        *Relation  `xmlrpc:"website_message_ids,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"`
}

GamificationBadge represents gamification.badge model.

func (*GamificationBadge) Many2One

func (gb *GamificationBadge) Many2One() *Many2One

Many2One convert GamificationBadge to *Many2One.

type GamificationBadgeUser

type GamificationBadgeUser struct {
	BadgeId     *Many2One  `xmlrpc:"badge_id,omptempty"`
	BadgeName   *String    `xmlrpc:"badge_name,omptempty"`
	ChallengeId *Many2One  `xmlrpc:"challenge_id,omptempty"`
	Comment     *String    `xmlrpc:"comment,omptempty"`
	CreateDate  *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One  `xmlrpc:"create_uid,omptempty"`
	DisplayName *String    `xmlrpc:"display_name,omptempty"`
	EmployeeId  *Many2One  `xmlrpc:"employee_id,omptempty"`
	Id          *Int       `xmlrpc:"id,omptempty"`
	LastUpdate  *Time      `xmlrpc:"__last_update,omptempty"`
	Level       *Selection `xmlrpc:"level,omptempty"`
	SenderId    *Many2One  `xmlrpc:"sender_id,omptempty"`
	UserId      *Many2One  `xmlrpc:"user_id,omptempty"`
	WriteDate   *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One  `xmlrpc:"write_uid,omptempty"`
}

GamificationBadgeUser represents gamification.badge.user model.

func (*GamificationBadgeUser) Many2One

func (gbu *GamificationBadgeUser) Many2One() *Many2One

Many2One convert GamificationBadgeUser to *Many2One.

type GamificationBadgeUserWizard

type GamificationBadgeUserWizard struct {
	BadgeId     *Many2One `xmlrpc:"badge_id,omptempty"`
	Comment     *String   `xmlrpc:"comment,omptempty"`
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	EmployeeId  *Many2One `xmlrpc:"employee_id,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	UserId      *Many2One `xmlrpc:"user_id,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

GamificationBadgeUserWizard represents gamification.badge.user.wizard model.

func (*GamificationBadgeUserWizard) Many2One

func (gbuw *GamificationBadgeUserWizard) Many2One() *Many2One

Many2One convert GamificationBadgeUserWizard to *Many2One.

type GamificationBadgeUserWizards

type GamificationBadgeUserWizards []GamificationBadgeUserWizard

GamificationBadgeUserWizards represents array of gamification.badge.user.wizard model.

type GamificationBadgeUsers

type GamificationBadgeUsers []GamificationBadgeUser

GamificationBadgeUsers represents array of gamification.badge.user model.

type GamificationBadges

type GamificationBadges []GamificationBadge

GamificationBadges represents array of gamification.badge model.

type GamificationChallenge

type GamificationChallenge struct {
	Category                 *Selection `xmlrpc:"category,omptempty"`
	CreateDate               *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid                *Many2One  `xmlrpc:"create_uid,omptempty"`
	Description              *String    `xmlrpc:"description,omptempty"`
	DisplayName              *String    `xmlrpc:"display_name,omptempty"`
	EndDate                  *Time      `xmlrpc:"end_date,omptempty"`
	Id                       *Int       `xmlrpc:"id,omptempty"`
	InvitedUserIds           *Relation  `xmlrpc:"invited_user_ids,omptempty"`
	LastReportDate           *Time      `xmlrpc:"last_report_date,omptempty"`
	LastUpdate               *Time      `xmlrpc:"__last_update,omptempty"`
	LineIds                  *Relation  `xmlrpc:"line_ids,omptempty"`
	ManagerId                *Many2One  `xmlrpc:"manager_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"`
	NextReportDate           *Time      `xmlrpc:"next_report_date,omptempty"`
	Period                   *Selection `xmlrpc:"period,omptempty"`
	RemindUpdateDelay        *Int       `xmlrpc:"remind_update_delay,omptempty"`
	ReportMessageFrequency   *Selection `xmlrpc:"report_message_frequency,omptempty"`
	ReportMessageGroupId     *Many2One  `xmlrpc:"report_message_group_id,omptempty"`
	ReportTemplateId         *Many2One  `xmlrpc:"report_template_id,omptempty"`
	RewardFailure            *Bool      `xmlrpc:"reward_failure,omptempty"`
	RewardFirstId            *Many2One  `xmlrpc:"reward_first_id,omptempty"`
	RewardId                 *Many2One  `xmlrpc:"reward_id,omptempty"`
	RewardRealtime           *Bool      `xmlrpc:"reward_realtime,omptempty"`
	RewardSecondId           *Many2One  `xmlrpc:"reward_second_id,omptempty"`
	RewardThirdId            *Many2One  `xmlrpc:"reward_third_id,omptempty"`
	StartDate                *Time      `xmlrpc:"start_date,omptempty"`
	State                    *Selection `xmlrpc:"state,omptempty"`
	UserDomain               *String    `xmlrpc:"user_domain,omptempty"`
	UserIds                  *Relation  `xmlrpc:"user_ids,omptempty"`
	VisibilityMode           *Selection `xmlrpc:"visibility_mode,omptempty"`
	WebsiteMessageIds        *Relation  `xmlrpc:"website_message_ids,omptempty"`
	WriteDate                *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid                 *Many2One  `xmlrpc:"write_uid,omptempty"`
}

GamificationChallenge represents gamification.challenge model.

func (*GamificationChallenge) Many2One

func (gc *GamificationChallenge) Many2One() *Many2One

Many2One convert GamificationChallenge to *Many2One.

type GamificationChallengeLine

type GamificationChallengeLine struct {
	ChallengeId          *Many2One  `xmlrpc:"challenge_id,omptempty"`
	Condition            *Selection `xmlrpc:"condition,omptempty"`
	CreateDate           *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid            *Many2One  `xmlrpc:"create_uid,omptempty"`
	DefinitionFullSuffix *String    `xmlrpc:"definition_full_suffix,omptempty"`
	DefinitionId         *Many2One  `xmlrpc:"definition_id,omptempty"`
	DefinitionMonetary   *Bool      `xmlrpc:"definition_monetary,omptempty"`
	DefinitionSuffix     *String    `xmlrpc:"definition_suffix,omptempty"`
	DisplayName          *String    `xmlrpc:"display_name,omptempty"`
	Id                   *Int       `xmlrpc:"id,omptempty"`
	LastUpdate           *Time      `xmlrpc:"__last_update,omptempty"`
	Name                 *String    `xmlrpc:"name,omptempty"`
	Sequence             *Int       `xmlrpc:"sequence,omptempty"`
	TargetGoal           *Float     `xmlrpc:"target_goal,omptempty"`
	WriteDate            *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid             *Many2One  `xmlrpc:"write_uid,omptempty"`
}

GamificationChallengeLine represents gamification.challenge.line model.

func (*GamificationChallengeLine) Many2One

func (gcl *GamificationChallengeLine) Many2One() *Many2One

Many2One convert GamificationChallengeLine to *Many2One.

type GamificationChallengeLines

type GamificationChallengeLines []GamificationChallengeLine

GamificationChallengeLines represents array of gamification.challenge.line model.

type GamificationChallenges

type GamificationChallenges []GamificationChallenge

GamificationChallenges represents array of gamification.challenge model.

type GamificationGoal

type GamificationGoal struct {
	ChallengeId           *Many2One  `xmlrpc:"challenge_id,omptempty"`
	Closed                *Bool      `xmlrpc:"closed,omptempty"`
	Completeness          *Float     `xmlrpc:"completeness,omptempty"`
	ComputationMode       *Selection `xmlrpc:"computation_mode,omptempty"`
	CreateDate            *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid             *Many2One  `xmlrpc:"create_uid,omptempty"`
	Current               *Float     `xmlrpc:"current,omptempty"`
	DefinitionCondition   *Selection `xmlrpc:"definition_condition,omptempty"`
	DefinitionDescription *String    `xmlrpc:"definition_description,omptempty"`
	DefinitionDisplay     *Selection `xmlrpc:"definition_display,omptempty"`
	DefinitionId          *Many2One  `xmlrpc:"definition_id,omptempty"`
	DefinitionSuffix      *String    `xmlrpc:"definition_suffix,omptempty"`
	DisplayName           *String    `xmlrpc:"display_name,omptempty"`
	EndDate               *Time      `xmlrpc:"end_date,omptempty"`
	Id                    *Int       `xmlrpc:"id,omptempty"`
	LastUpdate            *Time      `xmlrpc:"last_update,omptempty"`
	LineId                *Many2One  `xmlrpc:"line_id,omptempty"`
	RemindUpdateDelay     *Int       `xmlrpc:"remind_update_delay,omptempty"`
	StartDate             *Time      `xmlrpc:"start_date,omptempty"`
	State                 *Selection `xmlrpc:"state,omptempty"`
	TargetGoal            *Float     `xmlrpc:"target_goal,omptempty"`
	ToUpdate              *Bool      `xmlrpc:"to_update,omptempty"`
	UserId                *Many2One  `xmlrpc:"user_id,omptempty"`
	WriteDate             *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid              *Many2One  `xmlrpc:"write_uid,omptempty"`
}

GamificationGoal represents gamification.goal model.

func (*GamificationGoal) Many2One

func (gg *GamificationGoal) Many2One() *Many2One

Many2One convert GamificationGoal to *Many2One.

type GamificationGoalDefinition

type GamificationGoalDefinition struct {
	ActionId              *Many2One  `xmlrpc:"action_id,omptempty"`
	BatchDistinctiveField *Many2One  `xmlrpc:"batch_distinctive_field,omptempty"`
	BatchMode             *Bool      `xmlrpc:"batch_mode,omptempty"`
	BatchUserExpression   *String    `xmlrpc:"batch_user_expression,omptempty"`
	ComputationMode       *Selection `xmlrpc:"computation_mode,omptempty"`
	ComputeCode           *String    `xmlrpc:"compute_code,omptempty"`
	Condition             *Selection `xmlrpc:"condition,omptempty"`
	CreateDate            *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid             *Many2One  `xmlrpc:"create_uid,omptempty"`
	Description           *String    `xmlrpc:"description,omptempty"`
	DisplayMode           *Selection `xmlrpc:"display_mode,omptempty"`
	DisplayName           *String    `xmlrpc:"display_name,omptempty"`
	Domain                *String    `xmlrpc:"domain,omptempty"`
	FieldDateId           *Many2One  `xmlrpc:"field_date_id,omptempty"`
	FieldId               *Many2One  `xmlrpc:"field_id,omptempty"`
	FullSuffix            *String    `xmlrpc:"full_suffix,omptempty"`
	Id                    *Int       `xmlrpc:"id,omptempty"`
	LastUpdate            *Time      `xmlrpc:"__last_update,omptempty"`
	ModelId               *Many2One  `xmlrpc:"model_id,omptempty"`
	Monetary              *Bool      `xmlrpc:"monetary,omptempty"`
	Name                  *String    `xmlrpc:"name,omptempty"`
	ResIdField            *String    `xmlrpc:"res_id_field,omptempty"`
	Suffix                *String    `xmlrpc:"suffix,omptempty"`
	WriteDate             *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid              *Many2One  `xmlrpc:"write_uid,omptempty"`
}

GamificationGoalDefinition represents gamification.goal.definition model.

func (*GamificationGoalDefinition) Many2One

func (ggd *GamificationGoalDefinition) Many2One() *Many2One

Many2One convert GamificationGoalDefinition to *Many2One.

type GamificationGoalDefinitions

type GamificationGoalDefinitions []GamificationGoalDefinition

GamificationGoalDefinitions represents array of gamification.goal.definition model.

type GamificationGoalWizard

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

GamificationGoalWizard represents gamification.goal.wizard model.

func (*GamificationGoalWizard) Many2One

func (ggw *GamificationGoalWizard) Many2One() *Many2One

Many2One convert GamificationGoalWizard to *Many2One.

type GamificationGoalWizards

type GamificationGoalWizards []GamificationGoalWizard

GamificationGoalWizards represents array of gamification.goal.wizard model.

type GamificationGoals

type GamificationGoals []GamificationGoal

GamificationGoals represents array of gamification.goal model.

type GamificationKarmaRank

type GamificationKarmaRank struct {
	CreateDate              *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid               *Many2One `xmlrpc:"create_uid,omptempty"`
	Description             *String   `xmlrpc:"description,omptempty"`
	DescriptionMotivational *String   `xmlrpc:"description_motivational,omptempty"`
	DisplayName             *String   `xmlrpc:"display_name,omptempty"`
	Id                      *Int      `xmlrpc:"id,omptempty"`
	Image1024               *String   `xmlrpc:"image_1024,omptempty"`
	Image128                *String   `xmlrpc:"image_128,omptempty"`
	Image1920               *String   `xmlrpc:"image_1920,omptempty"`
	Image256                *String   `xmlrpc:"image_256,omptempty"`
	Image512                *String   `xmlrpc:"image_512,omptempty"`
	KarmaMin                *Int      `xmlrpc:"karma_min,omptempty"`
	LastUpdate              *Time     `xmlrpc:"__last_update,omptempty"`
	Name                    *String   `xmlrpc:"name,omptempty"`
	UserIds                 *Relation `xmlrpc:"user_ids,omptempty"`
	WriteDate               *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid                *Many2One `xmlrpc:"write_uid,omptempty"`
}

GamificationKarmaRank represents gamification.karma.rank model.

func (*GamificationKarmaRank) Many2One

func (gkr *GamificationKarmaRank) Many2One() *Many2One

Many2One convert GamificationKarmaRank to *Many2One.

type GamificationKarmaRanks

type GamificationKarmaRanks []GamificationKarmaRank

GamificationKarmaRanks represents array of gamification.karma.rank model.

type HrApplicant

type HrApplicant struct {
	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"`
	ApplicationCount            *Int       `xmlrpc:"application_count,omptempty"`
	AttachmentIds               *Relation  `xmlrpc:"attachment_ids,omptempty"`
	AttachmentNumber            *Int       `xmlrpc:"attachment_number,omptempty"`
	Availability                *Time      `xmlrpc:"availability,omptempty"`
	CampaignId                  *Many2One  `xmlrpc:"campaign_id,omptempty"`
	CategIds                    *Relation  `xmlrpc:"categ_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"`
	DateClosed                  *Time      `xmlrpc:"date_closed,omptempty"`
	DateLastStageUpdate         *Time      `xmlrpc:"date_last_stage_update,omptempty"`
	DateOpen                    *Time      `xmlrpc:"date_open,omptempty"`
	DayClose                    *Float     `xmlrpc:"day_close,omptempty"`
	DayOpen                     *Float     `xmlrpc:"day_open,omptempty"`
	DelayClose                  *Float     `xmlrpc:"delay_close,omptempty"`
	DepartmentId                *Many2One  `xmlrpc:"department_id,omptempty"`
	Description                 *String    `xmlrpc:"description,omptempty"`
	DisplayName                 *String    `xmlrpc:"display_name,omptempty"`
	EmailCc                     *String    `xmlrpc:"email_cc,omptempty"`
	EmailFrom                   *String    `xmlrpc:"email_from,omptempty"`
	EmpId                       *Many2One  `xmlrpc:"emp_id,omptempty"`
	EmployeeName                *String    `xmlrpc:"employee_name,omptempty"`
	Id                          *Int       `xmlrpc:"id,omptempty"`
	JobId                       *Many2One  `xmlrpc:"job_id,omptempty"`
	KanbanState                 *Selection `xmlrpc:"kanban_state,omptempty"`
	LastStageId                 *Many2One  `xmlrpc:"last_stage_id,omptempty"`
	LastUpdate                  *Time      `xmlrpc:"__last_update,omptempty"`
	LegendBlocked               *String    `xmlrpc:"legend_blocked,omptempty"`
	LegendDone                  *String    `xmlrpc:"legend_done,omptempty"`
	LegendNormal                *String    `xmlrpc:"legend_normal,omptempty"`
	MediumId                    *Many2One  `xmlrpc:"medium_id,omptempty"`
	MeetingCount                *Int       `xmlrpc:"meeting_count,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"`
	PartnerMobile               *String    `xmlrpc:"partner_mobile,omptempty"`
	PartnerName                 *String    `xmlrpc:"partner_name,omptempty"`
	PartnerPhone                *String    `xmlrpc:"partner_phone,omptempty"`
	Priority                    *Selection `xmlrpc:"priority,omptempty"`
	Probability                 *Float     `xmlrpc:"probability,omptempty"`
	SalaryExpected              *Float     `xmlrpc:"salary_expected,omptempty"`
	SalaryExpectedExtra         *String    `xmlrpc:"salary_expected_extra,omptempty"`
	SalaryProposed              *Float     `xmlrpc:"salary_proposed,omptempty"`
	SalaryProposedExtra         *String    `xmlrpc:"salary_proposed_extra,omptempty"`
	SourceId                    *Many2One  `xmlrpc:"source_id,omptempty"`
	StageId                     *Many2One  `xmlrpc:"stage_id,omptempty"`
	TypeId                      *Many2One  `xmlrpc:"type_id,omptempty"`
	UserEmail                   *String    `xmlrpc:"user_email,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"`
}

HrApplicant represents hr.applicant model.

func (*HrApplicant) Many2One

func (ha *HrApplicant) Many2One() *Many2One

Many2One convert HrApplicant to *Many2One.

type HrApplicantCategory

type HrApplicantCategory struct {
	Color       *Int      `xmlrpc:"color,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"`
}

HrApplicantCategory represents hr.applicant.category model.

func (*HrApplicantCategory) Many2One

func (hac *HrApplicantCategory) Many2One() *Many2One

Many2One convert HrApplicantCategory to *Many2One.

type HrApplicantCategorys

type HrApplicantCategorys []HrApplicantCategory

HrApplicantCategorys represents array of hr.applicant.category model.

type HrApplicants

type HrApplicants []HrApplicant

HrApplicants represents array of hr.applicant model.

type HrAttendance

type HrAttendance struct {
	CheckIn      *Time     `xmlrpc:"check_in,omptempty"`
	CheckOut     *Time     `xmlrpc:"check_out,omptempty"`
	CreateDate   *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid    *Many2One `xmlrpc:"create_uid,omptempty"`
	DepartmentId *Many2One `xmlrpc:"department_id,omptempty"`
	DisplayName  *String   `xmlrpc:"display_name,omptempty"`
	EmployeeId   *Many2One `xmlrpc:"employee_id,omptempty"`
	Id           *Int      `xmlrpc:"id,omptempty"`
	LastUpdate   *Time     `xmlrpc:"__last_update,omptempty"`
	WorkedHours  *Float    `xmlrpc:"worked_hours,omptempty"`
	WriteDate    *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid     *Many2One `xmlrpc:"write_uid,omptempty"`
}

HrAttendance represents hr.attendance model.

func (*HrAttendance) Many2One

func (ha *HrAttendance) Many2One() *Many2One

Many2One convert HrAttendance to *Many2One.

type HrAttendances

type HrAttendances []HrAttendance

HrAttendances represents array of hr.attendance model.

type HrContract

type HrContract struct {
	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"`
	Advantages                  *String    `xmlrpc:"advantages,omptempty"`
	CalendarMismatch            *Bool      `xmlrpc:"calendar_mismatch,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"`
	DateEnd                     *Time      `xmlrpc:"date_end,omptempty"`
	DateStart                   *Time      `xmlrpc:"date_start,omptempty"`
	DepartmentId                *Many2One  `xmlrpc:"department_id,omptempty"`
	DisplayName                 *String    `xmlrpc:"display_name,omptempty"`
	EmployeeId                  *Many2One  `xmlrpc:"employee_id,omptempty"`
	HrResponsibleId             *Many2One  `xmlrpc:"hr_responsible_id,omptempty"`
	Id                          *Int       `xmlrpc:"id,omptempty"`
	JobId                       *Many2One  `xmlrpc:"job_id,omptempty"`
	KanbanState                 *Selection `xmlrpc:"kanban_state,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"`
	Notes                       *String    `xmlrpc:"notes,omptempty"`
	PermitNo                    *String    `xmlrpc:"permit_no,omptempty"`
	ResourceCalendarId          *Many2One  `xmlrpc:"resource_calendar_id,omptempty"`
	State                       *Selection `xmlrpc:"state,omptempty"`
	TrialDateEnd                *Time      `xmlrpc:"trial_date_end,omptempty"`
	VisaExpire                  *Time      `xmlrpc:"visa_expire,omptempty"`
	VisaNo                      *String    `xmlrpc:"visa_no,omptempty"`
	Wage                        *Float     `xmlrpc:"wage,omptempty"`
	WebsiteMessageIds           *Relation  `xmlrpc:"website_message_ids,omptempty"`
	WriteDate                   *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid                    *Many2One  `xmlrpc:"write_uid,omptempty"`
}

HrContract represents hr.contract model.

func (*HrContract) Many2One

func (hc *HrContract) Many2One() *Many2One

Many2One convert HrContract to *Many2One.

type HrContracts

type HrContracts []HrContract

HrContracts represents array of hr.contract model.

type HrDepartment

type HrDepartment struct {
	AbsenceOfToday              *Int      `xmlrpc:"absence_of_today,omptempty"`
	Active                      *Bool     `xmlrpc:"active,omptempty"`
	AllocationToApproveCount    *Int      `xmlrpc:"allocation_to_approve_count,omptempty"`
	ChildIds                    *Relation `xmlrpc:"child_ids,omptempty"`
	Color                       *Int      `xmlrpc:"color,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"`
	DisplayName                 *String   `xmlrpc:"display_name,omptempty"`
	ExpectedEmployee            *Int      `xmlrpc:"expected_employee,omptempty"`
	ExpenseSheetsToApproveCount *Int      `xmlrpc:"expense_sheets_to_approve_count,omptempty"`
	Id                          *Int      `xmlrpc:"id,omptempty"`
	JobsIds                     *Relation `xmlrpc:"jobs_ids,omptempty"`
	LastUpdate                  *Time     `xmlrpc:"__last_update,omptempty"`
	LeaveToApproveCount         *Int      `xmlrpc:"leave_to_approve_count,omptempty"`
	ManagerId                   *Many2One `xmlrpc:"manager_id,omptempty"`
	MemberIds                   *Relation `xmlrpc:"member_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"`
	NewApplicantCount           *Int      `xmlrpc:"new_applicant_count,omptempty"`
	NewHiredEmployee            *Int      `xmlrpc:"new_hired_employee,omptempty"`
	Note                        *String   `xmlrpc:"note,omptempty"`
	ParentId                    *Many2One `xmlrpc:"parent_id,omptempty"`
	TotalEmployee               *Int      `xmlrpc:"total_employee,omptempty"`
	WebsiteMessageIds           *Relation `xmlrpc:"website_message_ids,omptempty"`
	WriteDate                   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid                    *Many2One `xmlrpc:"write_uid,omptempty"`
}

HrDepartment represents hr.department model.

func (*HrDepartment) Many2One

func (hd *HrDepartment) Many2One() *Many2One

Many2One convert HrDepartment to *Many2One.

type HrDepartments

type HrDepartments []HrDepartment

HrDepartments represents array of hr.department model.

type HrDepartureWizard

type HrDepartureWizard struct {
	CreateDate           *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid            *Many2One  `xmlrpc:"create_uid,omptempty"`
	DepartureDescription *String    `xmlrpc:"departure_description,omptempty"`
	DepartureReason      *Selection `xmlrpc:"departure_reason,omptempty"`
	DisplayName          *String    `xmlrpc:"display_name,omptempty"`
	EmployeeId           *Many2One  `xmlrpc:"employee_id,omptempty"`
	Id                   *Int       `xmlrpc:"id,omptempty"`
	LastUpdate           *Time      `xmlrpc:"__last_update,omptempty"`
	PlanId               *Many2One  `xmlrpc:"plan_id,omptempty"`
	WriteDate            *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid             *Many2One  `xmlrpc:"write_uid,omptempty"`
}

HrDepartureWizard represents hr.departure.wizard model.

func (*HrDepartureWizard) Many2One

func (hdw *HrDepartureWizard) Many2One() *Many2One

Many2One convert HrDepartureWizard to *Many2One.

type HrDepartureWizards

type HrDepartureWizards []HrDepartureWizard

HrDepartureWizards represents array of hr.departure.wizard model.

type HrEmployee

type HrEmployee struct {
	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"`
	AdditionalNote              *String    `xmlrpc:"additional_note,omptempty"`
	AddressHomeId               *Many2One  `xmlrpc:"address_home_id,omptempty"`
	AddressId                   *Many2One  `xmlrpc:"address_id,omptempty"`
	AllocationCount             *Float     `xmlrpc:"allocation_count,omptempty"`
	AllocationDisplay           *String    `xmlrpc:"allocation_display,omptempty"`
	AllocationUsedCount         *Float     `xmlrpc:"allocation_used_count,omptempty"`
	AllocationUsedDisplay       *String    `xmlrpc:"allocation_used_display,omptempty"`
	AttendanceIds               *Relation  `xmlrpc:"attendance_ids,omptempty"`
	AttendanceState             *Selection `xmlrpc:"attendance_state,omptempty"`
	BadgeIds                    *Relation  `xmlrpc:"badge_ids,omptempty"`
	BankAccountId               *Many2One  `xmlrpc:"bank_account_id,omptempty"`
	Barcode                     *String    `xmlrpc:"barcode,omptempty"`
	Birthday                    *Time      `xmlrpc:"birthday,omptempty"`
	CalendarMismatch            *Bool      `xmlrpc:"calendar_mismatch,omptempty"`
	CategoryIds                 *Relation  `xmlrpc:"category_ids,omptempty"`
	Certificate                 *Selection `xmlrpc:"certificate,omptempty"`
	ChildAllCount               *Int       `xmlrpc:"child_all_count,omptempty"`
	ChildIds                    *Relation  `xmlrpc:"child_ids,omptempty"`
	Children                    *Int       `xmlrpc:"children,omptempty"`
	CoachId                     *Many2One  `xmlrpc:"coach_id,omptempty"`
	Color                       *Int       `xmlrpc:"color,omptempty"`
	CompanyId                   *Many2One  `xmlrpc:"company_id,omptempty"`
	ContractId                  *Many2One  `xmlrpc:"contract_id,omptempty"`
	ContractIds                 *Relation  `xmlrpc:"contract_ids,omptempty"`
	ContractsCount              *Int       `xmlrpc:"contracts_count,omptempty"`
	ContractWarning             *Bool      `xmlrpc:"contract_warning,omptempty"`
	CountryId                   *Many2One  `xmlrpc:"country_id,omptempty"`
	CountryOfBirth              *Many2One  `xmlrpc:"country_of_birth,omptempty"`
	CreateDate                  *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid                   *Many2One  `xmlrpc:"create_uid,omptempty"`
	CurrentLeaveId              *Many2One  `xmlrpc:"current_leave_id,omptempty"`
	CurrentLeaveState           *Selection `xmlrpc:"current_leave_state,omptempty"`
	DepartmentId                *Many2One  `xmlrpc:"department_id,omptempty"`
	DepartureDescription        *String    `xmlrpc:"departure_description,omptempty"`
	DepartureReason             *Selection `xmlrpc:"departure_reason,omptempty"`
	DirectBadgeIds              *Relation  `xmlrpc:"direct_badge_ids,omptempty"`
	DisplayName                 *String    `xmlrpc:"display_name,omptempty"`
	EmergencyContact            *String    `xmlrpc:"emergency_contact,omptempty"`
	EmergencyPhone              *String    `xmlrpc:"emergency_phone,omptempty"`
	ExpenseManagerId            *Many2One  `xmlrpc:"expense_manager_id,omptempty"`
	Gender                      *Selection `xmlrpc:"gender,omptempty"`
	GoalIds                     *Relation  `xmlrpc:"goal_ids,omptempty"`
	HasBadges                   *Bool      `xmlrpc:"has_badges,omptempty"`
	HoursLastMonth              *Float     `xmlrpc:"hours_last_month,omptempty"`
	HoursLastMonthDisplay       *String    `xmlrpc:"hours_last_month_display,omptempty"`
	HoursToday                  *Float     `xmlrpc:"hours_today,omptempty"`
	HrPresenceState             *Selection `xmlrpc:"hr_presence_state,omptempty"`
	Id                          *Int       `xmlrpc:"id,omptempty"`
	IdentificationId            *String    `xmlrpc:"identification_id,omptempty"`
	Image1024                   *String    `xmlrpc:"image_1024,omptempty"`
	Image128                    *String    `xmlrpc:"image_128,omptempty"`
	Image1920                   *String    `xmlrpc:"image_1920,omptempty"`
	Image256                    *String    `xmlrpc:"image_256,omptempty"`
	Image512                    *String    `xmlrpc:"image_512,omptempty"`
	IsAbsent                    *Bool      `xmlrpc:"is_absent,omptempty"`
	IsAddressHomeACompany       *Bool      `xmlrpc:"is_address_home_a_company,omptempty"`
	JobId                       *Many2One  `xmlrpc:"job_id,omptempty"`
	JobTitle                    *String    `xmlrpc:"job_title,omptempty"`
	KmHomeWork                  *Int       `xmlrpc:"km_home_work,omptempty"`
	LastActivity                *Time      `xmlrpc:"last_activity,omptempty"`
	LastActivityTime            *String    `xmlrpc:"last_activity_time,omptempty"`
	LastAttendanceId            *Many2One  `xmlrpc:"last_attendance_id,omptempty"`
	LastCheckIn                 *Time      `xmlrpc:"last_check_in,omptempty"`
	LastCheckOut                *Time      `xmlrpc:"last_check_out,omptempty"`
	LastUpdate                  *Time      `xmlrpc:"__last_update,omptempty"`
	LeaveDateFrom               *Time      `xmlrpc:"leave_date_from,omptempty"`
	LeaveDateTo                 *Time      `xmlrpc:"leave_date_to,omptempty"`
	LeaveManagerId              *Many2One  `xmlrpc:"leave_manager_id,omptempty"`
	LeavesCount                 *Float     `xmlrpc:"leaves_count,omptempty"`
	Marital                     *Selection `xmlrpc:"marital,omptempty"`
	MedicExam                   *Time      `xmlrpc:"medic_exam,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"`
	MobilePhone                 *String    `xmlrpc:"mobile_phone,omptempty"`
	Name                        *String    `xmlrpc:"name,omptempty"`
	NewlyHiredEmployee          *Bool      `xmlrpc:"newly_hired_employee,omptempty"`
	Notes                       *String    `xmlrpc:"notes,omptempty"`
	ParentId                    *Many2One  `xmlrpc:"parent_id,omptempty"`
	PassportId                  *String    `xmlrpc:"passport_id,omptempty"`
	PermitNo                    *String    `xmlrpc:"permit_no,omptempty"`
	Phone                       *String    `xmlrpc:"phone,omptempty"`
	Pin                         *String    `xmlrpc:"pin,omptempty"`
	PlaceOfBirth                *String    `xmlrpc:"place_of_birth,omptempty"`
	PrivateEmail                *String    `xmlrpc:"private_email,omptempty"`
	RemainingLeaves             *Float     `xmlrpc:"remaining_leaves,omptempty"`
	ResourceCalendarId          *Many2One  `xmlrpc:"resource_calendar_id,omptempty"`
	ResourceId                  *Many2One  `xmlrpc:"resource_id,omptempty"`
	ShowLeaves                  *Bool      `xmlrpc:"show_leaves,omptempty"`
	Sinid                       *String    `xmlrpc:"sinid,omptempty"`
	SpouseBirthdate             *Time      `xmlrpc:"spouse_birthdate,omptempty"`
	SpouseCompleteName          *String    `xmlrpc:"spouse_complete_name,omptempty"`
	Ssnid                       *String    `xmlrpc:"ssnid,omptempty"`
	StudyField                  *String    `xmlrpc:"study_field,omptempty"`
	StudySchool                 *String    `xmlrpc:"study_school,omptempty"`
	SubordinateIds              *Relation  `xmlrpc:"subordinate_ids,omptempty"`
	Tz                          *Selection `xmlrpc:"tz,omptempty"`
	UserId                      *Many2One  `xmlrpc:"user_id,omptempty"`
	UserPartnerId               *Many2One  `xmlrpc:"user_partner_id,omptempty"`
	Vehicle                     *String    `xmlrpc:"vehicle,omptempty"`
	VisaExpire                  *Time      `xmlrpc:"visa_expire,omptempty"`
	VisaNo                      *String    `xmlrpc:"visa_no,omptempty"`
	WebsiteMessageIds           *Relation  `xmlrpc:"website_message_ids,omptempty"`
	WorkEmail                   *String    `xmlrpc:"work_email,omptempty"`
	WorkLocation                *String    `xmlrpc:"work_location,omptempty"`
	WorkPhone                   *String    `xmlrpc:"work_phone,omptempty"`
	WriteDate                   *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid                    *Many2One  `xmlrpc:"write_uid,omptempty"`
}

HrEmployee represents hr.employee model.

func (*HrEmployee) Many2One

func (he *HrEmployee) Many2One() *Many2One

Many2One convert HrEmployee to *Many2One.

type HrEmployeeBase

type HrEmployeeBase struct {
	Active                *Bool      `xmlrpc:"active,omptempty"`
	AddressId             *Many2One  `xmlrpc:"address_id,omptempty"`
	AllocationCount       *Float     `xmlrpc:"allocation_count,omptempty"`
	AllocationDisplay     *String    `xmlrpc:"allocation_display,omptempty"`
	AllocationUsedCount   *Float     `xmlrpc:"allocation_used_count,omptempty"`
	AllocationUsedDisplay *String    `xmlrpc:"allocation_used_display,omptempty"`
	AttendanceIds         *Relation  `xmlrpc:"attendance_ids,omptempty"`
	AttendanceState       *Selection `xmlrpc:"attendance_state,omptempty"`
	BadgeIds              *Relation  `xmlrpc:"badge_ids,omptempty"`
	ChildAllCount         *Int       `xmlrpc:"child_all_count,omptempty"`
	CoachId               *Many2One  `xmlrpc:"coach_id,omptempty"`
	Color                 *Int       `xmlrpc:"color,omptempty"`
	CompanyId             *Many2One  `xmlrpc:"company_id,omptempty"`
	CurrentLeaveId        *Many2One  `xmlrpc:"current_leave_id,omptempty"`
	CurrentLeaveState     *Selection `xmlrpc:"current_leave_state,omptempty"`
	DepartmentId          *Many2One  `xmlrpc:"department_id,omptempty"`
	DirectBadgeIds        *Relation  `xmlrpc:"direct_badge_ids,omptempty"`
	DisplayName           *String    `xmlrpc:"display_name,omptempty"`
	GoalIds               *Relation  `xmlrpc:"goal_ids,omptempty"`
	HasBadges             *Bool      `xmlrpc:"has_badges,omptempty"`
	HoursLastMonth        *Float     `xmlrpc:"hours_last_month,omptempty"`
	HoursLastMonthDisplay *String    `xmlrpc:"hours_last_month_display,omptempty"`
	HoursToday            *Float     `xmlrpc:"hours_today,omptempty"`
	HrPresenceState       *Selection `xmlrpc:"hr_presence_state,omptempty"`
	Id                    *Int       `xmlrpc:"id,omptempty"`
	IsAbsent              *Bool      `xmlrpc:"is_absent,omptempty"`
	JobId                 *Many2One  `xmlrpc:"job_id,omptempty"`
	JobTitle              *String    `xmlrpc:"job_title,omptempty"`
	LastActivity          *Time      `xmlrpc:"last_activity,omptempty"`
	LastActivityTime      *String    `xmlrpc:"last_activity_time,omptempty"`
	LastAttendanceId      *Many2One  `xmlrpc:"last_attendance_id,omptempty"`
	LastCheckIn           *Time      `xmlrpc:"last_check_in,omptempty"`
	LastCheckOut          *Time      `xmlrpc:"last_check_out,omptempty"`
	LastUpdate            *Time      `xmlrpc:"__last_update,omptempty"`
	LeaveDateFrom         *Time      `xmlrpc:"leave_date_from,omptempty"`
	LeaveDateTo           *Time      `xmlrpc:"leave_date_to,omptempty"`
	LeaveManagerId        *Many2One  `xmlrpc:"leave_manager_id,omptempty"`
	LeavesCount           *Float     `xmlrpc:"leaves_count,omptempty"`
	MobilePhone           *String    `xmlrpc:"mobile_phone,omptempty"`
	Name                  *String    `xmlrpc:"name,omptempty"`
	ParentId              *Many2One  `xmlrpc:"parent_id,omptempty"`
	RemainingLeaves       *Float     `xmlrpc:"remaining_leaves,omptempty"`
	ResourceCalendarId    *Many2One  `xmlrpc:"resource_calendar_id,omptempty"`
	ResourceId            *Many2One  `xmlrpc:"resource_id,omptempty"`
	ShowLeaves            *Bool      `xmlrpc:"show_leaves,omptempty"`
	Tz                    *Selection `xmlrpc:"tz,omptempty"`
	UserId                *Many2One  `xmlrpc:"user_id,omptempty"`
	WorkEmail             *String    `xmlrpc:"work_email,omptempty"`
	WorkLocation          *String    `xmlrpc:"work_location,omptempty"`
	WorkPhone             *String    `xmlrpc:"work_phone,omptempty"`
}

HrEmployeeBase represents hr.employee.base model.

func (*HrEmployeeBase) Many2One

func (heb *HrEmployeeBase) Many2One() *Many2One

Many2One convert HrEmployeeBase to *Many2One.

type HrEmployeeBases

type HrEmployeeBases []HrEmployeeBase

HrEmployeeBases represents array of hr.employee.base model.

type HrEmployeeCategory

type HrEmployeeCategory struct {
	Color       *Int      `xmlrpc:"color,omptempty"`
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	EmployeeIds *Relation `xmlrpc:"employee_ids,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"`
}

HrEmployeeCategory represents hr.employee.category model.

func (*HrEmployeeCategory) Many2One

func (hec *HrEmployeeCategory) Many2One() *Many2One

Many2One convert HrEmployeeCategory to *Many2One.

type HrEmployeeCategorys

type HrEmployeeCategorys []HrEmployeeCategory

HrEmployeeCategorys represents array of hr.employee.category model.

type HrEmployeePublic

type HrEmployeePublic struct {
	Active                *Bool      `xmlrpc:"active,omptempty"`
	AddressId             *Many2One  `xmlrpc:"address_id,omptempty"`
	AllocationCount       *Float     `xmlrpc:"allocation_count,omptempty"`
	AllocationDisplay     *String    `xmlrpc:"allocation_display,omptempty"`
	AllocationUsedCount   *Float     `xmlrpc:"allocation_used_count,omptempty"`
	AllocationUsedDisplay *String    `xmlrpc:"allocation_used_display,omptempty"`
	AttendanceIds         *Relation  `xmlrpc:"attendance_ids,omptempty"`
	AttendanceState       *Selection `xmlrpc:"attendance_state,omptempty"`
	BadgeIds              *Relation  `xmlrpc:"badge_ids,omptempty"`
	ChildAllCount         *Int       `xmlrpc:"child_all_count,omptempty"`
	ChildIds              *Relation  `xmlrpc:"child_ids,omptempty"`
	CoachId               *Many2One  `xmlrpc:"coach_id,omptempty"`
	Color                 *Int       `xmlrpc:"color,omptempty"`
	CompanyId             *Many2One  `xmlrpc:"company_id,omptempty"`
	CreateDate            *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid             *Many2One  `xmlrpc:"create_uid,omptempty"`
	CurrentLeaveId        *Many2One  `xmlrpc:"current_leave_id,omptempty"`
	CurrentLeaveState     *Selection `xmlrpc:"current_leave_state,omptempty"`
	DepartmentId          *Many2One  `xmlrpc:"department_id,omptempty"`
	DirectBadgeIds        *Relation  `xmlrpc:"direct_badge_ids,omptempty"`
	DisplayName           *String    `xmlrpc:"display_name,omptempty"`
	ExpenseManagerId      *Many2One  `xmlrpc:"expense_manager_id,omptempty"`
	GoalIds               *Relation  `xmlrpc:"goal_ids,omptempty"`
	HasBadges             *Bool      `xmlrpc:"has_badges,omptempty"`
	HoursLastMonth        *Float     `xmlrpc:"hours_last_month,omptempty"`
	HoursLastMonthDisplay *String    `xmlrpc:"hours_last_month_display,omptempty"`
	HoursToday            *Float     `xmlrpc:"hours_today,omptempty"`
	HrPresenceState       *Selection `xmlrpc:"hr_presence_state,omptempty"`
	Id                    *Int       `xmlrpc:"id,omptempty"`
	Image1024             *String    `xmlrpc:"image_1024,omptempty"`
	Image128              *String    `xmlrpc:"image_128,omptempty"`
	Image1920             *String    `xmlrpc:"image_1920,omptempty"`
	Image256              *String    `xmlrpc:"image_256,omptempty"`
	Image512              *String    `xmlrpc:"image_512,omptempty"`
	IsAbsent              *Bool      `xmlrpc:"is_absent,omptempty"`
	JobId                 *Many2One  `xmlrpc:"job_id,omptempty"`
	JobTitle              *String    `xmlrpc:"job_title,omptempty"`
	LastActivity          *Time      `xmlrpc:"last_activity,omptempty"`
	LastActivityTime      *String    `xmlrpc:"last_activity_time,omptempty"`
	LastAttendanceId      *Many2One  `xmlrpc:"last_attendance_id,omptempty"`
	LastCheckIn           *Time      `xmlrpc:"last_check_in,omptempty"`
	LastCheckOut          *Time      `xmlrpc:"last_check_out,omptempty"`
	LastUpdate            *Time      `xmlrpc:"__last_update,omptempty"`
	LeaveDateFrom         *Time      `xmlrpc:"leave_date_from,omptempty"`
	LeaveDateTo           *Time      `xmlrpc:"leave_date_to,omptempty"`
	LeaveManagerId        *Many2One  `xmlrpc:"leave_manager_id,omptempty"`
	LeavesCount           *Float     `xmlrpc:"leaves_count,omptempty"`
	MobilePhone           *String    `xmlrpc:"mobile_phone,omptempty"`
	Name                  *String    `xmlrpc:"name,omptempty"`
	ParentId              *Many2One  `xmlrpc:"parent_id,omptempty"`
	RemainingLeaves       *Float     `xmlrpc:"remaining_leaves,omptempty"`
	ResourceCalendarId    *Many2One  `xmlrpc:"resource_calendar_id,omptempty"`
	ResourceId            *Many2One  `xmlrpc:"resource_id,omptempty"`
	ShowLeaves            *Bool      `xmlrpc:"show_leaves,omptempty"`
	SubordinateIds        *Relation  `xmlrpc:"subordinate_ids,omptempty"`
	Tz                    *Selection `xmlrpc:"tz,omptempty"`
	UserId                *Many2One  `xmlrpc:"user_id,omptempty"`
	WorkEmail             *String    `xmlrpc:"work_email,omptempty"`
	WorkLocation          *String    `xmlrpc:"work_location,omptempty"`
	WorkPhone             *String    `xmlrpc:"work_phone,omptempty"`
	WriteDate             *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid              *Many2One  `xmlrpc:"write_uid,omptempty"`
}

HrEmployeePublic represents hr.employee.public model.

func (*HrEmployeePublic) Many2One

func (hep *HrEmployeePublic) Many2One() *Many2One

Many2One convert HrEmployeePublic to *Many2One.

type HrEmployeePublics

type HrEmployeePublics []HrEmployeePublic

HrEmployeePublics represents array of hr.employee.public model.

type HrEmployees

type HrEmployees []HrEmployee

HrEmployees represents array of hr.employee model.

type HrExpense

type HrExpense struct {
	AccountId                   *Many2One  `xmlrpc:"account_id,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"`
	AnalyticAccountId           *Many2One  `xmlrpc:"analytic_account_id,omptempty"`
	AnalyticTagIds              *Relation  `xmlrpc:"analytic_tag_ids,omptempty"`
	AttachmentNumber            *Int       `xmlrpc:"attachment_number,omptempty"`
	CanBeReinvoiced             *Bool      `xmlrpc:"can_be_reinvoiced,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"`
	Description                 *String    `xmlrpc:"description,omptempty"`
	DisplayName                 *String    `xmlrpc:"display_name,omptempty"`
	EmployeeId                  *Many2One  `xmlrpc:"employee_id,omptempty"`
	Id                          *Int       `xmlrpc:"id,omptempty"`
	IsEditable                  *Bool      `xmlrpc:"is_editable,omptempty"`
	IsRefEditable               *Bool      `xmlrpc:"is_ref_editable,omptempty"`
	IsRefused                   *Bool      `xmlrpc:"is_refused,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"`
	PaymentMode                 *Selection `xmlrpc:"payment_mode,omptempty"`
	ProductId                   *Many2One  `xmlrpc:"product_id,omptempty"`
	ProductUomCategoryId        *Many2One  `xmlrpc:"product_uom_category_id,omptempty"`
	ProductUomId                *Many2One  `xmlrpc:"product_uom_id,omptempty"`
	Quantity                    *Float     `xmlrpc:"quantity,omptempty"`
	Reference                   *String    `xmlrpc:"reference,omptempty"`
	SaleOrderId                 *Many2One  `xmlrpc:"sale_order_id,omptempty"`
	SheetId                     *Many2One  `xmlrpc:"sheet_id,omptempty"`
	State                       *Selection `xmlrpc:"state,omptempty"`
	TaxIds                      *Relation  `xmlrpc:"tax_ids,omptempty"`
	TotalAmount                 *Float     `xmlrpc:"total_amount,omptempty"`
	TotalAmountCompany          *Float     `xmlrpc:"total_amount_company,omptempty"`
	UnitAmount                  *Float     `xmlrpc:"unit_amount,omptempty"`
	UntaxedAmount               *Float     `xmlrpc:"untaxed_amount,omptempty"`
	WebsiteMessageIds           *Relation  `xmlrpc:"website_message_ids,omptempty"`
	WriteDate                   *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid                    *Many2One  `xmlrpc:"write_uid,omptempty"`
}

HrExpense represents hr.expense model.

func (*HrExpense) Many2One

func (he *HrExpense) Many2One() *Many2One

Many2One convert HrExpense to *Many2One.

type HrExpenseRefuseWizard

type HrExpenseRefuseWizard struct {
	CreateDate       *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid        *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName      *String   `xmlrpc:"display_name,omptempty"`
	HrExpenseIds     *Relation `xmlrpc:"hr_expense_ids,omptempty"`
	HrExpenseSheetId *Many2One `xmlrpc:"hr_expense_sheet_id,omptempty"`
	Id               *Int      `xmlrpc:"id,omptempty"`
	LastUpdate       *Time     `xmlrpc:"__last_update,omptempty"`
	Reason           *String   `xmlrpc:"reason,omptempty"`
	WriteDate        *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid         *Many2One `xmlrpc:"write_uid,omptempty"`
}

HrExpenseRefuseWizard represents hr.expense.refuse.wizard model.

func (*HrExpenseRefuseWizard) Many2One

func (herw *HrExpenseRefuseWizard) Many2One() *Many2One

Many2One convert HrExpenseRefuseWizard to *Many2One.

type HrExpenseRefuseWizards

type HrExpenseRefuseWizards []HrExpenseRefuseWizard

HrExpenseRefuseWizards represents array of hr.expense.refuse.wizard model.

type HrExpenseSheet

type HrExpenseSheet struct {
	AccountingDate              *Time      `xmlrpc:"accounting_date,omptempty"`
	AccountMoveId               *Many2One  `xmlrpc:"account_move_id,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"`
	AddressId                   *Many2One  `xmlrpc:"address_id,omptempty"`
	AttachmentNumber            *Int       `xmlrpc:"attachment_number,omptempty"`
	BankJournalId               *Many2One  `xmlrpc:"bank_journal_id,omptempty"`
	CanReset                    *Bool      `xmlrpc:"can_reset,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"`
	DepartmentId                *Many2One  `xmlrpc:"department_id,omptempty"`
	DisplayName                 *String    `xmlrpc:"display_name,omptempty"`
	EmployeeId                  *Many2One  `xmlrpc:"employee_id,omptempty"`
	ExpenseLineIds              *Relation  `xmlrpc:"expense_line_ids,omptempty"`
	Id                          *Int       `xmlrpc:"id,omptempty"`
	IsMultipleCurrency          *Bool      `xmlrpc:"is_multiple_currency,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"`
	Name                        *String    `xmlrpc:"name,omptempty"`
	PaymentMode                 *Selection `xmlrpc:"payment_mode,omptempty"`
	State                       *Selection `xmlrpc:"state,omptempty"`
	TotalAmount                 *Float     `xmlrpc:"total_amount,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"`
}

HrExpenseSheet represents hr.expense.sheet model.

func (*HrExpenseSheet) Many2One

func (hes *HrExpenseSheet) Many2One() *Many2One

Many2One convert HrExpenseSheet to *Many2One.

type HrExpenseSheetRegisterPaymentWizard

type HrExpenseSheetRegisterPaymentWizard struct {
	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"`
	DisplayName               *String   `xmlrpc:"display_name,omptempty"`
	ExpenseSheetId            *Many2One `xmlrpc:"expense_sheet_id,omptempty"`
	HidePaymentMethod         *Bool     `xmlrpc:"hide_payment_method,omptempty"`
	Id                        *Int      `xmlrpc:"id,omptempty"`
	JournalId                 *Many2One `xmlrpc:"journal_id,omptempty"`
	LastUpdate                *Time     `xmlrpc:"__last_update,omptempty"`
	PartnerBankAccountId      *Many2One `xmlrpc:"partner_bank_account_id,omptempty"`
	PartnerId                 *Many2One `xmlrpc:"partner_id,omptempty"`
	PaymentDate               *Time     `xmlrpc:"payment_date,omptempty"`
	PaymentMethodId           *Many2One `xmlrpc:"payment_method_id,omptempty"`
	RequirePartnerBankAccount *Bool     `xmlrpc:"require_partner_bank_account,omptempty"`
	ShowPartnerBankAccount    *Bool     `xmlrpc:"show_partner_bank_account,omptempty"`
	WriteDate                 *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid                  *Many2One `xmlrpc:"write_uid,omptempty"`
}

HrExpenseSheetRegisterPaymentWizard represents hr.expense.sheet.register.payment.wizard model.

func (*HrExpenseSheetRegisterPaymentWizard) Many2One

func (hesrpw *HrExpenseSheetRegisterPaymentWizard) Many2One() *Many2One

Many2One convert HrExpenseSheetRegisterPaymentWizard to *Many2One.

type HrExpenseSheetRegisterPaymentWizards

type HrExpenseSheetRegisterPaymentWizards []HrExpenseSheetRegisterPaymentWizard

HrExpenseSheetRegisterPaymentWizards represents array of hr.expense.sheet.register.payment.wizard model.

type HrExpenseSheets

type HrExpenseSheets []HrExpenseSheet

HrExpenseSheets represents array of hr.expense.sheet model.

type HrExpenses

type HrExpenses []HrExpense

HrExpenses represents array of hr.expense model.

type HrHolidaysSummaryEmployee

type HrHolidaysSummaryEmployee struct {
	CreateDate  *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One  `xmlrpc:"create_uid,omptempty"`
	DateFrom    *Time      `xmlrpc:"date_from,omptempty"`
	DisplayName *String    `xmlrpc:"display_name,omptempty"`
	Emp         *Relation  `xmlrpc:"emp,omptempty"`
	HolidayType *Selection `xmlrpc:"holiday_type,omptempty"`
	Id          *Int       `xmlrpc:"id,omptempty"`
	LastUpdate  *Time      `xmlrpc:"__last_update,omptempty"`
	WriteDate   *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One  `xmlrpc:"write_uid,omptempty"`
}

HrHolidaysSummaryEmployee represents hr.holidays.summary.employee model.

func (*HrHolidaysSummaryEmployee) Many2One

func (hhse *HrHolidaysSummaryEmployee) Many2One() *Many2One

Many2One convert HrHolidaysSummaryEmployee to *Many2One.

type HrHolidaysSummaryEmployees

type HrHolidaysSummaryEmployees []HrHolidaysSummaryEmployee

HrHolidaysSummaryEmployees represents array of hr.holidays.summary.employee model.

type HrJob

type HrJob struct {
	AddressId                *Many2One  `xmlrpc:"address_id,omptempty"`
	AliasContact             *Selection `xmlrpc:"alias_contact,omptempty"`
	AliasDefaults            *String    `xmlrpc:"alias_defaults,omptempty"`
	AliasDomain              *String    `xmlrpc:"alias_domain,omptempty"`
	AliasForceThreadId       *Int       `xmlrpc:"alias_force_thread_id,omptempty"`
	AliasId                  *Many2One  `xmlrpc:"alias_id,omptempty"`
	AliasModelId             *Many2One  `xmlrpc:"alias_model_id,omptempty"`
	AliasName                *String    `xmlrpc:"alias_name,omptempty"`
	AliasParentModelId       *Many2One  `xmlrpc:"alias_parent_model_id,omptempty"`
	AliasParentThreadId      *Int       `xmlrpc:"alias_parent_thread_id,omptempty"`
	AliasUserId              *Many2One  `xmlrpc:"alias_user_id,omptempty"`
	ApplicationCount         *Int       `xmlrpc:"application_count,omptempty"`
	ApplicationIds           *Relation  `xmlrpc:"application_ids,omptempty"`
	CanPublish               *Bool      `xmlrpc:"can_publish,omptempty"`
	Color                    *Int       `xmlrpc:"color,omptempty"`
	CompanyId                *Many2One  `xmlrpc:"company_id,omptempty"`
	CreateDate               *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid                *Many2One  `xmlrpc:"create_uid,omptempty"`
	DepartmentId             *Many2One  `xmlrpc:"department_id,omptempty"`
	Description              *String    `xmlrpc:"description,omptempty"`
	DisplayName              *String    `xmlrpc:"display_name,omptempty"`
	DocumentIds              *Relation  `xmlrpc:"document_ids,omptempty"`
	DocumentsCount           *Int       `xmlrpc:"documents_count,omptempty"`
	EmployeeIds              *Relation  `xmlrpc:"employee_ids,omptempty"`
	ExpectedEmployees        *Int       `xmlrpc:"expected_employees,omptempty"`
	FavoriteUserIds          *Relation  `xmlrpc:"favorite_user_ids,omptempty"`
	HrResponsibleId          *Many2One  `xmlrpc:"hr_responsible_id,omptempty"`
	Id                       *Int       `xmlrpc:"id,omptempty"`
	IsFavorite               *Bool      `xmlrpc:"is_favorite,omptempty"`
	IsPublished              *Bool      `xmlrpc:"is_published,omptempty"`
	IsSeoOptimized           *Bool      `xmlrpc:"is_seo_optimized,omptempty"`
	LastUpdate               *Time      `xmlrpc:"__last_update,omptempty"`
	ManagerId                *Many2One  `xmlrpc:"manager_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"`
	NewApplicationCount      *Int       `xmlrpc:"new_application_count,omptempty"`
	NoOfEmployee             *Int       `xmlrpc:"no_of_employee,omptempty"`
	NoOfHiredEmployee        *Int       `xmlrpc:"no_of_hired_employee,omptempty"`
	NoOfRecruitment          *Int       `xmlrpc:"no_of_recruitment,omptempty"`
	Requirements             *String    `xmlrpc:"requirements,omptempty"`
	State                    *Selection `xmlrpc:"state,omptempty"`
	UserId                   *Many2One  `xmlrpc:"user_id,omptempty"`
	WebsiteDescription       *String    `xmlrpc:"website_description,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"`
}

HrJob represents hr.job model.

func (*HrJob) Many2One

func (hj *HrJob) Many2One() *Many2One

Many2One convert HrJob to *Many2One.

type HrJobs

type HrJobs []HrJob

HrJobs represents array of hr.job model.

type HrLeave

type HrLeave 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"`
	CanApprove                  *Bool      `xmlrpc:"can_approve,omptempty"`
	CanReset                    *Bool      `xmlrpc:"can_reset,omptempty"`
	CategoryId                  *Many2One  `xmlrpc:"category_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"`
	DepartmentId                *Many2One  `xmlrpc:"department_id,omptempty"`
	DisplayName                 *String    `xmlrpc:"display_name,omptempty"`
	DurationDisplay             *String    `xmlrpc:"duration_display,omptempty"`
	EmployeeId                  *Many2One  `xmlrpc:"employee_id,omptempty"`
	FirstApproverId             *Many2One  `xmlrpc:"first_approver_id,omptempty"`
	HolidayStatusId             *Many2One  `xmlrpc:"holiday_status_id,omptempty"`
	HolidayType                 *Selection `xmlrpc:"holiday_type,omptempty"`
	Id                          *Int       `xmlrpc:"id,omptempty"`
	LastUpdate                  *Time      `xmlrpc:"__last_update,omptempty"`
	LeaveTypeRequestUnit        *Selection `xmlrpc:"leave_type_request_unit,omptempty"`
	LinkedRequestIds            *Relation  `xmlrpc:"linked_request_ids,omptempty"`
	ManagerId                   *Many2One  `xmlrpc:"manager_id,omptempty"`
	MeetingId                   *Many2One  `xmlrpc:"meeting_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"`
	ModeCompanyId               *Many2One  `xmlrpc:"mode_company_id,omptempty"`
	Name                        *String    `xmlrpc:"name,omptempty"`
	Notes                       *String    `xmlrpc:"notes,omptempty"`
	NumberOfDays                *Float     `xmlrpc:"number_of_days,omptempty"`
	NumberOfDaysDisplay         *Float     `xmlrpc:"number_of_days_display,omptempty"`
	NumberOfHoursDisplay        *Float     `xmlrpc:"number_of_hours_display,omptempty"`
	ParentId                    *Many2One  `xmlrpc:"parent_id,omptempty"`
	PayslipStatus               *Bool      `xmlrpc:"payslip_status,omptempty"`
	ReportNote                  *String    `xmlrpc:"report_note,omptempty"`
	RequestDateFrom             *Time      `xmlrpc:"request_date_from,omptempty"`
	RequestDateFromPeriod       *Selection `xmlrpc:"request_date_from_period,omptempty"`
	RequestDateTo               *Time      `xmlrpc:"request_date_to,omptempty"`
	RequestHourFrom             *Selection `xmlrpc:"request_hour_from,omptempty"`
	RequestHourTo               *Selection `xmlrpc:"request_hour_to,omptempty"`
	RequestUnitCustom           *Bool      `xmlrpc:"request_unit_custom,omptempty"`
	RequestUnitHalf             *Bool      `xmlrpc:"request_unit_half,omptempty"`
	RequestUnitHours            *Bool      `xmlrpc:"request_unit_hours,omptempty"`
	SecondApproverId            *Many2One  `xmlrpc:"second_approver_id,omptempty"`
	State                       *Selection `xmlrpc:"state,omptempty"`
	UserId                      *Many2One  `xmlrpc:"user_id,omptempty"`
	ValidationType              *Selection `xmlrpc:"validation_type,omptempty"`
	WebsiteMessageIds           *Relation  `xmlrpc:"website_message_ids,omptempty"`
	WriteDate                   *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid                    *Many2One  `xmlrpc:"write_uid,omptempty"`
}

HrLeave represents hr.leave model.

func (*HrLeave) Many2One

func (hl *HrLeave) Many2One() *Many2One

Many2One convert HrLeave to *Many2One.

type HrLeaveAllocation

type HrLeaveAllocation struct {
	AccrualLimit                *Int       `xmlrpc:"accrual_limit,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"`
	AllocationType              *Selection `xmlrpc:"allocation_type,omptempty"`
	CanApprove                  *Bool      `xmlrpc:"can_approve,omptempty"`
	CanReset                    *Bool      `xmlrpc:"can_reset,omptempty"`
	CategoryId                  *Many2One  `xmlrpc:"category_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"`
	DepartmentId                *Many2One  `xmlrpc:"department_id,omptempty"`
	DisplayName                 *String    `xmlrpc:"display_name,omptempty"`
	DurationDisplay             *String    `xmlrpc:"duration_display,omptempty"`
	EmployeeId                  *Many2One  `xmlrpc:"employee_id,omptempty"`
	FirstApproverId             *Many2One  `xmlrpc:"first_approver_id,omptempty"`
	HolidayStatusId             *Many2One  `xmlrpc:"holiday_status_id,omptempty"`
	HolidayType                 *Selection `xmlrpc:"holiday_type,omptempty"`
	Id                          *Int       `xmlrpc:"id,omptempty"`
	IntervalNumber              *Int       `xmlrpc:"interval_number,omptempty"`
	IntervalUnit                *Selection `xmlrpc:"interval_unit,omptempty"`
	LastUpdate                  *Time      `xmlrpc:"__last_update,omptempty"`
	LeavesTaken                 *Float     `xmlrpc:"leaves_taken,omptempty"`
	LinkedRequestIds            *Relation  `xmlrpc:"linked_request_ids,omptempty"`
	ManagerId                   *Many2One  `xmlrpc:"manager_id,omptempty"`
	MaxLeaves                   *Float     `xmlrpc:"max_leaves,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"`
	ModeCompanyId               *Many2One  `xmlrpc:"mode_company_id,omptempty"`
	Name                        *String    `xmlrpc:"name,omptempty"`
	Nextcall                    *Time      `xmlrpc:"nextcall,omptempty"`
	Notes                       *String    `xmlrpc:"notes,omptempty"`
	NumberOfDays                *Float     `xmlrpc:"number_of_days,omptempty"`
	NumberOfDaysDisplay         *Float     `xmlrpc:"number_of_days_display,omptempty"`
	NumberOfHoursDisplay        *Float     `xmlrpc:"number_of_hours_display,omptempty"`
	NumberPerInterval           *Float     `xmlrpc:"number_per_interval,omptempty"`
	ParentId                    *Many2One  `xmlrpc:"parent_id,omptempty"`
	SecondApproverId            *Many2One  `xmlrpc:"second_approver_id,omptempty"`
	State                       *Selection `xmlrpc:"state,omptempty"`
	TypeRequestUnit             *Selection `xmlrpc:"type_request_unit,omptempty"`
	UnitPerInterval             *Selection `xmlrpc:"unit_per_interval,omptempty"`
	ValidationType              *Selection `xmlrpc:"validation_type,omptempty"`
	WebsiteMessageIds           *Relation  `xmlrpc:"website_message_ids,omptempty"`
	WriteDate                   *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid                    *Many2One  `xmlrpc:"write_uid,omptempty"`
}

HrLeaveAllocation represents hr.leave.allocation model.

func (*HrLeaveAllocation) Many2One

func (hla *HrLeaveAllocation) Many2One() *Many2One

Many2One convert HrLeaveAllocation to *Many2One.

type HrLeaveAllocations

type HrLeaveAllocations []HrLeaveAllocation

HrLeaveAllocations represents array of hr.leave.allocation model.

type HrLeaveReport

type HrLeaveReport struct {
	CategoryId      *Many2One  `xmlrpc:"category_id,omptempty"`
	DateFrom        *Time      `xmlrpc:"date_from,omptempty"`
	DateTo          *Time      `xmlrpc:"date_to,omptempty"`
	DepartmentId    *Many2One  `xmlrpc:"department_id,omptempty"`
	DisplayName     *String    `xmlrpc:"display_name,omptempty"`
	EmployeeId      *Many2One  `xmlrpc:"employee_id,omptempty"`
	HolidayStatusId *Many2One  `xmlrpc:"holiday_status_id,omptempty"`
	HolidayType     *Selection `xmlrpc:"holiday_type,omptempty"`
	Id              *Int       `xmlrpc:"id,omptempty"`
	LastUpdate      *Time      `xmlrpc:"__last_update,omptempty"`
	LeaveType       *Selection `xmlrpc:"leave_type,omptempty"`
	Name            *String    `xmlrpc:"name,omptempty"`
	NumberOfDays    *Float     `xmlrpc:"number_of_days,omptempty"`
	PayslipStatus   *Bool      `xmlrpc:"payslip_status,omptempty"`
	State           *Selection `xmlrpc:"state,omptempty"`
}

HrLeaveReport represents hr.leave.report model.

func (*HrLeaveReport) Many2One

func (hlr *HrLeaveReport) Many2One() *Many2One

Many2One convert HrLeaveReport to *Many2One.

type HrLeaveReportCalendar

type HrLeaveReportCalendar struct {
	CompanyId     *Many2One  `xmlrpc:"company_id,omptempty"`
	DisplayName   *String    `xmlrpc:"display_name,omptempty"`
	Duration      *Float     `xmlrpc:"duration,omptempty"`
	EmployeeId    *Many2One  `xmlrpc:"employee_id,omptempty"`
	Id            *Int       `xmlrpc:"id,omptempty"`
	LastUpdate    *Time      `xmlrpc:"__last_update,omptempty"`
	Name          *String    `xmlrpc:"name,omptempty"`
	StartDatetime *Time      `xmlrpc:"start_datetime,omptempty"`
	StopDatetime  *Time      `xmlrpc:"stop_datetime,omptempty"`
	Tz            *Selection `xmlrpc:"tz,omptempty"`
}

HrLeaveReportCalendar represents hr.leave.report.calendar model.

func (*HrLeaveReportCalendar) Many2One

func (hlrc *HrLeaveReportCalendar) Many2One() *Many2One

Many2One convert HrLeaveReportCalendar to *Many2One.

type HrLeaveReportCalendars

type HrLeaveReportCalendars []HrLeaveReportCalendar

HrLeaveReportCalendars represents array of hr.leave.report.calendar model.

type HrLeaveReports

type HrLeaveReports []HrLeaveReport

HrLeaveReports represents array of hr.leave.report model.

type HrLeaveType

type HrLeaveType struct {
	Active                   *Bool      `xmlrpc:"active,omptempty"`
	AllocationNotifSubtypeId *Many2One  `xmlrpc:"allocation_notif_subtype_id,omptempty"`
	AllocationType           *Selection `xmlrpc:"allocation_type,omptempty"`
	Code                     *String    `xmlrpc:"code,omptempty"`
	ColorName                *Selection `xmlrpc:"color_name,omptempty"`
	CompanyId                *Many2One  `xmlrpc:"company_id,omptempty"`
	CreateCalendarMeeting    *Bool      `xmlrpc:"create_calendar_meeting,omptempty"`
	CreateDate               *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid                *Many2One  `xmlrpc:"create_uid,omptempty"`
	DisplayName              *String    `xmlrpc:"display_name,omptempty"`
	GroupDaysAllocation      *Float     `xmlrpc:"group_days_allocation,omptempty"`
	GroupDaysLeave           *Float     `xmlrpc:"group_days_leave,omptempty"`
	Id                       *Int       `xmlrpc:"id,omptempty"`
	LastUpdate               *Time      `xmlrpc:"__last_update,omptempty"`
	LeaveNotifSubtypeId      *Many2One  `xmlrpc:"leave_notif_subtype_id,omptempty"`
	LeavesTaken              *Float     `xmlrpc:"leaves_taken,omptempty"`
	MaxLeaves                *Float     `xmlrpc:"max_leaves,omptempty"`
	Name                     *String    `xmlrpc:"name,omptempty"`
	RemainingLeaves          *Float     `xmlrpc:"remaining_leaves,omptempty"`
	RequestUnit              *Selection `xmlrpc:"request_unit,omptempty"`
	ResponsibleId            *Many2One  `xmlrpc:"responsible_id,omptempty"`
	Sequence                 *Int       `xmlrpc:"sequence,omptempty"`
	TimeType                 *Selection `xmlrpc:"time_type,omptempty"`
	Unpaid                   *Bool      `xmlrpc:"unpaid,omptempty"`
	Valid                    *Bool      `xmlrpc:"valid,omptempty"`
	ValidationType           *Selection `xmlrpc:"validation_type,omptempty"`
	ValidityStart            *Time      `xmlrpc:"validity_start,omptempty"`
	ValidityStop             *Time      `xmlrpc:"validity_stop,omptempty"`
	VirtualRemainingLeaves   *Float     `xmlrpc:"virtual_remaining_leaves,omptempty"`
	WriteDate                *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid                 *Many2One  `xmlrpc:"write_uid,omptempty"`
}

HrLeaveType represents hr.leave.type model.

func (*HrLeaveType) Many2One

func (hlt *HrLeaveType) Many2One() *Many2One

Many2One convert HrLeaveType to *Many2One.

type HrLeaveTypes

type HrLeaveTypes []HrLeaveType

HrLeaveTypes represents array of hr.leave.type model.

type HrLeaves

type HrLeaves []HrLeave

HrLeaves represents array of hr.leave model.

type HrPlan

type HrPlan 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"`
	Name                *String   `xmlrpc:"name,omptempty"`
	PlanActivityTypeIds *Relation `xmlrpc:"plan_activity_type_ids,omptempty"`
	WriteDate           *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid            *Many2One `xmlrpc:"write_uid,omptempty"`
}

HrPlan represents hr.plan model.

func (*HrPlan) Many2One

func (hp *HrPlan) Many2One() *Many2One

Many2One convert HrPlan to *Many2One.

type HrPlanActivityType

type HrPlanActivityType struct {
	ActivityTypeId *Many2One  `xmlrpc:"activity_type_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"`
	Note           *String    `xmlrpc:"note,omptempty"`
	Responsible    *Selection `xmlrpc:"responsible,omptempty"`
	ResponsibleId  *Many2One  `xmlrpc:"responsible_id,omptempty"`
	Summary        *String    `xmlrpc:"summary,omptempty"`
	WriteDate      *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid       *Many2One  `xmlrpc:"write_uid,omptempty"`
}

HrPlanActivityType represents hr.plan.activity.type model.

func (*HrPlanActivityType) Many2One

func (hpat *HrPlanActivityType) Many2One() *Many2One

Many2One convert HrPlanActivityType to *Many2One.

type HrPlanActivityTypes

type HrPlanActivityTypes []HrPlanActivityType

HrPlanActivityTypes represents array of hr.plan.activity.type model.

type HrPlanWizard

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

HrPlanWizard represents hr.plan.wizard model.

func (*HrPlanWizard) Many2One

func (hpw *HrPlanWizard) Many2One() *Many2One

Many2One convert HrPlanWizard to *Many2One.

type HrPlanWizards

type HrPlanWizards []HrPlanWizard

HrPlanWizards represents array of hr.plan.wizard model.

type HrPlans

type HrPlans []HrPlan

HrPlans represents array of hr.plan model.

type HrRecruitmentDegree

type HrRecruitmentDegree 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"`
	Sequence    *Int      `xmlrpc:"sequence,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

HrRecruitmentDegree represents hr.recruitment.degree model.

func (*HrRecruitmentDegree) Many2One

func (hrd *HrRecruitmentDegree) Many2One() *Many2One

Many2One convert HrRecruitmentDegree to *Many2One.

type HrRecruitmentDegrees

type HrRecruitmentDegrees []HrRecruitmentDegree

HrRecruitmentDegrees represents array of hr.recruitment.degree model.

type HrRecruitmentSource

type HrRecruitmentSource struct {
	AliasId     *Many2One `xmlrpc:"alias_id,omptempty"`
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Email       *String   `xmlrpc:"email,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	JobId       *Many2One `xmlrpc:"job_id,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	Name        *String   `xmlrpc:"name,omptempty"`
	SourceId    *Many2One `xmlrpc:"source_id,omptempty"`
	Url         *String   `xmlrpc:"url,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

HrRecruitmentSource represents hr.recruitment.source model.

func (*HrRecruitmentSource) Many2One

func (hrs *HrRecruitmentSource) Many2One() *Many2One

Many2One convert HrRecruitmentSource to *Many2One.

type HrRecruitmentSources

type HrRecruitmentSources []HrRecruitmentSource

HrRecruitmentSources represents array of hr.recruitment.source model.

type HrRecruitmentStage

type HrRecruitmentStage struct {
	CreateDate    *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid     *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName   *String   `xmlrpc:"display_name,omptempty"`
	Fold          *Bool     `xmlrpc:"fold,omptempty"`
	Id            *Int      `xmlrpc:"id,omptempty"`
	JobIds        *Relation `xmlrpc:"job_ids,omptempty"`
	LastUpdate    *Time     `xmlrpc:"__last_update,omptempty"`
	LegendBlocked *String   `xmlrpc:"legend_blocked,omptempty"`
	LegendDone    *String   `xmlrpc:"legend_done,omptempty"`
	LegendNormal  *String   `xmlrpc:"legend_normal,omptempty"`
	Name          *String   `xmlrpc:"name,omptempty"`
	Requirements  *String   `xmlrpc:"requirements,omptempty"`
	Sequence      *Int      `xmlrpc:"sequence,omptempty"`
	TemplateId    *Many2One `xmlrpc:"template_id,omptempty"`
	WriteDate     *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid      *Many2One `xmlrpc:"write_uid,omptempty"`
}

HrRecruitmentStage represents hr.recruitment.stage model.

func (*HrRecruitmentStage) Many2One

func (hrs *HrRecruitmentStage) Many2One() *Many2One

Many2One convert HrRecruitmentStage to *Many2One.

type HrRecruitmentStages

type HrRecruitmentStages []HrRecruitmentStage

HrRecruitmentStages represents array of hr.recruitment.stage model.

type IapAccount

type IapAccount struct {
	AccountToken *String   `xmlrpc:"account_token,omptempty"`
	CompanyIds   *Relation `xmlrpc:"company_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"`
	ServiceName  *String   `xmlrpc:"service_name,omptempty"`
	WriteDate    *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid     *Many2One `xmlrpc:"write_uid,omptempty"`
}

IapAccount represents iap.account model.

func (*IapAccount) Many2One

func (ia *IapAccount) Many2One() *Many2One

Many2One convert IapAccount to *Many2One.

type IapAccounts

type IapAccounts []IapAccount

IapAccounts represents array of iap.account model.

type ImLivechatChannel

type ImLivechatChannel struct {
	AreYouInside                 *Bool     `xmlrpc:"are_you_inside,omptempty"`
	ButtonText                   *String   `xmlrpc:"button_text,omptempty"`
	CanPublish                   *Bool     `xmlrpc:"can_publish,omptempty"`
	ChannelIds                   *Relation `xmlrpc:"channel_ids,omptempty"`
	CreateDate                   *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid                    *Many2One `xmlrpc:"create_uid,omptempty"`
	DefaultMessage               *String   `xmlrpc:"default_message,omptempty"`
	DisplayName                  *String   `xmlrpc:"display_name,omptempty"`
	Id                           *Int      `xmlrpc:"id,omptempty"`
	Image128                     *String   `xmlrpc:"image_128,omptempty"`
	InputPlaceholder             *String   `xmlrpc:"input_placeholder,omptempty"`
	IsPublished                  *Bool     `xmlrpc:"is_published,omptempty"`
	LastUpdate                   *Time     `xmlrpc:"__last_update,omptempty"`
	Name                         *String   `xmlrpc:"name,omptempty"`
	NbrChannel                   *Int      `xmlrpc:"nbr_channel,omptempty"`
	RatingIds                    *Relation `xmlrpc:"rating_ids,omptempty"`
	RatingPercentageSatisfaction *Int      `xmlrpc:"rating_percentage_satisfaction,omptempty"`
	RuleIds                      *Relation `xmlrpc:"rule_ids,omptempty"`
	ScriptExternal               *String   `xmlrpc:"script_external,omptempty"`
	UserIds                      *Relation `xmlrpc:"user_ids,omptempty"`
	WebPage                      *String   `xmlrpc:"web_page,omptempty"`
	WebsiteDescription           *String   `xmlrpc:"website_description,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"`
}

ImLivechatChannel represents im_livechat.channel model.

func (*ImLivechatChannel) Many2One

func (ic *ImLivechatChannel) Many2One() *Many2One

Many2One convert ImLivechatChannel to *Many2One.

type ImLivechatChannelRule

type ImLivechatChannelRule struct {
	Action         *Selection `xmlrpc:"action,omptempty"`
	AutoPopupTimer *Int       `xmlrpc:"auto_popup_timer,omptempty"`
	ChannelId      *Many2One  `xmlrpc:"channel_id,omptempty"`
	CountryIds     *Relation  `xmlrpc:"country_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"`
	RegexUrl       *String    `xmlrpc:"regex_url,omptempty"`
	Sequence       *Int       `xmlrpc:"sequence,omptempty"`
	WriteDate      *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid       *Many2One  `xmlrpc:"write_uid,omptempty"`
}

ImLivechatChannelRule represents im_livechat.channel.rule model.

func (*ImLivechatChannelRule) Many2One

func (icr *ImLivechatChannelRule) Many2One() *Many2One

Many2One convert ImLivechatChannelRule to *Many2One.

type ImLivechatChannelRules

type ImLivechatChannelRules []ImLivechatChannelRule

ImLivechatChannelRules represents array of im_livechat.channel.rule model.

type ImLivechatChannels

type ImLivechatChannels []ImLivechatChannel

ImLivechatChannels represents array of im_livechat.channel model.

type ImLivechatReportChannel

type ImLivechatReportChannel struct {
	ChannelId         *Many2One `xmlrpc:"channel_id,omptempty"`
	ChannelName       *String   `xmlrpc:"channel_name,omptempty"`
	CountryId         *Many2One `xmlrpc:"country_id,omptempty"`
	DayNumber         *String   `xmlrpc:"day_number,omptempty"`
	DaysOfActivity    *Int      `xmlrpc:"days_of_activity,omptempty"`
	DisplayName       *String   `xmlrpc:"display_name,omptempty"`
	Duration          *Float    `xmlrpc:"duration,omptempty"`
	Id                *Int      `xmlrpc:"id,omptempty"`
	IsAnonymous       *Int      `xmlrpc:"is_anonymous,omptempty"`
	IsHappy           *Int      `xmlrpc:"is_happy,omptempty"`
	IsUnrated         *Int      `xmlrpc:"is_unrated,omptempty"`
	IsWithoutAnswer   *Int      `xmlrpc:"is_without_answer,omptempty"`
	LastUpdate        *Time     `xmlrpc:"__last_update,omptempty"`
	LivechatChannelId *Many2One `xmlrpc:"livechat_channel_id,omptempty"`
	NbrMessage        *Int      `xmlrpc:"nbr_message,omptempty"`
	NbrSpeaker        *Int      `xmlrpc:"nbr_speaker,omptempty"`
	PartnerId         *Many2One `xmlrpc:"partner_id,omptempty"`
	Rating            *Int      `xmlrpc:"rating,omptempty"`
	RatingText        *String   `xmlrpc:"rating_text,omptempty"`
	StartDate         *Time     `xmlrpc:"start_date,omptempty"`
	StartDateHour     *String   `xmlrpc:"start_date_hour,omptempty"`
	StartHour         *String   `xmlrpc:"start_hour,omptempty"`
	TechnicalName     *String   `xmlrpc:"technical_name,omptempty"`
	TimeToAnswer      *Float    `xmlrpc:"time_to_answer,omptempty"`
	Uuid              *String   `xmlrpc:"uuid,omptempty"`
}

ImLivechatReportChannel represents im_livechat.report.channel model.

func (*ImLivechatReportChannel) Many2One

func (irc *ImLivechatReportChannel) Many2One() *Many2One

Many2One convert ImLivechatReportChannel to *Many2One.

type ImLivechatReportChannels

type ImLivechatReportChannels []ImLivechatReportChannel

ImLivechatReportChannels represents array of im_livechat.report.channel model.

type ImLivechatReportOperator

type ImLivechatReportOperator struct {
	ChannelId         *Many2One `xmlrpc:"channel_id,omptempty"`
	DisplayName       *String   `xmlrpc:"display_name,omptempty"`
	Duration          *Float    `xmlrpc:"duration,omptempty"`
	Id                *Int      `xmlrpc:"id,omptempty"`
	LastUpdate        *Time     `xmlrpc:"__last_update,omptempty"`
	LivechatChannelId *Many2One `xmlrpc:"livechat_channel_id,omptempty"`
	NbrChannel        *Int      `xmlrpc:"nbr_channel,omptempty"`
	PartnerId         *Many2One `xmlrpc:"partner_id,omptempty"`
	StartDate         *Time     `xmlrpc:"start_date,omptempty"`
	TimeToAnswer      *Float    `xmlrpc:"time_to_answer,omptempty"`
}

ImLivechatReportOperator represents im_livechat.report.operator model.

func (*ImLivechatReportOperator) Many2One

func (iro *ImLivechatReportOperator) Many2One() *Many2One

Many2One convert ImLivechatReportOperator to *Many2One.

type ImLivechatReportOperators

type ImLivechatReportOperators []ImLivechatReportOperator

ImLivechatReportOperators represents array of im_livechat.report.operator model.

type ImageMixin

type ImageMixin struct {
	DisplayName *String `xmlrpc:"display_name,omptempty"`
	Id          *Int    `xmlrpc:"id,omptempty"`
	Image1024   *String `xmlrpc:"image_1024,omptempty"`
	Image128    *String `xmlrpc:"image_128,omptempty"`
	Image1920   *String `xmlrpc:"image_1920,omptempty"`
	Image256    *String `xmlrpc:"image_256,omptempty"`
	Image512    *String `xmlrpc:"image_512,omptempty"`
	LastUpdate  *Time   `xmlrpc:"__last_update,omptempty"`
}

ImageMixin represents image.mixin model.

func (*ImageMixin) Many2One

func (im *ImageMixin) Many2One() *Many2One

Many2One convert ImageMixin to *Many2One.

type ImageMixins

type ImageMixins []ImageMixin

ImageMixins represents array of image.mixin model.

type Int

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

Int is an int64 wrapper

func NewInt

func NewInt(v int64) *Int

NewInt creates a new *Int.

func (*Int) Get

func (i *Int) Get() int64

Get *Int value.

type IrActionsActUrl

type IrActionsActUrl struct {
	BindingModelId   *Many2One  `xmlrpc:"binding_model_id,omptempty"`
	BindingType      *Selection `xmlrpc:"binding_type,omptempty"`
	BindingViewTypes *String    `xmlrpc:"binding_view_types,omptempty"`
	CreateDate       *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid        *Many2One  `xmlrpc:"create_uid,omptempty"`
	DisplayName      *String    `xmlrpc:"display_name,omptempty"`
	Help             *String    `xmlrpc:"help,omptempty"`
	Id               *Int       `xmlrpc:"id,omptempty"`
	LastUpdate       *Time      `xmlrpc:"__last_update,omptempty"`
	Name             *String    `xmlrpc:"name,omptempty"`
	Target           *Selection `xmlrpc:"target,omptempty"`
	Type             *String    `xmlrpc:"type,omptempty"`
	Url              *String    `xmlrpc:"url,omptempty"`
	WriteDate        *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid         *Many2One  `xmlrpc:"write_uid,omptempty"`
	XmlId            *String    `xmlrpc:"xml_id,omptempty"`
}

IrActionsActUrl represents ir.actions.act_url model.

func (*IrActionsActUrl) Many2One

func (iaa *IrActionsActUrl) Many2One() *Many2One

Many2One convert IrActionsActUrl to *Many2One.

type IrActionsActUrls

type IrActionsActUrls []IrActionsActUrl

IrActionsActUrls represents array of ir.actions.act_url model.

type IrActionsActWindow

type IrActionsActWindow struct {
	BindingModelId   *Many2One  `xmlrpc:"binding_model_id,omptempty"`
	BindingType      *Selection `xmlrpc:"binding_type,omptempty"`
	BindingViewTypes *String    `xmlrpc:"binding_view_types,omptempty"`
	Context          *String    `xmlrpc:"context,omptempty"`
	CreateDate       *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid        *Many2One  `xmlrpc:"create_uid,omptempty"`
	DisplayName      *String    `xmlrpc:"display_name,omptempty"`
	Domain           *String    `xmlrpc:"domain,omptempty"`
	Filter           *Bool      `xmlrpc:"filter,omptempty"`
	GroupsId         *Relation  `xmlrpc:"groups_id,omptempty"`
	Help             *String    `xmlrpc:"help,omptempty"`
	Id               *Int       `xmlrpc:"id,omptempty"`
	LastUpdate       *Time      `xmlrpc:"__last_update,omptempty"`
	Limit            *Int       `xmlrpc:"limit,omptempty"`
	Name             *String    `xmlrpc:"name,omptempty"`
	ResId            *Int       `xmlrpc:"res_id,omptempty"`
	ResModel         *String    `xmlrpc:"res_model,omptempty"`
	SearchView       *String    `xmlrpc:"search_view,omptempty"`
	SearchViewId     *Many2One  `xmlrpc:"search_view_id,omptempty"`
	Target           *Selection `xmlrpc:"target,omptempty"`
	Type             *String    `xmlrpc:"type,omptempty"`
	Usage            *String    `xmlrpc:"usage,omptempty"`
	ViewId           *Many2One  `xmlrpc:"view_id,omptempty"`
	ViewIds          *Relation  `xmlrpc:"view_ids,omptempty"`
	ViewMode         *String    `xmlrpc:"view_mode,omptempty"`
	Views            *String    `xmlrpc:"views,omptempty"`
	WriteDate        *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid         *Many2One  `xmlrpc:"write_uid,omptempty"`
	XmlId            *String    `xmlrpc:"xml_id,omptempty"`
}

IrActionsActWindow represents ir.actions.act_window model.

func (*IrActionsActWindow) Many2One

func (iaa *IrActionsActWindow) Many2One() *Many2One

Many2One convert IrActionsActWindow to *Many2One.

type IrActionsActWindowClose

type IrActionsActWindowClose struct {
	BindingModelId   *Many2One  `xmlrpc:"binding_model_id,omptempty"`
	BindingType      *Selection `xmlrpc:"binding_type,omptempty"`
	BindingViewTypes *String    `xmlrpc:"binding_view_types,omptempty"`
	CreateDate       *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid        *Many2One  `xmlrpc:"create_uid,omptempty"`
	DisplayName      *String    `xmlrpc:"display_name,omptempty"`
	Help             *String    `xmlrpc:"help,omptempty"`
	Id               *Int       `xmlrpc:"id,omptempty"`
	LastUpdate       *Time      `xmlrpc:"__last_update,omptempty"`
	Name             *String    `xmlrpc:"name,omptempty"`
	Type             *String    `xmlrpc:"type,omptempty"`
	WriteDate        *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid         *Many2One  `xmlrpc:"write_uid,omptempty"`
	XmlId            *String    `xmlrpc:"xml_id,omptempty"`
}

IrActionsActWindowClose represents ir.actions.act_window_close model.

func (*IrActionsActWindowClose) Many2One

func (iaa *IrActionsActWindowClose) Many2One() *Many2One

Many2One convert IrActionsActWindowClose to *Many2One.

type IrActionsActWindowCloses

type IrActionsActWindowCloses []IrActionsActWindowClose

IrActionsActWindowCloses represents array of ir.actions.act_window_close model.

type IrActionsActWindowView

type IrActionsActWindowView struct {
	ActWindowId *Many2One  `xmlrpc:"act_window_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"`
	Multi       *Bool      `xmlrpc:"multi,omptempty"`
	Sequence    *Int       `xmlrpc:"sequence,omptempty"`
	ViewId      *Many2One  `xmlrpc:"view_id,omptempty"`
	ViewMode    *Selection `xmlrpc:"view_mode,omptempty"`
	WriteDate   *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One  `xmlrpc:"write_uid,omptempty"`
}

IrActionsActWindowView represents ir.actions.act_window.view model.

func (*IrActionsActWindowView) Many2One

func (iaav *IrActionsActWindowView) Many2One() *Many2One

Many2One convert IrActionsActWindowView to *Many2One.

type IrActionsActWindowViews

type IrActionsActWindowViews []IrActionsActWindowView

IrActionsActWindowViews represents array of ir.actions.act_window.view model.

type IrActionsActWindows

type IrActionsActWindows []IrActionsActWindow

IrActionsActWindows represents array of ir.actions.act_window model.

type IrActionsActions

type IrActionsActions struct {
	BindingModelId   *Many2One  `xmlrpc:"binding_model_id,omptempty"`
	BindingType      *Selection `xmlrpc:"binding_type,omptempty"`
	BindingViewTypes *String    `xmlrpc:"binding_view_types,omptempty"`
	CreateDate       *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid        *Many2One  `xmlrpc:"create_uid,omptempty"`
	DisplayName      *String    `xmlrpc:"display_name,omptempty"`
	Help             *String    `xmlrpc:"help,omptempty"`
	Id               *Int       `xmlrpc:"id,omptempty"`
	LastUpdate       *Time      `xmlrpc:"__last_update,omptempty"`
	Name             *String    `xmlrpc:"name,omptempty"`
	Type             *String    `xmlrpc:"type,omptempty"`
	WriteDate        *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid         *Many2One  `xmlrpc:"write_uid,omptempty"`
	XmlId            *String    `xmlrpc:"xml_id,omptempty"`
}

IrActionsActions represents ir.actions.actions model.

func (*IrActionsActions) Many2One

func (iaa *IrActionsActions) Many2One() *Many2One

Many2One convert IrActionsActions to *Many2One.

type IrActionsActionss

type IrActionsActionss []IrActionsActions

IrActionsActionss represents array of ir.actions.actions model.

type IrActionsClient

type IrActionsClient struct {
	BindingModelId   *Many2One  `xmlrpc:"binding_model_id,omptempty"`
	BindingType      *Selection `xmlrpc:"binding_type,omptempty"`
	BindingViewTypes *String    `xmlrpc:"binding_view_types,omptempty"`
	Context          *String    `xmlrpc:"context,omptempty"`
	CreateDate       *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid        *Many2One  `xmlrpc:"create_uid,omptempty"`
	DisplayName      *String    `xmlrpc:"display_name,omptempty"`
	Help             *String    `xmlrpc:"help,omptempty"`
	Id               *Int       `xmlrpc:"id,omptempty"`
	LastUpdate       *Time      `xmlrpc:"__last_update,omptempty"`
	Name             *String    `xmlrpc:"name,omptempty"`
	Params           *String    `xmlrpc:"params,omptempty"`
	ParamsStore      *String    `xmlrpc:"params_store,omptempty"`
	ResModel         *String    `xmlrpc:"res_model,omptempty"`
	Tag              *String    `xmlrpc:"tag,omptempty"`
	Target           *Selection `xmlrpc:"target,omptempty"`
	Type             *String    `xmlrpc:"type,omptempty"`
	WriteDate        *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid         *Many2One  `xmlrpc:"write_uid,omptempty"`
	XmlId            *String    `xmlrpc:"xml_id,omptempty"`
}

IrActionsClient represents ir.actions.client model.

func (*IrActionsClient) Many2One

func (iac *IrActionsClient) Many2One() *Many2One

Many2One convert IrActionsClient to *Many2One.

type IrActionsClients

type IrActionsClients []IrActionsClient

IrActionsClients represents array of ir.actions.client model.

type IrActionsReport

type IrActionsReport struct {
	Attachment       *String    `xmlrpc:"attachment,omptempty"`
	AttachmentUse    *Bool      `xmlrpc:"attachment_use,omptempty"`
	BindingModelId   *Many2One  `xmlrpc:"binding_model_id,omptempty"`
	BindingType      *Selection `xmlrpc:"binding_type,omptempty"`
	BindingViewTypes *String    `xmlrpc:"binding_view_types,omptempty"`
	CreateDate       *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid        *Many2One  `xmlrpc:"create_uid,omptempty"`
	DisplayName      *String    `xmlrpc:"display_name,omptempty"`
	GroupsId         *Relation  `xmlrpc:"groups_id,omptempty"`
	Help             *String    `xmlrpc:"help,omptempty"`
	Id               *Int       `xmlrpc:"id,omptempty"`
	LastUpdate       *Time      `xmlrpc:"__last_update,omptempty"`
	Model            *String    `xmlrpc:"model,omptempty"`
	ModelId          *Many2One  `xmlrpc:"model_id,omptempty"`
	Multi            *Bool      `xmlrpc:"multi,omptempty"`
	Name             *String    `xmlrpc:"name,omptempty"`
	PaperformatId    *Many2One  `xmlrpc:"paperformat_id,omptempty"`
	PrintReportName  *String    `xmlrpc:"print_report_name,omptempty"`
	ReportFile       *String    `xmlrpc:"report_file,omptempty"`
	ReportName       *String    `xmlrpc:"report_name,omptempty"`
	ReportType       *Selection `xmlrpc:"report_type,omptempty"`
	Type             *String    `xmlrpc:"type,omptempty"`
	WriteDate        *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid         *Many2One  `xmlrpc:"write_uid,omptempty"`
	XmlId            *String    `xmlrpc:"xml_id,omptempty"`
}

IrActionsReport represents ir.actions.report model.

func (*IrActionsReport) Many2One

func (iar *IrActionsReport) Many2One() *Many2One

Many2One convert IrActionsReport to *Many2One.

type IrActionsReports

type IrActionsReports []IrActionsReport

IrActionsReports represents array of ir.actions.report model.

type IrActionsServer

type IrActionsServer struct {
	ActivityDateDeadlineRange     *Int       `xmlrpc:"activity_date_deadline_range,omptempty"`
	ActivityDateDeadlineRangeType *Selection `xmlrpc:"activity_date_deadline_range_type,omptempty"`
	ActivityNote                  *String    `xmlrpc:"activity_note,omptempty"`
	ActivitySummary               *String    `xmlrpc:"activity_summary,omptempty"`
	ActivityTypeId                *Many2One  `xmlrpc:"activity_type_id,omptempty"`
	ActivityUserFieldName         *String    `xmlrpc:"activity_user_field_name,omptempty"`
	ActivityUserId                *Many2One  `xmlrpc:"activity_user_id,omptempty"`
	ActivityUserType              *Selection `xmlrpc:"activity_user_type,omptempty"`
	BindingModelId                *Many2One  `xmlrpc:"binding_model_id,omptempty"`
	BindingType                   *Selection `xmlrpc:"binding_type,omptempty"`
	BindingViewTypes              *String    `xmlrpc:"binding_view_types,omptempty"`
	ChannelIds                    *Relation  `xmlrpc:"channel_ids,omptempty"`
	ChildIds                      *Relation  `xmlrpc:"child_ids,omptempty"`
	Code                          *String    `xmlrpc:"code,omptempty"`
	CreateDate                    *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid                     *Many2One  `xmlrpc:"create_uid,omptempty"`
	CrudModelId                   *Many2One  `xmlrpc:"crud_model_id,omptempty"`
	CrudModelName                 *String    `xmlrpc:"crud_model_name,omptempty"`
	DisplayName                   *String    `xmlrpc:"display_name,omptempty"`
	FieldsLines                   *Relation  `xmlrpc:"fields_lines,omptempty"`
	GroupsId                      *Relation  `xmlrpc:"groups_id,omptempty"`
	Help                          *String    `xmlrpc:"help,omptempty"`
	Id                            *Int       `xmlrpc:"id,omptempty"`
	LastUpdate                    *Time      `xmlrpc:"__last_update,omptempty"`
	LinkFieldId                   *Many2One  `xmlrpc:"link_field_id,omptempty"`
	ModelId                       *Many2One  `xmlrpc:"model_id,omptempty"`
	ModelName                     *String    `xmlrpc:"model_name,omptempty"`
	Name                          *String    `xmlrpc:"name,omptempty"`
	PartnerIds                    *Relation  `xmlrpc:"partner_ids,omptempty"`
	Sequence                      *Int       `xmlrpc:"sequence,omptempty"`
	SmsMassKeepLog                *Bool      `xmlrpc:"sms_mass_keep_log,omptempty"`
	SmsTemplateId                 *Many2One  `xmlrpc:"sms_template_id,omptempty"`
	State                         *Selection `xmlrpc:"state,omptempty"`
	TemplateId                    *Many2One  `xmlrpc:"template_id,omptempty"`
	Type                          *String    `xmlrpc:"type,omptempty"`
	Usage                         *Selection `xmlrpc:"usage,omptempty"`
	WebsitePath                   *String    `xmlrpc:"website_path,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"`
	XmlId                         *String    `xmlrpc:"xml_id,omptempty"`
}

IrActionsServer represents ir.actions.server model.

func (*IrActionsServer) Many2One

func (ias *IrActionsServer) Many2One() *Many2One

Many2One convert IrActionsServer to *Many2One.

type IrActionsServers

type IrActionsServers []IrActionsServer

IrActionsServers represents array of ir.actions.server model.

type IrActionsTodo

type IrActionsTodo struct {
	ActionId    *Many2One  `xmlrpc:"action_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"`
	Sequence    *Int       `xmlrpc:"sequence,omptempty"`
	State       *Selection `xmlrpc:"state,omptempty"`
	WriteDate   *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One  `xmlrpc:"write_uid,omptempty"`
}

IrActionsTodo represents ir.actions.todo model.

func (*IrActionsTodo) Many2One

func (iat *IrActionsTodo) Many2One() *Many2One

Many2One convert IrActionsTodo to *Many2One.

type IrActionsTodos

type IrActionsTodos []IrActionsTodo

IrActionsTodos represents array of ir.actions.todo model.

type IrAttachment

type IrAttachment struct {
	AccessToken     *String    `xmlrpc:"access_token,omptempty"`
	Checksum        *String    `xmlrpc:"checksum,omptempty"`
	CompanyId       *Many2One  `xmlrpc:"company_id,omptempty"`
	CreateDate      *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid       *Many2One  `xmlrpc:"create_uid,omptempty"`
	Datas           *String    `xmlrpc:"datas,omptempty"`
	DbDatas         *String    `xmlrpc:"db_datas,omptempty"`
	Description     *String    `xmlrpc:"description,omptempty"`
	DisplayName     *String    `xmlrpc:"display_name,omptempty"`
	FileSize        *Int       `xmlrpc:"file_size,omptempty"`
	Id              *Int       `xmlrpc:"id,omptempty"`
	ImageHeight     *Int       `xmlrpc:"image_height,omptempty"`
	ImageSrc        *String    `xmlrpc:"image_src,omptempty"`
	ImageWidth      *Int       `xmlrpc:"image_width,omptempty"`
	IndexContent    *String    `xmlrpc:"index_content,omptempty"`
	Key             *String    `xmlrpc:"key,omptempty"`
	LastUpdate      *Time      `xmlrpc:"__last_update,omptempty"`
	LocalUrl        *String    `xmlrpc:"local_url,omptempty"`
	Mimetype        *String    `xmlrpc:"mimetype,omptempty"`
	Name            *String    `xmlrpc:"name,omptempty"`
	Public          *Bool      `xmlrpc:"public,omptempty"`
	ResField        *String    `xmlrpc:"res_field,omptempty"`
	ResId           *Many2One  `xmlrpc:"res_id,omptempty"`
	ResModel        *String    `xmlrpc:"res_model,omptempty"`
	ResName         *String    `xmlrpc:"res_name,omptempty"`
	StoreFname      *String    `xmlrpc:"store_fname,omptempty"`
	ThemeTemplateId *Many2One  `xmlrpc:"theme_template_id,omptempty"`
	Type            *Selection `xmlrpc:"type,omptempty"`
	Url             *String    `xmlrpc:"url,omptempty"`
	WebsiteId       *Many2One  `xmlrpc:"website_id,omptempty"`
	WebsiteUrl      *String    `xmlrpc:"website_url,omptempty"`
	WriteDate       *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid        *Many2One  `xmlrpc:"write_uid,omptempty"`
}

IrAttachment represents ir.attachment model.

func (*IrAttachment) Many2One

func (ia *IrAttachment) Many2One() *Many2One

Many2One convert IrAttachment to *Many2One.

type IrAttachments

type IrAttachments []IrAttachment

IrAttachments represents array of ir.attachment model.

type IrAutovacuum

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

IrAutovacuum represents ir.autovacuum model.

func (*IrAutovacuum) Many2One

func (ia *IrAutovacuum) Many2One() *Many2One

Many2One convert IrAutovacuum to *Many2One.

type IrAutovacuums

type IrAutovacuums []IrAutovacuum

IrAutovacuums represents array of ir.autovacuum model.

type IrConfigParameter

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

IrConfigParameter represents ir.config_parameter model.

func (*IrConfigParameter) Many2One

func (ic *IrConfigParameter) Many2One() *Many2One

Many2One convert IrConfigParameter to *Many2One.

type IrConfigParameters

type IrConfigParameters []IrConfigParameter

IrConfigParameters represents array of ir.config_parameter model.

type IrCron

type IrCron struct {
	Active                        *Bool      `xmlrpc:"active,omptempty"`
	ActivityDateDeadlineRange     *Int       `xmlrpc:"activity_date_deadline_range,omptempty"`
	ActivityDateDeadlineRangeType *Selection `xmlrpc:"activity_date_deadline_range_type,omptempty"`
	ActivityNote                  *String    `xmlrpc:"activity_note,omptempty"`
	ActivitySummary               *String    `xmlrpc:"activity_summary,omptempty"`
	ActivityTypeId                *Many2One  `xmlrpc:"activity_type_id,omptempty"`
	ActivityUserFieldName         *String    `xmlrpc:"activity_user_field_name,omptempty"`
	ActivityUserId                *Many2One  `xmlrpc:"activity_user_id,omptempty"`
	ActivityUserType              *Selection `xmlrpc:"activity_user_type,omptempty"`
	BindingModelId                *Many2One  `xmlrpc:"binding_model_id,omptempty"`
	BindingType                   *Selection `xmlrpc:"binding_type,omptempty"`
	BindingViewTypes              *String    `xmlrpc:"binding_view_types,omptempty"`
	ChannelIds                    *Relation  `xmlrpc:"channel_ids,omptempty"`
	ChildIds                      *Relation  `xmlrpc:"child_ids,omptempty"`
	Code                          *String    `xmlrpc:"code,omptempty"`
	CreateDate                    *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid                     *Many2One  `xmlrpc:"create_uid,omptempty"`
	CronName                      *String    `xmlrpc:"cron_name,omptempty"`
	CrudModelId                   *Many2One  `xmlrpc:"crud_model_id,omptempty"`
	CrudModelName                 *String    `xmlrpc:"crud_model_name,omptempty"`
	DisplayName                   *String    `xmlrpc:"display_name,omptempty"`
	Doall                         *Bool      `xmlrpc:"doall,omptempty"`
	FieldsLines                   *Relation  `xmlrpc:"fields_lines,omptempty"`
	GroupsId                      *Relation  `xmlrpc:"groups_id,omptempty"`
	Help                          *String    `xmlrpc:"help,omptempty"`
	Id                            *Int       `xmlrpc:"id,omptempty"`
	IntervalNumber                *Int       `xmlrpc:"interval_number,omptempty"`
	IntervalType                  *Selection `xmlrpc:"interval_type,omptempty"`
	IrActionsServerId             *Many2One  `xmlrpc:"ir_actions_server_id,omptempty"`
	Lastcall                      *Time      `xmlrpc:"lastcall,omptempty"`
	LastUpdate                    *Time      `xmlrpc:"__last_update,omptempty"`
	LinkFieldId                   *Many2One  `xmlrpc:"link_field_id,omptempty"`
	ModelId                       *Many2One  `xmlrpc:"model_id,omptempty"`
	ModelName                     *String    `xmlrpc:"model_name,omptempty"`
	Name                          *String    `xmlrpc:"name,omptempty"`
	Nextcall                      *Time      `xmlrpc:"nextcall,omptempty"`
	Numbercall                    *Int       `xmlrpc:"numbercall,omptempty"`
	PartnerIds                    *Relation  `xmlrpc:"partner_ids,omptempty"`
	Priority                      *Int       `xmlrpc:"priority,omptempty"`
	Sequence                      *Int       `xmlrpc:"sequence,omptempty"`
	SmsMassKeepLog                *Bool      `xmlrpc:"sms_mass_keep_log,omptempty"`
	SmsTemplateId                 *Many2One  `xmlrpc:"sms_template_id,omptempty"`
	State                         *Selection `xmlrpc:"state,omptempty"`
	TemplateId                    *Many2One  `xmlrpc:"template_id,omptempty"`
	Type                          *String    `xmlrpc:"type,omptempty"`
	Usage                         *Selection `xmlrpc:"usage,omptempty"`
	UserId                        *Many2One  `xmlrpc:"user_id,omptempty"`
	WebsitePath                   *String    `xmlrpc:"website_path,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"`
	XmlId                         *String    `xmlrpc:"xml_id,omptempty"`
}

IrCron represents ir.cron model.

func (*IrCron) Many2One

func (ic *IrCron) Many2One() *Many2One

Many2One convert IrCron to *Many2One.

type IrCrons

type IrCrons []IrCron

IrCrons represents array of ir.cron model.

type IrDefault

type IrDefault struct {
	CompanyId   *Many2One `xmlrpc:"company_id,omptempty"`
	Condition   *String   `xmlrpc:"condition,omptempty"`
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	FieldId     *Many2One `xmlrpc:"field_id,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	JsonValue   *String   `xmlrpc:"json_value,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	UserId      *Many2One `xmlrpc:"user_id,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

IrDefault represents ir.default model.

func (*IrDefault) Many2One

func (ID *IrDefault) Many2One() *Many2One

Many2One convert IrDefault to *Many2One.

type IrDefaults

type IrDefaults []IrDefault

IrDefaults represents array of ir.default model.

type IrDemo

type IrDemo 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"`
}

IrDemo represents ir.demo model.

func (*IrDemo) Many2One

func (ID *IrDemo) Many2One() *Many2One

Many2One convert IrDemo to *Many2One.

type IrDemoFailure

type IrDemoFailure struct {
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Error       *String   `xmlrpc:"error,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	ModuleId    *Many2One `xmlrpc:"module_id,omptempty"`
	WizardId    *Many2One `xmlrpc:"wizard_id,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

IrDemoFailure represents ir.demo_failure model.

func (*IrDemoFailure) Many2One

func (ID *IrDemoFailure) Many2One() *Many2One

Many2One convert IrDemoFailure to *Many2One.

type IrDemoFailureWizard

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

IrDemoFailureWizard represents ir.demo_failure.wizard model.

func (*IrDemoFailureWizard) Many2One

func (idw *IrDemoFailureWizard) Many2One() *Many2One

Many2One convert IrDemoFailureWizard to *Many2One.

type IrDemoFailureWizards

type IrDemoFailureWizards []IrDemoFailureWizard

IrDemoFailureWizards represents array of ir.demo_failure.wizard model.

type IrDemoFailures

type IrDemoFailures []IrDemoFailure

IrDemoFailures represents array of ir.demo_failure model.

type IrDemos

type IrDemos []IrDemo

IrDemos represents array of ir.demo model.

type IrExports

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

IrExports represents ir.exports model.

func (*IrExports) Many2One

func (ie *IrExports) Many2One() *Many2One

Many2One convert IrExports to *Many2One.

type IrExportsLine

type IrExportsLine struct {
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	ExportId    *Many2One `xmlrpc:"export_id,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"`
}

IrExportsLine represents ir.exports.line model.

func (*IrExportsLine) Many2One

func (iel *IrExportsLine) Many2One() *Many2One

Many2One convert IrExportsLine to *Many2One.

type IrExportsLines

type IrExportsLines []IrExportsLine

IrExportsLines represents array of ir.exports.line model.

type IrExportss

type IrExportss []IrExports

IrExportss represents array of ir.exports model.

type IrFieldsConverter

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

IrFieldsConverter represents ir.fields.converter model.

func (*IrFieldsConverter) Many2One

func (ifc *IrFieldsConverter) Many2One() *Many2One

Many2One convert IrFieldsConverter to *Many2One.

type IrFieldsConverters

type IrFieldsConverters []IrFieldsConverter

IrFieldsConverters represents array of ir.fields.converter model.

type IrFilters

type IrFilters struct {
	ActionId    *Many2One  `xmlrpc:"action_id,omptempty"`
	Active      *Bool      `xmlrpc:"active,omptempty"`
	Context     *String    `xmlrpc:"context,omptempty"`
	CreateDate  *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One  `xmlrpc:"create_uid,omptempty"`
	DisplayName *String    `xmlrpc:"display_name,omptempty"`
	Domain      *String    `xmlrpc:"domain,omptempty"`
	Id          *Int       `xmlrpc:"id,omptempty"`
	IsDefault   *Bool      `xmlrpc:"is_default,omptempty"`
	LastUpdate  *Time      `xmlrpc:"__last_update,omptempty"`
	ModelId     *Selection `xmlrpc:"model_id,omptempty"`
	Name        *String    `xmlrpc:"name,omptempty"`
	Sort        *String    `xmlrpc:"sort,omptempty"`
	UserId      *Many2One  `xmlrpc:"user_id,omptempty"`
	WriteDate   *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One  `xmlrpc:"write_uid,omptempty"`
}

IrFilters represents ir.filters model.

func (*IrFilters) Many2One

func (IF *IrFilters) Many2One() *Many2One

Many2One convert IrFilters to *Many2One.

type IrFilterss

type IrFilterss []IrFilters

IrFilterss represents array of ir.filters model.

type IrHttp

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

IrHttp represents ir.http model.

func (*IrHttp) Many2One

func (ih *IrHttp) Many2One() *Many2One

Many2One convert IrHttp to *Many2One.

type IrHttps

type IrHttps []IrHttp

IrHttps represents array of ir.http model.

type IrLogging

type IrLogging struct {
	CreateDate  *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid   *Int       `xmlrpc:"create_uid,omptempty"`
	Dbname      *String    `xmlrpc:"dbname,omptempty"`
	DisplayName *String    `xmlrpc:"display_name,omptempty"`
	Func        *String    `xmlrpc:"func,omptempty"`
	Id          *Int       `xmlrpc:"id,omptempty"`
	LastUpdate  *Time      `xmlrpc:"__last_update,omptempty"`
	Level       *String    `xmlrpc:"level,omptempty"`
	Line        *String    `xmlrpc:"line,omptempty"`
	Message     *String    `xmlrpc:"message,omptempty"`
	Name        *String    `xmlrpc:"name,omptempty"`
	Path        *String    `xmlrpc:"path,omptempty"`
	Type        *Selection `xmlrpc:"type,omptempty"`
	WriteDate   *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid    *Int       `xmlrpc:"write_uid,omptempty"`
}

IrLogging represents ir.logging model.

func (*IrLogging) Many2One

func (il *IrLogging) Many2One() *Many2One

Many2One convert IrLogging to *Many2One.

type IrLoggings

type IrLoggings []IrLogging

IrLoggings represents array of ir.logging model.

type IrMailServer

type IrMailServer 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"`
	Name           *String    `xmlrpc:"name,omptempty"`
	Sequence       *Int       `xmlrpc:"sequence,omptempty"`
	SmtpDebug      *Bool      `xmlrpc:"smtp_debug,omptempty"`
	SmtpEncryption *Selection `xmlrpc:"smtp_encryption,omptempty"`
	SmtpHost       *String    `xmlrpc:"smtp_host,omptempty"`
	SmtpPass       *String    `xmlrpc:"smtp_pass,omptempty"`
	SmtpPort       *Int       `xmlrpc:"smtp_port,omptempty"`
	SmtpUser       *String    `xmlrpc:"smtp_user,omptempty"`
	WriteDate      *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid       *Many2One  `xmlrpc:"write_uid,omptempty"`
}

IrMailServer represents ir.mail_server model.

func (*IrMailServer) Many2One

func (im *IrMailServer) Many2One() *Many2One

Many2One convert IrMailServer to *Many2One.

type IrMailServers

type IrMailServers []IrMailServer

IrMailServers represents array of ir.mail_server model.

type IrModel

type IrModel struct {
	AccessIds                 *Relation  `xmlrpc:"access_ids,omptempty"`
	Count                     *Int       `xmlrpc:"count,omptempty"`
	CreateDate                *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid                 *Many2One  `xmlrpc:"create_uid,omptempty"`
	DisplayName               *String    `xmlrpc:"display_name,omptempty"`
	FieldId                   *Relation  `xmlrpc:"field_id,omptempty"`
	Id                        *Int       `xmlrpc:"id,omptempty"`
	Info                      *String    `xmlrpc:"info,omptempty"`
	InheritedModelIds         *Relation  `xmlrpc:"inherited_model_ids,omptempty"`
	IsMailActivity            *Bool      `xmlrpc:"is_mail_activity,omptempty"`
	IsMailBlacklist           *Bool      `xmlrpc:"is_mail_blacklist,omptempty"`
	IsMailThread              *Bool      `xmlrpc:"is_mail_thread,omptempty"`
	IsMailThreadSms           *Bool      `xmlrpc:"is_mail_thread_sms,omptempty"`
	LastUpdate                *Time      `xmlrpc:"__last_update,omptempty"`
	Model                     *String    `xmlrpc:"model,omptempty"`
	Modules                   *String    `xmlrpc:"modules,omptempty"`
	Name                      *String    `xmlrpc:"name,omptempty"`
	RuleIds                   *Relation  `xmlrpc:"rule_ids,omptempty"`
	State                     *Selection `xmlrpc:"state,omptempty"`
	Transient                 *Bool      `xmlrpc:"transient,omptempty"`
	ViewIds                   *Relation  `xmlrpc:"view_ids,omptempty"`
	WebsiteFormAccess         *Bool      `xmlrpc:"website_form_access,omptempty"`
	WebsiteFormDefaultFieldId *Many2One  `xmlrpc:"website_form_default_field_id,omptempty"`
	WebsiteFormKey            *String    `xmlrpc:"website_form_key,omptempty"`
	WebsiteFormLabel          *String    `xmlrpc:"website_form_label,omptempty"`
	WriteDate                 *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid                  *Many2One  `xmlrpc:"write_uid,omptempty"`
}

IrModel represents ir.model model.

func (*IrModel) Many2One

func (im *IrModel) Many2One() *Many2One

Many2One convert IrModel to *Many2One.

type IrModelAccess

type IrModelAccess struct {
	Active      *Bool     `xmlrpc:"active,omptempty"`
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	GroupId     *Many2One `xmlrpc:"group_id,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	ModelId     *Many2One `xmlrpc:"model_id,omptempty"`
	Name        *String   `xmlrpc:"name,omptempty"`
	PermCreate  *Bool     `xmlrpc:"perm_create,omptempty"`
	PermRead    *Bool     `xmlrpc:"perm_read,omptempty"`
	PermUnlink  *Bool     `xmlrpc:"perm_unlink,omptempty"`
	PermWrite   *Bool     `xmlrpc:"perm_write,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

IrModelAccess represents ir.model.access model.

func (*IrModelAccess) Many2One

func (ima *IrModelAccess) Many2One() *Many2One

Many2One convert IrModelAccess to *Many2One.

type IrModelAccesss

type IrModelAccesss []IrModelAccess

IrModelAccesss represents array of ir.model.access model.

type IrModelConstraint

type IrModelConstraint struct {
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	Definition  *String   `xmlrpc:"definition,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	Message     *String   `xmlrpc:"message,omptempty"`
	Model       *Many2One `xmlrpc:"model,omptempty"`
	Module      *Many2One `xmlrpc:"module,omptempty"`
	Name        *String   `xmlrpc:"name,omptempty"`
	Type        *String   `xmlrpc:"type,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

IrModelConstraint represents ir.model.constraint model.

func (*IrModelConstraint) Many2One

func (imc *IrModelConstraint) Many2One() *Many2One

Many2One convert IrModelConstraint to *Many2One.

type IrModelConstraints

type IrModelConstraints []IrModelConstraint

IrModelConstraints represents array of ir.model.constraint model.

type IrModelData

type IrModelData struct {
	CompleteName *String   `xmlrpc:"complete_name,omptempty"`
	CreateDate   *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid    *Many2One `xmlrpc:"create_uid,omptempty"`
	DateInit     *Time     `xmlrpc:"date_init,omptempty"`
	DateUpdate   *Time     `xmlrpc:"date_update,omptempty"`
	DisplayName  *String   `xmlrpc:"display_name,omptempty"`
	Id           *Int      `xmlrpc:"id,omptempty"`
	LastUpdate   *Time     `xmlrpc:"__last_update,omptempty"`
	Model        *String   `xmlrpc:"model,omptempty"`
	Module       *String   `xmlrpc:"module,omptempty"`
	Name         *String   `xmlrpc:"name,omptempty"`
	Noupdate     *Bool     `xmlrpc:"noupdate,omptempty"`
	Reference    *String   `xmlrpc:"reference,omptempty"`
	ResId        *Int      `xmlrpc:"res_id,omptempty"`
	WriteDate    *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid     *Many2One `xmlrpc:"write_uid,omptempty"`
}

IrModelData represents ir.model.data model.

func (*IrModelData) Many2One

func (imd *IrModelData) Many2One() *Many2One

Many2One convert IrModelData to *Many2One.

type IrModelDatas

type IrModelDatas []IrModelData

IrModelDatas represents array of ir.model.data model.

type IrModelFields

type IrModelFields struct {
	Column1                *String    `xmlrpc:"column1,omptempty"`
	Column2                *String    `xmlrpc:"column2,omptempty"`
	CompleteName           *String    `xmlrpc:"complete_name,omptempty"`
	Compute                *String    `xmlrpc:"compute,omptempty"`
	Copied                 *Bool      `xmlrpc:"copied,omptempty"`
	CreateDate             *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid              *Many2One  `xmlrpc:"create_uid,omptempty"`
	Depends                *String    `xmlrpc:"depends,omptempty"`
	DisplayName            *String    `xmlrpc:"display_name,omptempty"`
	Domain                 *String    `xmlrpc:"domain,omptempty"`
	FieldDescription       *String    `xmlrpc:"field_description,omptempty"`
	Groups                 *Relation  `xmlrpc:"groups,omptempty"`
	Help                   *String    `xmlrpc:"help,omptempty"`
	Id                     *Int       `xmlrpc:"id,omptempty"`
	Index                  *Bool      `xmlrpc:"index,omptempty"`
	LastUpdate             *Time      `xmlrpc:"__last_update,omptempty"`
	Model                  *String    `xmlrpc:"model,omptempty"`
	ModelId                *Many2One  `xmlrpc:"model_id,omptempty"`
	Modules                *String    `xmlrpc:"modules,omptempty"`
	Name                   *String    `xmlrpc:"name,omptempty"`
	OnDelete               *Selection `xmlrpc:"on_delete,omptempty"`
	Readonly               *Bool      `xmlrpc:"readonly,omptempty"`
	Related                *String    `xmlrpc:"related,omptempty"`
	RelatedFieldId         *Many2One  `xmlrpc:"related_field_id,omptempty"`
	Relation               *String    `xmlrpc:"relation,omptempty"`
	RelationField          *String    `xmlrpc:"relation_field,omptempty"`
	RelationFieldId        *Many2One  `xmlrpc:"relation_field_id,omptempty"`
	RelationTable          *String    `xmlrpc:"relation_table,omptempty"`
	Required               *Bool      `xmlrpc:"required,omptempty"`
	Selectable             *Bool      `xmlrpc:"selectable,omptempty"`
	Selection              *String    `xmlrpc:"selection,omptempty"`
	SelectionIds           *Relation  `xmlrpc:"selection_ids,omptempty"`
	Size                   *Int       `xmlrpc:"size,omptempty"`
	State                  *Selection `xmlrpc:"state,omptempty"`
	Store                  *Bool      `xmlrpc:"store,omptempty"`
	Tracking               *Int       `xmlrpc:"tracking,omptempty"`
	Translate              *Bool      `xmlrpc:"translate,omptempty"`
	Ttype                  *Selection `xmlrpc:"ttype,omptempty"`
	WebsiteFormBlacklisted *Bool      `xmlrpc:"website_form_blacklisted,omptempty"`
	WriteDate              *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid               *Many2One  `xmlrpc:"write_uid,omptempty"`
}

IrModelFields represents ir.model.fields model.

func (*IrModelFields) Many2One

func (imf *IrModelFields) Many2One() *Many2One

Many2One convert IrModelFields to *Many2One.

type IrModelFieldsSelection

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

IrModelFieldsSelection represents ir.model.fields.selection model.

func (*IrModelFieldsSelection) Many2One

func (imfs *IrModelFieldsSelection) Many2One() *Many2One

Many2One convert IrModelFieldsSelection to *Many2One.

type IrModelFieldsSelections

type IrModelFieldsSelections []IrModelFieldsSelection

IrModelFieldsSelections represents array of ir.model.fields.selection model.

type IrModelFieldss

type IrModelFieldss []IrModelFields

IrModelFieldss represents array of ir.model.fields model.

type IrModelRelation

type IrModelRelation 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"`
	Model       *Many2One `xmlrpc:"model,omptempty"`
	Module      *Many2One `xmlrpc:"module,omptempty"`
	Name        *String   `xmlrpc:"name,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

IrModelRelation represents ir.model.relation model.

func (*IrModelRelation) Many2One

func (imr *IrModelRelation) Many2One() *Many2One

Many2One convert IrModelRelation to *Many2One.

type IrModelRelations

type IrModelRelations []IrModelRelation

IrModelRelations represents array of ir.model.relation model.

type IrModels

type IrModels []IrModel

IrModels represents array of ir.model model.

type IrModuleCategory

type IrModuleCategory struct {
	ChildIds    *Relation `xmlrpc:"child_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"`
	Exclusive   *Bool     `xmlrpc:"exclusive,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	ModuleIds   *Relation `xmlrpc:"module_ids,omptempty"`
	ModuleNr    *Int      `xmlrpc:"module_nr,omptempty"`
	Name        *String   `xmlrpc:"name,omptempty"`
	ParentId    *Many2One `xmlrpc:"parent_id,omptempty"`
	Sequence    *Int      `xmlrpc:"sequence,omptempty"`
	Visible     *Bool     `xmlrpc:"visible,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
	XmlId       *String   `xmlrpc:"xml_id,omptempty"`
}

IrModuleCategory represents ir.module.category model.

func (*IrModuleCategory) Many2One

func (imc *IrModuleCategory) Many2One() *Many2One

Many2One convert IrModuleCategory to *Many2One.

type IrModuleCategorys

type IrModuleCategorys []IrModuleCategory

IrModuleCategorys represents array of ir.module.category model.

type IrModuleModule

type IrModuleModule struct {
	Application                 *Bool      `xmlrpc:"application,omptempty"`
	Author                      *String    `xmlrpc:"author,omptempty"`
	AutoInstall                 *Bool      `xmlrpc:"auto_install,omptempty"`
	CategoryId                  *Many2One  `xmlrpc:"category_id,omptempty"`
	Contributors                *String    `xmlrpc:"contributors,omptempty"`
	CreateDate                  *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid                   *Many2One  `xmlrpc:"create_uid,omptempty"`
	Demo                        *Bool      `xmlrpc:"demo,omptempty"`
	DependenciesId              *Relation  `xmlrpc:"dependencies_id,omptempty"`
	Description                 *String    `xmlrpc:"description,omptempty"`
	DescriptionHtml             *String    `xmlrpc:"description_html,omptempty"`
	DisplayName                 *String    `xmlrpc:"display_name,omptempty"`
	ExclusionIds                *Relation  `xmlrpc:"exclusion_ids,omptempty"`
	Icon                        *String    `xmlrpc:"icon,omptempty"`
	IconImage                   *String    `xmlrpc:"icon_image,omptempty"`
	Id                          *Int       `xmlrpc:"id,omptempty"`
	ImageIds                    *Relation  `xmlrpc:"image_ids,omptempty"`
	InstalledVersion            *String    `xmlrpc:"installed_version,omptempty"`
	IsInstalledOnCurrentWebsite *Bool      `xmlrpc:"is_installed_on_current_website,omptempty"`
	LastUpdate                  *Time      `xmlrpc:"__last_update,omptempty"`
	LatestVersion               *String    `xmlrpc:"latest_version,omptempty"`
	License                     *Selection `xmlrpc:"license,omptempty"`
	Maintainer                  *String    `xmlrpc:"maintainer,omptempty"`
	MenusByModule               *String    `xmlrpc:"menus_by_module,omptempty"`
	Name                        *String    `xmlrpc:"name,omptempty"`
	PublishedVersion            *String    `xmlrpc:"published_version,omptempty"`
	ReportsByModule             *String    `xmlrpc:"reports_by_module,omptempty"`
	Sequence                    *Int       `xmlrpc:"sequence,omptempty"`
	Shortdesc                   *String    `xmlrpc:"shortdesc,omptempty"`
	State                       *Selection `xmlrpc:"state,omptempty"`
	Summary                     *String    `xmlrpc:"summary,omptempty"`
	ToBuy                       *Bool      `xmlrpc:"to_buy,omptempty"`
	Url                         *String    `xmlrpc:"url,omptempty"`
	ViewsByModule               *String    `xmlrpc:"views_by_module,omptempty"`
	Website                     *String    `xmlrpc:"website,omptempty"`
	WriteDate                   *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid                    *Many2One  `xmlrpc:"write_uid,omptempty"`
}

IrModuleModule represents ir.module.module model.

func (*IrModuleModule) Many2One

func (imm *IrModuleModule) Many2One() *Many2One

Many2One convert IrModuleModule to *Many2One.

type IrModuleModuleDependency

type IrModuleModuleDependency struct {
	AutoInstallRequired *Bool      `xmlrpc:"auto_install_required,omptempty"`
	CreateDate          *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid           *Many2One  `xmlrpc:"create_uid,omptempty"`
	DependId            *Many2One  `xmlrpc:"depend_id,omptempty"`
	DisplayName         *String    `xmlrpc:"display_name,omptempty"`
	Id                  *Int       `xmlrpc:"id,omptempty"`
	LastUpdate          *Time      `xmlrpc:"__last_update,omptempty"`
	ModuleId            *Many2One  `xmlrpc:"module_id,omptempty"`
	Name                *String    `xmlrpc:"name,omptempty"`
	State               *Selection `xmlrpc:"state,omptempty"`
	WriteDate           *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid            *Many2One  `xmlrpc:"write_uid,omptempty"`
}

IrModuleModuleDependency represents ir.module.module.dependency model.

func (*IrModuleModuleDependency) Many2One

func (immd *IrModuleModuleDependency) Many2One() *Many2One

Many2One convert IrModuleModuleDependency to *Many2One.

type IrModuleModuleDependencys

type IrModuleModuleDependencys []IrModuleModuleDependency

IrModuleModuleDependencys represents array of ir.module.module.dependency model.

type IrModuleModuleExclusion

type IrModuleModuleExclusion struct {
	CreateDate  *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One  `xmlrpc:"create_uid,omptempty"`
	DisplayName *String    `xmlrpc:"display_name,omptempty"`
	ExclusionId *Many2One  `xmlrpc:"exclusion_id,omptempty"`
	Id          *Int       `xmlrpc:"id,omptempty"`
	LastUpdate  *Time      `xmlrpc:"__last_update,omptempty"`
	ModuleId    *Many2One  `xmlrpc:"module_id,omptempty"`
	Name        *String    `xmlrpc:"name,omptempty"`
	State       *Selection `xmlrpc:"state,omptempty"`
	WriteDate   *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One  `xmlrpc:"write_uid,omptempty"`
}

IrModuleModuleExclusion represents ir.module.module.exclusion model.

func (*IrModuleModuleExclusion) Many2One

func (imme *IrModuleModuleExclusion) Many2One() *Many2One

Many2One convert IrModuleModuleExclusion to *Many2One.

type IrModuleModuleExclusions

type IrModuleModuleExclusions []IrModuleModuleExclusion

IrModuleModuleExclusions represents array of ir.module.module.exclusion model.

type IrModuleModules

type IrModuleModules []IrModuleModule

IrModuleModules represents array of ir.module.module model.

type IrProperty

type IrProperty 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"`
	FieldsId       *Many2One  `xmlrpc:"fields_id,omptempty"`
	Id             *Int       `xmlrpc:"id,omptempty"`
	LastUpdate     *Time      `xmlrpc:"__last_update,omptempty"`
	Name           *String    `xmlrpc:"name,omptempty"`
	ResId          *String    `xmlrpc:"res_id,omptempty"`
	Type           *Selection `xmlrpc:"type,omptempty"`
	ValueBinary    *String    `xmlrpc:"value_binary,omptempty"`
	ValueDatetime  *Time      `xmlrpc:"value_datetime,omptempty"`
	ValueFloat     *Float     `xmlrpc:"value_float,omptempty"`
	ValueInteger   *Int       `xmlrpc:"value_integer,omptempty"`
	ValueReference *String    `xmlrpc:"value_reference,omptempty"`
	ValueText      *String    `xmlrpc:"value_text,omptempty"`
	WriteDate      *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid       *Many2One  `xmlrpc:"write_uid,omptempty"`
}

IrProperty represents ir.property model.

func (*IrProperty) Many2One

func (ip *IrProperty) Many2One() *Many2One

Many2One convert IrProperty to *Many2One.

type IrPropertys

type IrPropertys []IrProperty

IrPropertys represents array of ir.property model.

type IrQweb

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

IrQweb represents ir.qweb model.

func (*IrQweb) Many2One

func (iq *IrQweb) Many2One() *Many2One

Many2One convert IrQweb to *Many2One.

type IrQwebField

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

IrQwebField represents ir.qweb.field model.

func (*IrQwebField) Many2One

func (iqf *IrQwebField) Many2One() *Many2One

Many2One convert IrQwebField to *Many2One.

type IrQwebFieldBarcode

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

IrQwebFieldBarcode represents ir.qweb.field.barcode model.

func (*IrQwebFieldBarcode) Many2One

func (iqfb *IrQwebFieldBarcode) Many2One() *Many2One

Many2One convert IrQwebFieldBarcode to *Many2One.

type IrQwebFieldBarcodes

type IrQwebFieldBarcodes []IrQwebFieldBarcode

IrQwebFieldBarcodes represents array of ir.qweb.field.barcode model.

type IrQwebFieldContact

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

IrQwebFieldContact represents ir.qweb.field.contact model.

func (*IrQwebFieldContact) Many2One

func (iqfc *IrQwebFieldContact) Many2One() *Many2One

Many2One convert IrQwebFieldContact to *Many2One.

type IrQwebFieldContacts

type IrQwebFieldContacts []IrQwebFieldContact

IrQwebFieldContacts represents array of ir.qweb.field.contact model.

type IrQwebFieldDate

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

IrQwebFieldDate represents ir.qweb.field.date model.

func (*IrQwebFieldDate) Many2One

func (iqfd *IrQwebFieldDate) Many2One() *Many2One

Many2One convert IrQwebFieldDate to *Many2One.

type IrQwebFieldDates

type IrQwebFieldDates []IrQwebFieldDate

IrQwebFieldDates represents array of ir.qweb.field.date model.

type IrQwebFieldDatetime

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

IrQwebFieldDatetime represents ir.qweb.field.datetime model.

func (*IrQwebFieldDatetime) Many2One

func (iqfd *IrQwebFieldDatetime) Many2One() *Many2One

Many2One convert IrQwebFieldDatetime to *Many2One.

type IrQwebFieldDatetimes

type IrQwebFieldDatetimes []IrQwebFieldDatetime

IrQwebFieldDatetimes represents array of ir.qweb.field.datetime model.

type IrQwebFieldDuration

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

IrQwebFieldDuration represents ir.qweb.field.duration model.

func (*IrQwebFieldDuration) Many2One

func (iqfd *IrQwebFieldDuration) Many2One() *Many2One

Many2One convert IrQwebFieldDuration to *Many2One.

type IrQwebFieldDurations

type IrQwebFieldDurations []IrQwebFieldDuration

IrQwebFieldDurations represents array of ir.qweb.field.duration model.

type IrQwebFieldFloat

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

IrQwebFieldFloat represents ir.qweb.field.float model.

func (*IrQwebFieldFloat) Many2One

func (iqff *IrQwebFieldFloat) Many2One() *Many2One

Many2One convert IrQwebFieldFloat to *Many2One.

type IrQwebFieldFloatTime

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

IrQwebFieldFloatTime represents ir.qweb.field.float_time model.

func (*IrQwebFieldFloatTime) Many2One

func (iqff *IrQwebFieldFloatTime) Many2One() *Many2One

Many2One convert IrQwebFieldFloatTime to *Many2One.

type IrQwebFieldFloatTimes

type IrQwebFieldFloatTimes []IrQwebFieldFloatTime

IrQwebFieldFloatTimes represents array of ir.qweb.field.float_time model.

type IrQwebFieldFloats

type IrQwebFieldFloats []IrQwebFieldFloat

IrQwebFieldFloats represents array of ir.qweb.field.float model.

type IrQwebFieldHtml

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

IrQwebFieldHtml represents ir.qweb.field.html model.

func (*IrQwebFieldHtml) Many2One

func (iqfh *IrQwebFieldHtml) Many2One() *Many2One

Many2One convert IrQwebFieldHtml to *Many2One.

type IrQwebFieldHtmls

type IrQwebFieldHtmls []IrQwebFieldHtml

IrQwebFieldHtmls represents array of ir.qweb.field.html model.

type IrQwebFieldImage

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

IrQwebFieldImage represents ir.qweb.field.image model.

func (*IrQwebFieldImage) Many2One

func (iqfi *IrQwebFieldImage) Many2One() *Many2One

Many2One convert IrQwebFieldImage to *Many2One.

type IrQwebFieldImages

type IrQwebFieldImages []IrQwebFieldImage

IrQwebFieldImages represents array of ir.qweb.field.image model.

type IrQwebFieldInteger

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

IrQwebFieldInteger represents ir.qweb.field.integer model.

func (*IrQwebFieldInteger) Many2One

func (iqfi *IrQwebFieldInteger) Many2One() *Many2One

Many2One convert IrQwebFieldInteger to *Many2One.

type IrQwebFieldIntegers

type IrQwebFieldIntegers []IrQwebFieldInteger

IrQwebFieldIntegers represents array of ir.qweb.field.integer model.

type IrQwebFieldMany2Many

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

IrQwebFieldMany2Many represents ir.qweb.field.many2many model.

func (*IrQwebFieldMany2Many) Many2One

func (iqfm *IrQwebFieldMany2Many) Many2One() *Many2One

Many2One convert IrQwebFieldMany2Many to *Many2One.

type IrQwebFieldMany2Manys

type IrQwebFieldMany2Manys []IrQwebFieldMany2Many

IrQwebFieldMany2Manys represents array of ir.qweb.field.many2many model.

type IrQwebFieldMany2One

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

IrQwebFieldMany2One represents ir.qweb.field.many2one model.

func (*IrQwebFieldMany2One) Many2One

func (iqfm *IrQwebFieldMany2One) Many2One() *Many2One

Many2One convert IrQwebFieldMany2One to *Many2One.

type IrQwebFieldMany2Ones

type IrQwebFieldMany2Ones []IrQwebFieldMany2One

IrQwebFieldMany2Ones represents array of ir.qweb.field.many2one model.

type IrQwebFieldMonetary

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

IrQwebFieldMonetary represents ir.qweb.field.monetary model.

func (*IrQwebFieldMonetary) Many2One

func (iqfm *IrQwebFieldMonetary) Many2One() *Many2One

Many2One convert IrQwebFieldMonetary to *Many2One.

type IrQwebFieldMonetarys

type IrQwebFieldMonetarys []IrQwebFieldMonetary

IrQwebFieldMonetarys represents array of ir.qweb.field.monetary model.

type IrQwebFieldQweb

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

IrQwebFieldQweb represents ir.qweb.field.qweb model.

func (*IrQwebFieldQweb) Many2One

func (iqfq *IrQwebFieldQweb) Many2One() *Many2One

Many2One convert IrQwebFieldQweb to *Many2One.

type IrQwebFieldQwebs

type IrQwebFieldQwebs []IrQwebFieldQweb

IrQwebFieldQwebs represents array of ir.qweb.field.qweb model.

type IrQwebFieldRelative

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

IrQwebFieldRelative represents ir.qweb.field.relative model.

func (*IrQwebFieldRelative) Many2One

func (iqfr *IrQwebFieldRelative) Many2One() *Many2One

Many2One convert IrQwebFieldRelative to *Many2One.

type IrQwebFieldRelatives

type IrQwebFieldRelatives []IrQwebFieldRelative

IrQwebFieldRelatives represents array of ir.qweb.field.relative model.

type IrQwebFieldSelection

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

IrQwebFieldSelection represents ir.qweb.field.selection model.

func (*IrQwebFieldSelection) Many2One

func (iqfs *IrQwebFieldSelection) Many2One() *Many2One

Many2One convert IrQwebFieldSelection to *Many2One.

type IrQwebFieldSelections

type IrQwebFieldSelections []IrQwebFieldSelection

IrQwebFieldSelections represents array of ir.qweb.field.selection model.

type IrQwebFieldText

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

IrQwebFieldText represents ir.qweb.field.text model.

func (*IrQwebFieldText) Many2One

func (iqft *IrQwebFieldText) Many2One() *Many2One

Many2One convert IrQwebFieldText to *Many2One.

type IrQwebFieldTexts

type IrQwebFieldTexts []IrQwebFieldText

IrQwebFieldTexts represents array of ir.qweb.field.text model.

type IrQwebFields

type IrQwebFields []IrQwebField

IrQwebFields represents array of ir.qweb.field model.

type IrQwebs

type IrQwebs []IrQweb

IrQwebs represents array of ir.qweb model.

type IrRule

type IrRule struct {
	Active      *Bool     `xmlrpc:"active,omptempty"`
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	DomainForce *String   `xmlrpc:"domain_force,omptempty"`
	Global      *Bool     `xmlrpc:"global,omptempty"`
	Groups      *Relation `xmlrpc:"groups,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	ModelId     *Many2One `xmlrpc:"model_id,omptempty"`
	Name        *String   `xmlrpc:"name,omptempty"`
	PermCreate  *Bool     `xmlrpc:"perm_create,omptempty"`
	PermRead    *Bool     `xmlrpc:"perm_read,omptempty"`
	PermUnlink  *Bool     `xmlrpc:"perm_unlink,omptempty"`
	PermWrite   *Bool     `xmlrpc:"perm_write,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

IrRule represents ir.rule model.

func (*IrRule) Many2One

func (ir *IrRule) Many2One() *Many2One

Many2One convert IrRule to *Many2One.

type IrRules

type IrRules []IrRule

IrRules represents array of ir.rule model.

type IrSequence

type IrSequence struct {
	Active           *Bool      `xmlrpc:"active,omptempty"`
	Code             *String    `xmlrpc:"code,omptempty"`
	CompanyId        *Many2One  `xmlrpc:"company_id,omptempty"`
	CreateDate       *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid        *Many2One  `xmlrpc:"create_uid,omptempty"`
	DateRangeIds     *Relation  `xmlrpc:"date_range_ids,omptempty"`
	DisplayName      *String    `xmlrpc:"display_name,omptempty"`
	Id               *Int       `xmlrpc:"id,omptempty"`
	Implementation   *Selection `xmlrpc:"implementation,omptempty"`
	LastUpdate       *Time      `xmlrpc:"__last_update,omptempty"`
	Name             *String    `xmlrpc:"name,omptempty"`
	NumberIncrement  *Int       `xmlrpc:"number_increment,omptempty"`
	NumberNext       *Int       `xmlrpc:"number_next,omptempty"`
	NumberNextActual *Int       `xmlrpc:"number_next_actual,omptempty"`
	Padding          *Int       `xmlrpc:"padding,omptempty"`
	Prefix           *String    `xmlrpc:"prefix,omptempty"`
	Suffix           *String    `xmlrpc:"suffix,omptempty"`
	UseDateRange     *Bool      `xmlrpc:"use_date_range,omptempty"`
	WriteDate        *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid         *Many2One  `xmlrpc:"write_uid,omptempty"`
}

IrSequence represents ir.sequence model.

func (*IrSequence) Many2One

func (is *IrSequence) Many2One() *Many2One

Many2One convert IrSequence to *Many2One.

type IrSequenceDateRange

type IrSequenceDateRange struct {
	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"`
	NumberNext       *Int      `xmlrpc:"number_next,omptempty"`
	NumberNextActual *Int      `xmlrpc:"number_next_actual,omptempty"`
	SequenceId       *Many2One `xmlrpc:"sequence_id,omptempty"`
	WriteDate        *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid         *Many2One `xmlrpc:"write_uid,omptempty"`
}

IrSequenceDateRange represents ir.sequence.date_range model.

func (*IrSequenceDateRange) Many2One

func (isd *IrSequenceDateRange) Many2One() *Many2One

Many2One convert IrSequenceDateRange to *Many2One.

type IrSequenceDateRanges

type IrSequenceDateRanges []IrSequenceDateRange

IrSequenceDateRanges represents array of ir.sequence.date_range model.

type IrSequences

type IrSequences []IrSequence

IrSequences represents array of ir.sequence model.

type IrServerObjectLines

type IrServerObjectLines struct {
	Col1           *Many2One  `xmlrpc:"col1,omptempty"`
	CreateDate     *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid      *Many2One  `xmlrpc:"create_uid,omptempty"`
	DisplayName    *String    `xmlrpc:"display_name,omptempty"`
	EvaluationType *Selection `xmlrpc:"evaluation_type,omptempty"`
	Id             *Int       `xmlrpc:"id,omptempty"`
	LastUpdate     *Time      `xmlrpc:"__last_update,omptempty"`
	ResourceRef    *String    `xmlrpc:"resource_ref,omptempty"`
	ServerId       *Many2One  `xmlrpc:"server_id,omptempty"`
	Value          *String    `xmlrpc:"value,omptempty"`
	WriteDate      *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid       *Many2One  `xmlrpc:"write_uid,omptempty"`
}

IrServerObjectLines represents ir.server.object.lines model.

func (*IrServerObjectLines) Many2One

func (isol *IrServerObjectLines) Many2One() *Many2One

Many2One convert IrServerObjectLines to *Many2One.

type IrServerObjectLiness

type IrServerObjectLiness []IrServerObjectLines

IrServerObjectLiness represents array of ir.server.object.lines model.

type IrTranslation

type IrTranslation struct {
	Comments    *String    `xmlrpc:"comments,omptempty"`
	DisplayName *String    `xmlrpc:"display_name,omptempty"`
	Id          *Int       `xmlrpc:"id,omptempty"`
	Lang        *Selection `xmlrpc:"lang,omptempty"`
	LastUpdate  *Time      `xmlrpc:"__last_update,omptempty"`
	Module      *String    `xmlrpc:"module,omptempty"`
	Name        *String    `xmlrpc:"name,omptempty"`
	ResId       *Int       `xmlrpc:"res_id,omptempty"`
	Src         *String    `xmlrpc:"src,omptempty"`
	State       *Selection `xmlrpc:"state,omptempty"`
	Type        *Selection `xmlrpc:"type,omptempty"`
	Value       *String    `xmlrpc:"value,omptempty"`
}

IrTranslation represents ir.translation model.

func (*IrTranslation) Many2One

func (it *IrTranslation) Many2One() *Many2One

Many2One convert IrTranslation to *Many2One.

type IrTranslations

type IrTranslations []IrTranslation

IrTranslations represents array of ir.translation model.

type IrUiMenu

type IrUiMenu struct {
	Action       *String   `xmlrpc:"action,omptempty"`
	Active       *Bool     `xmlrpc:"active,omptempty"`
	ChildId      *Relation `xmlrpc:"child_id,omptempty"`
	CompleteName *String   `xmlrpc:"complete_name,omptempty"`
	CreateDate   *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid    *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName  *String   `xmlrpc:"display_name,omptempty"`
	GroupsId     *Relation `xmlrpc:"groups_id,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"`
	Sequence     *Int      `xmlrpc:"sequence,omptempty"`
	WebIcon      *String   `xmlrpc:"web_icon,omptempty"`
	WebIconData  *String   `xmlrpc:"web_icon_data,omptempty"`
	WriteDate    *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid     *Many2One `xmlrpc:"write_uid,omptempty"`
}

IrUiMenu represents ir.ui.menu model.

func (*IrUiMenu) Many2One

func (ium *IrUiMenu) Many2One() *Many2One

Many2One convert IrUiMenu to *Many2One.

type IrUiMenus

type IrUiMenus []IrUiMenu

IrUiMenus represents array of ir.ui.menu model.

type IrUiView

type IrUiView struct {
	Active                 *Bool      `xmlrpc:"active,omptempty"`
	Arch                   *String    `xmlrpc:"arch,omptempty"`
	ArchBase               *String    `xmlrpc:"arch_base,omptempty"`
	ArchDb                 *String    `xmlrpc:"arch_db,omptempty"`
	ArchFs                 *String    `xmlrpc:"arch_fs,omptempty"`
	ArchPrev               *String    `xmlrpc:"arch_prev,omptempty"`
	ArchUpdated            *Bool      `xmlrpc:"arch_updated,omptempty"`
	CreateDate             *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid              *Many2One  `xmlrpc:"create_uid,omptempty"`
	CustomizeShow          *Bool      `xmlrpc:"customize_show,omptempty"`
	DisplayName            *String    `xmlrpc:"display_name,omptempty"`
	FieldParent            *String    `xmlrpc:"field_parent,omptempty"`
	FirstPageId            *Many2One  `xmlrpc:"first_page_id,omptempty"`
	GroupsId               *Relation  `xmlrpc:"groups_id,omptempty"`
	Id                     *Int       `xmlrpc:"id,omptempty"`
	InheritChildrenIds     *Relation  `xmlrpc:"inherit_children_ids,omptempty"`
	InheritId              *Many2One  `xmlrpc:"inherit_id,omptempty"`
	IsSeoOptimized         *Bool      `xmlrpc:"is_seo_optimized,omptempty"`
	Key                    *String    `xmlrpc:"key,omptempty"`
	LastUpdate             *Time      `xmlrpc:"__last_update,omptempty"`
	Mode                   *Selection `xmlrpc:"mode,omptempty"`
	Model                  *String    `xmlrpc:"model,omptempty"`
	ModelDataId            *Many2One  `xmlrpc:"model_data_id,omptempty"`
	ModelIds               *Relation  `xmlrpc:"model_ids,omptempty"`
	Name                   *String    `xmlrpc:"name,omptempty"`
	PageIds                *Relation  `xmlrpc:"page_ids,omptempty"`
	Priority               *Int       `xmlrpc:"priority,omptempty"`
	ThemeTemplateId        *Many2One  `xmlrpc:"theme_template_id,omptempty"`
	Track                  *Bool      `xmlrpc:"track,omptempty"`
	Type                   *Selection `xmlrpc:"type,omptempty"`
	WebsiteId              *Many2One  `xmlrpc:"website_id,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"`
	XmlId                  *String    `xmlrpc:"xml_id,omptempty"`
}

IrUiView represents ir.ui.view model.

func (*IrUiView) Many2One

func (iuv *IrUiView) Many2One() *Many2One

Many2One convert IrUiView to *Many2One.

type IrUiViewCustom

type IrUiViewCustom struct {
	Arch        *String   `xmlrpc:"arch,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"`
	RefId       *Many2One `xmlrpc:"ref_id,omptempty"`
	UserId      *Many2One `xmlrpc:"user_id,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

IrUiViewCustom represents ir.ui.view.custom model.

func (*IrUiViewCustom) Many2One

func (iuvc *IrUiViewCustom) Many2One() *Many2One

Many2One convert IrUiViewCustom to *Many2One.

type IrUiViewCustoms

type IrUiViewCustoms []IrUiViewCustom

IrUiViewCustoms represents array of ir.ui.view.custom model.

type IrUiViews

type IrUiViews []IrUiView

IrUiViews represents array of ir.ui.view model.

type LinkTracker

type LinkTracker struct {
	CampaignId    *Many2One `xmlrpc:"campaign_id,omptempty"`
	Code          *String   `xmlrpc:"code,omptempty"`
	Count         *Int      `xmlrpc:"count,omptempty"`
	CreateDate    *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid     *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName   *String   `xmlrpc:"display_name,omptempty"`
	Favicon       *String   `xmlrpc:"favicon,omptempty"`
	IconSrc       *String   `xmlrpc:"icon_src,omptempty"`
	Id            *Int      `xmlrpc:"id,omptempty"`
	LastUpdate    *Time     `xmlrpc:"__last_update,omptempty"`
	LinkClickIds  *Relation `xmlrpc:"link_click_ids,omptempty"`
	LinkCodeIds   *Relation `xmlrpc:"link_code_ids,omptempty"`
	MassMailingId *Many2One `xmlrpc:"mass_mailing_id,omptempty"`
	MediumId      *Many2One `xmlrpc:"medium_id,omptempty"`
	RedirectedUrl *String   `xmlrpc:"redirected_url,omptempty"`
	ShortUrl      *String   `xmlrpc:"short_url,omptempty"`
	ShortUrlHost  *String   `xmlrpc:"short_url_host,omptempty"`
	SourceId      *Many2One `xmlrpc:"source_id,omptempty"`
	Title         *String   `xmlrpc:"title,omptempty"`
	Url           *String   `xmlrpc:"url,omptempty"`
	WriteDate     *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid      *Many2One `xmlrpc:"write_uid,omptempty"`
}

LinkTracker represents link.tracker model.

func (*LinkTracker) Many2One

func (lt *LinkTracker) Many2One() *Many2One

Many2One convert LinkTracker to *Many2One.

type LinkTrackerClick

type LinkTrackerClick struct {
	CampaignId     *Many2One `xmlrpc:"campaign_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"`
	Ip             *String   `xmlrpc:"ip,omptempty"`
	LastUpdate     *Time     `xmlrpc:"__last_update,omptempty"`
	LinkId         *Many2One `xmlrpc:"link_id,omptempty"`
	MailingTraceId *Many2One `xmlrpc:"mailing_trace_id,omptempty"`
	MassMailingId  *Many2One `xmlrpc:"mass_mailing_id,omptempty"`
	WriteDate      *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid       *Many2One `xmlrpc:"write_uid,omptempty"`
}

LinkTrackerClick represents link.tracker.click model.

func (*LinkTrackerClick) Many2One

func (ltc *LinkTrackerClick) Many2One() *Many2One

Many2One convert LinkTrackerClick to *Many2One.

type LinkTrackerClicks

type LinkTrackerClicks []LinkTrackerClick

LinkTrackerClicks represents array of link.tracker.click model.

type LinkTrackerCode

type LinkTrackerCode 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"`
	LinkId      *Many2One `xmlrpc:"link_id,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

LinkTrackerCode represents link.tracker.code model.

func (*LinkTrackerCode) Many2One

func (ltc *LinkTrackerCode) Many2One() *Many2One

Many2One convert LinkTrackerCode to *Many2One.

type LinkTrackerCodes

type LinkTrackerCodes []LinkTrackerCode

LinkTrackerCodes represents array of link.tracker.code model.

type LinkTrackers

type LinkTrackers []LinkTracker

LinkTrackers represents array of link.tracker model.

type MailActivity

type MailActivity struct {
	ActivityCategory          *Selection `xmlrpc:"activity_category,omptempty"`
	ActivityDecoration        *Selection `xmlrpc:"activity_decoration,omptempty"`
	ActivityTypeId            *Many2One  `xmlrpc:"activity_type_id,omptempty"`
	Automated                 *Bool      `xmlrpc:"automated,omptempty"`
	CalendarEventId           *Many2One  `xmlrpc:"calendar_event_id,omptempty"`
	CanWrite                  *Bool      `xmlrpc:"can_write,omptempty"`
	CreateDate                *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid                 *Many2One  `xmlrpc:"create_uid,omptempty"`
	DateDeadline              *Time      `xmlrpc:"date_deadline,omptempty"`
	DisplayName               *String    `xmlrpc:"display_name,omptempty"`
	ForceNext                 *Bool      `xmlrpc:"force_next,omptempty"`
	HasRecommendedActivities  *Bool      `xmlrpc:"has_recommended_activities,omptempty"`
	Icon                      *String    `xmlrpc:"icon,omptempty"`
	Id                        *Int       `xmlrpc:"id,omptempty"`
	LastUpdate                *Time      `xmlrpc:"__last_update,omptempty"`
	MailTemplateIds           *Relation  `xmlrpc:"mail_template_ids,omptempty"`
	Note                      *String    `xmlrpc:"note,omptempty"`
	NoteId                    *Many2One  `xmlrpc:"note_id,omptempty"`
	PreviousActivityTypeId    *Many2One  `xmlrpc:"previous_activity_type_id,omptempty"`
	RecommendedActivityTypeId *Many2One  `xmlrpc:"recommended_activity_type_id,omptempty"`
	ResId                     *Many2One  `xmlrpc:"res_id,omptempty"`
	ResModel                  *String    `xmlrpc:"res_model,omptempty"`
	ResModelId                *Many2One  `xmlrpc:"res_model_id,omptempty"`
	ResName                   *String    `xmlrpc:"res_name,omptempty"`
	State                     *Selection `xmlrpc:"state,omptempty"`
	Summary                   *String    `xmlrpc:"summary,omptempty"`
	UserId                    *Many2One  `xmlrpc:"user_id,omptempty"`
	WriteDate                 *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid                  *Many2One  `xmlrpc:"write_uid,omptempty"`
}

MailActivity represents mail.activity model.

func (*MailActivity) Many2One

func (ma *MailActivity) Many2One() *Many2One

Many2One convert MailActivity to *Many2One.

type MailActivityMixin

type MailActivityMixin 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"`
	DisplayName                 *String    `xmlrpc:"display_name,omptempty"`
	Id                          *Int       `xmlrpc:"id,omptempty"`
	LastUpdate                  *Time      `xmlrpc:"__last_update,omptempty"`
}

MailActivityMixin represents mail.activity.mixin model.

func (*MailActivityMixin) Many2One

func (mam *MailActivityMixin) Many2One() *Many2One

Many2One convert MailActivityMixin to *Many2One.

type MailActivityMixins

type MailActivityMixins []MailActivityMixin

MailActivityMixins represents array of mail.activity.mixin model.

type MailActivityType

type MailActivityType struct {
	Active             *Bool      `xmlrpc:"active,omptempty"`
	Category           *Selection `xmlrpc:"category,omptempty"`
	CreateDate         *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid          *Many2One  `xmlrpc:"create_uid,omptempty"`
	DecorationType     *Selection `xmlrpc:"decoration_type,omptempty"`
	DefaultDescription *String    `xmlrpc:"default_description,omptempty"`
	DefaultNextTypeId  *Many2One  `xmlrpc:"default_next_type_id,omptempty"`
	DefaultUserId      *Many2One  `xmlrpc:"default_user_id,omptempty"`
	DelayCount         *Int       `xmlrpc:"delay_count,omptempty"`
	DelayFrom          *Selection `xmlrpc:"delay_from,omptempty"`
	DelayUnit          *Selection `xmlrpc:"delay_unit,omptempty"`
	DisplayName        *String    `xmlrpc:"display_name,omptempty"`
	ForceNext          *Bool      `xmlrpc:"force_next,omptempty"`
	Icon               *String    `xmlrpc:"icon,omptempty"`
	Id                 *Int       `xmlrpc:"id,omptempty"`
	InitialResModelId  *Many2One  `xmlrpc:"initial_res_model_id,omptempty"`
	LastUpdate         *Time      `xmlrpc:"__last_update,omptempty"`
	MailTemplateIds    *Relation  `xmlrpc:"mail_template_ids,omptempty"`
	Name               *String    `xmlrpc:"name,omptempty"`
	NextTypeIds        *Relation  `xmlrpc:"next_type_ids,omptempty"`
	PreviousTypeIds    *Relation  `xmlrpc:"previous_type_ids,omptempty"`
	ResModelChange     *Bool      `xmlrpc:"res_model_change,omptempty"`
	ResModelId         *Many2One  `xmlrpc:"res_model_id,omptempty"`
	Sequence           *Int       `xmlrpc:"sequence,omptempty"`
	Summary            *String    `xmlrpc:"summary,omptempty"`
	WriteDate          *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid           *Many2One  `xmlrpc:"write_uid,omptempty"`
}

MailActivityType represents mail.activity.type model.

func (*MailActivityType) Many2One

func (mat *MailActivityType) Many2One() *Many2One

Many2One convert MailActivityType to *Many2One.

type MailActivityTypes

type MailActivityTypes []MailActivityType

MailActivityTypes represents array of mail.activity.type model.

type MailActivitys

type MailActivitys []MailActivity

MailActivitys represents array of mail.activity model.

type MailAddressMixin

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

MailAddressMixin represents mail.address.mixin model.

func (*MailAddressMixin) Many2One

func (mam *MailAddressMixin) Many2One() *Many2One

Many2One convert MailAddressMixin to *Many2One.

type MailAddressMixins

type MailAddressMixins []MailAddressMixin

MailAddressMixins represents array of mail.address.mixin model.

type MailAlias

type MailAlias struct {
	AliasContact        *Selection `xmlrpc:"alias_contact,omptempty"`
	AliasDefaults       *String    `xmlrpc:"alias_defaults,omptempty"`
	AliasDomain         *String    `xmlrpc:"alias_domain,omptempty"`
	AliasForceThreadId  *Int       `xmlrpc:"alias_force_thread_id,omptempty"`
	AliasModelId        *Many2One  `xmlrpc:"alias_model_id,omptempty"`
	AliasName           *String    `xmlrpc:"alias_name,omptempty"`
	AliasParentModelId  *Many2One  `xmlrpc:"alias_parent_model_id,omptempty"`
	AliasParentThreadId *Int       `xmlrpc:"alias_parent_thread_id,omptempty"`
	AliasUserId         *Many2One  `xmlrpc:"alias_user_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"`
	WriteDate           *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid            *Many2One  `xmlrpc:"write_uid,omptempty"`
}

MailAlias represents mail.alias model.

func (*MailAlias) Many2One

func (ma *MailAlias) Many2One() *Many2One

Many2One convert MailAlias to *Many2One.

type MailAliasMixin

type MailAliasMixin struct {
	AliasContact        *Selection `xmlrpc:"alias_contact,omptempty"`
	AliasDefaults       *String    `xmlrpc:"alias_defaults,omptempty"`
	AliasDomain         *String    `xmlrpc:"alias_domain,omptempty"`
	AliasForceThreadId  *Int       `xmlrpc:"alias_force_thread_id,omptempty"`
	AliasId             *Many2One  `xmlrpc:"alias_id,omptempty"`
	AliasModelId        *Many2One  `xmlrpc:"alias_model_id,omptempty"`
	AliasName           *String    `xmlrpc:"alias_name,omptempty"`
	AliasParentModelId  *Many2One  `xmlrpc:"alias_parent_model_id,omptempty"`
	AliasParentThreadId *Int       `xmlrpc:"alias_parent_thread_id,omptempty"`
	AliasUserId         *Many2One  `xmlrpc:"alias_user_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"`
	WriteDate           *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid            *Many2One  `xmlrpc:"write_uid,omptempty"`
}

MailAliasMixin represents mail.alias.mixin model.

func (*MailAliasMixin) Many2One

func (mam *MailAliasMixin) Many2One() *Many2One

Many2One convert MailAliasMixin to *Many2One.

type MailAliasMixins

type MailAliasMixins []MailAliasMixin

MailAliasMixins represents array of mail.alias.mixin model.

type MailAliass

type MailAliass []MailAlias

MailAliass represents array of mail.alias model.

type MailBlacklist

type MailBlacklist struct {
	Active                   *Bool     `xmlrpc:"active,omptempty"`
	CreateDate               *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid                *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName              *String   `xmlrpc:"display_name,omptempty"`
	Email                    *String   `xmlrpc:"email,omptempty"`
	Id                       *Int      `xmlrpc:"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"`
	WebsiteMessageIds        *Relation `xmlrpc:"website_message_ids,omptempty"`
	WriteDate                *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid                 *Many2One `xmlrpc:"write_uid,omptempty"`
}

MailBlacklist represents mail.blacklist model.

func (*MailBlacklist) Many2One

func (mb *MailBlacklist) Many2One() *Many2One

Many2One convert MailBlacklist to *Many2One.

type MailBlacklists

type MailBlacklists []MailBlacklist

MailBlacklists represents array of mail.blacklist model.

type MailBot

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

MailBot represents mail.bot model.

func (*MailBot) Many2One

func (mb *MailBot) Many2One() *Many2One

Many2One convert MailBot to *Many2One.

type MailBots

type MailBots []MailBot

MailBots represents array of mail.bot model.

type MailChannel

type MailChannel struct {
	AliasContact              *Selection `xmlrpc:"alias_contact,omptempty"`
	AliasDefaults             *String    `xmlrpc:"alias_defaults,omptempty"`
	AliasDomain               *String    `xmlrpc:"alias_domain,omptempty"`
	AliasForceThreadId        *Int       `xmlrpc:"alias_force_thread_id,omptempty"`
	AliasId                   *Many2One  `xmlrpc:"alias_id,omptempty"`
	AliasModelId              *Many2One  `xmlrpc:"alias_model_id,omptempty"`
	AliasName                 *String    `xmlrpc:"alias_name,omptempty"`
	AliasParentModelId        *Many2One  `xmlrpc:"alias_parent_model_id,omptempty"`
	AliasParentThreadId       *Int       `xmlrpc:"alias_parent_thread_id,omptempty"`
	AliasUserId               *Many2One  `xmlrpc:"alias_user_id,omptempty"`
	AnonymousName             *String    `xmlrpc:"anonymous_name,omptempty"`
	ChannelLastSeenPartnerIds *Relation  `xmlrpc:"channel_last_seen_partner_ids,omptempty"`
	ChannelMessageIds         *Relation  `xmlrpc:"channel_message_ids,omptempty"`
	ChannelPartnerIds         *Relation  `xmlrpc:"channel_partner_ids,omptempty"`
	ChannelType               *Selection `xmlrpc:"channel_type,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"`
	EmailSend                 *Bool      `xmlrpc:"email_send,omptempty"`
	GroupIds                  *Relation  `xmlrpc:"group_ids,omptempty"`
	GroupPublicId             *Many2One  `xmlrpc:"group_public_id,omptempty"`
	Id                        *Int       `xmlrpc:"id,omptempty"`
	Image128                  *String    `xmlrpc:"image_128,omptempty"`
	IsChat                    *Bool      `xmlrpc:"is_chat,omptempty"`
	IsMember                  *Bool      `xmlrpc:"is_member,omptempty"`
	IsModerator               *Bool      `xmlrpc:"is_moderator,omptempty"`
	IsSubscribed              *Bool      `xmlrpc:"is_subscribed,omptempty"`
	LastUpdate                *Time      `xmlrpc:"__last_update,omptempty"`
	LivechatActive            *Bool      `xmlrpc:"livechat_active,omptempty"`
	LivechatChannelId         *Many2One  `xmlrpc:"livechat_channel_id,omptempty"`
	LivechatOperatorId        *Many2One  `xmlrpc:"livechat_operator_id,omptempty"`
	LivechatVisitorId         *Many2One  `xmlrpc:"livechat_visitor_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"`
	Moderation                *Bool      `xmlrpc:"moderation,omptempty"`
	ModerationCount           *Int       `xmlrpc:"moderation_count,omptempty"`
	ModerationGuidelines      *Bool      `xmlrpc:"moderation_guidelines,omptempty"`
	ModerationGuidelinesMsg   *String    `xmlrpc:"moderation_guidelines_msg,omptempty"`
	ModerationIds             *Relation  `xmlrpc:"moderation_ids,omptempty"`
	ModerationNotify          *Bool      `xmlrpc:"moderation_notify,omptempty"`
	ModerationNotifyMsg       *String    `xmlrpc:"moderation_notify_msg,omptempty"`
	ModeratorIds              *Relation  `xmlrpc:"moderator_ids,omptempty"`
	Name                      *String    `xmlrpc:"name,omptempty"`
	Public                    *Selection `xmlrpc:"public,omptempty"`
	RatingAvg                 *Float     `xmlrpc:"rating_avg,omptempty"`
	RatingCount               *Int       `xmlrpc:"rating_count,omptempty"`
	RatingIds                 *Relation  `xmlrpc:"rating_ids,omptempty"`
	RatingLastFeedback        *String    `xmlrpc:"rating_last_feedback,omptempty"`
	RatingLastImage           *String    `xmlrpc:"rating_last_image,omptempty"`
	RatingLastValue           *Float     `xmlrpc:"rating_last_value,omptempty"`
	SubscriptionDepartmentIds *Relation  `xmlrpc:"subscription_department_ids,omptempty"`
	Uuid                      *String    `xmlrpc:"uuid,omptempty"`
	WebsiteMessageIds         *Relation  `xmlrpc:"website_message_ids,omptempty"`
	WriteDate                 *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid                  *Many2One  `xmlrpc:"write_uid,omptempty"`
}

MailChannel represents mail.channel model.

func (*MailChannel) Many2One

func (mc *MailChannel) Many2One() *Many2One

Many2One convert MailChannel to *Many2One.

type MailChannelPartner

type MailChannelPartner struct {
	ChannelId         *Many2One  `xmlrpc:"channel_id,omptempty"`
	CreateDate        *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid         *Many2One  `xmlrpc:"create_uid,omptempty"`
	CustomChannelName *String    `xmlrpc:"custom_channel_name,omptempty"`
	DisplayName       *String    `xmlrpc:"display_name,omptempty"`
	FetchedMessageId  *Many2One  `xmlrpc:"fetched_message_id,omptempty"`
	FoldState         *Selection `xmlrpc:"fold_state,omptempty"`
	Id                *Int       `xmlrpc:"id,omptempty"`
	IsMinimized       *Bool      `xmlrpc:"is_minimized,omptempty"`
	IsPinned          *Bool      `xmlrpc:"is_pinned,omptempty"`
	LastUpdate        *Time      `xmlrpc:"__last_update,omptempty"`
	PartnerEmail      *String    `xmlrpc:"partner_email,omptempty"`
	PartnerId         *Many2One  `xmlrpc:"partner_id,omptempty"`
	SeenMessageId     *Many2One  `xmlrpc:"seen_message_id,omptempty"`
	WriteDate         *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid          *Many2One  `xmlrpc:"write_uid,omptempty"`
}

MailChannelPartner represents mail.channel.partner model.

func (*MailChannelPartner) Many2One

func (mcp *MailChannelPartner) Many2One() *Many2One

Many2One convert MailChannelPartner to *Many2One.

type MailChannelPartners

type MailChannelPartners []MailChannelPartner

MailChannelPartners represents array of mail.channel.partner model.

type MailChannels

type MailChannels []MailChannel

MailChannels represents array of mail.channel model.

type MailComposeMessage

type MailComposeMessage 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"`
	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"`
	IsLog              *Bool      `xmlrpc:"is_log,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"`
	PartnerIds         *Relation  `xmlrpc:"partner_ids,omptempty"`
	RecordName         *String    `xmlrpc:"record_name,omptempty"`
	ReplyTo            *String    `xmlrpc:"reply_to,omptempty"`
	ResId              *Int       `xmlrpc:"res_id,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"`
}

MailComposeMessage represents mail.compose.message model.

func (*MailComposeMessage) Many2One

func (mcm *MailComposeMessage) Many2One() *Many2One

Many2One convert MailComposeMessage to *Many2One.

type MailComposeMessages

type MailComposeMessages []MailComposeMessage

MailComposeMessages represents array of mail.compose.message model.

type MailFollowers

type MailFollowers struct {
	ChannelId   *Many2One `xmlrpc:"channel_id,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	PartnerId   *Many2One `xmlrpc:"partner_id,omptempty"`
	ResId       *Many2One `xmlrpc:"res_id,omptempty"`
	ResModel    *String   `xmlrpc:"res_model,omptempty"`
	SubtypeIds  *Relation `xmlrpc:"subtype_ids,omptempty"`
}

MailFollowers represents mail.followers model.

func (*MailFollowers) Many2One

func (mf *MailFollowers) Many2One() *Many2One

Many2One convert MailFollowers to *Many2One.

type MailFollowerss

type MailFollowerss []MailFollowers

MailFollowerss represents array of mail.followers model.

type MailMail

type MailMail struct {
	AddSign            *Bool      `xmlrpc:"add_sign,omptempty"`
	AttachmentIds      *Relation  `xmlrpc:"attachment_ids,omptempty"`
	AuthorAvatar       *String    `xmlrpc:"author_avatar,omptempty"`
	AuthorId           *Many2One  `xmlrpc:"author_id,omptempty"`
	AutoDelete         *Bool      `xmlrpc:"auto_delete,omptempty"`
	Body               *String    `xmlrpc:"body,omptempty"`
	BodyHtml           *String    `xmlrpc:"body_html,omptempty"`
	CannedResponseIds  *Relation  `xmlrpc:"canned_response_ids,omptempty"`
	ChannelIds         *Relation  `xmlrpc:"channel_ids,omptempty"`
	ChildIds           *Relation  `xmlrpc:"child_ids,omptempty"`
	CreateDate         *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid          *Many2One  `xmlrpc:"create_uid,omptempty"`
	Date               *Time      `xmlrpc:"date,omptempty"`
	Description        *String    `xmlrpc:"description,omptempty"`
	DisplayName        *String    `xmlrpc:"display_name,omptempty"`
	EmailCc            *String    `xmlrpc:"email_cc,omptempty"`
	EmailFrom          *String    `xmlrpc:"email_from,omptempty"`
	EmailLayoutXmlid   *String    `xmlrpc:"email_layout_xmlid,omptempty"`
	EmailTo            *String    `xmlrpc:"email_to,omptempty"`
	FailureReason      *String    `xmlrpc:"failure_reason,omptempty"`
	FetchmailServerId  *Many2One  `xmlrpc:"fetchmail_server_id,omptempty"`
	HasError           *Bool      `xmlrpc:"has_error,omptempty"`
	HasSmsError        *Bool      `xmlrpc:"has_sms_error,omptempty"`
	Headers            *String    `xmlrpc:"headers,omptempty"`
	Id                 *Int       `xmlrpc:"id,omptempty"`
	LastUpdate         *Time      `xmlrpc:"__last_update,omptempty"`
	LetterIds          *Relation  `xmlrpc:"letter_ids,omptempty"`
	MailActivityTypeId *Many2One  `xmlrpc:"mail_activity_type_id,omptempty"`
	MailIds            *Relation  `xmlrpc:"mail_ids,omptempty"`
	MailingId          *Many2One  `xmlrpc:"mailing_id,omptempty"`
	MailingTraceIds    *Relation  `xmlrpc:"mailing_trace_ids,omptempty"`
	MailMessageId      *Many2One  `xmlrpc:"mail_message_id,omptempty"`
	MailServerId       *Many2One  `xmlrpc:"mail_server_id,omptempty"`
	MessageId          *String    `xmlrpc:"message_id,omptempty"`
	MessageType        *Selection `xmlrpc:"message_type,omptempty"`
	Model              *String    `xmlrpc:"model,omptempty"`
	ModerationStatus   *Selection `xmlrpc:"moderation_status,omptempty"`
	ModeratorId        *Many2One  `xmlrpc:"moderator_id,omptempty"`
	Needaction         *Bool      `xmlrpc:"needaction,omptempty"`
	NeedModeration     *Bool      `xmlrpc:"need_moderation,omptempty"`
	NoAutoThread       *Bool      `xmlrpc:"no_auto_thread,omptempty"`
	Notification       *Bool      `xmlrpc:"notification,omptempty"`
	NotificationIds    *Relation  `xmlrpc:"notification_ids,omptempty"`
	NotifiedPartnerIds *Relation  `xmlrpc:"notified_partner_ids,omptempty"`
	ParentId           *Many2One  `xmlrpc:"parent_id,omptempty"`
	PartnerIds         *Relation  `xmlrpc:"partner_ids,omptempty"`
	RatingIds          *Relation  `xmlrpc:"rating_ids,omptempty"`
	RatingValue        *Float     `xmlrpc:"rating_value,omptempty"`
	RecipientIds       *Relation  `xmlrpc:"recipient_ids,omptempty"`
	RecordName         *String    `xmlrpc:"record_name,omptempty"`
	References         *String    `xmlrpc:"references,omptempty"`
	ReplyTo            *String    `xmlrpc:"reply_to,omptempty"`
	ResId              *Many2One  `xmlrpc:"res_id,omptempty"`
	ScheduledDate      *String    `xmlrpc:"scheduled_date,omptempty"`
	SnailmailError     *Bool      `xmlrpc:"snailmail_error,omptempty"`
	SnailmailStatus    *String    `xmlrpc:"snailmail_status,omptempty"`
	Starred            *Bool      `xmlrpc:"starred,omptempty"`
	StarredPartnerIds  *Relation  `xmlrpc:"starred_partner_ids,omptempty"`
	State              *Selection `xmlrpc:"state,omptempty"`
	Subject            *String    `xmlrpc:"subject,omptempty"`
	SubtypeId          *Many2One  `xmlrpc:"subtype_id,omptempty"`
	TrackingValueIds   *Relation  `xmlrpc:"tracking_value_ids,omptempty"`
	WebsitePublished   *Bool      `xmlrpc:"website_published,omptempty"`
	WriteDate          *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid           *Many2One  `xmlrpc:"write_uid,omptempty"`
}

MailMail represents mail.mail model.

func (*MailMail) Many2One

func (mm *MailMail) Many2One() *Many2One

Many2One convert MailMail to *Many2One.

type MailMails

type MailMails []MailMail

MailMails represents array of mail.mail model.

type MailMessage

type MailMessage struct {
	AddSign            *Bool      `xmlrpc:"add_sign,omptempty"`
	AttachmentIds      *Relation  `xmlrpc:"attachment_ids,omptempty"`
	AuthorAvatar       *String    `xmlrpc:"author_avatar,omptempty"`
	AuthorId           *Many2One  `xmlrpc:"author_id,omptempty"`
	Body               *String    `xmlrpc:"body,omptempty"`
	CannedResponseIds  *Relation  `xmlrpc:"canned_response_ids,omptempty"`
	ChannelIds         *Relation  `xmlrpc:"channel_ids,omptempty"`
	ChildIds           *Relation  `xmlrpc:"child_ids,omptempty"`
	CreateDate         *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid          *Many2One  `xmlrpc:"create_uid,omptempty"`
	Date               *Time      `xmlrpc:"date,omptempty"`
	Description        *String    `xmlrpc:"description,omptempty"`
	DisplayName        *String    `xmlrpc:"display_name,omptempty"`
	EmailFrom          *String    `xmlrpc:"email_from,omptempty"`
	EmailLayoutXmlid   *String    `xmlrpc:"email_layout_xmlid,omptempty"`
	HasError           *Bool      `xmlrpc:"has_error,omptempty"`
	HasSmsError        *Bool      `xmlrpc:"has_sms_error,omptempty"`
	Id                 *Int       `xmlrpc:"id,omptempty"`
	LastUpdate         *Time      `xmlrpc:"__last_update,omptempty"`
	LetterIds          *Relation  `xmlrpc:"letter_ids,omptempty"`
	MailActivityTypeId *Many2One  `xmlrpc:"mail_activity_type_id,omptempty"`
	MailIds            *Relation  `xmlrpc:"mail_ids,omptempty"`
	MailServerId       *Many2One  `xmlrpc:"mail_server_id,omptempty"`
	MessageId          *String    `xmlrpc:"message_id,omptempty"`
	MessageType        *Selection `xmlrpc:"message_type,omptempty"`
	Model              *String    `xmlrpc:"model,omptempty"`
	ModerationStatus   *Selection `xmlrpc:"moderation_status,omptempty"`
	ModeratorId        *Many2One  `xmlrpc:"moderator_id,omptempty"`
	Needaction         *Bool      `xmlrpc:"needaction,omptempty"`
	NeedModeration     *Bool      `xmlrpc:"need_moderation,omptempty"`
	NoAutoThread       *Bool      `xmlrpc:"no_auto_thread,omptempty"`
	NotificationIds    *Relation  `xmlrpc:"notification_ids,omptempty"`
	NotifiedPartnerIds *Relation  `xmlrpc:"notified_partner_ids,omptempty"`
	ParentId           *Many2One  `xmlrpc:"parent_id,omptempty"`
	PartnerIds         *Relation  `xmlrpc:"partner_ids,omptempty"`
	RatingIds          *Relation  `xmlrpc:"rating_ids,omptempty"`
	RatingValue        *Float     `xmlrpc:"rating_value,omptempty"`
	RecordName         *String    `xmlrpc:"record_name,omptempty"`
	ReplyTo            *String    `xmlrpc:"reply_to,omptempty"`
	ResId              *Many2One  `xmlrpc:"res_id,omptempty"`
	SnailmailError     *Bool      `xmlrpc:"snailmail_error,omptempty"`
	SnailmailStatus    *String    `xmlrpc:"snailmail_status,omptempty"`
	Starred            *Bool      `xmlrpc:"starred,omptempty"`
	StarredPartnerIds  *Relation  `xmlrpc:"starred_partner_ids,omptempty"`
	Subject            *String    `xmlrpc:"subject,omptempty"`
	SubtypeId          *Many2One  `xmlrpc:"subtype_id,omptempty"`
	TrackingValueIds   *Relation  `xmlrpc:"tracking_value_ids,omptempty"`
	WebsitePublished   *Bool      `xmlrpc:"website_published,omptempty"`
	WriteDate          *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid           *Many2One  `xmlrpc:"write_uid,omptempty"`
}

MailMessage represents mail.message model.

func (*MailMessage) Many2One

func (mm *MailMessage) Many2One() *Many2One

Many2One convert MailMessage to *Many2One.

type MailMessageSubtype

type MailMessageSubtype struct {
	CreateDate    *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid     *Many2One `xmlrpc:"create_uid,omptempty"`
	Default       *Bool     `xmlrpc:"default,omptempty"`
	Description   *String   `xmlrpc:"description,omptempty"`
	DisplayName   *String   `xmlrpc:"display_name,omptempty"`
	Hidden        *Bool     `xmlrpc:"hidden,omptempty"`
	Id            *Int      `xmlrpc:"id,omptempty"`
	Internal      *Bool     `xmlrpc:"internal,omptempty"`
	LastUpdate    *Time     `xmlrpc:"__last_update,omptempty"`
	Name          *String   `xmlrpc:"name,omptempty"`
	ParentId      *Many2One `xmlrpc:"parent_id,omptempty"`
	RelationField *String   `xmlrpc:"relation_field,omptempty"`
	ResModel      *String   `xmlrpc:"res_model,omptempty"`
	Sequence      *Int      `xmlrpc:"sequence,omptempty"`
	WriteDate     *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid      *Many2One `xmlrpc:"write_uid,omptempty"`
}

MailMessageSubtype represents mail.message.subtype model.

func (*MailMessageSubtype) Many2One

func (mms *MailMessageSubtype) Many2One() *Many2One

Many2One convert MailMessageSubtype to *Many2One.

type MailMessageSubtypes

type MailMessageSubtypes []MailMessageSubtype

MailMessageSubtypes represents array of mail.message.subtype model.

type MailMessages

type MailMessages []MailMessage

MailMessages represents array of mail.message model.

type MailModeration

type MailModeration struct {
	ChannelId   *Many2One  `xmlrpc:"channel_id,omptempty"`
	CreateDate  *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One  `xmlrpc:"create_uid,omptempty"`
	DisplayName *String    `xmlrpc:"display_name,omptempty"`
	Email       *String    `xmlrpc:"email,omptempty"`
	Id          *Int       `xmlrpc:"id,omptempty"`
	LastUpdate  *Time      `xmlrpc:"__last_update,omptempty"`
	Status      *Selection `xmlrpc:"status,omptempty"`
	WriteDate   *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One  `xmlrpc:"write_uid,omptempty"`
}

MailModeration represents mail.moderation model.

func (*MailModeration) Many2One

func (mm *MailModeration) Many2One() *Many2One

Many2One convert MailModeration to *Many2One.

type MailModerations

type MailModerations []MailModeration

MailModerations represents array of mail.moderation model.

type MailNotification

type MailNotification struct {
	DisplayName        *String    `xmlrpc:"display_name,omptempty"`
	FailureReason      *String    `xmlrpc:"failure_reason,omptempty"`
	FailureType        *Selection `xmlrpc:"failure_type,omptempty"`
	Id                 *Int       `xmlrpc:"id,omptempty"`
	IsRead             *Bool      `xmlrpc:"is_read,omptempty"`
	LastUpdate         *Time      `xmlrpc:"__last_update,omptempty"`
	MailId             *Many2One  `xmlrpc:"mail_id,omptempty"`
	MailMessageId      *Many2One  `xmlrpc:"mail_message_id,omptempty"`
	NotificationStatus *Selection `xmlrpc:"notification_status,omptempty"`
	NotificationType   *Selection `xmlrpc:"notification_type,omptempty"`
	ReadDate           *Time      `xmlrpc:"read_date,omptempty"`
	ResPartnerId       *Many2One  `xmlrpc:"res_partner_id,omptempty"`
	SmsId              *Many2One  `xmlrpc:"sms_id,omptempty"`
	SmsNumber          *String    `xmlrpc:"sms_number,omptempty"`
}

MailNotification represents mail.notification model.

func (*MailNotification) Many2One

func (mn *MailNotification) Many2One() *Many2One

Many2One convert MailNotification to *Many2One.

type MailNotifications

type MailNotifications []MailNotification

MailNotifications represents array of mail.notification model.

type MailResendCancel

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

MailResendCancel represents mail.resend.cancel model.

func (*MailResendCancel) Many2One

func (mrc *MailResendCancel) Many2One() *Many2One

Many2One convert MailResendCancel to *Many2One.

type MailResendCancels

type MailResendCancels []MailResendCancel

MailResendCancels represents array of mail.resend.cancel model.

type MailResendMessage

type MailResendMessage struct {
	CreateDate      *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid       *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName     *String   `xmlrpc:"display_name,omptempty"`
	HasCancel       *Bool     `xmlrpc:"has_cancel,omptempty"`
	Id              *Int      `xmlrpc:"id,omptempty"`
	LastUpdate      *Time     `xmlrpc:"__last_update,omptempty"`
	MailMessageId   *Many2One `xmlrpc:"mail_message_id,omptempty"`
	NotificationIds *Relation `xmlrpc:"notification_ids,omptempty"`
	PartnerIds      *Relation `xmlrpc:"partner_ids,omptempty"`
	PartnerReadonly *Bool     `xmlrpc:"partner_readonly,omptempty"`
	WriteDate       *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid        *Many2One `xmlrpc:"write_uid,omptempty"`
}

MailResendMessage represents mail.resend.message model.

func (*MailResendMessage) Many2One

func (mrm *MailResendMessage) Many2One() *Many2One

Many2One convert MailResendMessage to *Many2One.

type MailResendMessages

type MailResendMessages []MailResendMessage

MailResendMessages represents array of mail.resend.message model.

type MailResendPartner

type MailResendPartner struct {
	CreateDate     *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid      *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName    *String   `xmlrpc:"display_name,omptempty"`
	Email          *String   `xmlrpc:"email,omptempty"`
	Id             *Int      `xmlrpc:"id,omptempty"`
	LastUpdate     *Time     `xmlrpc:"__last_update,omptempty"`
	Message        *String   `xmlrpc:"message,omptempty"`
	Name           *String   `xmlrpc:"name,omptempty"`
	PartnerId      *Many2One `xmlrpc:"partner_id,omptempty"`
	Resend         *Bool     `xmlrpc:"resend,omptempty"`
	ResendWizardId *Many2One `xmlrpc:"resend_wizard_id,omptempty"`
	WriteDate      *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid       *Many2One `xmlrpc:"write_uid,omptempty"`
}

MailResendPartner represents mail.resend.partner model.

func (*MailResendPartner) Many2One

func (mrp *MailResendPartner) Many2One() *Many2One

Many2One convert MailResendPartner to *Many2One.

type MailResendPartners

type MailResendPartners []MailResendPartner

MailResendPartners represents array of mail.resend.partner model.

type MailShortcode

type MailShortcode struct {
	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"`
	MessageIds   *Many2One `xmlrpc:"message_ids,omptempty"`
	Source       *String   `xmlrpc:"source,omptempty"`
	Substitution *String   `xmlrpc:"substitution,omptempty"`
	WriteDate    *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid     *Many2One `xmlrpc:"write_uid,omptempty"`
}

MailShortcode represents mail.shortcode model.

func (*MailShortcode) Many2One

func (ms *MailShortcode) Many2One() *Many2One

Many2One convert MailShortcode to *Many2One.

type MailShortcodes

type MailShortcodes []MailShortcode

MailShortcodes represents array of mail.shortcode model.

type MailTemplate

type MailTemplate struct {
	AttachmentIds       *Relation `xmlrpc:"attachment_ids,omptempty"`
	AutoDelete          *Bool     `xmlrpc:"auto_delete,omptempty"`
	BodyHtml            *String   `xmlrpc:"body_html,omptempty"`
	Copyvalue           *String   `xmlrpc:"copyvalue,omptempty"`
	CreateDate          *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid           *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName         *String   `xmlrpc:"display_name,omptempty"`
	EmailCc             *String   `xmlrpc:"email_cc,omptempty"`
	EmailFrom           *String   `xmlrpc:"email_from,omptempty"`
	EmailTo             *String   `xmlrpc:"email_to,omptempty"`
	Id                  *Int      `xmlrpc:"id,omptempty"`
	Lang                *String   `xmlrpc:"lang,omptempty"`
	LastUpdate          *Time     `xmlrpc:"__last_update,omptempty"`
	MailServerId        *Many2One `xmlrpc:"mail_server_id,omptempty"`
	Model               *String   `xmlrpc:"model,omptempty"`
	ModelId             *Many2One `xmlrpc:"model_id,omptempty"`
	ModelObjectField    *Many2One `xmlrpc:"model_object_field,omptempty"`
	Name                *String   `xmlrpc:"name,omptempty"`
	NullValue           *String   `xmlrpc:"null_value,omptempty"`
	PartnerTo           *String   `xmlrpc:"partner_to,omptempty"`
	RefIrActWindow      *Many2One `xmlrpc:"ref_ir_act_window,omptempty"`
	ReplyTo             *String   `xmlrpc:"reply_to,omptempty"`
	ReportName          *String   `xmlrpc:"report_name,omptempty"`
	ReportTemplate      *Many2One `xmlrpc:"report_template,omptempty"`
	ScheduledDate       *String   `xmlrpc:"scheduled_date,omptempty"`
	Subject             *String   `xmlrpc:"subject,omptempty"`
	SubModelObjectField *Many2One `xmlrpc:"sub_model_object_field,omptempty"`
	SubObject           *Many2One `xmlrpc:"sub_object,omptempty"`
	UseDefaultTo        *Bool     `xmlrpc:"use_default_to,omptempty"`
	UserSignature       *Bool     `xmlrpc:"user_signature,omptempty"`
	WriteDate           *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid            *Many2One `xmlrpc:"write_uid,omptempty"`
}

MailTemplate represents mail.template model.

func (*MailTemplate) Many2One

func (mt *MailTemplate) Many2One() *Many2One

Many2One convert MailTemplate to *Many2One.

type MailTemplates

type MailTemplates []MailTemplate

MailTemplates represents array of mail.template model.

type MailThread

type MailThread struct {
	DisplayName              *String   `xmlrpc:"display_name,omptempty"`
	Id                       *Int      `xmlrpc:"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"`
	WebsiteMessageIds        *Relation `xmlrpc:"website_message_ids,omptempty"`
}

MailThread represents mail.thread model.

func (*MailThread) Many2One

func (mt *MailThread) Many2One() *Many2One

Many2One convert MailThread to *Many2One.

type MailThreadBlacklist

type MailThreadBlacklist struct {
	DisplayName              *String   `xmlrpc:"display_name,omptempty"`
	EmailNormalized          *String   `xmlrpc:"email_normalized,omptempty"`
	Id                       *Int      `xmlrpc:"id,omptempty"`
	IsBlacklisted            *Bool     `xmlrpc:"is_blacklisted,omptempty"`
	LastUpdate               *Time     `xmlrpc:"__last_update,omptempty"`
	MessageAttachmentCount   *Int      `xmlrpc:"message_attachment_count,omptempty"`
	MessageBounce            *Int      `xmlrpc:"message_bounce,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"`
	WebsiteMessageIds        *Relation `xmlrpc:"website_message_ids,omptempty"`
}

MailThreadBlacklist represents mail.thread.blacklist model.

func (*MailThreadBlacklist) Many2One

func (mtb *MailThreadBlacklist) Many2One() *Many2One

Many2One convert MailThreadBlacklist to *Many2One.

type MailThreadBlacklists

type MailThreadBlacklists []MailThreadBlacklist

MailThreadBlacklists represents array of mail.thread.blacklist model.

type MailThreadCc

type MailThreadCc struct {
	DisplayName              *String   `xmlrpc:"display_name,omptempty"`
	EmailCc                  *String   `xmlrpc:"email_cc,omptempty"`
	Id                       *Int      `xmlrpc:"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"`
	WebsiteMessageIds        *Relation `xmlrpc:"website_message_ids,omptempty"`
}

MailThreadCc represents mail.thread.cc model.

func (*MailThreadCc) Many2One

func (mtc *MailThreadCc) Many2One() *Many2One

Many2One convert MailThreadCc to *Many2One.

type MailThreadCcs

type MailThreadCcs []MailThreadCc

MailThreadCcs represents array of mail.thread.cc model.

type MailThreadPhone

type MailThreadPhone struct {
	DisplayName              *String   `xmlrpc:"display_name,omptempty"`
	Id                       *Int      `xmlrpc:"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"`
	PhoneBlacklisted         *Bool     `xmlrpc:"phone_blacklisted,omptempty"`
	PhoneSanitized           *String   `xmlrpc:"phone_sanitized,omptempty"`
	WebsiteMessageIds        *Relation `xmlrpc:"website_message_ids,omptempty"`
}

MailThreadPhone represents mail.thread.phone model.

func (*MailThreadPhone) Many2One

func (mtp *MailThreadPhone) Many2One() *Many2One

Many2One convert MailThreadPhone to *Many2One.

type MailThreadPhones

type MailThreadPhones []MailThreadPhone

MailThreadPhones represents array of mail.thread.phone model.

type MailThreads

type MailThreads []MailThread

MailThreads represents array of mail.thread model.

type MailTrackingValue

type MailTrackingValue struct {
	CreateDate       *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid        *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName      *String   `xmlrpc:"display_name,omptempty"`
	Field            *String   `xmlrpc:"field,omptempty"`
	FieldDesc        *String   `xmlrpc:"field_desc,omptempty"`
	FieldGroups      *String   `xmlrpc:"field_groups,omptempty"`
	FieldType        *String   `xmlrpc:"field_type,omptempty"`
	Id               *Int      `xmlrpc:"id,omptempty"`
	LastUpdate       *Time     `xmlrpc:"__last_update,omptempty"`
	MailMessageId    *Many2One `xmlrpc:"mail_message_id,omptempty"`
	NewValueChar     *String   `xmlrpc:"new_value_char,omptempty"`
	NewValueDatetime *Time     `xmlrpc:"new_value_datetime,omptempty"`
	NewValueFloat    *Float    `xmlrpc:"new_value_float,omptempty"`
	NewValueInteger  *Int      `xmlrpc:"new_value_integer,omptempty"`
	NewValueMonetary *Float    `xmlrpc:"new_value_monetary,omptempty"`
	NewValueText     *String   `xmlrpc:"new_value_text,omptempty"`
	OldValueChar     *String   `xmlrpc:"old_value_char,omptempty"`
	OldValueDatetime *Time     `xmlrpc:"old_value_datetime,omptempty"`
	OldValueFloat    *Float    `xmlrpc:"old_value_float,omptempty"`
	OldValueInteger  *Int      `xmlrpc:"old_value_integer,omptempty"`
	OldValueMonetary *Float    `xmlrpc:"old_value_monetary,omptempty"`
	OldValueText     *String   `xmlrpc:"old_value_text,omptempty"`
	TrackingSequence *Int      `xmlrpc:"tracking_sequence,omptempty"`
	WriteDate        *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid         *Many2One `xmlrpc:"write_uid,omptempty"`
}

MailTrackingValue represents mail.tracking.value model.

func (*MailTrackingValue) Many2One

func (mtv *MailTrackingValue) Many2One() *Many2One

Many2One convert MailTrackingValue to *Many2One.

type MailTrackingValues

type MailTrackingValues []MailTrackingValue

MailTrackingValues represents array of mail.tracking.value model.

type MailWizardInvite

type MailWizardInvite struct {
	ChannelIds  *Relation `xmlrpc:"channel_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"`
	Message     *String   `xmlrpc:"message,omptempty"`
	PartnerIds  *Relation `xmlrpc:"partner_ids,omptempty"`
	ResId       *Int      `xmlrpc:"res_id,omptempty"`
	ResModel    *String   `xmlrpc:"res_model,omptempty"`
	SendMail    *Bool     `xmlrpc:"send_mail,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

MailWizardInvite represents mail.wizard.invite model.

func (*MailWizardInvite) Many2One

func (mwi *MailWizardInvite) Many2One() *Many2One

Many2One convert MailWizardInvite to *Many2One.

type MailWizardInvites

type MailWizardInvites []MailWizardInvite

MailWizardInvites represents array of mail.wizard.invite model.

type MailingContact

type MailingContact struct {
	CompanyName              *String   `xmlrpc:"company_name,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"`
	Email                    *String   `xmlrpc:"email,omptempty"`
	EmailNormalized          *String   `xmlrpc:"email_normalized,omptempty"`
	Id                       *Int      `xmlrpc:"id,omptempty"`
	IsBlacklisted            *Bool     `xmlrpc:"is_blacklisted,omptempty"`
	LastUpdate               *Time     `xmlrpc:"__last_update,omptempty"`
	ListIds                  *Relation `xmlrpc:"list_ids,omptempty"`
	MessageAttachmentCount   *Int      `xmlrpc:"message_attachment_count,omptempty"`
	MessageBounce            *Int      `xmlrpc:"message_bounce,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"`
	Mobile                   *String   `xmlrpc:"mobile,omptempty"`
	Name                     *String   `xmlrpc:"name,omptempty"`
	OptOut                   *Bool     `xmlrpc:"opt_out,omptempty"`
	PhoneBlacklisted         *Bool     `xmlrpc:"phone_blacklisted,omptempty"`
	PhoneSanitized           *String   `xmlrpc:"phone_sanitized,omptempty"`
	SubscriptionListIds      *Relation `xmlrpc:"subscription_list_ids,omptempty"`
	TagIds                   *Relation `xmlrpc:"tag_ids,omptempty"`
	TitleId                  *Many2One `xmlrpc:"title_id,omptempty"`
	WebsiteMessageIds        *Relation `xmlrpc:"website_message_ids,omptempty"`
	WriteDate                *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid                 *Many2One `xmlrpc:"write_uid,omptempty"`
}

MailingContact represents mailing.contact model.

func (*MailingContact) Many2One

func (mc *MailingContact) Many2One() *Many2One

Many2One convert MailingContact to *Many2One.

type MailingContactSubscription

type MailingContactSubscription struct {
	ContactId          *Many2One `xmlrpc:"contact_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"`
	IsBlacklisted      *Bool     `xmlrpc:"is_blacklisted,omptempty"`
	LastUpdate         *Time     `xmlrpc:"__last_update,omptempty"`
	ListId             *Many2One `xmlrpc:"list_id,omptempty"`
	MessageBounce      *Int      `xmlrpc:"message_bounce,omptempty"`
	OptOut             *Bool     `xmlrpc:"opt_out,omptempty"`
	UnsubscriptionDate *Time     `xmlrpc:"unsubscription_date,omptempty"`
	WriteDate          *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid           *Many2One `xmlrpc:"write_uid,omptempty"`
}

MailingContactSubscription represents mailing.contact.subscription model.

func (*MailingContactSubscription) Many2One

func (mcs *MailingContactSubscription) Many2One() *Many2One

Many2One convert MailingContactSubscription to *Many2One.

type MailingContactSubscriptions

type MailingContactSubscriptions []MailingContactSubscription

MailingContactSubscriptions represents array of mailing.contact.subscription model.

type MailingContacts

type MailingContacts []MailingContact

MailingContacts represents array of mailing.contact model.

type MailingList

type MailingList struct {
	Active          *Bool     `xmlrpc:"active,omptempty"`
	ContactIds      *Relation `xmlrpc:"contact_ids,omptempty"`
	ContactNbr      *Int      `xmlrpc:"contact_nbr,omptempty"`
	CreateDate      *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid       *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName     *String   `xmlrpc:"display_name,omptempty"`
	Id              *Int      `xmlrpc:"id,omptempty"`
	IsPublic        *Bool     `xmlrpc:"is_public,omptempty"`
	LastUpdate      *Time     `xmlrpc:"__last_update,omptempty"`
	Name            *String   `xmlrpc:"name,omptempty"`
	SubscriptionIds *Relation `xmlrpc:"subscription_ids,omptempty"`
	ToastContent    *String   `xmlrpc:"toast_content,omptempty"`
	WebsitePopupIds *Relation `xmlrpc:"website_popup_ids,omptempty"`
	WriteDate       *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid        *Many2One `xmlrpc:"write_uid,omptempty"`
}

MailingList represents mailing.list model.

func (*MailingList) Many2One

func (ml *MailingList) Many2One() *Many2One

Many2One convert MailingList to *Many2One.

type MailingListMerge

type MailingListMerge struct {
	ArchiveSrcLists *Bool      `xmlrpc:"archive_src_lists,omptempty"`
	CreateDate      *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid       *Many2One  `xmlrpc:"create_uid,omptempty"`
	DestListId      *Many2One  `xmlrpc:"dest_list_id,omptempty"`
	DisplayName     *String    `xmlrpc:"display_name,omptempty"`
	Id              *Int       `xmlrpc:"id,omptempty"`
	LastUpdate      *Time      `xmlrpc:"__last_update,omptempty"`
	MergeOptions    *Selection `xmlrpc:"merge_options,omptempty"`
	NewListName     *String    `xmlrpc:"new_list_name,omptempty"`
	SrcListIds      *Relation  `xmlrpc:"src_list_ids,omptempty"`
	WriteDate       *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid        *Many2One  `xmlrpc:"write_uid,omptempty"`
}

MailingListMerge represents mailing.list.merge model.

func (*MailingListMerge) Many2One

func (mlm *MailingListMerge) Many2One() *Many2One

Many2One convert MailingListMerge to *Many2One.

type MailingListMerges

type MailingListMerges []MailingListMerge

MailingListMerges represents array of mailing.list.merge model.

type MailingLists

type MailingLists []MailingList

MailingLists represents array of mailing.list model.

type MailingMailing

type MailingMailing struct {
	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"`
	AttachmentIds               *Relation  `xmlrpc:"attachment_ids,omptempty"`
	BodyArch                    *String    `xmlrpc:"body_arch,omptempty"`
	BodyHtml                    *String    `xmlrpc:"body_html,omptempty"`
	BodyPlaintext               *String    `xmlrpc:"body_plaintext,omptempty"`
	Bounced                     *Int       `xmlrpc:"bounced,omptempty"`
	BouncedRatio                *Int       `xmlrpc:"bounced_ratio,omptempty"`
	CampaignId                  *Many2One  `xmlrpc:"campaign_id,omptempty"`
	Clicked                     *Int       `xmlrpc:"clicked,omptempty"`
	ClicksRatio                 *Int       `xmlrpc:"clicks_ratio,omptempty"`
	Color                       *Int       `xmlrpc:"color,omptempty"`
	ContactAbPc                 *Int       `xmlrpc:"contact_ab_pc,omptempty"`
	ContactListIds              *Relation  `xmlrpc:"contact_list_ids,omptempty"`
	CreateDate                  *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid                   *Many2One  `xmlrpc:"create_uid,omptempty"`
	CrmLeadActivated            *Bool      `xmlrpc:"crm_lead_activated,omptempty"`
	CrmLeadCount                *Int       `xmlrpc:"crm_lead_count,omptempty"`
	CrmOpportunitiesCount       *Int       `xmlrpc:"crm_opportunities_count,omptempty"`
	Delivered                   *Int       `xmlrpc:"delivered,omptempty"`
	DisplayName                 *String    `xmlrpc:"display_name,omptempty"`
	EmailFrom                   *String    `xmlrpc:"email_from,omptempty"`
	Expected                    *Int       `xmlrpc:"expected,omptempty"`
	Failed                      *Int       `xmlrpc:"failed,omptempty"`
	Id                          *Int       `xmlrpc:"id,omptempty"`
	Ignored                     *Int       `xmlrpc:"ignored,omptempty"`
	KeepArchives                *Bool      `xmlrpc:"keep_archives,omptempty"`
	LastUpdate                  *Time      `xmlrpc:"__last_update,omptempty"`
	MailingDomain               *String    `xmlrpc:"mailing_domain,omptempty"`
	MailingModelId              *Many2One  `xmlrpc:"mailing_model_id,omptempty"`
	MailingModelName            *String    `xmlrpc:"mailing_model_name,omptempty"`
	MailingModelReal            *String    `xmlrpc:"mailing_model_real,omptempty"`
	MailingTraceIds             *Relation  `xmlrpc:"mailing_trace_ids,omptempty"`
	MailingType                 *Selection `xmlrpc:"mailing_type,omptempty"`
	MailServerId                *Many2One  `xmlrpc:"mail_server_id,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"`
	NextDeparture               *Time      `xmlrpc:"next_departure,omptempty"`
	Opened                      *Int       `xmlrpc:"opened,omptempty"`
	OpenedRatio                 *Int       `xmlrpc:"opened_ratio,omptempty"`
	ReceivedRatio               *Int       `xmlrpc:"received_ratio,omptempty"`
	Replied                     *Int       `xmlrpc:"replied,omptempty"`
	RepliedRatio                *Int       `xmlrpc:"replied_ratio,omptempty"`
	ReplyTo                     *String    `xmlrpc:"reply_to,omptempty"`
	ReplyToMode                 *Selection `xmlrpc:"reply_to_mode,omptempty"`
	SaleInvoicedAmount          *Int       `xmlrpc:"sale_invoiced_amount,omptempty"`
	SaleQuotationCount          *Int       `xmlrpc:"sale_quotation_count,omptempty"`
	Scheduled                   *Int       `xmlrpc:"scheduled,omptempty"`
	ScheduleDate                *Time      `xmlrpc:"schedule_date,omptempty"`
	Sent                        *Int       `xmlrpc:"sent,omptempty"`
	SentDate                    *Time      `xmlrpc:"sent_date,omptempty"`
	SmsAllowUnsubscribe         *Bool      `xmlrpc:"sms_allow_unsubscribe,omptempty"`
	SmsForceSend                *Bool      `xmlrpc:"sms_force_send,omptempty"`
	SmsHasInsufficientCredit    *Bool      `xmlrpc:"sms_has_insufficient_credit,omptempty"`
	SmsTemplateId               *Many2One  `xmlrpc:"sms_template_id,omptempty"`
	SourceId                    *Many2One  `xmlrpc:"source_id,omptempty"`
	State                       *Selection `xmlrpc:"state,omptempty"`
	Subject                     *String    `xmlrpc:"subject,omptempty"`
	Total                       *Int       `xmlrpc:"total,omptempty"`
	UniqueAbTesting             *Bool      `xmlrpc:"unique_ab_testing,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"`
}

MailingMailing represents mailing.mailing model.

func (*MailingMailing) Many2One

func (mm *MailingMailing) Many2One() *Many2One

Many2One convert MailingMailing to *Many2One.

type MailingMailingScheduleDate

type MailingMailingScheduleDate 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"`
	MassMailingId *Many2One `xmlrpc:"mass_mailing_id,omptempty"`
	ScheduleDate  *Time     `xmlrpc:"schedule_date,omptempty"`
	WriteDate     *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid      *Many2One `xmlrpc:"write_uid,omptempty"`
}

MailingMailingScheduleDate represents mailing.mailing.schedule.date model.

func (*MailingMailingScheduleDate) Many2One

func (mmsd *MailingMailingScheduleDate) Many2One() *Many2One

Many2One convert MailingMailingScheduleDate to *Many2One.

type MailingMailingScheduleDates

type MailingMailingScheduleDates []MailingMailingScheduleDate

MailingMailingScheduleDates represents array of mailing.mailing.schedule.date model.

type MailingMailings

type MailingMailings []MailingMailing

MailingMailings represents array of mailing.mailing model.

type MailingTrace

type MailingTrace struct {
	Bounced       *Time      `xmlrpc:"bounced,omptempty"`
	CampaignId    *Many2One  `xmlrpc:"campaign_id,omptempty"`
	Clicked       *Time      `xmlrpc:"clicked,omptempty"`
	CreateDate    *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid     *Many2One  `xmlrpc:"create_uid,omptempty"`
	DisplayName   *String    `xmlrpc:"display_name,omptempty"`
	Email         *String    `xmlrpc:"email,omptempty"`
	Exception     *Time      `xmlrpc:"exception,omptempty"`
	FailureType   *Selection `xmlrpc:"failure_type,omptempty"`
	Id            *Int       `xmlrpc:"id,omptempty"`
	Ignored       *Time      `xmlrpc:"ignored,omptempty"`
	LastUpdate    *Time      `xmlrpc:"__last_update,omptempty"`
	LinksClickIds *Relation  `xmlrpc:"links_click_ids,omptempty"`
	MailMailId    *Many2One  `xmlrpc:"mail_mail_id,omptempty"`
	MailMailIdInt *Int       `xmlrpc:"mail_mail_id_int,omptempty"`
	MassMailingId *Many2One  `xmlrpc:"mass_mailing_id,omptempty"`
	MessageId     *String    `xmlrpc:"message_id,omptempty"`
	Model         *String    `xmlrpc:"model,omptempty"`
	Opened        *Time      `xmlrpc:"opened,omptempty"`
	Replied       *Time      `xmlrpc:"replied,omptempty"`
	ResId         *Int       `xmlrpc:"res_id,omptempty"`
	Scheduled     *Time      `xmlrpc:"scheduled,omptempty"`
	Sent          *Time      `xmlrpc:"sent,omptempty"`
	SmsCode       *String    `xmlrpc:"sms_code,omptempty"`
	SmsNumber     *String    `xmlrpc:"sms_number,omptempty"`
	SmsSmsId      *Many2One  `xmlrpc:"sms_sms_id,omptempty"`
	SmsSmsIdInt   *Int       `xmlrpc:"sms_sms_id_int,omptempty"`
	State         *Selection `xmlrpc:"state,omptempty"`
	StateUpdate   *Time      `xmlrpc:"state_update,omptempty"`
	TraceType     *Selection `xmlrpc:"trace_type,omptempty"`
	WriteDate     *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid      *Many2One  `xmlrpc:"write_uid,omptempty"`
}

MailingTrace represents mailing.trace model.

func (*MailingTrace) Many2One

func (mt *MailingTrace) Many2One() *Many2One

Many2One convert MailingTrace to *Many2One.

type MailingTraceReport

type MailingTraceReport struct {
	Bounced       *Int       `xmlrpc:"bounced,omptempty"`
	Campaign      *String    `xmlrpc:"campaign,omptempty"`
	Clicked       *Int       `xmlrpc:"clicked,omptempty"`
	Delivered     *Int       `xmlrpc:"delivered,omptempty"`
	DisplayName   *String    `xmlrpc:"display_name,omptempty"`
	EmailFrom     *String    `xmlrpc:"email_from,omptempty"`
	Id            *Int       `xmlrpc:"id,omptempty"`
	LastUpdate    *Time      `xmlrpc:"__last_update,omptempty"`
	MailingType   *Selection `xmlrpc:"mailing_type,omptempty"`
	Name          *String    `xmlrpc:"name,omptempty"`
	Opened        *Int       `xmlrpc:"opened,omptempty"`
	Replied       *Int       `xmlrpc:"replied,omptempty"`
	ScheduledDate *Time      `xmlrpc:"scheduled_date,omptempty"`
	Sent          *Int       `xmlrpc:"sent,omptempty"`
	State         *Selection `xmlrpc:"state,omptempty"`
}

MailingTraceReport represents mailing.trace.report model.

func (*MailingTraceReport) Many2One

func (mtr *MailingTraceReport) Many2One() *Many2One

Many2One convert MailingTraceReport to *Many2One.

type MailingTraceReports

type MailingTraceReports []MailingTraceReport

MailingTraceReports represents array of mailing.trace.report model.

type MailingTraces

type MailingTraces []MailingTrace

MailingTraces represents array of mailing.trace model.

type Many2One

type Many2One struct {
	ID   int64
	Name string
}

Many2One represents odoo many2one type. https://www.odoo.com/documentation/13.0/reference/orm.html#relational-fields

func NewMany2One

func NewMany2One(id int64, name string) *Many2One

NewMany2One create a new *Many2One.

func (*Many2One) Get

func (m *Many2One) Get() int64

Get *Many2One value.

type NoteNote

type NoteNote 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"`
	Color                       *Int       `xmlrpc:"color,omptempty"`
	CreateDate                  *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid                   *Many2One  `xmlrpc:"create_uid,omptempty"`
	DateDone                    *Time      `xmlrpc:"date_done,omptempty"`
	DisplayName                 *String    `xmlrpc:"display_name,omptempty"`
	Id                          *Int       `xmlrpc:"id,omptempty"`
	LastUpdate                  *Time      `xmlrpc:"__last_update,omptempty"`
	Memo                        *String    `xmlrpc:"memo,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"`
	Open                        *Bool      `xmlrpc:"open,omptempty"`
	Sequence                    *Int       `xmlrpc:"sequence,omptempty"`
	StageId                     *Many2One  `xmlrpc:"stage_id,omptempty"`
	StageIds                    *Relation  `xmlrpc:"stage_ids,omptempty"`
	TagIds                      *Relation  `xmlrpc:"tag_ids,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"`
}

NoteNote represents note.note model.

func (*NoteNote) Many2One

func (nn *NoteNote) Many2One() *Many2One

Many2One convert NoteNote to *Many2One.

type NoteNotes

type NoteNotes []NoteNote

NoteNotes represents array of note.note model.

type NoteStage

type NoteStage struct {
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Fold        *Bool     `xmlrpc:"fold,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	Name        *String   `xmlrpc:"name,omptempty"`
	Sequence    *Int      `xmlrpc:"sequence,omptempty"`
	UserId      *Many2One `xmlrpc:"user_id,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

NoteStage represents note.stage model.

func (*NoteStage) Many2One

func (ns *NoteStage) Many2One() *Many2One

Many2One convert NoteStage to *Many2One.

type NoteStages

type NoteStages []NoteStage

NoteStages represents array of note.stage model.

type NoteTag

type NoteTag struct {
	Color       *Int      `xmlrpc:"color,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"`
}

NoteTag represents note.tag model.

func (*NoteTag) Many2One

func (nt *NoteTag) Many2One() *Many2One

Many2One convert NoteTag to *Many2One.

type NoteTags

type NoteTags []NoteTag

NoteTags represents array of note.tag model.

type OpenacademyBundle

type OpenacademyBundle struct {
	Attachment  *String   `xmlrpc:"attachment,omptempty"`
	CourseIds   *Relation `xmlrpc:"course_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"`
	Price       *Float    `xmlrpc:"price,omptempty"`
	Title       *String   `xmlrpc:"title,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

OpenacademyBundle represents openacademy.bundle model.

func (*OpenacademyBundle) Many2One

func (ob *OpenacademyBundle) Many2One() *Many2One

Many2One convert OpenacademyBundle to *Many2One.

type OpenacademyBundles

type OpenacademyBundles []OpenacademyBundle

OpenacademyBundles represents array of openacademy.bundle model.

type OpenacademyCourse

type OpenacademyCourse struct {
	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"`
	ResponsibleId *Many2One `xmlrpc:"responsible_id,omptempty"`
	SessionIds    *Relation `xmlrpc:"session_ids,omptempty"`
	WriteDate     *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid      *Many2One `xmlrpc:"write_uid,omptempty"`
}

OpenacademyCourse represents openacademy.course model.

func (*OpenacademyCourse) Many2One

func (oc *OpenacademyCourse) Many2One() *Many2One

Many2One convert OpenacademyCourse to *Many2One.

type OpenacademyCourses

type OpenacademyCourses []OpenacademyCourse

OpenacademyCourses represents array of openacademy.course model.

type OpenacademySession

type OpenacademySession struct {
	Active         *Bool     `xmlrpc:"active,omptempty"`
	AttendeeIds    *Relation `xmlrpc:"attendee_ids,omptempty"`
	AttendeesCount *Int      `xmlrpc:"attendees_count,omptempty"`
	BundleName     *Many2One `xmlrpc:"bundle_name,omptempty"`
	Color          *Int      `xmlrpc:"color,omptempty"`
	CourseId       *Many2One `xmlrpc:"course_id,omptempty"`
	CreateDate     *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid      *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName    *String   `xmlrpc:"display_name,omptempty"`
	Duration       *Float    `xmlrpc:"duration,omptempty"`
	EndDate        *Time     `xmlrpc:"end_date,omptempty"`
	Hours          *Float    `xmlrpc:"hours,omptempty"`
	Id             *Int      `xmlrpc:"id,omptempty"`
	InstructorId   *Many2One `xmlrpc:"instructor_id,omptempty"`
	LastUpdate     *Time     `xmlrpc:"__last_update,omptempty"`
	Name           *String   `xmlrpc:"name,omptempty"`
	Seats          *Int      `xmlrpc:"seats,omptempty"`
	StartDate      *Time     `xmlrpc:"start_date,omptempty"`
	TakenSeats     *Float    `xmlrpc:"taken_seats,omptempty"`
	WriteDate      *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid       *Many2One `xmlrpc:"write_uid,omptempty"`
}

OpenacademySession represents openacademy.session model.

func (*OpenacademySession) Many2One

func (os *OpenacademySession) Many2One() *Many2One

Many2One convert OpenacademySession to *Many2One.

type OpenacademySessions

type OpenacademySessions []OpenacademySession

OpenacademySessions represents array of openacademy.session model.

type OpenacademyWizard

type OpenacademyWizard struct {
	AttendeeIds *Relation `xmlrpc:"attendee_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"`
	SessionIds  *Relation `xmlrpc:"session_ids,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

OpenacademyWizard represents openacademy.wizard model.

func (*OpenacademyWizard) Many2One

func (ow *OpenacademyWizard) Many2One() *Many2One

Many2One convert OpenacademyWizard to *Many2One.

type OpenacademyWizards

type OpenacademyWizards []OpenacademyWizard

OpenacademyWizards represents array of openacademy.wizard model.

type Options

type Options map[string]interface{}

Options allow you to filter search results.

func NewOptions

func NewOptions() *Options

NewOptions creates a new *Options

func (*Options) Add

func (o *Options) Add(opt string, v interface{}) *Options

Add on option by providing option name and value.

func (*Options) AllFields

func (o *Options) AllFields(fields ...string) *Options

AllFields is useful for FieldsGet function. It represents the fields to document you want odoo to return. https://www.odoo.com/documentation/13.0/reference/orm.html#fields-views

func (*Options) Attributes

func (o *Options) Attributes(attributes ...string) *Options

Attributes is useful for FieldsGet function. It represents the attributes to document you want odoo to return. https://www.odoo.com/documentation/13.0/reference/orm.html#fields-views

func (*Options) CreateUserOption

func (o *Options) CreateUserOption(createUser int) *Options

func (*Options) FetchFields

func (o *Options) FetchFields(fields ...string) *Options

FetchFields allow you to precise the model fields you want odoo to return. https://www.odoo.com/documentation/13.0/webservices/odoo.html#search-and-read

func (*Options) Limit

func (o *Options) Limit(limit int) *Options

Limit adds the limit options. https://www.odoo.com/documentation/13.0/webservices/odoo.html#pagination

func (*Options) NoResetPassword

func (o *Options) NoResetPassword(noPassWord bool) *Options

func (*Options) Offset

func (o *Options) Offset(offset int) *Options

Offset adds the offset options. https://www.odoo.com/documentation/13.0/webservices/odoo.html#pagination

type PaymentAcquirer

type PaymentAcquirer struct {
	AuthMsg                    *String    `xmlrpc:"auth_msg,omptempty"`
	AuthorizeImplemented       *Bool      `xmlrpc:"authorize_implemented,omptempty"`
	CancelMsg                  *String    `xmlrpc:"cancel_msg,omptempty"`
	CaptureManually            *Bool      `xmlrpc:"capture_manually,omptempty"`
	CheckValidity              *Bool      `xmlrpc:"check_validity,omptempty"`
	Color                      *Int       `xmlrpc:"color,omptempty"`
	CompanyId                  *Many2One  `xmlrpc:"company_id,omptempty"`
	CountryIds                 *Relation  `xmlrpc:"country_ids,omptempty"`
	CreateDate                 *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid                  *Many2One  `xmlrpc:"create_uid,omptempty"`
	Description                *String    `xmlrpc:"description,omptempty"`
	DisplayAs                  *String    `xmlrpc:"display_as,omptempty"`
	DisplayName                *String    `xmlrpc:"display_name,omptempty"`
	DoneMsg                    *String    `xmlrpc:"done_msg,omptempty"`
	FeesActive                 *Bool      `xmlrpc:"fees_active,omptempty"`
	FeesDomFixed               *Float     `xmlrpc:"fees_dom_fixed,omptempty"`
	FeesDomVar                 *Float     `xmlrpc:"fees_dom_var,omptempty"`
	FeesImplemented            *Bool      `xmlrpc:"fees_implemented,omptempty"`
	FeesIntFixed               *Float     `xmlrpc:"fees_int_fixed,omptempty"`
	FeesIntVar                 *Float     `xmlrpc:"fees_int_var,omptempty"`
	Id                         *Int       `xmlrpc:"id,omptempty"`
	Image128                   *String    `xmlrpc:"image_128,omptempty"`
	InboundPaymentMethodIds    *Relation  `xmlrpc:"inbound_payment_method_ids,omptempty"`
	JournalId                  *Many2One  `xmlrpc:"journal_id,omptempty"`
	LastUpdate                 *Time      `xmlrpc:"__last_update,omptempty"`
	ModuleId                   *Many2One  `xmlrpc:"module_id,omptempty"`
	ModuleState                *Selection `xmlrpc:"module_state,omptempty"`
	ModuleToBuy                *Bool      `xmlrpc:"module_to_buy,omptempty"`
	Name                       *String    `xmlrpc:"name,omptempty"`
	PaymentFlow                *Selection `xmlrpc:"payment_flow,omptempty"`
	PaymentIconIds             *Relation  `xmlrpc:"payment_icon_ids,omptempty"`
	PendingMsg                 *String    `xmlrpc:"pending_msg,omptempty"`
	PreMsg                     *String    `xmlrpc:"pre_msg,omptempty"`
	Provider                   *Selection `xmlrpc:"provider,omptempty"`
	QrCode                     *Bool      `xmlrpc:"qr_code,omptempty"`
	RegistrationViewTemplateId *Many2One  `xmlrpc:"registration_view_template_id,omptempty"`
	SaveToken                  *Selection `xmlrpc:"save_token,omptempty"`
	Sequence                   *Int       `xmlrpc:"sequence,omptempty"`
	SoReferenceType            *Selection `xmlrpc:"so_reference_type,omptempty"`
	State                      *Selection `xmlrpc:"state,omptempty"`
	TokenImplemented           *Bool      `xmlrpc:"token_implemented,omptempty"`
	ViewTemplateId             *Many2One  `xmlrpc:"view_template_id,omptempty"`
	WriteDate                  *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid                   *Many2One  `xmlrpc:"write_uid,omptempty"`
}

PaymentAcquirer represents payment.acquirer model.

func (*PaymentAcquirer) Many2One

func (pa *PaymentAcquirer) Many2One() *Many2One

Many2One convert PaymentAcquirer to *Many2One.

type PaymentAcquirerOnboardingWizard

type PaymentAcquirerOnboardingWizard struct {
	AccNumber            *String    `xmlrpc:"acc_number,omptempty"`
	CreateDate           *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid            *Many2One  `xmlrpc:"create_uid,omptempty"`
	DisplayName          *String    `xmlrpc:"display_name,omptempty"`
	Id                   *Int       `xmlrpc:"id,omptempty"`
	JournalName          *String    `xmlrpc:"journal_name,omptempty"`
	LastUpdate           *Time      `xmlrpc:"__last_update,omptempty"`
	ManualName           *String    `xmlrpc:"manual_name,omptempty"`
	ManualPostMsg        *String    `xmlrpc:"manual_post_msg,omptempty"`
	PaymentMethod        *Selection `xmlrpc:"payment_method,omptempty"`
	PaypalEmailAccount   *String    `xmlrpc:"paypal_email_account,omptempty"`
	PaypalPdtToken       *String    `xmlrpc:"paypal_pdt_token,omptempty"`
	PaypalSellerAccount  *String    `xmlrpc:"paypal_seller_account,omptempty"`
	PaypalUserType       *Selection `xmlrpc:"paypal_user_type,omptempty"`
	StripePublishableKey *String    `xmlrpc:"stripe_publishable_key,omptempty"`
	StripeSecretKey      *String    `xmlrpc:"stripe_secret_key,omptempty"`
	WriteDate            *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid             *Many2One  `xmlrpc:"write_uid,omptempty"`
}

PaymentAcquirerOnboardingWizard represents payment.acquirer.onboarding.wizard model.

func (*PaymentAcquirerOnboardingWizard) Many2One

func (paow *PaymentAcquirerOnboardingWizard) Many2One() *Many2One

Many2One convert PaymentAcquirerOnboardingWizard to *Many2One.

type PaymentAcquirerOnboardingWizards

type PaymentAcquirerOnboardingWizards []PaymentAcquirerOnboardingWizard

PaymentAcquirerOnboardingWizards represents array of payment.acquirer.onboarding.wizard model.

type PaymentAcquirers

type PaymentAcquirers []PaymentAcquirer

PaymentAcquirers represents array of payment.acquirer model.

type PaymentIcon

type PaymentIcon struct {
	AcquirerIds      *Relation `xmlrpc:"acquirer_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"`
	Image            *String   `xmlrpc:"image,omptempty"`
	ImagePaymentForm *String   `xmlrpc:"image_payment_form,omptempty"`
	LastUpdate       *Time     `xmlrpc:"__last_update,omptempty"`
	Name             *String   `xmlrpc:"name,omptempty"`
	WriteDate        *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid         *Many2One `xmlrpc:"write_uid,omptempty"`
}

PaymentIcon represents payment.icon model.

func (*PaymentIcon) Many2One

func (pi *PaymentIcon) Many2One() *Many2One

Many2One convert PaymentIcon to *Many2One.

type PaymentIcons

type PaymentIcons []PaymentIcon

PaymentIcons represents array of payment.icon model.

type PaymentLinkWizard

type PaymentLinkWizard struct {
	AccessToken  *String   `xmlrpc:"access_token,omptempty"`
	Amount       *Float    `xmlrpc:"amount,omptempty"`
	AmountMax    *Float    `xmlrpc:"amount_max,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"`
	Description  *String   `xmlrpc:"description,omptempty"`
	DisplayName  *String   `xmlrpc:"display_name,omptempty"`
	Id           *Int      `xmlrpc:"id,omptempty"`
	LastUpdate   *Time     `xmlrpc:"__last_update,omptempty"`
	Link         *String   `xmlrpc:"link,omptempty"`
	PartnerEmail *String   `xmlrpc:"partner_email,omptempty"`
	PartnerId    *Many2One `xmlrpc:"partner_id,omptempty"`
	ResId        *Int      `xmlrpc:"res_id,omptempty"`
	ResModel     *String   `xmlrpc:"res_model,omptempty"`
	WriteDate    *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid     *Many2One `xmlrpc:"write_uid,omptempty"`
}

PaymentLinkWizard represents payment.link.wizard model.

func (*PaymentLinkWizard) Many2One

func (plw *PaymentLinkWizard) Many2One() *Many2One

Many2One convert PaymentLinkWizard to *Many2One.

type PaymentLinkWizards

type PaymentLinkWizards []PaymentLinkWizard

PaymentLinkWizards represents array of payment.link.wizard model.

type PaymentToken

type PaymentToken struct {
	AcquirerId  *Many2One `xmlrpc:"acquirer_id,omptempty"`
	AcquirerRef *String   `xmlrpc:"acquirer_ref,omptempty"`
	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"`
	Name        *String   `xmlrpc:"name,omptempty"`
	PartnerId   *Many2One `xmlrpc:"partner_id,omptempty"`
	PaymentIds  *Relation `xmlrpc:"payment_ids,omptempty"`
	ShortName   *String   `xmlrpc:"short_name,omptempty"`
	Verified    *Bool     `xmlrpc:"verified,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

PaymentToken represents payment.token model.

func (*PaymentToken) Many2One

func (pt *PaymentToken) Many2One() *Many2One

Many2One convert PaymentToken to *Many2One.

type PaymentTokens

type PaymentTokens []PaymentToken

PaymentTokens represents array of payment.token model.

type PaymentTransaction

type PaymentTransaction struct {
	AcquirerId        *Many2One  `xmlrpc:"acquirer_id,omptempty"`
	AcquirerReference *String    `xmlrpc:"acquirer_reference,omptempty"`
	Amount            *Float     `xmlrpc:"amount,omptempty"`
	CallbackHash      *String    `xmlrpc:"callback_hash,omptempty"`
	CallbackMethod    *String    `xmlrpc:"callback_method,omptempty"`
	CallbackModelId   *Many2One  `xmlrpc:"callback_model_id,omptempty"`
	CallbackResId     *Int       `xmlrpc:"callback_res_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"`
	Fees              *Float     `xmlrpc:"fees,omptempty"`
	Html3ds           *String    `xmlrpc:"html_3ds,omptempty"`
	Id                *Int       `xmlrpc:"id,omptempty"`
	InvoiceIds        *Relation  `xmlrpc:"invoice_ids,omptempty"`
	InvoiceIdsNbr     *Int       `xmlrpc:"invoice_ids_nbr,omptempty"`
	IsProcessed       *Bool      `xmlrpc:"is_processed,omptempty"`
	LastUpdate        *Time      `xmlrpc:"__last_update,omptempty"`
	PartnerAddress    *String    `xmlrpc:"partner_address,omptempty"`
	PartnerCity       *String    `xmlrpc:"partner_city,omptempty"`
	PartnerCountryId  *Many2One  `xmlrpc:"partner_country_id,omptempty"`
	PartnerEmail      *String    `xmlrpc:"partner_email,omptempty"`
	PartnerId         *Many2One  `xmlrpc:"partner_id,omptempty"`
	PartnerLang       *Selection `xmlrpc:"partner_lang,omptempty"`
	PartnerName       *String    `xmlrpc:"partner_name,omptempty"`
	PartnerPhone      *String    `xmlrpc:"partner_phone,omptempty"`
	PartnerZip        *String    `xmlrpc:"partner_zip,omptempty"`
	PaymentId         *Many2One  `xmlrpc:"payment_id,omptempty"`
	PaymentTokenId    *Many2One  `xmlrpc:"payment_token_id,omptempty"`
	Provider          *Selection `xmlrpc:"provider,omptempty"`
	Reference         *String    `xmlrpc:"reference,omptempty"`
	ReturnUrl         *String    `xmlrpc:"return_url,omptempty"`
	SaleOrderIds      *Relation  `xmlrpc:"sale_order_ids,omptempty"`
	SaleOrderIdsNbr   *Int       `xmlrpc:"sale_order_ids_nbr,omptempty"`
	State             *Selection `xmlrpc:"state,omptempty"`
	StateMessage      *String    `xmlrpc:"state_message,omptempty"`
	Type              *Selection `xmlrpc:"type,omptempty"`
	WriteDate         *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid          *Many2One  `xmlrpc:"write_uid,omptempty"`
}

PaymentTransaction represents payment.transaction model.

func (*PaymentTransaction) Many2One

func (pt *PaymentTransaction) Many2One() *Many2One

Many2One convert PaymentTransaction to *Many2One.

type PaymentTransactions

type PaymentTransactions []PaymentTransaction

PaymentTransactions represents array of payment.transaction model.

type PhoneBlacklist

type PhoneBlacklist 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"`
	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"`
	Number                   *String   `xmlrpc:"number,omptempty"`
	WebsiteMessageIds        *Relation `xmlrpc:"website_message_ids,omptempty"`
	WriteDate                *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid                 *Many2One `xmlrpc:"write_uid,omptempty"`
}

PhoneBlacklist represents phone.blacklist model.

func (*PhoneBlacklist) Many2One

func (pb *PhoneBlacklist) Many2One() *Many2One

Many2One convert PhoneBlacklist to *Many2One.

type PhoneBlacklists

type PhoneBlacklists []PhoneBlacklist

PhoneBlacklists represents array of phone.blacklist model.

type PhoneValidationMixin

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

PhoneValidationMixin represents phone.validation.mixin model.

func (*PhoneValidationMixin) Many2One

func (pvm *PhoneValidationMixin) Many2One() *Many2One

Many2One convert PhoneValidationMixin to *Many2One.

type PhoneValidationMixins

type PhoneValidationMixins []PhoneValidationMixin

PhoneValidationMixins represents array of phone.validation.mixin model.

type PortalMixin

type PortalMixin struct {
	AccessToken   *String `xmlrpc:"access_token,omptempty"`
	AccessUrl     *String `xmlrpc:"access_url,omptempty"`
	AccessWarning *String `xmlrpc:"access_warning,omptempty"`
	DisplayName   *String `xmlrpc:"display_name,omptempty"`
	Id            *Int    `xmlrpc:"id,omptempty"`
	LastUpdate    *Time   `xmlrpc:"__last_update,omptempty"`
}

PortalMixin represents portal.mixin model.

func (*PortalMixin) Many2One

func (pm *PortalMixin) Many2One() *Many2One

Many2One convert PortalMixin to *Many2One.

type PortalMixins

type PortalMixins []PortalMixin

PortalMixins represents array of portal.mixin model.

type PortalShare

type PortalShare struct {
	AccessWarning *String   `xmlrpc:"access_warning,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"`
	Note          *String   `xmlrpc:"note,omptempty"`
	PartnerIds    *Relation `xmlrpc:"partner_ids,omptempty"`
	ResId         *Int      `xmlrpc:"res_id,omptempty"`
	ResModel      *String   `xmlrpc:"res_model,omptempty"`
	ShareLink     *String   `xmlrpc:"share_link,omptempty"`
	WriteDate     *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid      *Many2One `xmlrpc:"write_uid,omptempty"`
}

PortalShare represents portal.share model.

func (*PortalShare) Many2One

func (ps *PortalShare) Many2One() *Many2One

Many2One convert PortalShare to *Many2One.

type PortalShares

type PortalShares []PortalShare

PortalShares represents array of portal.share model.

type PortalWizard

type PortalWizard 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"`
	WelcomeMessage *String   `xmlrpc:"welcome_message,omptempty"`
	WriteDate      *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid       *Many2One `xmlrpc:"write_uid,omptempty"`
}

PortalWizard represents portal.wizard model.

func (*PortalWizard) Many2One

func (pw *PortalWizard) Many2One() *Many2One

Many2One convert PortalWizard to *Many2One.

type PortalWizardUser

type PortalWizardUser struct {
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Email       *String   `xmlrpc:"email,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	InPortal    *Bool     `xmlrpc:"in_portal,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	PartnerId   *Many2One `xmlrpc:"partner_id,omptempty"`
	UserId      *Many2One `xmlrpc:"user_id,omptempty"`
	WizardId    *Many2One `xmlrpc:"wizard_id,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

PortalWizardUser represents portal.wizard.user model.

func (*PortalWizardUser) Many2One

func (pwu *PortalWizardUser) Many2One() *Many2One

Many2One convert PortalWizardUser to *Many2One.

type PortalWizardUsers

type PortalWizardUsers []PortalWizardUser

PortalWizardUsers represents array of portal.wizard.user model.

type PortalWizards

type PortalWizards []PortalWizard

PortalWizards represents array of portal.wizard model.

type ProductAttribute

type ProductAttribute struct {
	AttributeLineIds *Relation  `xmlrpc:"attribute_line_ids,omptempty"`
	CreateDate       *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid        *Many2One  `xmlrpc:"create_uid,omptempty"`
	CreateVariant    *Selection `xmlrpc:"create_variant,omptempty"`
	DisplayName      *String    `xmlrpc:"display_name,omptempty"`
	DisplayType      *Selection `xmlrpc:"display_type,omptempty"`
	Id               *Int       `xmlrpc:"id,omptempty"`
	IsUsedOnProducts *Bool      `xmlrpc:"is_used_on_products,omptempty"`
	LastUpdate       *Time      `xmlrpc:"__last_update,omptempty"`
	Name             *String    `xmlrpc:"name,omptempty"`
	ProductTmplIds   *Relation  `xmlrpc:"product_tmpl_ids,omptempty"`
	Sequence         *Int       `xmlrpc:"sequence,omptempty"`
	ValueIds         *Relation  `xmlrpc:"value_ids,omptempty"`
	WriteDate        *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid         *Many2One  `xmlrpc:"write_uid,omptempty"`
}

ProductAttribute represents product.attribute model.

func (*ProductAttribute) Many2One

func (pa *ProductAttribute) Many2One() *Many2One

Many2One convert ProductAttribute to *Many2One.

type ProductAttributeCustomValue

type ProductAttributeCustomValue struct {
	CreateDate                            *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid                             *Many2One `xmlrpc:"create_uid,omptempty"`
	CustomProductTemplateAttributeValueId *Many2One `xmlrpc:"custom_product_template_attribute_value_id,omptempty"`
	CustomValue                           *String   `xmlrpc:"custom_value,omptempty"`
	DisplayName                           *String   `xmlrpc:"display_name,omptempty"`
	Id                                    *Int      `xmlrpc:"id,omptempty"`
	LastUpdate                            *Time     `xmlrpc:"__last_update,omptempty"`
	Name                                  *String   `xmlrpc:"name,omptempty"`
	SaleOrderLineId                       *Many2One `xmlrpc:"sale_order_line_id,omptempty"`
	WriteDate                             *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid                              *Many2One `xmlrpc:"write_uid,omptempty"`
}

ProductAttributeCustomValue represents product.attribute.custom.value model.

func (*ProductAttributeCustomValue) Many2One

func (pacv *ProductAttributeCustomValue) Many2One() *Many2One

Many2One convert ProductAttributeCustomValue to *Many2One.

type ProductAttributeCustomValues

type ProductAttributeCustomValues []ProductAttributeCustomValue

ProductAttributeCustomValues represents array of product.attribute.custom.value model.

type ProductAttributeValue

type ProductAttributeValue struct {
	AttributeId         *Many2One  `xmlrpc:"attribute_id,omptempty"`
	CreateDate          *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid           *Many2One  `xmlrpc:"create_uid,omptempty"`
	DisplayName         *String    `xmlrpc:"display_name,omptempty"`
	DisplayType         *Selection `xmlrpc:"display_type,omptempty"`
	HtmlColor           *String    `xmlrpc:"html_color,omptempty"`
	Id                  *Int       `xmlrpc:"id,omptempty"`
	IsCustom            *Bool      `xmlrpc:"is_custom,omptempty"`
	IsUsedOnProducts    *Bool      `xmlrpc:"is_used_on_products,omptempty"`
	LastUpdate          *Time      `xmlrpc:"__last_update,omptempty"`
	Name                *String    `xmlrpc:"name,omptempty"`
	PavAttributeLineIds *Relation  `xmlrpc:"pav_attribute_line_ids,omptempty"`
	Sequence            *Int       `xmlrpc:"sequence,omptempty"`
	WriteDate           *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid            *Many2One  `xmlrpc:"write_uid,omptempty"`
}

ProductAttributeValue represents product.attribute.value model.

func (*ProductAttributeValue) Many2One

func (pav *ProductAttributeValue) Many2One() *Many2One

Many2One convert ProductAttributeValue to *Many2One.

type ProductAttributeValues

type ProductAttributeValues []ProductAttributeValue

ProductAttributeValues represents array of product.attribute.value model.

type ProductAttributes

type ProductAttributes []ProductAttribute

ProductAttributes represents array of product.attribute model.

type ProductCategory

type ProductCategory struct {
	ChildId                       *Relation `xmlrpc:"child_id,omptempty"`
	CompleteName                  *String   `xmlrpc:"complete_name,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"`
	ProductCount                  *Int      `xmlrpc:"product_count,omptempty"`
	PropertyAccountExpenseCategId *Many2One `xmlrpc:"property_account_expense_categ_id,omptempty"`
	PropertyAccountIncomeCategId  *Many2One `xmlrpc:"property_account_income_categ_id,omptempty"`
	WriteDate                     *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid                      *Many2One `xmlrpc:"write_uid,omptempty"`
}

ProductCategory represents product.category model.

func (*ProductCategory) Many2One

func (pc *ProductCategory) Many2One() *Many2One

Many2One convert ProductCategory to *Many2One.

type ProductCategorys

type ProductCategorys []ProductCategory

ProductCategorys represents array of product.category model.

type ProductPackaging

type ProductPackaging struct {
	Barcode      *String   `xmlrpc:"barcode,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"`
	ProductId    *Many2One `xmlrpc:"product_id,omptempty"`
	ProductUomId *Many2One `xmlrpc:"product_uom_id,omptempty"`
	Qty          *Float    `xmlrpc:"qty,omptempty"`
	Sequence     *Int      `xmlrpc:"sequence,omptempty"`
	WriteDate    *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid     *Many2One `xmlrpc:"write_uid,omptempty"`
}

ProductPackaging represents product.packaging model.

func (*ProductPackaging) Many2One

func (pp *ProductPackaging) Many2One() *Many2One

Many2One convert ProductPackaging to *Many2One.

type ProductPackagings

type ProductPackagings []ProductPackaging

ProductPackagings represents array of product.packaging model.

type ProductPriceList

type ProductPriceList 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"`
	PriceList   *Many2One `xmlrpc:"price_list,omptempty"`
	Qty1        *Int      `xmlrpc:"qty1,omptempty"`
	Qty2        *Int      `xmlrpc:"qty2,omptempty"`
	Qty3        *Int      `xmlrpc:"qty3,omptempty"`
	Qty4        *Int      `xmlrpc:"qty4,omptempty"`
	Qty5        *Int      `xmlrpc:"qty5,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

ProductPriceList represents product.price_list model.

func (*ProductPriceList) Many2One

func (pp *ProductPriceList) Many2One() *Many2One

Many2One convert ProductPriceList to *Many2One.

type ProductPriceLists

type ProductPriceLists []ProductPriceList

ProductPriceLists represents array of product.price_list model.

type ProductPricelist

type ProductPricelist struct {
	Active          *Bool      `xmlrpc:"active,omptempty"`
	CompanyId       *Many2One  `xmlrpc:"company_id,omptempty"`
	CountryGroupIds *Relation  `xmlrpc:"country_group_ids,omptempty"`
	CreateDate      *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid       *Many2One  `xmlrpc:"create_uid,omptempty"`
	CurrencyId      *Many2One  `xmlrpc:"currency_id,omptempty"`
	DiscountPolicy  *Selection `xmlrpc:"discount_policy,omptempty"`
	DisplayName     *String    `xmlrpc:"display_name,omptempty"`
	Id              *Int       `xmlrpc:"id,omptempty"`
	ItemIds         *Relation  `xmlrpc:"item_ids,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"`
}

ProductPricelist represents product.pricelist model.

func (*ProductPricelist) Many2One

func (pp *ProductPricelist) Many2One() *Many2One

Many2One convert ProductPricelist to *Many2One.

type ProductPricelistItem

type ProductPricelistItem struct {
	Active          *Bool      `xmlrpc:"active,omptempty"`
	AppliedOn       *Selection `xmlrpc:"applied_on,omptempty"`
	Base            *Selection `xmlrpc:"base,omptempty"`
	BasePricelistId *Many2One  `xmlrpc:"base_pricelist_id,omptempty"`
	CategId         *Many2One  `xmlrpc:"categ_id,omptempty"`
	CompanyId       *Many2One  `xmlrpc:"company_id,omptempty"`
	ComputePrice    *Selection `xmlrpc:"compute_price,omptempty"`
	CreateDate      *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid       *Many2One  `xmlrpc:"create_uid,omptempty"`
	CurrencyId      *Many2One  `xmlrpc:"currency_id,omptempty"`
	DateEnd         *Time      `xmlrpc:"date_end,omptempty"`
	DateStart       *Time      `xmlrpc:"date_start,omptempty"`
	DisplayName     *String    `xmlrpc:"display_name,omptempty"`
	FixedPrice      *Float     `xmlrpc:"fixed_price,omptempty"`
	Id              *Int       `xmlrpc:"id,omptempty"`
	LastUpdate      *Time      `xmlrpc:"__last_update,omptempty"`
	MinQuantity     *Int       `xmlrpc:"min_quantity,omptempty"`
	Name            *String    `xmlrpc:"name,omptempty"`
	PercentPrice    *Float     `xmlrpc:"percent_price,omptempty"`
	Price           *String    `xmlrpc:"price,omptempty"`
	PriceDiscount   *Float     `xmlrpc:"price_discount,omptempty"`
	PricelistId     *Many2One  `xmlrpc:"pricelist_id,omptempty"`
	PriceMaxMargin  *Float     `xmlrpc:"price_max_margin,omptempty"`
	PriceMinMargin  *Float     `xmlrpc:"price_min_margin,omptempty"`
	PriceRound      *Float     `xmlrpc:"price_round,omptempty"`
	PriceSurcharge  *Float     `xmlrpc:"price_surcharge,omptempty"`
	ProductId       *Many2One  `xmlrpc:"product_id,omptempty"`
	ProductTmplId   *Many2One  `xmlrpc:"product_tmpl_id,omptempty"`
	WriteDate       *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid        *Many2One  `xmlrpc:"write_uid,omptempty"`
}

ProductPricelistItem represents product.pricelist.item model.

func (*ProductPricelistItem) Many2One

func (ppi *ProductPricelistItem) Many2One() *Many2One

Many2One convert ProductPricelistItem to *Many2One.

type ProductPricelistItems

type ProductPricelistItems []ProductPricelistItem

ProductPricelistItems represents array of product.pricelist.item model.

type ProductPricelists

type ProductPricelists []ProductPricelist

ProductPricelists represents array of product.pricelist model.

type ProductProduct

type ProductProduct struct {
	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"`
	AttributeLineIds                     *Relation  `xmlrpc:"attribute_line_ids,omptempty"`
	Barcode                              *String    `xmlrpc:"barcode,omptempty"`
	CanBeExpensed                        *Bool      `xmlrpc:"can_be_expensed,omptempty"`
	CanImage1024BeZoomed                 *Bool      `xmlrpc:"can_image_1024_be_zoomed,omptempty"`
	CanImageVariant1024BeZoomed          *Bool      `xmlrpc:"can_image_variant_1024_be_zoomed,omptempty"`
	CategId                              *Many2One  `xmlrpc:"categ_id,omptempty"`
	Code                                 *String    `xmlrpc:"code,omptempty"`
	Color                                *Int       `xmlrpc:"color,omptempty"`
	CombinationIndices                   *String    `xmlrpc:"combination_indices,omptempty"`
	CompanyId                            *Many2One  `xmlrpc:"company_id,omptempty"`
	CostCurrencyId                       *Many2One  `xmlrpc:"cost_currency_id,omptempty"`
	CreateDate                           *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid                            *Many2One  `xmlrpc:"create_uid,omptempty"`
	CurrencyId                           *Many2One  `xmlrpc:"currency_id,omptempty"`
	DefaultCode                          *String    `xmlrpc:"default_code,omptempty"`
	Description                          *String    `xmlrpc:"description,omptempty"`
	DescriptionPurchase                  *String    `xmlrpc:"description_purchase,omptempty"`
	DescriptionSale                      *String    `xmlrpc:"description_sale,omptempty"`
	DisplayName                          *String    `xmlrpc:"display_name,omptempty"`
	EventOk                              *Bool      `xmlrpc:"event_ok,omptempty"`
	EventTicketIds                       *Relation  `xmlrpc:"event_ticket_ids,omptempty"`
	ExpensePolicy                        *Selection `xmlrpc:"expense_policy,omptempty"`
	HasConfigurableAttributes            *Bool      `xmlrpc:"has_configurable_attributes,omptempty"`
	Id                                   *Int       `xmlrpc:"id,omptempty"`
	Image1024                            *String    `xmlrpc:"image_1024,omptempty"`
	Image128                             *String    `xmlrpc:"image_128,omptempty"`
	Image1920                            *String    `xmlrpc:"image_1920,omptempty"`
	Image256                             *String    `xmlrpc:"image_256,omptempty"`
	Image512                             *String    `xmlrpc:"image_512,omptempty"`
	ImageVariant1024                     *String    `xmlrpc:"image_variant_1024,omptempty"`
	ImageVariant128                      *String    `xmlrpc:"image_variant_128,omptempty"`
	ImageVariant1920                     *String    `xmlrpc:"image_variant_1920,omptempty"`
	ImageVariant256                      *String    `xmlrpc:"image_variant_256,omptempty"`
	ImageVariant512                      *String    `xmlrpc:"image_variant_512,omptempty"`
	InvoicePolicy                        *Selection `xmlrpc:"invoice_policy,omptempty"`
	IsProductVariant                     *Bool      `xmlrpc:"is_product_variant,omptempty"`
	LastUpdate                           *Time      `xmlrpc:"__last_update,omptempty"`
	ListPrice                            *Float     `xmlrpc:"list_price,omptempty"`
	LstPrice                             *Float     `xmlrpc:"lst_price,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"`
	PackagingIds                         *Relation  `xmlrpc:"packaging_ids,omptempty"`
	PartnerRef                           *String    `xmlrpc:"partner_ref,omptempty"`
	Price                                *Float     `xmlrpc:"price,omptempty"`
	PriceExtra                           *Float     `xmlrpc:"price_extra,omptempty"`
	PricelistId                          *Many2One  `xmlrpc:"pricelist_id,omptempty"`
	PricelistItemCount                   *Int       `xmlrpc:"pricelist_item_count,omptempty"`
	ProductTemplateAttributeValueIds     *Relation  `xmlrpc:"product_template_attribute_value_ids,omptempty"`
	ProductTmplId                        *Many2One  `xmlrpc:"product_tmpl_id,omptempty"`
	ProductVariantCount                  *Int       `xmlrpc:"product_variant_count,omptempty"`
	ProductVariantId                     *Many2One  `xmlrpc:"product_variant_id,omptempty"`
	ProductVariantIds                    *Relation  `xmlrpc:"product_variant_ids,omptempty"`
	PropertyAccountExpenseId             *Many2One  `xmlrpc:"property_account_expense_id,omptempty"`
	PropertyAccountIncomeId              *Many2One  `xmlrpc:"property_account_income_id,omptempty"`
	PurchaseOk                           *Bool      `xmlrpc:"purchase_ok,omptempty"`
	Rental                               *Bool      `xmlrpc:"rental,omptempty"`
	SaleLineWarn                         *Selection `xmlrpc:"sale_line_warn,omptempty"`
	SaleLineWarnMsg                      *String    `xmlrpc:"sale_line_warn_msg,omptempty"`
	SaleOk                               *Bool      `xmlrpc:"sale_ok,omptempty"`
	SalesCount                           *Float     `xmlrpc:"sales_count,omptempty"`
	SellerIds                            *Relation  `xmlrpc:"seller_ids,omptempty"`
	Sequence                             *Int       `xmlrpc:"sequence,omptempty"`
	ServiceType                          *Selection `xmlrpc:"service_type,omptempty"`
	StandardPrice                        *Float     `xmlrpc:"standard_price,omptempty"`
	SupplierTaxesId                      *Relation  `xmlrpc:"supplier_taxes_id,omptempty"`
	TaxesId                              *Relation  `xmlrpc:"taxes_id,omptempty"`
	Type                                 *Selection `xmlrpc:"type,omptempty"`
	UomId                                *Many2One  `xmlrpc:"uom_id,omptempty"`
	UomName                              *String    `xmlrpc:"uom_name,omptempty"`
	UomPoId                              *Many2One  `xmlrpc:"uom_po_id,omptempty"`
	ValidProductTemplateAttributeLineIds *Relation  `xmlrpc:"valid_product_template_attribute_line_ids,omptempty"`
	VariantSellerIds                     *Relation  `xmlrpc:"variant_seller_ids,omptempty"`
	VisibleExpensePolicy                 *Bool      `xmlrpc:"visible_expense_policy,omptempty"`
	Volume                               *Float     `xmlrpc:"volume,omptempty"`
	VolumeUomName                        *String    `xmlrpc:"volume_uom_name,omptempty"`
	WebsiteMessageIds                    *Relation  `xmlrpc:"website_message_ids,omptempty"`
	Weight                               *Float     `xmlrpc:"weight,omptempty"`
	WeightUomName                        *String    `xmlrpc:"weight_uom_name,omptempty"`
	WriteDate                            *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid                             *Many2One  `xmlrpc:"write_uid,omptempty"`
}

ProductProduct represents product.product model.

func (*ProductProduct) Many2One

func (pp *ProductProduct) Many2One() *Many2One

Many2One convert ProductProduct to *Many2One.

type ProductProducts

type ProductProducts []ProductProduct

ProductProducts represents array of product.product model.

type ProductSupplierinfo

type ProductSupplierinfo struct {
	CompanyId           *Many2One `xmlrpc:"company_id,omptempty"`
	CreateDate          *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid           *Many2One `xmlrpc:"create_uid,omptempty"`
	CurrencyId          *Many2One `xmlrpc:"currency_id,omptempty"`
	DateEnd             *Time     `xmlrpc:"date_end,omptempty"`
	DateStart           *Time     `xmlrpc:"date_start,omptempty"`
	Delay               *Int      `xmlrpc:"delay,omptempty"`
	DisplayName         *String   `xmlrpc:"display_name,omptempty"`
	Id                  *Int      `xmlrpc:"id,omptempty"`
	LastUpdate          *Time     `xmlrpc:"__last_update,omptempty"`
	MinQty              *Float    `xmlrpc:"min_qty,omptempty"`
	Name                *Many2One `xmlrpc:"name,omptempty"`
	Price               *Float    `xmlrpc:"price,omptempty"`
	ProductCode         *String   `xmlrpc:"product_code,omptempty"`
	ProductId           *Many2One `xmlrpc:"product_id,omptempty"`
	ProductName         *String   `xmlrpc:"product_name,omptempty"`
	ProductTmplId       *Many2One `xmlrpc:"product_tmpl_id,omptempty"`
	ProductUom          *Many2One `xmlrpc:"product_uom,omptempty"`
	ProductVariantCount *Int      `xmlrpc:"product_variant_count,omptempty"`
	Sequence            *Int      `xmlrpc:"sequence,omptempty"`
	WriteDate           *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid            *Many2One `xmlrpc:"write_uid,omptempty"`
}

ProductSupplierinfo represents product.supplierinfo model.

func (*ProductSupplierinfo) Many2One

func (ps *ProductSupplierinfo) Many2One() *Many2One

Many2One convert ProductSupplierinfo to *Many2One.

type ProductSupplierinfos

type ProductSupplierinfos []ProductSupplierinfo

ProductSupplierinfos represents array of product.supplierinfo model.

type ProductTemplate

type ProductTemplate struct {
	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"`
	AttributeLineIds                     *Relation  `xmlrpc:"attribute_line_ids,omptempty"`
	Barcode                              *String    `xmlrpc:"barcode,omptempty"`
	CanBeExpensed                        *Bool      `xmlrpc:"can_be_expensed,omptempty"`
	CanImage1024BeZoomed                 *Bool      `xmlrpc:"can_image_1024_be_zoomed,omptempty"`
	CategId                              *Many2One  `xmlrpc:"categ_id,omptempty"`
	Color                                *Int       `xmlrpc:"color,omptempty"`
	CompanyId                            *Many2One  `xmlrpc:"company_id,omptempty"`
	CostCurrencyId                       *Many2One  `xmlrpc:"cost_currency_id,omptempty"`
	CreateDate                           *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid                            *Many2One  `xmlrpc:"create_uid,omptempty"`
	CurrencyId                           *Many2One  `xmlrpc:"currency_id,omptempty"`
	DefaultCode                          *String    `xmlrpc:"default_code,omptempty"`
	Description                          *String    `xmlrpc:"description,omptempty"`
	DescriptionPurchase                  *String    `xmlrpc:"description_purchase,omptempty"`
	DescriptionSale                      *String    `xmlrpc:"description_sale,omptempty"`
	DisplayName                          *String    `xmlrpc:"display_name,omptempty"`
	EventOk                              *Bool      `xmlrpc:"event_ok,omptempty"`
	ExpensePolicy                        *Selection `xmlrpc:"expense_policy,omptempty"`
	HasConfigurableAttributes            *Bool      `xmlrpc:"has_configurable_attributes,omptempty"`
	Id                                   *Int       `xmlrpc:"id,omptempty"`
	Image1024                            *String    `xmlrpc:"image_1024,omptempty"`
	Image128                             *String    `xmlrpc:"image_128,omptempty"`
	Image1920                            *String    `xmlrpc:"image_1920,omptempty"`
	Image256                             *String    `xmlrpc:"image_256,omptempty"`
	Image512                             *String    `xmlrpc:"image_512,omptempty"`
	InvoicePolicy                        *Selection `xmlrpc:"invoice_policy,omptempty"`
	IsProductVariant                     *Bool      `xmlrpc:"is_product_variant,omptempty"`
	LastUpdate                           *Time      `xmlrpc:"__last_update,omptempty"`
	ListPrice                            *Float     `xmlrpc:"list_price,omptempty"`
	LstPrice                             *Float     `xmlrpc:"lst_price,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"`
	PackagingIds                         *Relation  `xmlrpc:"packaging_ids,omptempty"`
	Price                                *Float     `xmlrpc:"price,omptempty"`
	PricelistId                          *Many2One  `xmlrpc:"pricelist_id,omptempty"`
	PricelistItemCount                   *Int       `xmlrpc:"pricelist_item_count,omptempty"`
	ProductVariantCount                  *Int       `xmlrpc:"product_variant_count,omptempty"`
	ProductVariantId                     *Many2One  `xmlrpc:"product_variant_id,omptempty"`
	ProductVariantIds                    *Relation  `xmlrpc:"product_variant_ids,omptempty"`
	PropertyAccountExpenseId             *Many2One  `xmlrpc:"property_account_expense_id,omptempty"`
	PropertyAccountIncomeId              *Many2One  `xmlrpc:"property_account_income_id,omptempty"`
	PurchaseOk                           *Bool      `xmlrpc:"purchase_ok,omptempty"`
	Rental                               *Bool      `xmlrpc:"rental,omptempty"`
	SaleLineWarn                         *Selection `xmlrpc:"sale_line_warn,omptempty"`
	SaleLineWarnMsg                      *String    `xmlrpc:"sale_line_warn_msg,omptempty"`
	SaleOk                               *Bool      `xmlrpc:"sale_ok,omptempty"`
	SalesCount                           *Float     `xmlrpc:"sales_count,omptempty"`
	SellerIds                            *Relation  `xmlrpc:"seller_ids,omptempty"`
	Sequence                             *Int       `xmlrpc:"sequence,omptempty"`
	ServiceType                          *Selection `xmlrpc:"service_type,omptempty"`
	StandardPrice                        *Float     `xmlrpc:"standard_price,omptempty"`
	SupplierTaxesId                      *Relation  `xmlrpc:"supplier_taxes_id,omptempty"`
	TaxesId                              *Relation  `xmlrpc:"taxes_id,omptempty"`
	Type                                 *Selection `xmlrpc:"type,omptempty"`
	UomId                                *Many2One  `xmlrpc:"uom_id,omptempty"`
	UomName                              *String    `xmlrpc:"uom_name,omptempty"`
	UomPoId                              *Many2One  `xmlrpc:"uom_po_id,omptempty"`
	ValidProductTemplateAttributeLineIds *Relation  `xmlrpc:"valid_product_template_attribute_line_ids,omptempty"`
	VariantSellerIds                     *Relation  `xmlrpc:"variant_seller_ids,omptempty"`
	VisibleExpensePolicy                 *Bool      `xmlrpc:"visible_expense_policy,omptempty"`
	Volume                               *Float     `xmlrpc:"volume,omptempty"`
	VolumeUomName                        *String    `xmlrpc:"volume_uom_name,omptempty"`
	WebsiteMessageIds                    *Relation  `xmlrpc:"website_message_ids,omptempty"`
	Weight                               *Float     `xmlrpc:"weight,omptempty"`
	WeightUomName                        *String    `xmlrpc:"weight_uom_name,omptempty"`
	WriteDate                            *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid                             *Many2One  `xmlrpc:"write_uid,omptempty"`
}

ProductTemplate represents product.template model.

func (*ProductTemplate) Many2One

func (pt *ProductTemplate) Many2One() *Many2One

Many2One convert ProductTemplate to *Many2One.

type ProductTemplateAttributeExclusion

type ProductTemplateAttributeExclusion 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"`
	ProductTemplateAttributeValueId *Many2One `xmlrpc:"product_template_attribute_value_id,omptempty"`
	ProductTmplId                   *Many2One `xmlrpc:"product_tmpl_id,omptempty"`
	ValueIds                        *Relation `xmlrpc:"value_ids,omptempty"`
	WriteDate                       *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid                        *Many2One `xmlrpc:"write_uid,omptempty"`
}

ProductTemplateAttributeExclusion represents product.template.attribute.exclusion model.

func (*ProductTemplateAttributeExclusion) Many2One

func (ptae *ProductTemplateAttributeExclusion) Many2One() *Many2One

Many2One convert ProductTemplateAttributeExclusion to *Many2One.

type ProductTemplateAttributeExclusions

type ProductTemplateAttributeExclusions []ProductTemplateAttributeExclusion

ProductTemplateAttributeExclusions represents array of product.template.attribute.exclusion model.

type ProductTemplateAttributeLine

type ProductTemplateAttributeLine struct {
	Active                  *Bool     `xmlrpc:"active,omptempty"`
	AttributeId             *Many2One `xmlrpc:"attribute_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"`
	ProductTemplateValueIds *Relation `xmlrpc:"product_template_value_ids,omptempty"`
	ProductTmplId           *Many2One `xmlrpc:"product_tmpl_id,omptempty"`
	ValueIds                *Relation `xmlrpc:"value_ids,omptempty"`
	WriteDate               *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid                *Many2One `xmlrpc:"write_uid,omptempty"`
}

ProductTemplateAttributeLine represents product.template.attribute.line model.

func (*ProductTemplateAttributeLine) Many2One

func (ptal *ProductTemplateAttributeLine) Many2One() *Many2One

Many2One convert ProductTemplateAttributeLine to *Many2One.

type ProductTemplateAttributeLines

type ProductTemplateAttributeLines []ProductTemplateAttributeLine

ProductTemplateAttributeLines represents array of product.template.attribute.line model.

type ProductTemplateAttributeValue

type ProductTemplateAttributeValue struct {
	AttributeId             *Many2One  `xmlrpc:"attribute_id,omptempty"`
	AttributeLineId         *Many2One  `xmlrpc:"attribute_line_id,omptempty"`
	CreateDate              *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid               *Many2One  `xmlrpc:"create_uid,omptempty"`
	DisplayName             *String    `xmlrpc:"display_name,omptempty"`
	DisplayType             *Selection `xmlrpc:"display_type,omptempty"`
	ExcludeFor              *Relation  `xmlrpc:"exclude_for,omptempty"`
	HtmlColor               *String    `xmlrpc:"html_color,omptempty"`
	Id                      *Int       `xmlrpc:"id,omptempty"`
	IsCustom                *Bool      `xmlrpc:"is_custom,omptempty"`
	LastUpdate              *Time      `xmlrpc:"__last_update,omptempty"`
	Name                    *String    `xmlrpc:"name,omptempty"`
	PriceExtra              *Float     `xmlrpc:"price_extra,omptempty"`
	ProductAttributeValueId *Many2One  `xmlrpc:"product_attribute_value_id,omptempty"`
	ProductTmplId           *Many2One  `xmlrpc:"product_tmpl_id,omptempty"`
	PtavActive              *Bool      `xmlrpc:"ptav_active,omptempty"`
	PtavProductVariantIds   *Relation  `xmlrpc:"ptav_product_variant_ids,omptempty"`
	WriteDate               *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid                *Many2One  `xmlrpc:"write_uid,omptempty"`
}

ProductTemplateAttributeValue represents product.template.attribute.value model.

func (*ProductTemplateAttributeValue) Many2One

func (ptav *ProductTemplateAttributeValue) Many2One() *Many2One

Many2One convert ProductTemplateAttributeValue to *Many2One.

type ProductTemplateAttributeValues

type ProductTemplateAttributeValues []ProductTemplateAttributeValue

ProductTemplateAttributeValues represents array of product.template.attribute.value model.

type ProductTemplates

type ProductTemplates []ProductTemplate

ProductTemplates represents array of product.template model.

type ProjectProject

type ProjectProject struct {
	AccessToken                  *String    `xmlrpc:"access_token,omptempty"`
	AccessUrl                    *String    `xmlrpc:"access_url,omptempty"`
	AccessWarning                *String    `xmlrpc:"access_warning,omptempty"`
	Active                       *Bool      `xmlrpc:"active,omptempty"`
	AliasContact                 *Selection `xmlrpc:"alias_contact,omptempty"`
	AliasDefaults                *String    `xmlrpc:"alias_defaults,omptempty"`
	AliasDomain                  *String    `xmlrpc:"alias_domain,omptempty"`
	AliasForceThreadId           *Int       `xmlrpc:"alias_force_thread_id,omptempty"`
	AliasId                      *Many2One  `xmlrpc:"alias_id,omptempty"`
	AliasModelId                 *Many2One  `xmlrpc:"alias_model_id,omptempty"`
	AliasName                    *String    `xmlrpc:"alias_name,omptempty"`
	AliasParentModelId           *Many2One  `xmlrpc:"alias_parent_model_id,omptempty"`
	AliasParentThreadId          *Int       `xmlrpc:"alias_parent_thread_id,omptempty"`
	AliasUserId                  *Many2One  `xmlrpc:"alias_user_id,omptempty"`
	AnalyticAccountId            *Many2One  `xmlrpc:"analytic_account_id,omptempty"`
	Color                        *Int       `xmlrpc:"color,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"`
	DateStart                    *Time      `xmlrpc:"date_start,omptempty"`
	DisplayName                  *String    `xmlrpc:"display_name,omptempty"`
	DocCount                     *Int       `xmlrpc:"doc_count,omptempty"`
	FavoriteUserIds              *Relation  `xmlrpc:"favorite_user_ids,omptempty"`
	Id                           *Int       `xmlrpc:"id,omptempty"`
	IsFavorite                   *Bool      `xmlrpc:"is_favorite,omptempty"`
	LabelTasks                   *String    `xmlrpc:"label_tasks,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"`
	PartnerId                    *Many2One  `xmlrpc:"partner_id,omptempty"`
	PortalShowRating             *Bool      `xmlrpc:"portal_show_rating,omptempty"`
	PrivacyVisibility            *Selection `xmlrpc:"privacy_visibility,omptempty"`
	RatingIds                    *Relation  `xmlrpc:"rating_ids,omptempty"`
	RatingPercentageSatisfaction *Int       `xmlrpc:"rating_percentage_satisfaction,omptempty"`
	RatingRequestDeadline        *Time      `xmlrpc:"rating_request_deadline,omptempty"`
	RatingStatus                 *Selection `xmlrpc:"rating_status,omptempty"`
	RatingStatusPeriod           *Selection `xmlrpc:"rating_status_period,omptempty"`
	ResourceCalendarId           *Many2One  `xmlrpc:"resource_calendar_id,omptempty"`
	Sequence                     *Int       `xmlrpc:"sequence,omptempty"`
	SubtaskProjectId             *Many2One  `xmlrpc:"subtask_project_id,omptempty"`
	TaskCount                    *Int       `xmlrpc:"task_count,omptempty"`
	TaskIds                      *Relation  `xmlrpc:"task_ids,omptempty"`
	Tasks                        *Relation  `xmlrpc:"tasks,omptempty"`
	TypeIds                      *Relation  `xmlrpc:"type_ids,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"`
}

ProjectProject represents project.project model.

func (*ProjectProject) Many2One

func (pp *ProjectProject) Many2One() *Many2One

Many2One convert ProjectProject to *Many2One.

type ProjectProjects

type ProjectProjects []ProjectProject

ProjectProjects represents array of project.project model.

type ProjectTags

type ProjectTags struct {
	Color       *Int      `xmlrpc:"color,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"`
}

ProjectTags represents project.tags model.

func (*ProjectTags) Many2One

func (pt *ProjectTags) Many2One() *Many2One

Many2One convert ProjectTags to *Many2One.

type ProjectTagss

type ProjectTagss []ProjectTags

ProjectTagss represents array of project.tags model.

type ProjectTask

type ProjectTask struct {
	AccessToken                 *String    `xmlrpc:"access_token,omptempty"`
	AccessUrl                   *String    `xmlrpc:"access_url,omptempty"`
	AccessWarning               *String    `xmlrpc:"access_warning,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"`
	AttachmentIds               *Relation  `xmlrpc:"attachment_ids,omptempty"`
	ChildIds                    *Relation  `xmlrpc:"child_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"`
	DateAssign                  *Time      `xmlrpc:"date_assign,omptempty"`
	DateDeadline                *Time      `xmlrpc:"date_deadline,omptempty"`
	DateDeadlineFormatted       *String    `xmlrpc:"date_deadline_formatted,omptempty"`
	DateEnd                     *Time      `xmlrpc:"date_end,omptempty"`
	DateLastStageUpdate         *Time      `xmlrpc:"date_last_stage_update,omptempty"`
	Description                 *String    `xmlrpc:"description,omptempty"`
	DisplayedImageId            *Many2One  `xmlrpc:"displayed_image_id,omptempty"`
	DisplayName                 *String    `xmlrpc:"display_name,omptempty"`
	EmailCc                     *String    `xmlrpc:"email_cc,omptempty"`
	EmailFrom                   *String    `xmlrpc:"email_from,omptempty"`
	Id                          *Int       `xmlrpc:"id,omptempty"`
	KanbanState                 *Selection `xmlrpc:"kanban_state,omptempty"`
	KanbanStateLabel            *String    `xmlrpc:"kanban_state_label,omptempty"`
	LastUpdate                  *Time      `xmlrpc:"__last_update,omptempty"`
	LegendBlocked               *String    `xmlrpc:"legend_blocked,omptempty"`
	LegendDone                  *String    `xmlrpc:"legend_done,omptempty"`
	LegendNormal                *String    `xmlrpc:"legend_normal,omptempty"`
	ManagerId                   *Many2One  `xmlrpc:"manager_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"`
	ParentId                    *Many2One  `xmlrpc:"parent_id,omptempty"`
	PartnerCity                 *String    `xmlrpc:"partner_city,omptempty"`
	PartnerId                   *Many2One  `xmlrpc:"partner_id,omptempty"`
	PlannedHours                *Float     `xmlrpc:"planned_hours,omptempty"`
	Priority                    *Selection `xmlrpc:"priority,omptempty"`
	ProjectId                   *Many2One  `xmlrpc:"project_id,omptempty"`
	RatingAvg                   *Float     `xmlrpc:"rating_avg,omptempty"`
	RatingCount                 *Int       `xmlrpc:"rating_count,omptempty"`
	RatingIds                   *Relation  `xmlrpc:"rating_ids,omptempty"`
	RatingLastFeedback          *String    `xmlrpc:"rating_last_feedback,omptempty"`
	RatingLastImage             *String    `xmlrpc:"rating_last_image,omptempty"`
	RatingLastValue             *Float     `xmlrpc:"rating_last_value,omptempty"`
	Sequence                    *Int       `xmlrpc:"sequence,omptempty"`
	StageId                     *Many2One  `xmlrpc:"stage_id,omptempty"`
	SubtaskCount                *Int       `xmlrpc:"subtask_count,omptempty"`
	SubtaskPlannedHours         *Float     `xmlrpc:"subtask_planned_hours,omptempty"`
	SubtaskProjectId            *Many2One  `xmlrpc:"subtask_project_id,omptempty"`
	TagIds                      *Relation  `xmlrpc:"tag_ids,omptempty"`
	UserEmail                   *String    `xmlrpc:"user_email,omptempty"`
	UserId                      *Many2One  `xmlrpc:"user_id,omptempty"`
	WebsiteMessageIds           *Relation  `xmlrpc:"website_message_ids,omptempty"`
	WorkingDaysClose            *Float     `xmlrpc:"working_days_close,omptempty"`
	WorkingDaysOpen             *Float     `xmlrpc:"working_days_open,omptempty"`
	WorkingHoursClose           *Float     `xmlrpc:"working_hours_close,omptempty"`
	WorkingHoursOpen            *Float     `xmlrpc:"working_hours_open,omptempty"`
	WriteDate                   *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid                    *Many2One  `xmlrpc:"write_uid,omptempty"`
}

ProjectTask represents project.task model.

func (*ProjectTask) Many2One

func (pt *ProjectTask) Many2One() *Many2One

Many2One convert ProjectTask to *Many2One.

type ProjectTaskType

type ProjectTaskType struct {
	AutoValidationKanbanState *Bool     `xmlrpc:"auto_validation_kanban_state,omptempty"`
	CreateDate                *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid                 *Many2One `xmlrpc:"create_uid,omptempty"`
	Description               *String   `xmlrpc:"description,omptempty"`
	DisplayName               *String   `xmlrpc:"display_name,omptempty"`
	Fold                      *Bool     `xmlrpc:"fold,omptempty"`
	Id                        *Int      `xmlrpc:"id,omptempty"`
	LastUpdate                *Time     `xmlrpc:"__last_update,omptempty"`
	LegendBlocked             *String   `xmlrpc:"legend_blocked,omptempty"`
	LegendDone                *String   `xmlrpc:"legend_done,omptempty"`
	LegendNormal              *String   `xmlrpc:"legend_normal,omptempty"`
	MailTemplateId            *Many2One `xmlrpc:"mail_template_id,omptempty"`
	Name                      *String   `xmlrpc:"name,omptempty"`
	ProjectIds                *Relation `xmlrpc:"project_ids,omptempty"`
	RatingTemplateId          *Many2One `xmlrpc:"rating_template_id,omptempty"`
	Sequence                  *Int      `xmlrpc:"sequence,omptempty"`
	WriteDate                 *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid                  *Many2One `xmlrpc:"write_uid,omptempty"`
}

ProjectTaskType represents project.task.type model.

func (*ProjectTaskType) Many2One

func (ptt *ProjectTaskType) Many2One() *Many2One

Many2One convert ProjectTaskType to *Many2One.

type ProjectTaskTypes

type ProjectTaskTypes []ProjectTaskType

ProjectTaskTypes represents array of project.task.type model.

type ProjectTasks

type ProjectTasks []ProjectTask

ProjectTasks represents array of project.task model.

type PublisherWarrantyContract

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

PublisherWarrantyContract represents publisher_warranty.contract model.

func (*PublisherWarrantyContract) Many2One

func (pc *PublisherWarrantyContract) Many2One() *Many2One

Many2One convert PublisherWarrantyContract to *Many2One.

type PublisherWarrantyContracts

type PublisherWarrantyContracts []PublisherWarrantyContract

PublisherWarrantyContracts represents array of publisher_warranty.contract model.

type RatingMixin

type RatingMixin struct {
	DisplayName        *String   `xmlrpc:"display_name,omptempty"`
	Id                 *Int      `xmlrpc:"id,omptempty"`
	LastUpdate         *Time     `xmlrpc:"__last_update,omptempty"`
	RatingAvg          *Float    `xmlrpc:"rating_avg,omptempty"`
	RatingCount        *Int      `xmlrpc:"rating_count,omptempty"`
	RatingIds          *Relation `xmlrpc:"rating_ids,omptempty"`
	RatingLastFeedback *String   `xmlrpc:"rating_last_feedback,omptempty"`
	RatingLastImage    *String   `xmlrpc:"rating_last_image,omptempty"`
	RatingLastValue    *Float    `xmlrpc:"rating_last_value,omptempty"`
}

RatingMixin represents rating.mixin model.

func (*RatingMixin) Many2One

func (rm *RatingMixin) Many2One() *Many2One

Many2One convert RatingMixin to *Many2One.

type RatingMixins

type RatingMixins []RatingMixin

RatingMixins represents array of rating.mixin model.

type RatingParentMixin

type RatingParentMixin struct {
	DisplayName                  *String   `xmlrpc:"display_name,omptempty"`
	Id                           *Int      `xmlrpc:"id,omptempty"`
	LastUpdate                   *Time     `xmlrpc:"__last_update,omptempty"`
	RatingIds                    *Relation `xmlrpc:"rating_ids,omptempty"`
	RatingPercentageSatisfaction *Int      `xmlrpc:"rating_percentage_satisfaction,omptempty"`
}

RatingParentMixin represents rating.parent.mixin model.

func (*RatingParentMixin) Many2One

func (rpm *RatingParentMixin) Many2One() *Many2One

Many2One convert RatingParentMixin to *Many2One.

type RatingParentMixins

type RatingParentMixins []RatingParentMixin

RatingParentMixins represents array of rating.parent.mixin model.

type RatingRating

type RatingRating struct {
	AccessToken       *String    `xmlrpc:"access_token,omptempty"`
	Consumed          *Bool      `xmlrpc:"consumed,omptempty"`
	CreateDate        *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid         *Many2One  `xmlrpc:"create_uid,omptempty"`
	DisplayName       *String    `xmlrpc:"display_name,omptempty"`
	Feedback          *String    `xmlrpc:"feedback,omptempty"`
	Id                *Int       `xmlrpc:"id,omptempty"`
	LastUpdate        *Time      `xmlrpc:"__last_update,omptempty"`
	MessageId         *Many2One  `xmlrpc:"message_id,omptempty"`
	ParentResId       *Int       `xmlrpc:"parent_res_id,omptempty"`
	ParentResModel    *String    `xmlrpc:"parent_res_model,omptempty"`
	ParentResModelId  *Many2One  `xmlrpc:"parent_res_model_id,omptempty"`
	ParentResName     *String    `xmlrpc:"parent_res_name,omptempty"`
	PartnerId         *Many2One  `xmlrpc:"partner_id,omptempty"`
	PublisherComment  *String    `xmlrpc:"publisher_comment,omptempty"`
	PublisherDatetime *Time      `xmlrpc:"publisher_datetime,omptempty"`
	PublisherId       *Many2One  `xmlrpc:"publisher_id,omptempty"`
	RatedPartnerId    *Many2One  `xmlrpc:"rated_partner_id,omptempty"`
	Rating            *Float     `xmlrpc:"rating,omptempty"`
	RatingImage       *String    `xmlrpc:"rating_image,omptempty"`
	RatingText        *Selection `xmlrpc:"rating_text,omptempty"`
	ResId             *Int       `xmlrpc:"res_id,omptempty"`
	ResModel          *String    `xmlrpc:"res_model,omptempty"`
	ResModelId        *Many2One  `xmlrpc:"res_model_id,omptempty"`
	ResName           *String    `xmlrpc:"res_name,omptempty"`
	WebsitePublished  *Bool      `xmlrpc:"website_published,omptempty"`
	WriteDate         *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid          *Many2One  `xmlrpc:"write_uid,omptempty"`
}

RatingRating represents rating.rating model.

func (*RatingRating) Many2One

func (rr *RatingRating) Many2One() *Many2One

Many2One convert RatingRating to *Many2One.

type RatingRatings

type RatingRatings []RatingRating

RatingRatings represents array of rating.rating model.

type RegistrationEditor

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

RegistrationEditor represents registration.editor model.

func (*RegistrationEditor) Many2One

func (re *RegistrationEditor) Many2One() *Many2One

Many2One convert RegistrationEditor to *Many2One.

type RegistrationEditorLine

type RegistrationEditorLine struct {
	CreateDate      *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid       *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName     *String   `xmlrpc:"display_name,omptempty"`
	EditorId        *Many2One `xmlrpc:"editor_id,omptempty"`
	Email           *String   `xmlrpc:"email,omptempty"`
	EventId         *Many2One `xmlrpc:"event_id,omptempty"`
	EventTicketId   *Many2One `xmlrpc:"event_ticket_id,omptempty"`
	Id              *Int      `xmlrpc:"id,omptempty"`
	LastUpdate      *Time     `xmlrpc:"__last_update,omptempty"`
	Mobile          *String   `xmlrpc:"mobile,omptempty"`
	Name            *String   `xmlrpc:"name,omptempty"`
	Phone           *String   `xmlrpc:"phone,omptempty"`
	RegistrationId  *Many2One `xmlrpc:"registration_id,omptempty"`
	SaleOrderLineId *Many2One `xmlrpc:"sale_order_line_id,omptempty"`
	WriteDate       *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid        *Many2One `xmlrpc:"write_uid,omptempty"`
}

RegistrationEditorLine represents registration.editor.line model.

func (*RegistrationEditorLine) Many2One

func (rel *RegistrationEditorLine) Many2One() *Many2One

Many2One convert RegistrationEditorLine to *Many2One.

type RegistrationEditorLines

type RegistrationEditorLines []RegistrationEditorLine

RegistrationEditorLines represents array of registration.editor.line model.

type RegistrationEditors

type RegistrationEditors []RegistrationEditor

RegistrationEditors represents array of registration.editor model.

type Relation

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

Relation represents odoo one2many and many2many types. https://www.odoo.com/documentation/13.0/reference/orm.html#relational-fields

func NewRelation

func NewRelation() *Relation

NewRelation creates a new *Relation.

func (*Relation) AddNewRecord

func (r *Relation) AddNewRecord(values interface{})

AddNewRecord is an helper to create a new record of one2many or many2many. https://www.odoo.com/documentation/13.0/reference/orm.html#odoo.models.Model.write

func (*Relation) AddRecord

func (r *Relation) AddRecord(record int64)

AddRecord is an helper to add an existing record of one2many or many2many. https://www.odoo.com/documentation/13.0/reference/orm.html#odoo.models.Model.write

func (*Relation) DeleteRecord

func (r *Relation) DeleteRecord(record int64)

DeleteRecord is an helper to delete an existing record of one2many or many2many. https://www.odoo.com/documentation/13.0/reference/orm.html#odoo.models.Model.write

func (*Relation) Get

func (r *Relation) Get() []int64

Get *Relation value.

func (*Relation) RemoveAllRecords

func (r *Relation) RemoveAllRecords()

RemoveAllRecords is an helper to remove all records of one2many or many2many. https://www.odoo.com/documentation/13.0/reference/orm.html#odoo.models.Model.write

func (*Relation) RemoveRecord

func (r *Relation) RemoveRecord(record int64)

RemoveRecord is an helper to remove an existing record of one2many or many2many. https://www.odoo.com/documentation/13.0/reference/orm.html#odoo.models.Model.write

func (*Relation) ReplaceAllRecords

func (r *Relation) ReplaceAllRecords(newRecords []int64)

ReplaceAllRecords is an helper to replace all records of one2many or many2many. https://www.odoo.com/documentation/13.0/reference/orm.html#odoo.models.Model.write

func (*Relation) UpdateRecord

func (r *Relation) UpdateRecord(record int64, values interface{})

UpdateRecord is an helper to update an existing record of one2many or many2many. https://www.odoo.com/documentation/13.0/reference/orm.html#odoo.models.Model.write

type ReportAccountReportAgedpartnerbalance

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

ReportAccountReportAgedpartnerbalance represents report.account.report_agedpartnerbalance model.

func (*ReportAccountReportAgedpartnerbalance) Many2One

Many2One convert ReportAccountReportAgedpartnerbalance to *Many2One.

type ReportAccountReportAgedpartnerbalances

type ReportAccountReportAgedpartnerbalances []ReportAccountReportAgedpartnerbalance

ReportAccountReportAgedpartnerbalances represents array of report.account.report_agedpartnerbalance model.

type ReportAccountReportHashIntegrity

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

ReportAccountReportHashIntegrity represents report.account.report_hash_integrity model.

func (*ReportAccountReportHashIntegrity) Many2One

func (rar *ReportAccountReportHashIntegrity) Many2One() *Many2One

Many2One convert ReportAccountReportHashIntegrity to *Many2One.

type ReportAccountReportHashIntegritys

type ReportAccountReportHashIntegritys []ReportAccountReportHashIntegrity

ReportAccountReportHashIntegritys represents array of report.account.report_hash_integrity model.

type ReportAccountReportInvoiceWithPayments

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

ReportAccountReportInvoiceWithPayments represents report.account.report_invoice_with_payments model.

func (*ReportAccountReportInvoiceWithPayments) Many2One

Many2One convert ReportAccountReportInvoiceWithPayments to *Many2One.

type ReportAccountReportInvoiceWithPaymentss

type ReportAccountReportInvoiceWithPaymentss []ReportAccountReportInvoiceWithPayments

ReportAccountReportInvoiceWithPaymentss represents array of report.account.report_invoice_with_payments model.

type ReportAccountReportJournal

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

ReportAccountReportJournal represents report.account.report_journal model.

func (*ReportAccountReportJournal) Many2One

func (rar *ReportAccountReportJournal) Many2One() *Many2One

Many2One convert ReportAccountReportJournal to *Many2One.

type ReportAccountReportJournals

type ReportAccountReportJournals []ReportAccountReportJournal

ReportAccountReportJournals represents array of report.account.report_journal model.

type ReportAllChannelsSales

type ReportAllChannelsSales struct {
	AnalyticAccountId *Many2One `xmlrpc:"analytic_account_id,omptempty"`
	CategId           *Many2One `xmlrpc:"categ_id,omptempty"`
	CompanyId         *Many2One `xmlrpc:"company_id,omptempty"`
	CountryId         *Many2One `xmlrpc:"country_id,omptempty"`
	DateOrder         *Time     `xmlrpc:"date_order,omptempty"`
	DisplayName       *String   `xmlrpc:"display_name,omptempty"`
	Id                *Int      `xmlrpc:"id,omptempty"`
	LastUpdate        *Time     `xmlrpc:"__last_update,omptempty"`
	Name              *String   `xmlrpc:"name,omptempty"`
	PartnerId         *Many2One `xmlrpc:"partner_id,omptempty"`
	PricelistId       *Many2One `xmlrpc:"pricelist_id,omptempty"`
	PriceSubtotal     *Float    `xmlrpc:"price_subtotal,omptempty"`
	PriceTotal        *Float    `xmlrpc:"price_total,omptempty"`
	ProductId         *Many2One `xmlrpc:"product_id,omptempty"`
	ProductQty        *Float    `xmlrpc:"product_qty,omptempty"`
	ProductTmplId     *Many2One `xmlrpc:"product_tmpl_id,omptempty"`
	TeamId            *Many2One `xmlrpc:"team_id,omptempty"`
	UserId            *Many2One `xmlrpc:"user_id,omptempty"`
}

ReportAllChannelsSales represents report.all.channels.sales model.

func (*ReportAllChannelsSales) Many2One

func (racs *ReportAllChannelsSales) Many2One() *Many2One

Many2One convert ReportAllChannelsSales to *Many2One.

type ReportAllChannelsSaless

type ReportAllChannelsSaless []ReportAllChannelsSales

ReportAllChannelsSaless represents array of report.all.channels.sales model.

type ReportBaseReportIrmodulereference

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

ReportBaseReportIrmodulereference represents report.base.report_irmodulereference model.

func (*ReportBaseReportIrmodulereference) Many2One

Many2One convert ReportBaseReportIrmodulereference to *Many2One.

type ReportBaseReportIrmodulereferences

type ReportBaseReportIrmodulereferences []ReportBaseReportIrmodulereference

ReportBaseReportIrmodulereferences represents array of report.base.report_irmodulereference model.

type ReportHrHolidaysReportHolidayssummary

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

ReportHrHolidaysReportHolidayssummary represents report.hr_holidays.report_holidayssummary model.

func (*ReportHrHolidaysReportHolidayssummary) Many2One

Many2One convert ReportHrHolidaysReportHolidayssummary to *Many2One.

type ReportHrHolidaysReportHolidayssummarys

type ReportHrHolidaysReportHolidayssummarys []ReportHrHolidaysReportHolidayssummary

ReportHrHolidaysReportHolidayssummarys represents array of report.hr_holidays.report_holidayssummary model.

type ReportLayout

type ReportLayout struct {
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	Image       *String   `xmlrpc:"image,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	Name        *String   `xmlrpc:"name,omptempty"`
	Pdf         *String   `xmlrpc:"pdf,omptempty"`
	ViewId      *Many2One `xmlrpc:"view_id,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

ReportLayout represents report.layout model.

func (*ReportLayout) Many2One

func (rl *ReportLayout) Many2One() *Many2One

Many2One convert ReportLayout to *Many2One.

type ReportLayouts

type ReportLayouts []ReportLayout

ReportLayouts represents array of report.layout model.

type ReportPaperformat

type ReportPaperformat struct {
	CreateDate      *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid       *Many2One  `xmlrpc:"create_uid,omptempty"`
	Default         *Bool      `xmlrpc:"default,omptempty"`
	DisplayName     *String    `xmlrpc:"display_name,omptempty"`
	Dpi             *Int       `xmlrpc:"dpi,omptempty"`
	Format          *Selection `xmlrpc:"format,omptempty"`
	HeaderLine      *Bool      `xmlrpc:"header_line,omptempty"`
	HeaderSpacing   *Int       `xmlrpc:"header_spacing,omptempty"`
	Id              *Int       `xmlrpc:"id,omptempty"`
	LastUpdate      *Time      `xmlrpc:"__last_update,omptempty"`
	MarginBottom    *Float     `xmlrpc:"margin_bottom,omptempty"`
	MarginLeft      *Float     `xmlrpc:"margin_left,omptempty"`
	MarginRight     *Float     `xmlrpc:"margin_right,omptempty"`
	MarginTop       *Float     `xmlrpc:"margin_top,omptempty"`
	Name            *String    `xmlrpc:"name,omptempty"`
	Orientation     *Selection `xmlrpc:"orientation,omptempty"`
	PageHeight      *Int       `xmlrpc:"page_height,omptempty"`
	PageWidth       *Int       `xmlrpc:"page_width,omptempty"`
	PrintPageHeight *Float     `xmlrpc:"print_page_height,omptempty"`
	PrintPageWidth  *Float     `xmlrpc:"print_page_width,omptempty"`
	ReportIds       *Relation  `xmlrpc:"report_ids,omptempty"`
	WriteDate       *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid        *Many2One  `xmlrpc:"write_uid,omptempty"`
}

ReportPaperformat represents report.paperformat model.

func (*ReportPaperformat) Many2One

func (rp *ReportPaperformat) Many2One() *Many2One

Many2One convert ReportPaperformat to *Many2One.

type ReportPaperformats

type ReportPaperformats []ReportPaperformat

ReportPaperformats represents array of report.paperformat model.

type ReportProductReportPricelist

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

ReportProductReportPricelist represents report.product.report_pricelist model.

func (*ReportProductReportPricelist) Many2One

func (rpr *ReportProductReportPricelist) Many2One() *Many2One

Many2One convert ReportProductReportPricelist to *Many2One.

type ReportProductReportPricelists

type ReportProductReportPricelists []ReportProductReportPricelist

ReportProductReportPricelists represents array of report.product.report_pricelist model.

type ReportProjectTaskUser

type ReportProjectTaskUser struct {
	CompanyId           *Many2One  `xmlrpc:"company_id,omptempty"`
	DateAssign          *Time      `xmlrpc:"date_assign,omptempty"`
	DateDeadline        *Time      `xmlrpc:"date_deadline,omptempty"`
	DateEnd             *Time      `xmlrpc:"date_end,omptempty"`
	DateLastStageUpdate *Time      `xmlrpc:"date_last_stage_update,omptempty"`
	DelayEndingsDays    *Float     `xmlrpc:"delay_endings_days,omptempty"`
	DisplayName         *String    `xmlrpc:"display_name,omptempty"`
	Id                  *Int       `xmlrpc:"id,omptempty"`
	LastUpdate          *Time      `xmlrpc:"__last_update,omptempty"`
	Name                *String    `xmlrpc:"name,omptempty"`
	Nbr                 *Int       `xmlrpc:"nbr,omptempty"`
	PartnerId           *Many2One  `xmlrpc:"partner_id,omptempty"`
	Priority            *Selection `xmlrpc:"priority,omptempty"`
	ProjectId           *Many2One  `xmlrpc:"project_id,omptempty"`
	StageId             *Many2One  `xmlrpc:"stage_id,omptempty"`
	State               *Selection `xmlrpc:"state,omptempty"`
	UserId              *Many2One  `xmlrpc:"user_id,omptempty"`
	WorkingDaysClose    *Float     `xmlrpc:"working_days_close,omptempty"`
	WorkingDaysOpen     *Float     `xmlrpc:"working_days_open,omptempty"`
}

ReportProjectTaskUser represents report.project.task.user model.

func (*ReportProjectTaskUser) Many2One

func (rptu *ReportProjectTaskUser) Many2One() *Many2One

Many2One convert ReportProjectTaskUser to *Many2One.

type ReportProjectTaskUsers

type ReportProjectTaskUsers []ReportProjectTaskUser

ReportProjectTaskUsers represents array of report.project.task.user model.

type ReportSaleReportSaleproforma

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

ReportSaleReportSaleproforma represents report.sale.report_saleproforma model.

func (*ReportSaleReportSaleproforma) Many2One

func (rsr *ReportSaleReportSaleproforma) Many2One() *Many2One

Many2One convert ReportSaleReportSaleproforma to *Many2One.

type ReportSaleReportSaleproformas

type ReportSaleReportSaleproformas []ReportSaleReportSaleproforma

ReportSaleReportSaleproformas represents array of report.sale.report_saleproforma model.

type ResBank

type ResBank struct {
	Active      *Bool     `xmlrpc:"active,omptempty"`
	Bic         *String   `xmlrpc:"bic,omptempty"`
	City        *String   `xmlrpc:"city,omptempty"`
	Country     *Many2One `xmlrpc:"country,omptempty"`
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Email       *String   `xmlrpc:"email,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	Name        *String   `xmlrpc:"name,omptempty"`
	Phone       *String   `xmlrpc:"phone,omptempty"`
	State       *Many2One `xmlrpc:"state,omptempty"`
	Street      *String   `xmlrpc:"street,omptempty"`
	Street2     *String   `xmlrpc:"street2,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
	Zip         *String   `xmlrpc:"zip,omptempty"`
}

ResBank represents res.bank model.

func (*ResBank) Many2One

func (rb *ResBank) Many2One() *Many2One

Many2One convert ResBank to *Many2One.

type ResBanks

type ResBanks []ResBank

ResBanks represents array of res.bank model.

type ResCompany

type ResCompany struct {
	AccountBankReconciliationStart        *Time      `xmlrpc:"account_bank_reconciliation_start,omptempty"`
	AccountDashboardOnboardingState       *Selection `xmlrpc:"account_dashboard_onboarding_state,omptempty"`
	AccountDefaultPosReceivableAccountId  *Many2One  `xmlrpc:"account_default_pos_receivable_account_id,omptempty"`
	AccountId                             *String    `xmlrpc:"account_id,omptempty"`
	AccountInvoiceOnboardingState         *Selection `xmlrpc:"account_invoice_onboarding_state,omptempty"`
	AccountLinkUrl                        *String    `xmlrpc:"account_link_url,omptempty"`
	AccountNo                             *String    `xmlrpc:"account_no,omptempty"`
	AccountOnboardingInvoiceLayoutState   *Selection `xmlrpc:"account_onboarding_invoice_layout_state,omptempty"`
	AccountOnboardingSaleTaxState         *Selection `xmlrpc:"account_onboarding_sale_tax_state,omptempty"`
	AccountOnboardingSampleInvoiceState   *Selection `xmlrpc:"account_onboarding_sample_invoice_state,omptempty"`
	AccountOpeningDate                    *Time      `xmlrpc:"account_opening_date,omptempty"`
	AccountOpeningJournalId               *Many2One  `xmlrpc:"account_opening_journal_id,omptempty"`
	AccountOpeningMoveId                  *Many2One  `xmlrpc:"account_opening_move_id,omptempty"`
	AccountPurchaseTaxId                  *Many2One  `xmlrpc:"account_purchase_tax_id,omptempty"`
	AccountSaleTaxId                      *Many2One  `xmlrpc:"account_sale_tax_id,omptempty"`
	AccountSetupBankDataState             *Selection `xmlrpc:"account_setup_bank_data_state,omptempty"`
	AccountSetupCoaState                  *Selection `xmlrpc:"account_setup_coa_state,omptempty"`
	AccountSetupFyDataState               *Selection `xmlrpc:"account_setup_fy_data_state,omptempty"`
	AccrualDefaultJournalId               *Many2One  `xmlrpc:"accrual_default_journal_id,omptempty"`
	AngloSaxonAccounting                  *Bool      `xmlrpc:"anglo_saxon_accounting,omptempty"`
	BankAccountCodePrefix                 *String    `xmlrpc:"bank_account_code_prefix,omptempty"`
	BankIds                               *Relation  `xmlrpc:"bank_ids,omptempty"`
	BankJournalIds                        *Relation  `xmlrpc:"bank_journal_ids,omptempty"`
	BaseOnboardingCompanyState            *Selection `xmlrpc:"base_onboarding_company_state,omptempty"`
	CashAccountCodePrefix                 *String    `xmlrpc:"cash_account_code_prefix,omptempty"`
	Catchall                              *String    `xmlrpc:"catchall,omptempty"`
	ChargesEnabled                        *Bool      `xmlrpc:"charges_enabled,omptempty"`
	ChartTemplateId                       *Many2One  `xmlrpc:"chart_template_id,omptempty"`
	ChildIds                              *Relation  `xmlrpc:"child_ids,omptempty"`
	City                                  *String    `xmlrpc:"city,omptempty"`
	CompanyRegistry                       *String    `xmlrpc:"company_registry,omptempty"`
	CountryId                             *Many2One  `xmlrpc:"country_id,omptempty"`
	CreateDate                            *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid                             *Many2One  `xmlrpc:"create_uid,omptempty"`
	CurrencyExchangeJournalId             *Many2One  `xmlrpc:"currency_exchange_journal_id,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"`
	DisplayName                           *String    `xmlrpc:"display_name,omptempty"`
	Email                                 *String    `xmlrpc:"email,omptempty"`
	ExpectsChartOfAccounts                *Bool      `xmlrpc:"expects_chart_of_accounts,omptempty"`
	ExpenseAccrualAccountId               *Many2One  `xmlrpc:"expense_accrual_account_id,omptempty"`
	ExpenseCurrencyExchangeAccountId      *Many2One  `xmlrpc:"expense_currency_exchange_account_id,omptempty"`
	ExternalReportLayoutId                *Many2One  `xmlrpc:"external_report_layout_id,omptempty"`
	Favicon                               *String    `xmlrpc:"favicon,omptempty"`
	FiscalyearLastDay                     *Int       `xmlrpc:"fiscalyear_last_day,omptempty"`
	FiscalyearLastMonth                   *Selection `xmlrpc:"fiscalyear_last_month,omptempty"`
	FiscalyearLockDate                    *Time      `xmlrpc:"fiscalyear_lock_date,omptempty"`
	Font                                  *Selection `xmlrpc:"font,omptempty"`
	HrPresenceControlEmailAmount          *Int       `xmlrpc:"hr_presence_control_email_amount,omptempty"`
	HrPresenceControlIpList               *String    `xmlrpc:"hr_presence_control_ip_list,omptempty"`
	Id                                    *Int       `xmlrpc:"id,omptempty"`
	IncomeCurrencyExchangeAccountId       *Many2One  `xmlrpc:"income_currency_exchange_account_id,omptempty"`
	IncotermId                            *Many2One  `xmlrpc:"incoterm_id,omptempty"`
	InvoiceIsEmail                        *Bool      `xmlrpc:"invoice_is_email,omptempty"`
	InvoiceIsPrint                        *Bool      `xmlrpc:"invoice_is_print,omptempty"`
	InvoiceIsSnailmail                    *Bool      `xmlrpc:"invoice_is_snailmail,omptempty"`
	InvoiceTerms                          *String    `xmlrpc:"invoice_terms,omptempty"`
	L10NSgUniqueEntityNumber              *String    `xmlrpc:"l10n_sg_unique_entity_number,omptempty"`
	LastUpdate                            *Time      `xmlrpc:"__last_update,omptempty"`
	LogoWeb                               *String    `xmlrpc:"logo_web,omptempty"`
	Name                                  *String    `xmlrpc:"name,omptempty"`
	NomenclatureId                        *Many2One  `xmlrpc:"nomenclature_id,omptempty"`
	PaperformatId                         *Many2One  `xmlrpc:"paperformat_id,omptempty"`
	ParentId                              *Many2One  `xmlrpc:"parent_id,omptempty"`
	PartnerGid                            *Int       `xmlrpc:"partner_gid,omptempty"`
	PartnerId                             *Many2One  `xmlrpc:"partner_id,omptempty"`
	PaymentAcquirerOnboardingState        *Selection `xmlrpc:"payment_acquirer_onboarding_state,omptempty"`
	PaymentOnboardingPaymentMethod        *Selection `xmlrpc:"payment_onboarding_payment_method,omptempty"`
	PeriodLockDate                        *Time      `xmlrpc:"period_lock_date,omptempty"`
	Phone                                 *String    `xmlrpc:"phone,omptempty"`
	PortalConfirmationPay                 *Bool      `xmlrpc:"portal_confirmation_pay,omptempty"`
	PortalConfirmationSign                *Bool      `xmlrpc:"portal_confirmation_sign,omptempty"`
	PrimaryColor                          *String    `xmlrpc:"primary_color,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"`
	QrCode                                *Bool      `xmlrpc:"qr_code,omptempty"`
	QuotationValidityDays                 *Int       `xmlrpc:"quotation_validity_days,omptempty"`
	ReportFooter                          *String    `xmlrpc:"report_footer,omptempty"`
	ReportHeader                          *String    `xmlrpc:"report_header,omptempty"`
	ResourceCalendarId                    *Many2One  `xmlrpc:"resource_calendar_id,omptempty"`
	ResourceCalendarIds                   *Relation  `xmlrpc:"resource_calendar_ids,omptempty"`
	RevenueAccrualAccountId               *Many2One  `xmlrpc:"revenue_accrual_account_id,omptempty"`
	SaleOnboardingOrderConfirmationState  *Selection `xmlrpc:"sale_onboarding_order_confirmation_state,omptempty"`
	SaleOnboardingPaymentMethod           *Selection `xmlrpc:"sale_onboarding_payment_method,omptempty"`
	SaleOnboardingSampleQuotationState    *Selection `xmlrpc:"sale_onboarding_sample_quotation_state,omptempty"`
	SaleQuotationOnboardingState          *Selection `xmlrpc:"sale_quotation_onboarding_state,omptempty"`
	SecondaryColor                        *String    `xmlrpc:"secondary_color,omptempty"`
	Sequence                              *Int       `xmlrpc:"sequence,omptempty"`
	SnailmailColor                        *Bool      `xmlrpc:"snailmail_color,omptempty"`
	SnailmailCover                        *Bool      `xmlrpc:"snailmail_cover,omptempty"`
	SnailmailDuplex                       *Bool      `xmlrpc:"snailmail_duplex,omptempty"`
	SocialFacebook                        *String    `xmlrpc:"social_facebook,omptempty"`
	SocialGithub                          *String    `xmlrpc:"social_github,omptempty"`
	SocialInstagram                       *String    `xmlrpc:"social_instagram,omptempty"`
	SocialLinkedin                        *String    `xmlrpc:"social_linkedin,omptempty"`
	SocialTwitter                         *String    `xmlrpc:"social_twitter,omptempty"`
	SocialYoutube                         *String    `xmlrpc:"social_youtube,omptempty"`
	StateId                               *Many2One  `xmlrpc:"state_id,omptempty"`
	Street                                *String    `xmlrpc:"street,omptempty"`
	Street2                               *String    `xmlrpc:"street2,omptempty"`
	TaxCalculationRoundingMethod          *Selection `xmlrpc:"tax_calculation_rounding_method,omptempty"`
	TaxCashBasisJournalId                 *Many2One  `xmlrpc:"tax_cash_basis_journal_id,omptempty"`
	TaxExigibility                        *Bool      `xmlrpc:"tax_exigibility,omptempty"`
	TaxLockDate                           *Time      `xmlrpc:"tax_lock_date,omptempty"`
	TransferAccountCodePrefix             *String    `xmlrpc:"transfer_account_code_prefix,omptempty"`
	TransferAccountId                     *Many2One  `xmlrpc:"transfer_account_id,omptempty"`
	UserIds                               *Relation  `xmlrpc:"user_ids,omptempty"`
	Vat                                   *String    `xmlrpc:"vat,omptempty"`
	Website                               *String    `xmlrpc:"website,omptempty"`
	WebsiteThemeOnboardingDone            *Bool      `xmlrpc:"website_theme_onboarding_done,omptempty"`
	WriteDate                             *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid                              *Many2One  `xmlrpc:"write_uid,omptempty"`
	Zip                                   *String    `xmlrpc:"zip,omptempty"`
}

ResCompany represents res.company model.

func (*ResCompany) Many2One

func (rc *ResCompany) Many2One() *Many2One

Many2One convert ResCompany to *Many2One.

type ResCompanys

type ResCompanys []ResCompany

ResCompanys represents array of res.company model.

type ResConfig

type ResConfig 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"`
}

ResConfig represents res.config model.

func (*ResConfig) Many2One

func (rc *ResConfig) Many2One() *Many2One

Many2One convert ResConfig to *Many2One.

type ResConfigInstaller

type ResConfigInstaller 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"`
}

ResConfigInstaller represents res.config.installer model.

func (*ResConfigInstaller) Many2One

func (rci *ResConfigInstaller) Many2One() *Many2One

Many2One convert ResConfigInstaller to *Many2One.

type ResConfigInstallers

type ResConfigInstallers []ResConfigInstaller

ResConfigInstallers represents array of res.config.installer model.

type ResConfigSettings

type ResConfigSettings struct {
	AccountBankReconciliationStart        *Time      `xmlrpc:"account_bank_reconciliation_start,omptempty"`
	ActiveUserCount                       *Int       `xmlrpc:"active_user_count,omptempty"`
	AliasDomain                           *String    `xmlrpc:"alias_domain,omptempty"`
	AuthSignupResetPassword               *Bool      `xmlrpc:"auth_signup_reset_password,omptempty"`
	AuthSignupTemplateUserId              *Many2One  `xmlrpc:"auth_signup_template_user_id,omptempty"`
	AuthSignupUninvited                   *Selection `xmlrpc:"auth_signup_uninvited,omptempty"`
	AutomaticInvoice                      *Bool      `xmlrpc:"automatic_invoice,omptempty"`
	CdnActivated                          *Bool      `xmlrpc:"cdn_activated,omptempty"`
	CdnFilters                            *String    `xmlrpc:"cdn_filters,omptempty"`
	CdnUrl                                *String    `xmlrpc:"cdn_url,omptempty"`
	ChannelId                             *Many2One  `xmlrpc:"channel_id,omptempty"`
	ChartTemplateId                       *Many2One  `xmlrpc:"chart_template_id,omptempty"`
	CompanyCount                          *Int       `xmlrpc:"company_count,omptempty"`
	CompanyId                             *Many2One  `xmlrpc:"company_id,omptempty"`
	CompanyInformations                   *String    `xmlrpc:"company_informations,omptempty"`
	CompanyName                           *String    `xmlrpc:"company_name,omptempty"`
	ConfirmationTemplateId                *Many2One  `xmlrpc:"confirmation_template_id,omptempty"`
	CreateDate                            *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid                             *Many2One  `xmlrpc:"create_uid,omptempty"`
	CrmAliasPrefix                        *String    `xmlrpc:"crm_alias_prefix,omptempty"`
	CrmDefaultTeamId                      *Many2One  `xmlrpc:"crm_default_team_id,omptempty"`
	CrmDefaultUserId                      *Many2One  `xmlrpc:"crm_default_user_id,omptempty"`
	CurrencyExchangeJournalId             *Many2One  `xmlrpc:"currency_exchange_journal_id,omptempty"`
	CurrencyId                            *Many2One  `xmlrpc:"currency_id,omptempty"`
	DefaultInvoicePolicy                  *Selection `xmlrpc:"default_invoice_policy,omptempty"`
	DefaultSaleOrderTemplateId            *Many2One  `xmlrpc:"default_sale_order_template_id,omptempty"`
	DepositDefaultProductId               *Many2One  `xmlrpc:"deposit_default_product_id,omptempty"`
	DigestEmails                          *Bool      `xmlrpc:"digest_emails,omptempty"`
	DigestId                              *Many2One  `xmlrpc:"digest_id,omptempty"`
	DisplayName                           *String    `xmlrpc:"display_name,omptempty"`
	ExpenseAliasPrefix                    *String    `xmlrpc:"expense_alias_prefix,omptempty"`
	ExternalEmailServerDefault            *Bool      `xmlrpc:"external_email_server_default,omptempty"`
	ExternalReportLayoutId                *Many2One  `xmlrpc:"external_report_layout_id,omptempty"`
	FailCounter                           *Int       `xmlrpc:"fail_counter,omptempty"`
	Favicon                               *String    `xmlrpc:"favicon,omptempty"`
	GenerateLeadFromAlias                 *Bool      `xmlrpc:"generate_lead_from_alias,omptempty"`
	GoogleAnalyticsKey                    *String    `xmlrpc:"google_analytics_key,omptempty"`
	GoogleManagementClientId              *String    `xmlrpc:"google_management_client_id,omptempty"`
	GoogleManagementClientSecret          *String    `xmlrpc:"google_management_client_secret,omptempty"`
	GoogleMapsApiKey                      *String    `xmlrpc:"google_maps_api_key,omptempty"`
	GroupAnalyticAccounting               *Bool      `xmlrpc:"group_analytic_accounting,omptempty"`
	GroupAnalyticTags                     *Bool      `xmlrpc:"group_analytic_tags,omptempty"`
	GroupAttendanceUsePin                 *Bool      `xmlrpc:"group_attendance_use_pin,omptempty"`
	GroupAutoDoneSetting                  *Bool      `xmlrpc:"group_auto_done_setting,omptempty"`
	GroupCashRounding                     *Bool      `xmlrpc:"group_cash_rounding,omptempty"`
	GroupDiscountPerSoLine                *Bool      `xmlrpc:"group_discount_per_so_line,omptempty"`
	GroupFiscalYear                       *Bool      `xmlrpc:"group_fiscal_year,omptempty"`
	GroupMassMailingCampaign              *Bool      `xmlrpc:"group_mass_mailing_campaign,omptempty"`
	GroupMultiCurrency                    *Bool      `xmlrpc:"group_multi_currency,omptempty"`
	GroupMultiWebsite                     *Bool      `xmlrpc:"group_multi_website,omptempty"`
	GroupProductPricelist                 *Bool      `xmlrpc:"group_product_pricelist,omptempty"`
	GroupProductVariant                   *Bool      `xmlrpc:"group_product_variant,omptempty"`
	GroupProformaSales                    *Bool      `xmlrpc:"group_proforma_sales,omptempty"`
	GroupProjectRating                    *Bool      `xmlrpc:"group_project_rating,omptempty"`
	GroupSaleDeliveryAddress              *Bool      `xmlrpc:"group_sale_delivery_address,omptempty"`
	GroupSaleOrderTemplate                *Bool      `xmlrpc:"group_sale_order_template,omptempty"`
	GroupSalePricelist                    *Bool      `xmlrpc:"group_sale_pricelist,omptempty"`
	GroupShowLineSubtotalsTaxExcluded     *Bool      `xmlrpc:"group_show_line_subtotals_tax_excluded,omptempty"`
	GroupShowLineSubtotalsTaxIncluded     *Bool      `xmlrpc:"group_show_line_subtotals_tax_included,omptempty"`
	GroupStockPackaging                   *Bool      `xmlrpc:"group_stock_packaging,omptempty"`
	GroupSubtaskProject                   *Bool      `xmlrpc:"group_subtask_project,omptempty"`
	GroupUom                              *Bool      `xmlrpc:"group_uom,omptempty"`
	GroupUseLead                          *Bool      `xmlrpc:"group_use_lead,omptempty"`
	GroupWarningAccount                   *Bool      `xmlrpc:"group_warning_account,omptempty"`
	GroupWarningSale                      *Bool      `xmlrpc:"group_warning_sale,omptempty"`
	HasAccountingEntries                  *Bool      `xmlrpc:"has_accounting_entries,omptempty"`
	HasChartOfAccounts                    *Bool      `xmlrpc:"has_chart_of_accounts,omptempty"`
	HasGoogleAnalytics                    *Bool      `xmlrpc:"has_google_analytics,omptempty"`
	HasGoogleAnalyticsDashboard           *Bool      `xmlrpc:"has_google_analytics_dashboard,omptempty"`
	HasGoogleMaps                         *Bool      `xmlrpc:"has_google_maps,omptempty"`
	HasSocialNetwork                      *Bool      `xmlrpc:"has_social_network,omptempty"`
	HrEmployeeSelfEdit                    *Bool      `xmlrpc:"hr_employee_self_edit,omptempty"`
	HrPresenceControlEmail                *Bool      `xmlrpc:"hr_presence_control_email,omptempty"`
	HrPresenceControlEmailAmount          *Int       `xmlrpc:"hr_presence_control_email_amount,omptempty"`
	HrPresenceControlIp                   *Bool      `xmlrpc:"hr_presence_control_ip,omptempty"`
	HrPresenceControlIpList               *String    `xmlrpc:"hr_presence_control_ip_list,omptempty"`
	HrPresenceControlLogin                *Bool      `xmlrpc:"hr_presence_control_login,omptempty"`
	Id                                    *Int       `xmlrpc:"id,omptempty"`
	IncotermId                            *Many2One  `xmlrpc:"incoterm_id,omptempty"`
	InvoiceIsEmail                        *Bool      `xmlrpc:"invoice_is_email,omptempty"`
	InvoiceIsPrint                        *Bool      `xmlrpc:"invoice_is_print,omptempty"`
	InvoiceIsSnailmail                    *Bool      `xmlrpc:"invoice_is_snailmail,omptempty"`
	InvoiceTerms                          *String    `xmlrpc:"invoice_terms,omptempty"`
	LanguageCount                         *Int       `xmlrpc:"language_count,omptempty"`
	LanguageIds                           *Relation  `xmlrpc:"language_ids,omptempty"`
	LastUpdate                            *Time      `xmlrpc:"__last_update,omptempty"`
	LeadEnrichAuto                        *Selection `xmlrpc:"lead_enrich_auto,omptempty"`
	LeadMiningInPipeline                  *Bool      `xmlrpc:"lead_mining_in_pipeline,omptempty"`
	MassMailingMailServerId               *Many2One  `xmlrpc:"mass_mailing_mail_server_id,omptempty"`
	MassMailingOutgoingMailServer         *Bool      `xmlrpc:"mass_mailing_outgoing_mail_server,omptempty"`
	ModuleAccountAccountant               *Bool      `xmlrpc:"module_account_accountant,omptempty"`
	ModuleAccountBankStatementImportCamt  *Bool      `xmlrpc:"module_account_bank_statement_import_camt,omptempty"`
	ModuleAccountBankStatementImportCsv   *Bool      `xmlrpc:"module_account_bank_statement_import_csv,omptempty"`
	ModuleAccountBankStatementImportOfx   *Bool      `xmlrpc:"module_account_bank_statement_import_ofx,omptempty"`
	ModuleAccountBankStatementImportQif   *Bool      `xmlrpc:"module_account_bank_statement_import_qif,omptempty"`
	ModuleAccountBatchPayment             *Bool      `xmlrpc:"module_account_batch_payment,omptempty"`
	ModuleAccountBudget                   *Bool      `xmlrpc:"module_account_budget,omptempty"`
	ModuleAccountCheckPrinting            *Bool      `xmlrpc:"module_account_check_printing,omptempty"`
	ModuleAccountIntrastat                *Bool      `xmlrpc:"module_account_intrastat,omptempty"`
	ModuleAccountInvoiceExtract           *Bool      `xmlrpc:"module_account_invoice_extract,omptempty"`
	ModuleAccountPayment                  *Bool      `xmlrpc:"module_account_payment,omptempty"`
	ModuleAccountPlaid                    *Bool      `xmlrpc:"module_account_plaid,omptempty"`
	ModuleAccountReports                  *Bool      `xmlrpc:"module_account_reports,omptempty"`
	ModuleAccountSepa                     *Bool      `xmlrpc:"module_account_sepa,omptempty"`
	ModuleAccountSepaDirectDebit          *Bool      `xmlrpc:"module_account_sepa_direct_debit,omptempty"`
	ModuleAccountTaxcloud                 *Bool      `xmlrpc:"module_account_taxcloud,omptempty"`
	ModuleAccountYodlee                   *Bool      `xmlrpc:"module_account_yodlee,omptempty"`
	ModuleAuthLdap                        *Bool      `xmlrpc:"module_auth_ldap,omptempty"`
	ModuleAuthOauth                       *Bool      `xmlrpc:"module_auth_oauth,omptempty"`
	ModuleBaseGengo                       *Bool      `xmlrpc:"module_base_gengo,omptempty"`
	ModuleBaseGeolocalize                 *Bool      `xmlrpc:"module_base_geolocalize,omptempty"`
	ModuleBaseImport                      *Bool      `xmlrpc:"module_base_import,omptempty"`
	ModuleCrmIapLead                      *Bool      `xmlrpc:"module_crm_iap_lead,omptempty"`
	ModuleCrmIapLeadEnrich                *Bool      `xmlrpc:"module_crm_iap_lead_enrich,omptempty"`
	ModuleCrmIapLeadWebsite               *Bool      `xmlrpc:"module_crm_iap_lead_website,omptempty"`
	ModuleCurrencyRateLive                *Bool      `xmlrpc:"module_currency_rate_live,omptempty"`
	ModuleDelivery                        *Bool      `xmlrpc:"module_delivery,omptempty"`
	ModuleDeliveryBpost                   *Bool      `xmlrpc:"module_delivery_bpost,omptempty"`
	ModuleDeliveryDhl                     *Bool      `xmlrpc:"module_delivery_dhl,omptempty"`
	ModuleDeliveryEasypost                *Bool      `xmlrpc:"module_delivery_easypost,omptempty"`
	ModuleDeliveryFedex                   *Bool      `xmlrpc:"module_delivery_fedex,omptempty"`
	ModuleDeliveryUps                     *Bool      `xmlrpc:"module_delivery_ups,omptempty"`
	ModuleDeliveryUsps                    *Bool      `xmlrpc:"module_delivery_usps,omptempty"`
	ModuleEventBarcode                    *Bool      `xmlrpc:"module_event_barcode,omptempty"`
	ModuleEventSale                       *Bool      `xmlrpc:"module_event_sale,omptempty"`
	ModuleGoogleCalendar                  *Bool      `xmlrpc:"module_google_calendar,omptempty"`
	ModuleGoogleDrive                     *Bool      `xmlrpc:"module_google_drive,omptempty"`
	ModuleGoogleSpreadsheet               *Bool      `xmlrpc:"module_google_spreadsheet,omptempty"`
	ModuleHrAttendance                    *Bool      `xmlrpc:"module_hr_attendance,omptempty"`
	ModuleHrOrgChart                      *Bool      `xmlrpc:"module_hr_org_chart,omptempty"`
	ModuleHrPayrollExpense                *Bool      `xmlrpc:"module_hr_payroll_expense,omptempty"`
	ModuleHrPresence                      *Bool      `xmlrpc:"module_hr_presence,omptempty"`
	ModuleHrRecruitmentSurvey             *Bool      `xmlrpc:"module_hr_recruitment_survey,omptempty"`
	ModuleHrSkills                        *Bool      `xmlrpc:"module_hr_skills,omptempty"`
	ModuleHrTimesheet                     *Bool      `xmlrpc:"module_hr_timesheet,omptempty"`
	ModuleInterCompanyRules               *Bool      `xmlrpc:"module_inter_company_rules,omptempty"`
	ModuleL10NEuService                   *Bool      `xmlrpc:"module_l10n_eu_service,omptempty"`
	ModuleMassMailingSlides               *Bool      `xmlrpc:"module_mass_mailing_slides,omptempty"`
	ModulePad                             *Bool      `xmlrpc:"module_pad,omptempty"`
	ModulePartnerAutocomplete             *Bool      `xmlrpc:"module_partner_autocomplete,omptempty"`
	ModuleProductEmailTemplate            *Bool      `xmlrpc:"module_product_email_template,omptempty"`
	ModuleProductMargin                   *Bool      `xmlrpc:"module_product_margin,omptempty"`
	ModuleProjectForecast                 *Bool      `xmlrpc:"module_project_forecast,omptempty"`
	ModuleSaleAmazon                      *Bool      `xmlrpc:"module_sale_amazon,omptempty"`
	ModuleSaleCoupon                      *Bool      `xmlrpc:"module_sale_coupon,omptempty"`
	ModuleSaleMargin                      *Bool      `xmlrpc:"module_sale_margin,omptempty"`
	ModuleSaleProductConfigurator         *Bool      `xmlrpc:"module_sale_product_configurator,omptempty"`
	ModuleSaleProductMatrix               *Bool      `xmlrpc:"module_sale_product_matrix,omptempty"`
	ModuleSaleQuotationBuilder            *Bool      `xmlrpc:"module_sale_quotation_builder,omptempty"`
	ModuleSnailmailAccount                *Bool      `xmlrpc:"module_snailmail_account,omptempty"`
	ModuleVoip                            *Bool      `xmlrpc:"module_voip,omptempty"`
	ModuleWebsiteEventQuestions           *Bool      `xmlrpc:"module_website_event_questions,omptempty"`
	ModuleWebsiteEventSale                *Bool      `xmlrpc:"module_website_event_sale,omptempty"`
	ModuleWebsiteEventTrack               *Bool      `xmlrpc:"module_website_event_track,omptempty"`
	ModuleWebsiteHrRecruitment            *Bool      `xmlrpc:"module_website_hr_recruitment,omptempty"`
	ModuleWebsiteLinks                    *Bool      `xmlrpc:"module_website_links,omptempty"`
	ModuleWebsiteSaleDigital              *Bool      `xmlrpc:"module_website_sale_digital,omptempty"`
	ModuleWebsiteSaleSlides               *Bool      `xmlrpc:"module_website_sale_slides,omptempty"`
	ModuleWebsiteSlidesForum              *Bool      `xmlrpc:"module_website_slides_forum,omptempty"`
	ModuleWebsiteSlidesSurvey             *Bool      `xmlrpc:"module_website_slides_survey,omptempty"`
	ModuleWebsiteVersion                  *Bool      `xmlrpc:"module_website_version,omptempty"`
	ModuleWebUnsplash                     *Bool      `xmlrpc:"module_web_unsplash,omptempty"`
	PaperformatId                         *Many2One  `xmlrpc:"paperformat_id,omptempty"`
	PartnerAutocompleteInsufficientCredit *Bool      `xmlrpc:"partner_autocomplete_insufficient_credit,omptempty"`
	PortalConfirmationPay                 *Bool      `xmlrpc:"portal_confirmation_pay,omptempty"`
	PortalConfirmationSign                *Bool      `xmlrpc:"portal_confirmation_sign,omptempty"`
	PredictiveLeadScoringFields           *Relation  `xmlrpc:"predictive_lead_scoring_fields,omptempty"`
	PredictiveLeadScoringFieldsStr        *String    `xmlrpc:"predictive_lead_scoring_fields_str,omptempty"`
	PredictiveLeadScoringStartDate        *Time      `xmlrpc:"predictive_lead_scoring_start_date,omptempty"`
	PredictiveLeadScoringStartDateStr     *String    `xmlrpc:"predictive_lead_scoring_start_date_str,omptempty"`
	ProductPricelistSetting               *Selection `xmlrpc:"product_pricelist_setting,omptempty"`
	ProductVolumeVolumeInCubicFeet        *Selection `xmlrpc:"product_volume_volume_in_cubic_feet,omptempty"`
	ProductWeightInLbs                    *Selection `xmlrpc:"product_weight_in_lbs,omptempty"`
	PurchaseTaxId                         *Many2One  `xmlrpc:"purchase_tax_id,omptempty"`
	QrCode                                *Bool      `xmlrpc:"qr_code,omptempty"`
	QuotationValidityDays                 *Int       `xmlrpc:"quotation_validity_days,omptempty"`
	ReportFooter                          *String    `xmlrpc:"report_footer,omptempty"`
	ResourceCalendarId                    *Many2One  `xmlrpc:"resource_calendar_id,omptempty"`
	SaleTaxId                             *Many2One  `xmlrpc:"sale_tax_id,omptempty"`
	ShowBlacklistButtons                  *Bool      `xmlrpc:"show_blacklist_buttons,omptempty"`
	ShowEffect                            *Bool      `xmlrpc:"show_effect,omptempty"`
	ShowLineSubtotalsTaxSelection         *Selection `xmlrpc:"show_line_subtotals_tax_selection,omptempty"`
	SnailmailColor                        *Bool      `xmlrpc:"snailmail_color,omptempty"`
	SnailmailCover                        *Bool      `xmlrpc:"snailmail_cover,omptempty"`
	SnailmailDuplex                       *Bool      `xmlrpc:"snailmail_duplex,omptempty"`
	SocialDefaultImage                    *String    `xmlrpc:"social_default_image,omptempty"`
	SocialFacebook                        *String    `xmlrpc:"social_facebook,omptempty"`
	SocialGithub                          *String    `xmlrpc:"social_github,omptempty"`
	SocialInstagram                       *String    `xmlrpc:"social_instagram,omptempty"`
	SocialLinkedin                        *String    `xmlrpc:"social_linkedin,omptempty"`
	SocialTwitter                         *String    `xmlrpc:"social_twitter,omptempty"`
	SocialYoutube                         *String    `xmlrpc:"social_youtube,omptempty"`
	SpecificUserAccount                   *Bool      `xmlrpc:"specific_user_account,omptempty"`
	TaxCalculationRoundingMethod          *Selection `xmlrpc:"tax_calculation_rounding_method,omptempty"`
	TaxCashBasisJournalId                 *Many2One  `xmlrpc:"tax_cash_basis_journal_id,omptempty"`
	TaxExigibility                        *Bool      `xmlrpc:"tax_exigibility,omptempty"`
	TemplateId                            *Many2One  `xmlrpc:"template_id,omptempty"`
	UnsplashAccessKey                     *String    `xmlrpc:"unsplash_access_key,omptempty"`
	UseInvoiceTerms                       *Bool      `xmlrpc:"use_invoice_terms,omptempty"`
	UseMailgateway                        *Bool      `xmlrpc:"use_mailgateway,omptempty"`
	UseQuotationValidityDays              *Bool      `xmlrpc:"use_quotation_validity_days,omptempty"`
	UserDefaultRights                     *Bool      `xmlrpc:"user_default_rights,omptempty"`
	WebsiteCompanyId                      *Many2One  `xmlrpc:"website_company_id,omptempty"`
	WebsiteCountryGroupIds                *Relation  `xmlrpc:"website_country_group_ids,omptempty"`
	WebsiteDefaultLangCode                *String    `xmlrpc:"website_default_lang_code,omptempty"`
	WebsiteDefaultLangId                  *Many2One  `xmlrpc:"website_default_lang_id,omptempty"`
	WebsiteDomain                         *String    `xmlrpc:"website_domain,omptempty"`
	WebsiteFormEnableMetadata             *Bool      `xmlrpc:"website_form_enable_metadata,omptempty"`
	WebsiteId                             *Many2One  `xmlrpc:"website_id,omptempty"`
	WebsiteLanguageCount                  *Int       `xmlrpc:"website_language_count,omptempty"`
	WebsiteName                           *String    `xmlrpc:"website_name,omptempty"`
	WebsiteSlideGoogleAppKey              *String    `xmlrpc:"website_slide_google_app_key,omptempty"`
	WebWindowTitle                        *String    `xmlrpc:"web_window_title,omptempty"`
	WriteDate                             *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid                              *Many2One  `xmlrpc:"write_uid,omptempty"`
}

ResConfigSettings represents res.config.settings model.

func (*ResConfigSettings) Many2One

func (rcs *ResConfigSettings) Many2One() *Many2One

Many2One convert ResConfigSettings to *Many2One.

type ResConfigSettingss

type ResConfigSettingss []ResConfigSettings

ResConfigSettingss represents array of res.config.settings model.

type ResConfigs

type ResConfigs []ResConfig

ResConfigs represents array of res.config model.

type ResCountry

type ResCountry struct {
	AddressFormat   *String    `xmlrpc:"address_format,omptempty"`
	AddressViewId   *Many2One  `xmlrpc:"address_view_id,omptempty"`
	Code            *String    `xmlrpc:"code,omptempty"`
	CountryGroupIds *Relation  `xmlrpc:"country_group_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"`
	Id              *Int       `xmlrpc:"id,omptempty"`
	Image           *String    `xmlrpc:"image,omptempty"`
	LastUpdate      *Time      `xmlrpc:"__last_update,omptempty"`
	Name            *String    `xmlrpc:"name,omptempty"`
	NamePosition    *Selection `xmlrpc:"name_position,omptempty"`
	PhoneCode       *Int       `xmlrpc:"phone_code,omptempty"`
	StateIds        *Relation  `xmlrpc:"state_ids,omptempty"`
	VatLabel        *String    `xmlrpc:"vat_label,omptempty"`
	WriteDate       *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid        *Many2One  `xmlrpc:"write_uid,omptempty"`
}

ResCountry represents res.country model.

func (*ResCountry) Many2One

func (rc *ResCountry) Many2One() *Many2One

Many2One convert ResCountry to *Many2One.

type ResCountryGroup

type ResCountryGroup struct {
	CountryIds   *Relation `xmlrpc:"country_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"`
	Name         *String   `xmlrpc:"name,omptempty"`
	PricelistIds *Relation `xmlrpc:"pricelist_ids,omptempty"`
	WriteDate    *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid     *Many2One `xmlrpc:"write_uid,omptempty"`
}

ResCountryGroup represents res.country.group model.

func (*ResCountryGroup) Many2One

func (rcg *ResCountryGroup) Many2One() *Many2One

Many2One convert ResCountryGroup to *Many2One.

type ResCountryGroups

type ResCountryGroups []ResCountryGroup

ResCountryGroups represents array of res.country.group model.

type ResCountryState

type ResCountryState struct {
	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"`
	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"`
}

ResCountryState represents res.country.state model.

func (*ResCountryState) Many2One

func (rcs *ResCountryState) Many2One() *Many2One

Many2One convert ResCountryState to *Many2One.

type ResCountryStates

type ResCountryStates []ResCountryState

ResCountryStates represents array of res.country.state model.

type ResCountrys

type ResCountrys []ResCountry

ResCountrys represents array of res.country model.

type ResCurrency

type ResCurrency struct {
	Active               *Bool      `xmlrpc:"active,omptempty"`
	CreateDate           *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid            *Many2One  `xmlrpc:"create_uid,omptempty"`
	CurrencySubunitLabel *String    `xmlrpc:"currency_subunit_label,omptempty"`
	CurrencyUnitLabel    *String    `xmlrpc:"currency_unit_label,omptempty"`
	Date                 *Time      `xmlrpc:"date,omptempty"`
	DecimalPlaces        *Int       `xmlrpc:"decimal_places,omptempty"`
	DisplayName          *String    `xmlrpc:"display_name,omptempty"`
	Id                   *Int       `xmlrpc:"id,omptempty"`
	LastUpdate           *Time      `xmlrpc:"__last_update,omptempty"`
	Name                 *String    `xmlrpc:"name,omptempty"`
	Position             *Selection `xmlrpc:"position,omptempty"`
	Rate                 *Float     `xmlrpc:"rate,omptempty"`
	RateIds              *Relation  `xmlrpc:"rate_ids,omptempty"`
	Rounding             *Float     `xmlrpc:"rounding,omptempty"`
	Symbol               *String    `xmlrpc:"symbol,omptempty"`
	WriteDate            *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid             *Many2One  `xmlrpc:"write_uid,omptempty"`
}

ResCurrency represents res.currency model.

func (*ResCurrency) Many2One

func (rc *ResCurrency) Many2One() *Many2One

Many2One convert ResCurrency to *Many2One.

type ResCurrencyRate

type ResCurrencyRate struct {
	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"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	Name        *Time     `xmlrpc:"name,omptempty"`
	Rate        *Float    `xmlrpc:"rate,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

ResCurrencyRate represents res.currency.rate model.

func (*ResCurrencyRate) Many2One

func (rcr *ResCurrencyRate) Many2One() *Many2One

Many2One convert ResCurrencyRate to *Many2One.

type ResCurrencyRates

type ResCurrencyRates []ResCurrencyRate

ResCurrencyRates represents array of res.currency.rate model.

type ResCurrencys

type ResCurrencys []ResCurrency

ResCurrencys represents array of res.currency model.

type ResGroups

type ResGroups struct {
	CategoryId      *Many2One `xmlrpc:"category_id,omptempty"`
	Color           *Int      `xmlrpc:"color,omptempty"`
	Comment         *String   `xmlrpc:"comment,omptempty"`
	CreateDate      *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid       *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName     *String   `xmlrpc:"display_name,omptempty"`
	FullName        *String   `xmlrpc:"full_name,omptempty"`
	Id              *Int      `xmlrpc:"id,omptempty"`
	ImpliedIds      *Relation `xmlrpc:"implied_ids,omptempty"`
	LastUpdate      *Time     `xmlrpc:"__last_update,omptempty"`
	MenuAccess      *Relation `xmlrpc:"menu_access,omptempty"`
	ModelAccess     *Relation `xmlrpc:"model_access,omptempty"`
	Name            *String   `xmlrpc:"name,omptempty"`
	RuleGroups      *Relation `xmlrpc:"rule_groups,omptempty"`
	Share           *Bool     `xmlrpc:"share,omptempty"`
	TransImpliedIds *Relation `xmlrpc:"trans_implied_ids,omptempty"`
	Users           *Relation `xmlrpc:"users,omptempty"`
	ViewAccess      *Relation `xmlrpc:"view_access,omptempty"`
	WriteDate       *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid        *Many2One `xmlrpc:"write_uid,omptempty"`
}

ResGroups represents res.groups model.

func (*ResGroups) Many2One

func (rg *ResGroups) Many2One() *Many2One

Many2One convert ResGroups to *Many2One.

type ResGroupss

type ResGroupss []ResGroups

ResGroupss represents array of res.groups model.

type ResLang

type ResLang struct {
	Active       *Bool      `xmlrpc:"active,omptempty"`
	Code         *String    `xmlrpc:"code,omptempty"`
	CreateDate   *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid    *Many2One  `xmlrpc:"create_uid,omptempty"`
	DateFormat   *String    `xmlrpc:"date_format,omptempty"`
	DecimalPoint *String    `xmlrpc:"decimal_point,omptempty"`
	Direction    *Selection `xmlrpc:"direction,omptempty"`
	DisplayName  *String    `xmlrpc:"display_name,omptempty"`
	Grouping     *String    `xmlrpc:"grouping,omptempty"`
	Id           *Int       `xmlrpc:"id,omptempty"`
	IsoCode      *String    `xmlrpc:"iso_code,omptempty"`
	LastUpdate   *Time      `xmlrpc:"__last_update,omptempty"`
	Name         *String    `xmlrpc:"name,omptempty"`
	ThousandsSep *String    `xmlrpc:"thousands_sep,omptempty"`
	TimeFormat   *String    `xmlrpc:"time_format,omptempty"`
	UrlCode      *String    `xmlrpc:"url_code,omptempty"`
	WeekStart    *Selection `xmlrpc:"week_start,omptempty"`
	WriteDate    *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid     *Many2One  `xmlrpc:"write_uid,omptempty"`
}

ResLang represents res.lang model.

func (*ResLang) Many2One

func (rl *ResLang) Many2One() *Many2One

Many2One convert ResLang to *Many2One.

type ResLangs

type ResLangs []ResLang

ResLangs represents array of res.lang model.

type ResPartner

type ResPartner struct {
	Active                        *Bool      `xmlrpc:"active,omptempty"`
	ActiveLangCount               *Int       `xmlrpc:"active_lang_count,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"`
	AdditionalInfo                *String    `xmlrpc:"additional_info,omptempty"`
	BankAccountCount              *Int       `xmlrpc:"bank_account_count,omptempty"`
	BankIds                       *Relation  `xmlrpc:"bank_ids,omptempty"`
	CalendarLastNotifAck          *Time      `xmlrpc:"calendar_last_notif_ack,omptempty"`
	CanPublish                    *Bool      `xmlrpc:"can_publish,omptempty"`
	CategoryId                    *Relation  `xmlrpc:"category_id,omptempty"`
	CertificationsCompanyCount    *Int       `xmlrpc:"certifications_company_count,omptempty"`
	CertificationsCount           *Int       `xmlrpc:"certifications_count,omptempty"`
	ChannelIds                    *Relation  `xmlrpc:"channel_ids,omptempty"`
	ChildIds                      *Relation  `xmlrpc:"child_ids,omptempty"`
	City                          *String    `xmlrpc:"city,omptempty"`
	Color                         *Int       `xmlrpc:"color,omptempty"`
	Comment                       *String    `xmlrpc:"comment,omptempty"`
	CommercialCompanyName         *String    `xmlrpc:"commercial_company_name,omptempty"`
	CommercialPartnerId           *Many2One  `xmlrpc:"commercial_partner_id,omptempty"`
	CompanyId                     *Many2One  `xmlrpc:"company_id,omptempty"`
	CompanyName                   *String    `xmlrpc:"company_name,omptempty"`
	CompanyType                   *Selection `xmlrpc:"company_type,omptempty"`
	ContactAddress                *String    `xmlrpc:"contact_address,omptempty"`
	ContractIds                   *Relation  `xmlrpc:"contract_ids,omptempty"`
	CountryId                     *Many2One  `xmlrpc:"country_id,omptempty"`
	CreateDate                    *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid                     *Many2One  `xmlrpc:"create_uid,omptempty"`
	Credit                        *Float     `xmlrpc:"credit,omptempty"`
	CreditLimit                   *Float     `xmlrpc:"credit_limit,omptempty"`
	CurrencyId                    *Many2One  `xmlrpc:"currency_id,omptempty"`
	CustomerRank                  *Int       `xmlrpc:"customer_rank,omptempty"`
	Date                          *Time      `xmlrpc:"date,omptempty"`
	Debit                         *Float     `xmlrpc:"debit,omptempty"`
	DebitLimit                    *Float     `xmlrpc:"debit_limit,omptempty"`
	DisplayName                   *String    `xmlrpc:"display_name,omptempty"`
	Email                         *String    `xmlrpc:"email,omptempty"`
	EmailFormatted                *String    `xmlrpc:"email_formatted,omptempty"`
	EmailNormalized               *String    `xmlrpc:"email_normalized,omptempty"`
	Employee                      *Bool      `xmlrpc:"employee,omptempty"`
	EventCount                    *Int       `xmlrpc:"event_count,omptempty"`
	Function                      *String    `xmlrpc:"function,omptempty"`
	HasUnreconciledEntries        *Bool      `xmlrpc:"has_unreconciled_entries,omptempty"`
	Id                            *Int       `xmlrpc:"id,omptempty"`
	Image1024                     *String    `xmlrpc:"image_1024,omptempty"`
	Image128                      *String    `xmlrpc:"image_128,omptempty"`
	Image1920                     *String    `xmlrpc:"image_1920,omptempty"`
	Image256                      *String    `xmlrpc:"image_256,omptempty"`
	Image512                      *String    `xmlrpc:"image_512,omptempty"`
	ImStatus                      *String    `xmlrpc:"im_status,omptempty"`
	IndustryId                    *Many2One  `xmlrpc:"industry_id,omptempty"`
	Instructor                    *Bool      `xmlrpc:"instructor,omptempty"`
	InvoiceIds                    *Relation  `xmlrpc:"invoice_ids,omptempty"`
	InvoiceWarn                   *Selection `xmlrpc:"invoice_warn,omptempty"`
	InvoiceWarnMsg                *String    `xmlrpc:"invoice_warn_msg,omptempty"`
	IsBlacklisted                 *Bool      `xmlrpc:"is_blacklisted,omptempty"`
	IsCompany                     *Bool      `xmlrpc:"is_company,omptempty"`
	IsPublished                   *Bool      `xmlrpc:"is_published,omptempty"`
	IsSeoOptimized                *Bool      `xmlrpc:"is_seo_optimized,omptempty"`
	JournalItemCount              *Int       `xmlrpc:"journal_item_count,omptempty"`
	L10NSgUniqueEntityNumber      *String    `xmlrpc:"l10n_sg_unique_entity_number,omptempty"`
	Lang                          *Selection `xmlrpc:"lang,omptempty"`
	LastTimeEntriesChecked        *Time      `xmlrpc:"last_time_entries_checked,omptempty"`
	LastUpdate                    *Time      `xmlrpc:"__last_update,omptempty"`
	MeetingCount                  *Int       `xmlrpc:"meeting_count,omptempty"`
	MeetingIds                    *Relation  `xmlrpc:"meeting_ids,omptempty"`
	MessageAttachmentCount        *Int       `xmlrpc:"message_attachment_count,omptempty"`
	MessageBounce                 *Int       `xmlrpc:"message_bounce,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"`
	Mobile                        *String    `xmlrpc:"mobile,omptempty"`
	Name                          *String    `xmlrpc:"name,omptempty"`
	OpportunityCount              *Int       `xmlrpc:"opportunity_count,omptempty"`
	OpportunityIds                *Relation  `xmlrpc:"opportunity_ids,omptempty"`
	ParentId                      *Many2One  `xmlrpc:"parent_id,omptempty"`
	ParentName                    *String    `xmlrpc:"parent_name,omptempty"`
	PartnerGid                    *Int       `xmlrpc:"partner_gid,omptempty"`
	PartnerLatitude               *Float     `xmlrpc:"partner_latitude,omptempty"`
	PartnerLongitude              *Float     `xmlrpc:"partner_longitude,omptempty"`
	PartnerShare                  *Bool      `xmlrpc:"partner_share,omptempty"`
	PaymentTokenCount             *Int       `xmlrpc:"payment_token_count,omptempty"`
	PaymentTokenIds               *Relation  `xmlrpc:"payment_token_ids,omptempty"`
	Phone                         *String    `xmlrpc:"phone,omptempty"`
	PhoneBlacklisted              *Bool      `xmlrpc:"phone_blacklisted,omptempty"`
	PhoneSanitized                *String    `xmlrpc:"phone_sanitized,omptempty"`
	PropertyAccountPayableId      *Many2One  `xmlrpc:"property_account_payable_id,omptempty"`
	PropertyAccountPositionId     *Many2One  `xmlrpc:"property_account_position_id,omptempty"`
	PropertyAccountReceivableId   *Many2One  `xmlrpc:"property_account_receivable_id,omptempty"`
	PropertyPaymentTermId         *Many2One  `xmlrpc:"property_payment_term_id,omptempty"`
	PropertyProductPricelist      *Many2One  `xmlrpc:"property_product_pricelist,omptempty"`
	PropertySupplierPaymentTermId *Many2One  `xmlrpc:"property_supplier_payment_term_id,omptempty"`
	Ref                           *String    `xmlrpc:"ref,omptempty"`
	RefCompanyIds                 *Relation  `xmlrpc:"ref_company_ids,omptempty"`
	SaleOrderCount                *Int       `xmlrpc:"sale_order_count,omptempty"`
	SaleOrderIds                  *Relation  `xmlrpc:"sale_order_ids,omptempty"`
	SaleWarn                      *Selection `xmlrpc:"sale_warn,omptempty"`
	SaleWarnMsg                   *String    `xmlrpc:"sale_warn_msg,omptempty"`
	SameVatPartnerId              *Many2One  `xmlrpc:"same_vat_partner_id,omptempty"`
	Self                          *Many2One  `xmlrpc:"self,omptempty"`
	SessionIds                    *Relation  `xmlrpc:"session_ids,omptempty"`
	SignupExpiration              *Time      `xmlrpc:"signup_expiration,omptempty"`
	SignupToken                   *String    `xmlrpc:"signup_token,omptempty"`
	SignupType                    *String    `xmlrpc:"signup_type,omptempty"`
	SignupUrl                     *String    `xmlrpc:"signup_url,omptempty"`
	SignupValid                   *Bool      `xmlrpc:"signup_valid,omptempty"`
	SlideChannelCompanyCount      *Int       `xmlrpc:"slide_channel_company_count,omptempty"`
	SlideChannelCount             *Int       `xmlrpc:"slide_channel_count,omptempty"`
	SlideChannelIds               *Relation  `xmlrpc:"slide_channel_ids,omptempty"`
	StateId                       *Many2One  `xmlrpc:"state_id,omptempty"`
	Street                        *String    `xmlrpc:"street,omptempty"`
	Street2                       *String    `xmlrpc:"street2,omptempty"`
	SupplierRank                  *Int       `xmlrpc:"supplier_rank,omptempty"`
	TaskCount                     *Int       `xmlrpc:"task_count,omptempty"`
	TaskIds                       *Relation  `xmlrpc:"task_ids,omptempty"`
	TeamId                        *Many2One  `xmlrpc:"team_id,omptempty"`
	Title                         *Many2One  `xmlrpc:"title,omptempty"`
	TotalInvoiced                 *Float     `xmlrpc:"total_invoiced,omptempty"`
	Trust                         *Selection `xmlrpc:"trust,omptempty"`
	Type                          *Selection `xmlrpc:"type,omptempty"`
	Tz                            *Selection `xmlrpc:"tz,omptempty"`
	TzOffset                      *String    `xmlrpc:"tz_offset,omptempty"`
	UserId                        *Many2One  `xmlrpc:"user_id,omptempty"`
	UserIds                       *Relation  `xmlrpc:"user_ids,omptempty"`
	Vat                           *String    `xmlrpc:"vat,omptempty"`
	VisitorIds                    *Relation  `xmlrpc:"visitor_ids,omptempty"`
	Website                       *String    `xmlrpc:"website,omptempty"`
	WebsiteDescription            *String    `xmlrpc:"website_description,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"`
	WebsiteShortDescription       *String    `xmlrpc:"website_short_description,omptempty"`
	WebsiteUrl                    *String    `xmlrpc:"website_url,omptempty"`
	WriteDate                     *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid                      *Many2One  `xmlrpc:"write_uid,omptempty"`
	Zip                           *String    `xmlrpc:"zip,omptempty"`
}

ResPartner represents res.partner model.

func (*ResPartner) Many2One

func (rp *ResPartner) Many2One() *Many2One

Many2One convert ResPartner to *Many2One.

type ResPartnerAutocompleteSync

type ResPartnerAutocompleteSync 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"`
	PartnerId   *Many2One `xmlrpc:"partner_id,omptempty"`
	Synched     *Bool     `xmlrpc:"synched,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

ResPartnerAutocompleteSync represents res.partner.autocomplete.sync model.

func (*ResPartnerAutocompleteSync) Many2One

func (rpas *ResPartnerAutocompleteSync) Many2One() *Many2One

Many2One convert ResPartnerAutocompleteSync to *Many2One.

type ResPartnerAutocompleteSyncs

type ResPartnerAutocompleteSyncs []ResPartnerAutocompleteSync

ResPartnerAutocompleteSyncs represents array of res.partner.autocomplete.sync model.

type ResPartnerBank

type ResPartnerBank 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"`
	PartnerId          *Many2One  `xmlrpc:"partner_id,omptempty"`
	QrCodeValid        *Bool      `xmlrpc:"qr_code_valid,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"`
}

ResPartnerBank represents res.partner.bank model.

func (*ResPartnerBank) Many2One

func (rpb *ResPartnerBank) Many2One() *Many2One

Many2One convert ResPartnerBank to *Many2One.

type ResPartnerBanks

type ResPartnerBanks []ResPartnerBank

ResPartnerBanks represents array of res.partner.bank model.

type ResPartnerCategory

type ResPartnerCategory struct {
	Active      *Bool     `xmlrpc:"active,omptempty"`
	ChildIds    *Relation `xmlrpc:"child_ids,omptempty"`
	Color       *Int      `xmlrpc:"color,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"`
	PartnerIds  *Relation `xmlrpc:"partner_ids,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

ResPartnerCategory represents res.partner.category model.

func (*ResPartnerCategory) Many2One

func (rpc *ResPartnerCategory) Many2One() *Many2One

Many2One convert ResPartnerCategory to *Many2One.

type ResPartnerCategorys

type ResPartnerCategorys []ResPartnerCategory

ResPartnerCategorys represents array of res.partner.category model.

type ResPartnerIndustry

type ResPartnerIndustry struct {
	Active      *Bool     `xmlrpc:"active,omptempty"`
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	FullName    *String   `xmlrpc:"full_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"`
}

ResPartnerIndustry represents res.partner.industry model.

func (*ResPartnerIndustry) Many2One

func (rpi *ResPartnerIndustry) Many2One() *Many2One

Many2One convert ResPartnerIndustry to *Many2One.

type ResPartnerIndustrys

type ResPartnerIndustrys []ResPartnerIndustry

ResPartnerIndustrys represents array of res.partner.industry model.

type ResPartnerTitle

type ResPartnerTitle 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"`
	Shortcut    *String   `xmlrpc:"shortcut,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

ResPartnerTitle represents res.partner.title model.

func (*ResPartnerTitle) Many2One

func (rpt *ResPartnerTitle) Many2One() *Many2One

Many2One convert ResPartnerTitle to *Many2One.

type ResPartnerTitles

type ResPartnerTitles []ResPartnerTitle

ResPartnerTitles represents array of res.partner.title model.

type ResPartners

type ResPartners []ResPartner

ResPartners represents array of res.partner model.

type ResUsers

type ResUsers struct {
	AccessesCount                 *Int       `xmlrpc:"accesses_count,omptempty"`
	ActionId                      *Many2One  `xmlrpc:"action_id,omptempty"`
	Active                        *Bool      `xmlrpc:"active,omptempty"`
	ActiveLangCount               *Int       `xmlrpc:"active_lang_count,omptempty"`
	ActivePartner                 *Bool      `xmlrpc:"active_partner,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"`
	AdditionalInfo                *String    `xmlrpc:"additional_info,omptempty"`
	AdditionalNote                *String    `xmlrpc:"additional_note,omptempty"`
	AddressHomeId                 *Many2One  `xmlrpc:"address_home_id,omptempty"`
	AddressId                     *Many2One  `xmlrpc:"address_id,omptempty"`
	AliasContact                  *Selection `xmlrpc:"alias_contact,omptempty"`
	AliasId                       *Many2One  `xmlrpc:"alias_id,omptempty"`
	AllocationCount               *Float     `xmlrpc:"allocation_count,omptempty"`
	AllocationDisplay             *String    `xmlrpc:"allocation_display,omptempty"`
	AllocationUsedCount           *Float     `xmlrpc:"allocation_used_count,omptempty"`
	AllocationUsedDisplay         *String    `xmlrpc:"allocation_used_display,omptempty"`
	AttendanceState               *Selection `xmlrpc:"attendance_state,omptempty"`
	BadgeIds                      *Relation  `xmlrpc:"badge_ids,omptempty"`
	BankAccountCount              *Int       `xmlrpc:"bank_account_count,omptempty"`
	BankAccountId                 *Many2One  `xmlrpc:"bank_account_id,omptempty"`
	BankIds                       *Relation  `xmlrpc:"bank_ids,omptempty"`
	Barcode                       *String    `xmlrpc:"barcode,omptempty"`
	Birthday                      *Time      `xmlrpc:"birthday,omptempty"`
	BronzeBadge                   *Int       `xmlrpc:"bronze_badge,omptempty"`
	CalendarLastNotifAck          *Time      `xmlrpc:"calendar_last_notif_ack,omptempty"`
	CanEdit                       *Bool      `xmlrpc:"can_edit,omptempty"`
	CanPublish                    *Bool      `xmlrpc:"can_publish,omptempty"`
	CategoryId                    *Relation  `xmlrpc:"category_id,omptempty"`
	CategoryIds                   *Relation  `xmlrpc:"category_ids,omptempty"`
	Certificate                   *Selection `xmlrpc:"certificate,omptempty"`
	CertificationsCompanyCount    *Int       `xmlrpc:"certifications_company_count,omptempty"`
	CertificationsCount           *Int       `xmlrpc:"certifications_count,omptempty"`
	ChannelIds                    *Relation  `xmlrpc:"channel_ids,omptempty"`
	ChildIds                      *Relation  `xmlrpc:"child_ids,omptempty"`
	Children                      *Int       `xmlrpc:"children,omptempty"`
	City                          *String    `xmlrpc:"city,omptempty"`
	CoachId                       *Many2One  `xmlrpc:"coach_id,omptempty"`
	Color                         *Int       `xmlrpc:"color,omptempty"`
	Comment                       *String    `xmlrpc:"comment,omptempty"`
	CommercialCompanyName         *String    `xmlrpc:"commercial_company_name,omptempty"`
	CommercialPartnerId           *Many2One  `xmlrpc:"commercial_partner_id,omptempty"`
	CompaniesCount                *Int       `xmlrpc:"companies_count,omptempty"`
	CompanyId                     *Many2One  `xmlrpc:"company_id,omptempty"`
	CompanyIds                    *Relation  `xmlrpc:"company_ids,omptempty"`
	CompanyName                   *String    `xmlrpc:"company_name,omptempty"`
	CompanyType                   *Selection `xmlrpc:"company_type,omptempty"`
	ContactAddress                *String    `xmlrpc:"contact_address,omptempty"`
	ContractIds                   *Relation  `xmlrpc:"contract_ids,omptempty"`
	CountryId                     *Many2One  `xmlrpc:"country_id,omptempty"`
	CountryOfBirth                *Many2One  `xmlrpc:"country_of_birth,omptempty"`
	CreateDate                    *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid                     *Many2One  `xmlrpc:"create_uid,omptempty"`
	Credit                        *Float     `xmlrpc:"credit,omptempty"`
	CreditLimit                   *Float     `xmlrpc:"credit_limit,omptempty"`
	CurrencyId                    *Many2One  `xmlrpc:"currency_id,omptempty"`
	CustomerRank                  *Int       `xmlrpc:"customer_rank,omptempty"`
	Date                          *Time      `xmlrpc:"date,omptempty"`
	Debit                         *Float     `xmlrpc:"debit,omptempty"`
	DebitLimit                    *Float     `xmlrpc:"debit_limit,omptempty"`
	DepartmentId                  *Many2One  `xmlrpc:"department_id,omptempty"`
	DisplayName                   *String    `xmlrpc:"display_name,omptempty"`
	Email                         *String    `xmlrpc:"email,omptempty"`
	EmailFormatted                *String    `xmlrpc:"email_formatted,omptempty"`
	EmailNormalized               *String    `xmlrpc:"email_normalized,omptempty"`
	EmergencyContact              *String    `xmlrpc:"emergency_contact,omptempty"`
	EmergencyPhone                *String    `xmlrpc:"emergency_phone,omptempty"`
	Employee                      *Bool      `xmlrpc:"employee,omptempty"`
	EmployeeBankAccountId         *Many2One  `xmlrpc:"employee_bank_account_id,omptempty"`
	EmployeeCount                 *Int       `xmlrpc:"employee_count,omptempty"`
	EmployeeCountryId             *Many2One  `xmlrpc:"employee_country_id,omptempty"`
	EmployeeId                    *Many2One  `xmlrpc:"employee_id,omptempty"`
	EmployeeIds                   *Relation  `xmlrpc:"employee_ids,omptempty"`
	EmployeeParentId              *Many2One  `xmlrpc:"employee_parent_id,omptempty"`
	EmployeePhone                 *String    `xmlrpc:"employee_phone,omptempty"`
	EventCount                    *Int       `xmlrpc:"event_count,omptempty"`
	ExpenseManagerId              *Many2One  `xmlrpc:"expense_manager_id,omptempty"`
	Function                      *String    `xmlrpc:"function,omptempty"`
	Gender                        *Selection `xmlrpc:"gender,omptempty"`
	GoalIds                       *Relation  `xmlrpc:"goal_ids,omptempty"`
	GoldBadge                     *Int       `xmlrpc:"gold_badge,omptempty"`
	GroupsCount                   *Int       `xmlrpc:"groups_count,omptempty"`
	GroupsId                      *Relation  `xmlrpc:"groups_id,omptempty"`
	HasUnreconciledEntries        *Bool      `xmlrpc:"has_unreconciled_entries,omptempty"`
	HoursLastMonth                *Float     `xmlrpc:"hours_last_month,omptempty"`
	HoursLastMonthDisplay         *String    `xmlrpc:"hours_last_month_display,omptempty"`
	HrPresenceState               *Selection `xmlrpc:"hr_presence_state,omptempty"`
	Id                            *Int       `xmlrpc:"id,omptempty"`
	IdentificationId              *String    `xmlrpc:"identification_id,omptempty"`
	Image1024                     *String    `xmlrpc:"image_1024,omptempty"`
	Image128                      *String    `xmlrpc:"image_128,omptempty"`
	Image1920                     *String    `xmlrpc:"image_1920,omptempty"`
	Image256                      *String    `xmlrpc:"image_256,omptempty"`
	Image512                      *String    `xmlrpc:"image_512,omptempty"`
	ImStatus                      *String    `xmlrpc:"im_status,omptempty"`
	IndustryId                    *Many2One  `xmlrpc:"industry_id,omptempty"`
	Instructor                    *Bool      `xmlrpc:"instructor,omptempty"`
	InvoiceIds                    *Relation  `xmlrpc:"invoice_ids,omptempty"`
	InvoiceWarn                   *Selection `xmlrpc:"invoice_warn,omptempty"`
	InvoiceWarnMsg                *String    `xmlrpc:"invoice_warn_msg,omptempty"`
	IsAbsent                      *Bool      `xmlrpc:"is_absent,omptempty"`
	IsAddressHomeACompany         *Bool      `xmlrpc:"is_address_home_a_company,omptempty"`
	IsBlacklisted                 *Bool      `xmlrpc:"is_blacklisted,omptempty"`
	IsCompany                     *Bool      `xmlrpc:"is_company,omptempty"`
	IsModerator                   *Bool      `xmlrpc:"is_moderator,omptempty"`
	IsPublished                   *Bool      `xmlrpc:"is_published,omptempty"`
	IsSeoOptimized                *Bool      `xmlrpc:"is_seo_optimized,omptempty"`
	JobTitle                      *String    `xmlrpc:"job_title,omptempty"`
	JournalItemCount              *Int       `xmlrpc:"journal_item_count,omptempty"`
	Karma                         *Int       `xmlrpc:"karma,omptempty"`
	KmHomeWork                    *Int       `xmlrpc:"km_home_work,omptempty"`
	L10NSgUniqueEntityNumber      *String    `xmlrpc:"l10n_sg_unique_entity_number,omptempty"`
	Lang                          *Selection `xmlrpc:"lang,omptempty"`
	LastActivity                  *Time      `xmlrpc:"last_activity,omptempty"`
	LastActivityTime              *String    `xmlrpc:"last_activity_time,omptempty"`
	LastCheckIn                   *Time      `xmlrpc:"last_check_in,omptempty"`
	LastCheckOut                  *Time      `xmlrpc:"last_check_out,omptempty"`
	LastTimeEntriesChecked        *Time      `xmlrpc:"last_time_entries_checked,omptempty"`
	LastUpdate                    *Time      `xmlrpc:"__last_update,omptempty"`
	LeaveDateTo                   *Time      `xmlrpc:"leave_date_to,omptempty"`
	LeaveManagerId                *Many2One  `xmlrpc:"leave_manager_id,omptempty"`
	LivechatUsername              *String    `xmlrpc:"livechat_username,omptempty"`
	LogIds                        *Relation  `xmlrpc:"log_ids,omptempty"`
	Login                         *String    `xmlrpc:"login,omptempty"`
	LoginDate                     *Time      `xmlrpc:"login_date,omptempty"`
	Marital                       *Selection `xmlrpc:"marital,omptempty"`
	MedicExam                     *Time      `xmlrpc:"medic_exam,omptempty"`
	MeetingCount                  *Int       `xmlrpc:"meeting_count,omptempty"`
	MeetingIds                    *Relation  `xmlrpc:"meeting_ids,omptempty"`
	MessageAttachmentCount        *Int       `xmlrpc:"message_attachment_count,omptempty"`
	MessageBounce                 *Int       `xmlrpc:"message_bounce,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"`
	Mobile                        *String    `xmlrpc:"mobile,omptempty"`
	MobilePhone                   *String    `xmlrpc:"mobile_phone,omptempty"`
	ModerationChannelIds          *Relation  `xmlrpc:"moderation_channel_ids,omptempty"`
	ModerationCounter             *Int       `xmlrpc:"moderation_counter,omptempty"`
	Name                          *String    `xmlrpc:"name,omptempty"`
	NewPassword                   *String    `xmlrpc:"new_password,omptempty"`
	NextRankId                    *Many2One  `xmlrpc:"next_rank_id,omptempty"`
	NotificationType              *Selection `xmlrpc:"notification_type,omptempty"`
	OdoobotState                  *Selection `xmlrpc:"odoobot_state,omptempty"`
	OpportunityCount              *Int       `xmlrpc:"opportunity_count,omptempty"`
	OpportunityIds                *Relation  `xmlrpc:"opportunity_ids,omptempty"`
	OutOfOfficeMessage            *String    `xmlrpc:"out_of_office_message,omptempty"`
	ParentId                      *Many2One  `xmlrpc:"parent_id,omptempty"`
	ParentName                    *String    `xmlrpc:"parent_name,omptempty"`
	PartnerGid                    *Int       `xmlrpc:"partner_gid,omptempty"`
	PartnerId                     *Many2One  `xmlrpc:"partner_id,omptempty"`
	PartnerLatitude               *Float     `xmlrpc:"partner_latitude,omptempty"`
	PartnerLongitude              *Float     `xmlrpc:"partner_longitude,omptempty"`
	PartnerShare                  *Bool      `xmlrpc:"partner_share,omptempty"`
	Passport                      *String    `xmlrpc:"passport,omptempty"`
	PassportId                    *String    `xmlrpc:"passport_id,omptempty"`
	Password                      *String    `xmlrpc:"password,omptempty"`
	PaymentTokenCount             *Int       `xmlrpc:"payment_token_count,omptempty"`
	PaymentTokenIds               *Relation  `xmlrpc:"payment_token_ids,omptempty"`
	PermitNo                      *String    `xmlrpc:"permit_no,omptempty"`
	Phone                         *String    `xmlrpc:"phone,omptempty"`
	PhoneBlacklisted              *Bool      `xmlrpc:"phone_blacklisted,omptempty"`
	PhoneSanitized                *String    `xmlrpc:"phone_sanitized,omptempty"`
	Pin                           *String    `xmlrpc:"pin,omptempty"`
	PlaceOfBirth                  *String    `xmlrpc:"place_of_birth,omptempty"`
	PrivateEmail                  *String    `xmlrpc:"private_email,omptempty"`
	PropertyAccountPayableId      *Many2One  `xmlrpc:"property_account_payable_id,omptempty"`
	PropertyAccountPositionId     *Many2One  `xmlrpc:"property_account_position_id,omptempty"`
	PropertyAccountReceivableId   *Many2One  `xmlrpc:"property_account_receivable_id,omptempty"`
	PropertyPaymentTermId         *Many2One  `xmlrpc:"property_payment_term_id,omptempty"`
	PropertyProductPricelist      *Many2One  `xmlrpc:"property_product_pricelist,omptempty"`
	PropertySupplierPaymentTermId *Many2One  `xmlrpc:"property_supplier_payment_term_id,omptempty"`
	RankId                        *Many2One  `xmlrpc:"rank_id,omptempty"`
	Ref                           *String    `xmlrpc:"ref,omptempty"`
	RefCompanyIds                 *Relation  `xmlrpc:"ref_company_ids,omptempty"`
	ResourceCalendarId            *Many2One  `xmlrpc:"resource_calendar_id,omptempty"`
	ResourceIds                   *Relation  `xmlrpc:"resource_ids,omptempty"`
	RulesCount                    *Int       `xmlrpc:"rules_count,omptempty"`
	SaleOrderCount                *Int       `xmlrpc:"sale_order_count,omptempty"`
	SaleOrderIds                  *Relation  `xmlrpc:"sale_order_ids,omptempty"`
	SaleTeamId                    *Many2One  `xmlrpc:"sale_team_id,omptempty"`
	SaleWarn                      *Selection `xmlrpc:"sale_warn,omptempty"`
	SaleWarnMsg                   *String    `xmlrpc:"sale_warn_msg,omptempty"`
	SameVatPartnerId              *Many2One  `xmlrpc:"same_vat_partner_id,omptempty"`
	Self                          *Many2One  `xmlrpc:"self,omptempty"`
	SessionIds                    *Relation  `xmlrpc:"session_ids,omptempty"`
	Share                         *Bool      `xmlrpc:"share,omptempty"`
	ShowLeaves                    *Bool      `xmlrpc:"show_leaves,omptempty"`
	Signature                     *String    `xmlrpc:"signature,omptempty"`
	SignupExpiration              *Time      `xmlrpc:"signup_expiration,omptempty"`
	SignupToken                   *String    `xmlrpc:"signup_token,omptempty"`
	SignupType                    *String    `xmlrpc:"signup_type,omptempty"`
	SignupUrl                     *String    `xmlrpc:"signup_url,omptempty"`
	SignupValid                   *Bool      `xmlrpc:"signup_valid,omptempty"`
	SilverBadge                   *Int       `xmlrpc:"silver_badge,omptempty"`
	SlideChannelCompanyCount      *Int       `xmlrpc:"slide_channel_company_count,omptempty"`
	SlideChannelCount             *Int       `xmlrpc:"slide_channel_count,omptempty"`
	SlideChannelIds               *Relation  `xmlrpc:"slide_channel_ids,omptempty"`
	SpouseBirthdate               *Time      `xmlrpc:"spouse_birthdate,omptempty"`
	SpouseCompleteName            *String    `xmlrpc:"spouse_complete_name,omptempty"`
	State                         *Selection `xmlrpc:"state,omptempty"`
	StateId                       *Many2One  `xmlrpc:"state_id,omptempty"`
	Street                        *String    `xmlrpc:"street,omptempty"`
	Street2                       *String    `xmlrpc:"street2,omptempty"`
	StudyField                    *String    `xmlrpc:"study_field,omptempty"`
	StudySchool                   *String    `xmlrpc:"study_school,omptempty"`
	SupplierRank                  *Int       `xmlrpc:"supplier_rank,omptempty"`
	TargetSalesDone               *Int       `xmlrpc:"target_sales_done,omptempty"`
	TargetSalesInvoiced           *Int       `xmlrpc:"target_sales_invoiced,omptempty"`
	TargetSalesWon                *Int       `xmlrpc:"target_sales_won,omptempty"`
	TaskCount                     *Int       `xmlrpc:"task_count,omptempty"`
	TaskIds                       *Relation  `xmlrpc:"task_ids,omptempty"`
	TeamId                        *Many2One  `xmlrpc:"team_id,omptempty"`
	Title                         *Many2One  `xmlrpc:"title,omptempty"`
	TotalInvoiced                 *Float     `xmlrpc:"total_invoiced,omptempty"`
	Trust                         *Selection `xmlrpc:"trust,omptempty"`
	Type                          *Selection `xmlrpc:"type,omptempty"`
	Tz                            *Selection `xmlrpc:"tz,omptempty"`
	TzOffset                      *String    `xmlrpc:"tz_offset,omptempty"`
	UserId                        *Many2One  `xmlrpc:"user_id,omptempty"`
	UserIds                       *Relation  `xmlrpc:"user_ids,omptempty"`
	Vat                           *String    `xmlrpc:"vat,omptempty"`
	Vehicle                       *String    `xmlrpc:"vehicle,omptempty"`
	VisaExpire                    *Time      `xmlrpc:"visa_expire,omptempty"`
	VisaNo                        *String    `xmlrpc:"visa_no,omptempty"`
	VisitorIds                    *Relation  `xmlrpc:"visitor_ids,omptempty"`
	Website                       *String    `xmlrpc:"website,omptempty"`
	WebsiteDescription            *String    `xmlrpc:"website_description,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"`
	WebsiteShortDescription       *String    `xmlrpc:"website_short_description,omptempty"`
	WebsiteUrl                    *String    `xmlrpc:"website_url,omptempty"`
	WorkEmail                     *String    `xmlrpc:"work_email,omptempty"`
	WorkLocation                  *String    `xmlrpc:"work_location,omptempty"`
	WorkPhone                     *String    `xmlrpc:"work_phone,omptempty"`
	WriteDate                     *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid                      *Many2One  `xmlrpc:"write_uid,omptempty"`
	Zip                           *String    `xmlrpc:"zip,omptempty"`
	RefID                         *String    `xmlrpc:"ref_id,omptempty"`
	CohortSignupID                *Int       `xmlrpc:"cohort_signup_id,omptempty"`
}

ResUsers represents res.users model.

func (*ResUsers) Many2One

func (ru *ResUsers) Many2One() *Many2One

Many2One convert ResUsers to *Many2One.

type ResUsersLog

type ResUsersLog 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"`
}

ResUsersLog represents res.users.log model.

func (*ResUsersLog) Many2One

func (rul *ResUsersLog) Many2One() *Many2One

Many2One convert ResUsersLog to *Many2One.

type ResUsersLogs

type ResUsersLogs []ResUsersLog

ResUsersLogs represents array of res.users.log model.

type ResUserss

type ResUserss []ResUsers

ResUserss represents array of res.users model.

type ResetViewArchWizard

type ResetViewArchWizard struct {
	ArchDiff    *String    `xmlrpc:"arch_diff,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"`
	ResetMode   *Selection `xmlrpc:"reset_mode,omptempty"`
	ViewId      *Many2One  `xmlrpc:"view_id,omptempty"`
	ViewName    *String    `xmlrpc:"view_name,omptempty"`
	WriteDate   *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One  `xmlrpc:"write_uid,omptempty"`
}

ResetViewArchWizard represents reset.view.arch.wizard model.

func (*ResetViewArchWizard) Many2One

func (rvaw *ResetViewArchWizard) Many2One() *Many2One

Many2One convert ResetViewArchWizard to *Many2One.

type ResetViewArchWizards

type ResetViewArchWizards []ResetViewArchWizard

ResetViewArchWizards represents array of reset.view.arch.wizard model.

type ResourceCalendar

type ResourceCalendar struct {
	AttendanceIds       *Relation  `xmlrpc:"attendance_ids,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"`
	GlobalLeaveIds      *Relation  `xmlrpc:"global_leave_ids,omptempty"`
	HoursPerDay         *Float     `xmlrpc:"hours_per_day,omptempty"`
	Id                  *Int       `xmlrpc:"id,omptempty"`
	LastUpdate          *Time      `xmlrpc:"__last_update,omptempty"`
	LeaveIds            *Relation  `xmlrpc:"leave_ids,omptempty"`
	Name                *String    `xmlrpc:"name,omptempty"`
	TwoWeeksCalendar    *Bool      `xmlrpc:"two_weeks_calendar,omptempty"`
	TwoWeeksExplanation *String    `xmlrpc:"two_weeks_explanation,omptempty"`
	Tz                  *Selection `xmlrpc:"tz,omptempty"`
	WriteDate           *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid            *Many2One  `xmlrpc:"write_uid,omptempty"`
}

ResourceCalendar represents resource.calendar model.

func (*ResourceCalendar) Many2One

func (rc *ResourceCalendar) Many2One() *Many2One

Many2One convert ResourceCalendar to *Many2One.

type ResourceCalendarAttendance

type ResourceCalendarAttendance struct {
	CalendarId       *Many2One  `xmlrpc:"calendar_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"`
	Dayofweek        *Selection `xmlrpc:"dayofweek,omptempty"`
	DayPeriod        *Selection `xmlrpc:"day_period,omptempty"`
	DisplayName      *String    `xmlrpc:"display_name,omptempty"`
	DisplayType      *Selection `xmlrpc:"display_type,omptempty"`
	HourFrom         *Float     `xmlrpc:"hour_from,omptempty"`
	HourTo           *Float     `xmlrpc:"hour_to,omptempty"`
	Id               *Int       `xmlrpc:"id,omptempty"`
	LastUpdate       *Time      `xmlrpc:"__last_update,omptempty"`
	Name             *String    `xmlrpc:"name,omptempty"`
	ResourceId       *Many2One  `xmlrpc:"resource_id,omptempty"`
	Sequence         *Int       `xmlrpc:"sequence,omptempty"`
	TwoWeeksCalendar *Bool      `xmlrpc:"two_weeks_calendar,omptempty"`
	WeekType         *Selection `xmlrpc:"week_type,omptempty"`
	WriteDate        *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid         *Many2One  `xmlrpc:"write_uid,omptempty"`
}

ResourceCalendarAttendance represents resource.calendar.attendance model.

func (*ResourceCalendarAttendance) Many2One

func (rca *ResourceCalendarAttendance) Many2One() *Many2One

Many2One convert ResourceCalendarAttendance to *Many2One.

type ResourceCalendarAttendances

type ResourceCalendarAttendances []ResourceCalendarAttendance

ResourceCalendarAttendances represents array of resource.calendar.attendance model.

type ResourceCalendarLeaves

type ResourceCalendarLeaves struct {
	CalendarId  *Many2One  `xmlrpc:"calendar_id,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"`
	HolidayId   *Many2One  `xmlrpc:"holiday_id,omptempty"`
	Id          *Int       `xmlrpc:"id,omptempty"`
	LastUpdate  *Time      `xmlrpc:"__last_update,omptempty"`
	Name        *String    `xmlrpc:"name,omptempty"`
	ResourceId  *Many2One  `xmlrpc:"resource_id,omptempty"`
	TimeType    *Selection `xmlrpc:"time_type,omptempty"`
	WriteDate   *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One  `xmlrpc:"write_uid,omptempty"`
}

ResourceCalendarLeaves represents resource.calendar.leaves model.

func (*ResourceCalendarLeaves) Many2One

func (rcl *ResourceCalendarLeaves) Many2One() *Many2One

Many2One convert ResourceCalendarLeaves to *Many2One.

type ResourceCalendarLeavess

type ResourceCalendarLeavess []ResourceCalendarLeaves

ResourceCalendarLeavess represents array of resource.calendar.leaves model.

type ResourceCalendars

type ResourceCalendars []ResourceCalendar

ResourceCalendars represents array of resource.calendar model.

type ResourceMixin

type ResourceMixin struct {
	CompanyId          *Many2One  `xmlrpc:"company_id,omptempty"`
	DisplayName        *String    `xmlrpc:"display_name,omptempty"`
	Id                 *Int       `xmlrpc:"id,omptempty"`
	LastUpdate         *Time      `xmlrpc:"__last_update,omptempty"`
	ResourceCalendarId *Many2One  `xmlrpc:"resource_calendar_id,omptempty"`
	ResourceId         *Many2One  `xmlrpc:"resource_id,omptempty"`
	Tz                 *Selection `xmlrpc:"tz,omptempty"`
}

ResourceMixin represents resource.mixin model.

func (*ResourceMixin) Many2One

func (rm *ResourceMixin) Many2One() *Many2One

Many2One convert ResourceMixin to *Many2One.

type ResourceMixins

type ResourceMixins []ResourceMixin

ResourceMixins represents array of resource.mixin model.

type ResourceResource

type ResourceResource struct {
	Active         *Bool      `xmlrpc:"active,omptempty"`
	CalendarId     *Many2One  `xmlrpc:"calendar_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"`
	ResourceType   *Selection `xmlrpc:"resource_type,omptempty"`
	TimeEfficiency *Float     `xmlrpc:"time_efficiency,omptempty"`
	Tz             *Selection `xmlrpc:"tz,omptempty"`
	UserId         *Many2One  `xmlrpc:"user_id,omptempty"`
	WriteDate      *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid       *Many2One  `xmlrpc:"write_uid,omptempty"`
}

ResourceResource represents resource.resource model.

func (*ResourceResource) Many2One

func (rr *ResourceResource) Many2One() *Many2One

Many2One convert ResourceResource to *Many2One.

type ResourceResources

type ResourceResources []ResourceResource

ResourceResources represents array of resource.resource model.

type SaleAdvancePaymentInv

type SaleAdvancePaymentInv struct {
	AdvancePaymentMethod *Selection `xmlrpc:"advance_payment_method,omptempty"`
	Amount               *Float     `xmlrpc:"amount,omptempty"`
	Count                *Int       `xmlrpc:"count,omptempty"`
	CreateDate           *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid            *Many2One  `xmlrpc:"create_uid,omptempty"`
	CurrencyId           *Many2One  `xmlrpc:"currency_id,omptempty"`
	DeductDownPayments   *Bool      `xmlrpc:"deduct_down_payments,omptempty"`
	DepositAccountId     *Many2One  `xmlrpc:"deposit_account_id,omptempty"`
	DepositTaxesId       *Relation  `xmlrpc:"deposit_taxes_id,omptempty"`
	DisplayName          *String    `xmlrpc:"display_name,omptempty"`
	FixedAmount          *Float     `xmlrpc:"fixed_amount,omptempty"`
	HasDownPayments      *Bool      `xmlrpc:"has_down_payments,omptempty"`
	Id                   *Int       `xmlrpc:"id,omptempty"`
	LastUpdate           *Time      `xmlrpc:"__last_update,omptempty"`
	ProductId            *Many2One  `xmlrpc:"product_id,omptempty"`
	WriteDate            *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid             *Many2One  `xmlrpc:"write_uid,omptempty"`
}

SaleAdvancePaymentInv represents sale.advance.payment.inv model.

func (*SaleAdvancePaymentInv) Many2One

func (sapi *SaleAdvancePaymentInv) Many2One() *Many2One

Many2One convert SaleAdvancePaymentInv to *Many2One.

type SaleAdvancePaymentInvs

type SaleAdvancePaymentInvs []SaleAdvancePaymentInv

SaleAdvancePaymentInvs represents array of sale.advance.payment.inv model.

type SaleOrder

type SaleOrder 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"`
	AmountTax                   *Float     `xmlrpc:"amount_tax,omptempty"`
	AmountTotal                 *Float     `xmlrpc:"amount_total,omptempty"`
	AmountUndiscounted          *Float     `xmlrpc:"amount_undiscounted,omptempty"`
	AmountUntaxed               *Float     `xmlrpc:"amount_untaxed,omptempty"`
	AnalyticAccountId           *Many2One  `xmlrpc:"analytic_account_id,omptempty"`
	AuthorizedTransactionIds    *Relation  `xmlrpc:"authorized_transaction_ids,omptempty"`
	CampaignId                  *Many2One  `xmlrpc:"campaign_id,omptempty"`
	ClientOrderRef              *String    `xmlrpc:"client_order_ref,omptempty"`
	CommitmentDate              *Time      `xmlrpc:"commitment_date,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"`
	CurrencyRate                *Float     `xmlrpc:"currency_rate,omptempty"`
	DateOrder                   *Time      `xmlrpc:"date_order,omptempty"`
	DisplayName                 *String    `xmlrpc:"display_name,omptempty"`
	ExpectedDate                *Time      `xmlrpc:"expected_date,omptempty"`
	ExpenseCount                *Int       `xmlrpc:"expense_count,omptempty"`
	ExpenseIds                  *Relation  `xmlrpc:"expense_ids,omptempty"`
	FiscalPositionId            *Many2One  `xmlrpc:"fiscal_position_id,omptempty"`
	Id                          *Int       `xmlrpc:"id,omptempty"`
	InvoiceCount                *Int       `xmlrpc:"invoice_count,omptempty"`
	InvoiceIds                  *Relation  `xmlrpc:"invoice_ids,omptempty"`
	InvoiceStatus               *Selection `xmlrpc:"invoice_status,omptempty"`
	IsExpired                   *Bool      `xmlrpc:"is_expired,omptempty"`
	LastUpdate                  *Time      `xmlrpc:"__last_update,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"`
	Note                        *String    `xmlrpc:"note,omptempty"`
	OpportunityId               *Many2One  `xmlrpc:"opportunity_id,omptempty"`
	OrderLine                   *Relation  `xmlrpc:"order_line,omptempty"`
	Origin                      *String    `xmlrpc:"origin,omptempty"`
	PartnerId                   *Many2One  `xmlrpc:"partner_id,omptempty"`
	PartnerInvoiceId            *Many2One  `xmlrpc:"partner_invoice_id,omptempty"`
	PartnerShippingId           *Many2One  `xmlrpc:"partner_shipping_id,omptempty"`
	PaymentTermId               *Many2One  `xmlrpc:"payment_term_id,omptempty"`
	PricelistId                 *Many2One  `xmlrpc:"pricelist_id,omptempty"`
	Reference                   *String    `xmlrpc:"reference,omptempty"`
	RemainingValidityDays       *Int       `xmlrpc:"remaining_validity_days,omptempty"`
	RequirePayment              *Bool      `xmlrpc:"require_payment,omptempty"`
	RequireSignature            *Bool      `xmlrpc:"require_signature,omptempty"`
	SaleOrderOptionIds          *Relation  `xmlrpc:"sale_order_option_ids,omptempty"`
	SaleOrderTemplateId         *Many2One  `xmlrpc:"sale_order_template_id,omptempty"`
	Signature                   *String    `xmlrpc:"signature,omptempty"`
	SignedBy                    *String    `xmlrpc:"signed_by,omptempty"`
	SignedOn                    *Time      `xmlrpc:"signed_on,omptempty"`
	SourceId                    *Many2One  `xmlrpc:"source_id,omptempty"`
	State                       *Selection `xmlrpc:"state,omptempty"`
	TagIds                      *Relation  `xmlrpc:"tag_ids,omptempty"`
	TeamId                      *Many2One  `xmlrpc:"team_id,omptempty"`
	TransactionIds              *Relation  `xmlrpc:"transaction_ids,omptempty"`
	TypeName                    *String    `xmlrpc:"type_name,omptempty"`
	UserId                      *Many2One  `xmlrpc:"user_id,omptempty"`
	ValidityDate                *Time      `xmlrpc:"validity_date,omptempty"`
	WebsiteMessageIds           *Relation  `xmlrpc:"website_message_ids,omptempty"`
	WriteDate                   *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid                    *Many2One  `xmlrpc:"write_uid,omptempty"`
}

SaleOrder represents sale.order model.

func (*SaleOrder) Many2One

func (so *SaleOrder) Many2One() *Many2One

Many2One convert SaleOrder to *Many2One.

type SaleOrderLine

type SaleOrderLine struct {
	AnalyticLineIds                   *Relation  `xmlrpc:"analytic_line_ids,omptempty"`
	AnalyticTagIds                    *Relation  `xmlrpc:"analytic_tag_ids,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"`
	CustomerLead                      *Float     `xmlrpc:"customer_lead,omptempty"`
	Discount                          *Float     `xmlrpc:"discount,omptempty"`
	DisplayName                       *String    `xmlrpc:"display_name,omptempty"`
	DisplayType                       *Selection `xmlrpc:"display_type,omptempty"`
	EventId                           *Many2One  `xmlrpc:"event_id,omptempty"`
	EventOk                           *Bool      `xmlrpc:"event_ok,omptempty"`
	EventTicketId                     *Many2One  `xmlrpc:"event_ticket_id,omptempty"`
	Id                                *Int       `xmlrpc:"id,omptempty"`
	InvoiceLines                      *Relation  `xmlrpc:"invoice_lines,omptempty"`
	InvoiceStatus                     *Selection `xmlrpc:"invoice_status,omptempty"`
	IsDownpayment                     *Bool      `xmlrpc:"is_downpayment,omptempty"`
	IsExpense                         *Bool      `xmlrpc:"is_expense,omptempty"`
	LastUpdate                        *Time      `xmlrpc:"__last_update,omptempty"`
	Name                              *String    `xmlrpc:"name,omptempty"`
	OrderId                           *Many2One  `xmlrpc:"order_id,omptempty"`
	OrderPartnerId                    *Many2One  `xmlrpc:"order_partner_id,omptempty"`
	PriceReduce                       *Float     `xmlrpc:"price_reduce,omptempty"`
	PriceReduceTaxexcl                *Float     `xmlrpc:"price_reduce_taxexcl,omptempty"`
	PriceReduceTaxinc                 *Float     `xmlrpc:"price_reduce_taxinc,omptempty"`
	PriceSubtotal                     *Float     `xmlrpc:"price_subtotal,omptempty"`
	PriceTax                          *Float     `xmlrpc:"price_tax,omptempty"`
	PriceTotal                        *Float     `xmlrpc:"price_total,omptempty"`
	PriceUnit                         *Float     `xmlrpc:"price_unit,omptempty"`
	ProductCustomAttributeValueIds    *Relation  `xmlrpc:"product_custom_attribute_value_ids,omptempty"`
	ProductId                         *Many2One  `xmlrpc:"product_id,omptempty"`
	ProductNoVariantAttributeValueIds *Relation  `xmlrpc:"product_no_variant_attribute_value_ids,omptempty"`
	ProductTemplateId                 *Many2One  `xmlrpc:"product_template_id,omptempty"`
	ProductUom                        *Many2One  `xmlrpc:"product_uom,omptempty"`
	ProductUomCategoryId              *Many2One  `xmlrpc:"product_uom_category_id,omptempty"`
	ProductUomQty                     *Float     `xmlrpc:"product_uom_qty,omptempty"`
	ProductUpdatable                  *Bool      `xmlrpc:"product_updatable,omptempty"`
	QtyDelivered                      *Float     `xmlrpc:"qty_delivered,omptempty"`
	QtyDeliveredManual                *Float     `xmlrpc:"qty_delivered_manual,omptempty"`
	QtyDeliveredMethod                *Selection `xmlrpc:"qty_delivered_method,omptempty"`
	QtyInvoiced                       *Float     `xmlrpc:"qty_invoiced,omptempty"`
	QtyToInvoice                      *Float     `xmlrpc:"qty_to_invoice,omptempty"`
	SaleOrderOptionIds                *Relation  `xmlrpc:"sale_order_option_ids,omptempty"`
	SalesmanId                        *Many2One  `xmlrpc:"salesman_id,omptempty"`
	Sequence                          *Int       `xmlrpc:"sequence,omptempty"`
	State                             *Selection `xmlrpc:"state,omptempty"`
	TaxId                             *Relation  `xmlrpc:"tax_id,omptempty"`
	UntaxedAmountInvoiced             *Float     `xmlrpc:"untaxed_amount_invoiced,omptempty"`
	UntaxedAmountToInvoice            *Float     `xmlrpc:"untaxed_amount_to_invoice,omptempty"`
	WriteDate                         *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid                          *Many2One  `xmlrpc:"write_uid,omptempty"`
}

SaleOrderLine represents sale.order.line model.

func (*SaleOrderLine) Many2One

func (sol *SaleOrderLine) Many2One() *Many2One

Many2One convert SaleOrderLine to *Many2One.

type SaleOrderLines

type SaleOrderLines []SaleOrderLine

SaleOrderLines represents array of sale.order.line model.

type SaleOrderOption

type SaleOrderOption struct {
	CreateDate           *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid            *Many2One `xmlrpc:"create_uid,omptempty"`
	Discount             *Float    `xmlrpc:"discount,omptempty"`
	DisplayName          *String   `xmlrpc:"display_name,omptempty"`
	Id                   *Int      `xmlrpc:"id,omptempty"`
	IsPresent            *Bool     `xmlrpc:"is_present,omptempty"`
	LastUpdate           *Time     `xmlrpc:"__last_update,omptempty"`
	LineId               *Many2One `xmlrpc:"line_id,omptempty"`
	Name                 *String   `xmlrpc:"name,omptempty"`
	OrderId              *Many2One `xmlrpc:"order_id,omptempty"`
	PriceUnit            *Float    `xmlrpc:"price_unit,omptempty"`
	ProductId            *Many2One `xmlrpc:"product_id,omptempty"`
	ProductUomCategoryId *Many2One `xmlrpc:"product_uom_category_id,omptempty"`
	Quantity             *Float    `xmlrpc:"quantity,omptempty"`
	Sequence             *Int      `xmlrpc:"sequence,omptempty"`
	UomId                *Many2One `xmlrpc:"uom_id,omptempty"`
	WriteDate            *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid             *Many2One `xmlrpc:"write_uid,omptempty"`
}

SaleOrderOption represents sale.order.option model.

func (*SaleOrderOption) Many2One

func (soo *SaleOrderOption) Many2One() *Many2One

Many2One convert SaleOrderOption to *Many2One.

type SaleOrderOptions

type SaleOrderOptions []SaleOrderOption

SaleOrderOptions represents array of sale.order.option model.

type SaleOrderTemplate

type SaleOrderTemplate 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"`
	MailTemplateId             *Many2One `xmlrpc:"mail_template_id,omptempty"`
	Name                       *String   `xmlrpc:"name,omptempty"`
	Note                       *String   `xmlrpc:"note,omptempty"`
	NumberOfDays               *Int      `xmlrpc:"number_of_days,omptempty"`
	RequirePayment             *Bool     `xmlrpc:"require_payment,omptempty"`
	RequireSignature           *Bool     `xmlrpc:"require_signature,omptempty"`
	SaleOrderTemplateLineIds   *Relation `xmlrpc:"sale_order_template_line_ids,omptempty"`
	SaleOrderTemplateOptionIds *Relation `xmlrpc:"sale_order_template_option_ids,omptempty"`
	WriteDate                  *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid                   *Many2One `xmlrpc:"write_uid,omptempty"`
}

SaleOrderTemplate represents sale.order.template model.

func (*SaleOrderTemplate) Many2One

func (sot *SaleOrderTemplate) Many2One() *Many2One

Many2One convert SaleOrderTemplate to *Many2One.

type SaleOrderTemplateLine

type SaleOrderTemplateLine struct {
	CompanyId            *Many2One  `xmlrpc:"company_id,omptempty"`
	CreateDate           *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid            *Many2One  `xmlrpc:"create_uid,omptempty"`
	Discount             *Float     `xmlrpc:"discount,omptempty"`
	DisplayName          *String    `xmlrpc:"display_name,omptempty"`
	DisplayType          *Selection `xmlrpc:"display_type,omptempty"`
	Id                   *Int       `xmlrpc:"id,omptempty"`
	LastUpdate           *Time      `xmlrpc:"__last_update,omptempty"`
	Name                 *String    `xmlrpc:"name,omptempty"`
	PriceUnit            *Float     `xmlrpc:"price_unit,omptempty"`
	ProductId            *Many2One  `xmlrpc:"product_id,omptempty"`
	ProductUomCategoryId *Many2One  `xmlrpc:"product_uom_category_id,omptempty"`
	ProductUomId         *Many2One  `xmlrpc:"product_uom_id,omptempty"`
	ProductUomQty        *Float     `xmlrpc:"product_uom_qty,omptempty"`
	SaleOrderTemplateId  *Many2One  `xmlrpc:"sale_order_template_id,omptempty"`
	Sequence             *Int       `xmlrpc:"sequence,omptempty"`
	WriteDate            *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid             *Many2One  `xmlrpc:"write_uid,omptempty"`
}

SaleOrderTemplateLine represents sale.order.template.line model.

func (*SaleOrderTemplateLine) Many2One

func (sotl *SaleOrderTemplateLine) Many2One() *Many2One

Many2One convert SaleOrderTemplateLine to *Many2One.

type SaleOrderTemplateLines

type SaleOrderTemplateLines []SaleOrderTemplateLine

SaleOrderTemplateLines represents array of sale.order.template.line model.

type SaleOrderTemplateOption

type SaleOrderTemplateOption struct {
	CompanyId            *Many2One `xmlrpc:"company_id,omptempty"`
	CreateDate           *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid            *Many2One `xmlrpc:"create_uid,omptempty"`
	Discount             *Float    `xmlrpc:"discount,omptempty"`
	DisplayName          *String   `xmlrpc:"display_name,omptempty"`
	Id                   *Int      `xmlrpc:"id,omptempty"`
	LastUpdate           *Time     `xmlrpc:"__last_update,omptempty"`
	Name                 *String   `xmlrpc:"name,omptempty"`
	PriceUnit            *Float    `xmlrpc:"price_unit,omptempty"`
	ProductId            *Many2One `xmlrpc:"product_id,omptempty"`
	ProductUomCategoryId *Many2One `xmlrpc:"product_uom_category_id,omptempty"`
	Quantity             *Float    `xmlrpc:"quantity,omptempty"`
	SaleOrderTemplateId  *Many2One `xmlrpc:"sale_order_template_id,omptempty"`
	UomId                *Many2One `xmlrpc:"uom_id,omptempty"`
	WriteDate            *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid             *Many2One `xmlrpc:"write_uid,omptempty"`
}

SaleOrderTemplateOption represents sale.order.template.option model.

func (*SaleOrderTemplateOption) Many2One

func (soto *SaleOrderTemplateOption) Many2One() *Many2One

Many2One convert SaleOrderTemplateOption to *Many2One.

type SaleOrderTemplateOptions

type SaleOrderTemplateOptions []SaleOrderTemplateOption

SaleOrderTemplateOptions represents array of sale.order.template.option model.

type SaleOrderTemplates

type SaleOrderTemplates []SaleOrderTemplate

SaleOrderTemplates represents array of sale.order.template model.

type SaleOrders

type SaleOrders []SaleOrder

SaleOrders represents array of sale.order model.

type SalePaymentAcquirerOnboardingWizard

type SalePaymentAcquirerOnboardingWizard struct {
	AccNumber            *String    `xmlrpc:"acc_number,omptempty"`
	CreateDate           *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid            *Many2One  `xmlrpc:"create_uid,omptempty"`
	DisplayName          *String    `xmlrpc:"display_name,omptempty"`
	Id                   *Int       `xmlrpc:"id,omptempty"`
	JournalName          *String    `xmlrpc:"journal_name,omptempty"`
	LastUpdate           *Time      `xmlrpc:"__last_update,omptempty"`
	ManualName           *String    `xmlrpc:"manual_name,omptempty"`
	ManualPostMsg        *String    `xmlrpc:"manual_post_msg,omptempty"`
	PaymentMethod        *Selection `xmlrpc:"payment_method,omptempty"`
	PaypalEmailAccount   *String    `xmlrpc:"paypal_email_account,omptempty"`
	PaypalPdtToken       *String    `xmlrpc:"paypal_pdt_token,omptempty"`
	PaypalSellerAccount  *String    `xmlrpc:"paypal_seller_account,omptempty"`
	PaypalUserType       *Selection `xmlrpc:"paypal_user_type,omptempty"`
	StripePublishableKey *String    `xmlrpc:"stripe_publishable_key,omptempty"`
	StripeSecretKey      *String    `xmlrpc:"stripe_secret_key,omptempty"`
	WriteDate            *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid             *Many2One  `xmlrpc:"write_uid,omptempty"`
}

SalePaymentAcquirerOnboardingWizard represents sale.payment.acquirer.onboarding.wizard model.

func (*SalePaymentAcquirerOnboardingWizard) Many2One

func (spaow *SalePaymentAcquirerOnboardingWizard) Many2One() *Many2One

Many2One convert SalePaymentAcquirerOnboardingWizard to *Many2One.

type SalePaymentAcquirerOnboardingWizards

type SalePaymentAcquirerOnboardingWizards []SalePaymentAcquirerOnboardingWizard

SalePaymentAcquirerOnboardingWizards represents array of sale.payment.acquirer.onboarding.wizard model.

type SaleReport

type SaleReport struct {
	AnalyticAccountId      *Many2One  `xmlrpc:"analytic_account_id,omptempty"`
	CampaignId             *Many2One  `xmlrpc:"campaign_id,omptempty"`
	CategId                *Many2One  `xmlrpc:"categ_id,omptempty"`
	CommercialPartnerId    *Many2One  `xmlrpc:"commercial_partner_id,omptempty"`
	CompanyId              *Many2One  `xmlrpc:"company_id,omptempty"`
	CountryId              *Many2One  `xmlrpc:"country_id,omptempty"`
	Date                   *Time      `xmlrpc:"date,omptempty"`
	Discount               *Float     `xmlrpc:"discount,omptempty"`
	DiscountAmount         *Float     `xmlrpc:"discount_amount,omptempty"`
	DisplayName            *String    `xmlrpc:"display_name,omptempty"`
	Id                     *Int       `xmlrpc:"id,omptempty"`
	IndustryId             *Many2One  `xmlrpc:"industry_id,omptempty"`
	LastUpdate             *Time      `xmlrpc:"__last_update,omptempty"`
	MediumId               *Many2One  `xmlrpc:"medium_id,omptempty"`
	Name                   *String    `xmlrpc:"name,omptempty"`
	Nbr                    *Int       `xmlrpc:"nbr,omptempty"`
	OrderId                *Many2One  `xmlrpc:"order_id,omptempty"`
	PartnerId              *Many2One  `xmlrpc:"partner_id,omptempty"`
	PricelistId            *Many2One  `xmlrpc:"pricelist_id,omptempty"`
	PriceSubtotal          *Float     `xmlrpc:"price_subtotal,omptempty"`
	PriceTotal             *Float     `xmlrpc:"price_total,omptempty"`
	ProductId              *Many2One  `xmlrpc:"product_id,omptempty"`
	ProductTmplId          *Many2One  `xmlrpc:"product_tmpl_id,omptempty"`
	ProductUom             *Many2One  `xmlrpc:"product_uom,omptempty"`
	ProductUomQty          *Float     `xmlrpc:"product_uom_qty,omptempty"`
	QtyDelivered           *Float     `xmlrpc:"qty_delivered,omptempty"`
	QtyInvoiced            *Float     `xmlrpc:"qty_invoiced,omptempty"`
	QtyToInvoice           *Float     `xmlrpc:"qty_to_invoice,omptempty"`
	SourceId               *Many2One  `xmlrpc:"source_id,omptempty"`
	State                  *Selection `xmlrpc:"state,omptempty"`
	TeamId                 *Many2One  `xmlrpc:"team_id,omptempty"`
	UntaxedAmountInvoiced  *Float     `xmlrpc:"untaxed_amount_invoiced,omptempty"`
	UntaxedAmountToInvoice *Float     `xmlrpc:"untaxed_amount_to_invoice,omptempty"`
	UserId                 *Many2One  `xmlrpc:"user_id,omptempty"`
	Volume                 *Float     `xmlrpc:"volume,omptempty"`
	Weight                 *Float     `xmlrpc:"weight,omptempty"`
}

SaleReport represents sale.report model.

func (*SaleReport) Many2One

func (sr *SaleReport) Many2One() *Many2One

Many2One convert SaleReport to *Many2One.

type SaleReports

type SaleReports []SaleReport

SaleReports represents array of sale.report model.

type Selection

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

Selection represents selection odoo type.

func NewSelection

func NewSelection(v interface{}) *Selection

NewSelection creates a new *Selection.

func (*Selection) Get

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

Get *Selection value.

type SlideAnswer

type SlideAnswer struct {
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	IsCorrect   *Bool     `xmlrpc:"is_correct,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	QuestionId  *Many2One `xmlrpc:"question_id,omptempty"`
	TextValue   *String   `xmlrpc:"text_value,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

SlideAnswer represents slide.answer model.

func (*SlideAnswer) Many2One

func (sa *SlideAnswer) Many2One() *Many2One

Many2One convert SlideAnswer to *Many2One.

type SlideAnswerUsers

type SlideAnswerUsers struct {
	Attachment      *String   `xmlrpc:"attachment,omptempty"`
	AttachmentName  *String   `xmlrpc:"attachment_name,omptempty"`
	FileAttachments *String   `xmlrpc:"file_attachments,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"`
	QuestionId      *Many2One `xmlrpc:"question_id,omptempty"`
	ScheduleId      *Int      `xmlrpc:"schedule_id,omptempty"`
	SlideId         *Many2One `xmlrpc:"slide_id,omptempty"`
	Competent       *Bool     `xmlrpc:"competent,omptempty"`
	Type            *String   `xmlrpc:"type,omptempty"`
	Url             *String   `xmlrpc:"url,omptempty"`
	UserId          *Many2One `xmlrpc:"user_id,omptempty"`
	Value           *String   `xmlrpc:"value,omptempty"`
	WriteDate       *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid        *Many2One `xmlrpc:"write_uid,omptempty"`
}

SlideAnswerUsers represents slide.answer_users model.

func (*SlideAnswerUsers) Many2One

func (sa *SlideAnswerUsers) Many2One() *Many2One

Many2One convert SlideAnswerUsers to *Many2One.

type SlideAnswerUserss

type SlideAnswerUserss []SlideAnswerUsers

SlideAnswerUserss represents array of slide.answer_users model.

type SlideAnswers

type SlideAnswers []SlideAnswer

SlideAnswers represents array of slide.answer model.

type SlideChannel

type SlideChannel struct {
	AccessToken              *String    `xmlrpc:"access_token,omptempty"`
	Active                   *Bool      `xmlrpc:"active,omptempty"`
	LockedLessons            *Bool      `xmlrpc:"locked_lessons,omptempty"`
	AllowComment             *Bool      `xmlrpc:"allow_comment,omptempty"`
	CanComment               *Bool      `xmlrpc:"can_comment,omptempty"`
	CanPublish               *Bool      `xmlrpc:"can_publish,omptempty"`
	CanReview                *Bool      `xmlrpc:"can_review,omptempty"`
	CanUpload                *Bool      `xmlrpc:"can_upload,omptempty"`
	CanVote                  *Bool      `xmlrpc:"can_vote,omptempty"`
	ChannelPartnerIds        *Relation  `xmlrpc:"channel_partner_ids,omptempty"`
	ChannelType              *Selection `xmlrpc:"channel_type,omptempty"`
	Color                    *Int       `xmlrpc:"color,omptempty"`
	Completed                *Bool      `xmlrpc:"completed,omptempty"`
	Completion               *Int       `xmlrpc:"completion,omptempty"`
	CourseCode               *String    `xmlrpc:"course_code,omptempty"`
	CourseType               *Many2One  `xmlrpc:"course_type,omptempty"`
	CreateDate               *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid                *Many2One  `xmlrpc:"create_uid,omptempty"`
	DeletedAt                *Time      `xmlrpc:"deleted_at,omptempty"`
	ShortDescription         *String    `xmlrpc:"short_description,omptempty"`
	ImageUrl                 *String    `xmlrpc:"image_url,omptempty"`
	Description              *String    `xmlrpc:"description,omptempty"`
	DescriptionHtml          *String    `xmlrpc:"description_html,omptempty"`
	DisplayName              *String    `xmlrpc:"display_name,omptempty"`
	Enroll                   *Selection `xmlrpc:"enroll,omptempty"`
	EnrollGroupIds           *Relation  `xmlrpc:"enroll_group_ids,omptempty"`
	EnrollMsg                *String    `xmlrpc:"enroll_msg,omptempty"`
	Id                       *Int       `xmlrpc:"id,omptempty"`
	Image1024                *String    `xmlrpc:"image_1024,omptempty"`
	Image128                 *String    `xmlrpc:"image_128,omptempty"`
	Image1920                *String    `xmlrpc:"image_1920,omptempty"`
	Image256                 *String    `xmlrpc:"image_256,omptempty"`
	Image512                 *String    `xmlrpc:"image_512,omptempty"`
	IsMember                 *Bool      `xmlrpc:"is_member,omptempty"`
	IsPublished              *Bool      `xmlrpc:"is_published,omptempty"`
	IsSeoOptimized           *Bool      `xmlrpc:"is_seo_optimized,omptempty"`
	KarmaGenChannelFinish    *Int       `xmlrpc:"karma_gen_channel_finish,omptempty"`
	KarmaGenChannelRank      *Int       `xmlrpc:"karma_gen_channel_rank,omptempty"`
	KarmaGenSlideVote        *Int       `xmlrpc:"karma_gen_slide_vote,omptempty"`
	KarmaReview              *Int       `xmlrpc:"karma_review,omptempty"`
	KarmaSlideComment        *Int       `xmlrpc:"karma_slide_comment,omptempty"`
	KarmaSlideVote           *Int       `xmlrpc:"karma_slide_vote,omptempty"`
	LastUpdate               *Time      `xmlrpc:"__last_update,omptempty"`
	MaxSize                  *Int       `xmlrpc:"max_size,omptempty"`
	MembersCount             *Int       `xmlrpc:"members_count,omptempty"`
	MembersDoneCount         *Int       `xmlrpc:"members_done_count,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"`
	NbrDocument              *Int       `xmlrpc:"nbr_document,omptempty"`
	NbrInfographic           *Int       `xmlrpc:"nbr_infographic,omptempty"`
	NbrPresentation          *Int       `xmlrpc:"nbr_presentation,omptempty"`
	NbrQuiz                  *Int       `xmlrpc:"nbr_quiz,omptempty"`
	NbrVideo                 *Int       `xmlrpc:"nbr_video,omptempty"`
	NbrWebpage               *Int       `xmlrpc:"nbr_webpage,omptempty"`
	CategoryId               *Int       `xmlrpc:"category_id,omptempty"`
	IsPriority               *Bool      `xmlrpc:"is_priority,omptempty"`
	PartnerIds               *Relation  `xmlrpc:"partner_ids,omptempty"`
	PreviewUrl               *String    `xmlrpc:"preview_url,omptempty"`
	Price                    *Float     `xmlrpc:"price,omptempty"`
	ApplicationFee           *Float     `xmlrpc:"application_fee,omptempty"`
	IsApplicationFee         *Bool      `xmlrpc:"is_application_fee,omptempty"`
	IsSchedule               *Bool      `xmlrpc:"is_schedule,omptempty"`
	IsAllowSpecialPrice      *Bool      `xmlrpc:"is_allow_special_price,omptempty"`
	IsShowSeatsLeft          *Bool      `xmlrpc:"is_show_seats_left,omptempty"`
	ProficienyId             *String    `xmlrpc:"proficieny_id,omptempty"`
	ProficienyName           *String    `xmlrpc:"proficieny_name,omptempty"`
	PromoteStrategy          *Selection `xmlrpc:"promote_strategy,omptempty"`
	PublishTemplateId        *Many2One  `xmlrpc:"publish_template_id,omptempty"`
	RatingAvg                *Float     `xmlrpc:"rating_avg,omptempty"`
	RatingAvgStars           *Float     `xmlrpc:"rating_avg_stars,omptempty"`
	RatingCount              *Int       `xmlrpc:"rating_count,omptempty"`
	RatingIds                *Relation  `xmlrpc:"rating_ids,omptempty"`
	RatingLastFeedback       *String    `xmlrpc:"rating_last_feedback,omptempty"`
	RatingLastImage          *String    `xmlrpc:"rating_last_image,omptempty"`
	RatingLastValue          *Float     `xmlrpc:"rating_last_value,omptempty"`
	Sequence                 *Int       `xmlrpc:"sequence,omptempty"`
	ShareTemplateId          *Many2One  `xmlrpc:"share_template_id,omptempty"`
	SlideCategoryIds         *Relation  `xmlrpc:"slide_category_ids,omptempty"`
	SlideContentIds          *Relation  `xmlrpc:"slide_content_ids,omptempty"`
	SlideIds                 *Relation  `xmlrpc:"slide_ids,omptempty"`
	SlideLastUpdate          *Time      `xmlrpc:"slide_last_update,omptempty"`
	LastPublished            *String    `xmlrpc:"last_published,omptempty"`
	SlidePartnerIds          *Relation  `xmlrpc:"slide_partner_ids,omptempty"`
	SpecialPrice             *Float     `xmlrpc:"special_price,omptempty"`
	Subsidy                  *Int       `xmlrpc:"subsidy,omptempty"`
	TagIds                   *Relation  `xmlrpc:"tag_ids,omptempty"`
	TotalDays                *Float     `xmlrpc:"total_days,omptempty"`
	TotalSlides              *Int       `xmlrpc:"total_slides,omptempty"`
	TotalTime                *Float     `xmlrpc:"total_time,omptempty"`
	TotalViews               *Int       `xmlrpc:"total_views,omptempty"`
	TotalVotes               *Int       `xmlrpc:"total_votes,omptempty"`
	UploadGroupIds           *Relation  `xmlrpc:"upload_group_ids,omptempty"`
	UserId                   *Many2One  `xmlrpc:"user_id,omptempty"`
	Visibility               *Selection `xmlrpc:"visibility,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"`
	CourseVisibility         *Bool      `xmlrpc:"course_visibility,omptempty"`
	CourseValidity           *Int       `xmlrpc:"course_validity,omptempty"`
	CourseInstructor         *String    `xmlrpc:"course_instructor,omptempty"`
	CourseRequirements       *String    `xmlrpc:"course_requirements,omptempty"`
	CourseBenefits           *String    `xmlrpc:"course_benefits,omptempty"`
}

SlideChannel represents slide.channel model.

func (*SlideChannel) Many2One

func (sc *SlideChannel) Many2One() *Many2One

Many2One convert SlideChannel to *Many2One.

type SlideChannelInvite

type SlideChannelInvite struct {
	AttachmentIds *Relation `xmlrpc:"attachment_ids,omptempty"`
	AuthorId      *Many2One `xmlrpc:"author_id,omptempty"`
	Body          *String   `xmlrpc:"body,omptempty"`
	ChannelId     *Many2One `xmlrpc:"channel_id,omptempty"`
	ChannelUrl    *String   `xmlrpc:"channel_url,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"`
	LastUpdate    *Time     `xmlrpc:"__last_update,omptempty"`
	PartnerIds    *Relation `xmlrpc:"partner_ids,omptempty"`
	Subject       *String   `xmlrpc:"subject,omptempty"`
	TemplateId    *Many2One `xmlrpc:"template_id,omptempty"`
	WriteDate     *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid      *Many2One `xmlrpc:"write_uid,omptempty"`
}

SlideChannelInvite represents slide.channel.invite model.

func (*SlideChannelInvite) Many2One

func (sci *SlideChannelInvite) Many2One() *Many2One

Many2One convert SlideChannelInvite to *Many2One.

type SlideChannelInvites

type SlideChannelInvites []SlideChannelInvite

SlideChannelInvites represents array of slide.channel.invite model.

type SlideChannelPartner

type SlideChannelPartner struct {
	ChannelId    *Many2One `xmlrpc:"channel_id,omptempty"`
	Completed    *Bool     `xmlrpc:"completed,omptempty"`
	Completion   *Int      `xmlrpc:"completion,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"`
	PartnerEmail *String   `xmlrpc:"partner_email,omptempty"`
	PartnerId    *Many2One `xmlrpc:"partner_id,omptempty"`
	WriteDate    *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid     *Many2One `xmlrpc:"write_uid,omptempty"`
}

SlideChannelPartner represents slide.channel.partner model.

func (*SlideChannelPartner) Many2One

func (scp *SlideChannelPartner) Many2One() *Many2One

Many2One convert SlideChannelPartner to *Many2One.

type SlideChannelPartners

type SlideChannelPartners []SlideChannelPartner

SlideChannelPartners represents array of slide.channel.partner model.

type SlideChannelPrices

type SlideChannelPrices struct {
	ChannelId   *Many2One `xmlrpc:"channel_id,omptempty"`
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DeletedAt   *Time     `xmlrpc:"deleted_at,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	Price       *Float    `xmlrpc:"price,omptempty"`
	Sequence    *Int      `xmlrpc:"sequence,omptempty"`
	Title       *String   `xmlrpc:"title,omptempty"`
	Description *String   `xmlrpc:"description,omptempty"`
	CourseCode  *String   `xmlrpc:"course_code,omptempty"`
	Type        *String   `xmlrpc:"type,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

SlideChannelPrices represents slide.channel_prices model.

func (*SlideChannelPrices) Many2One

func (sc *SlideChannelPrices) Many2One() *Many2One

Many2One convert SlideChannelPrices to *Many2One.

type SlideChannelPricess

type SlideChannelPricess []SlideChannelPrices

SlideChannelPricess represents array of slide.channel_prices model.

type SlideChannelSchedules

type SlideChannelSchedules struct {
	Active       *Bool     `xmlrpc:"active,omptempty"`
	AutoReview   *Bool     `xmlrpc:"auto_review,omptempty"`
	ChannelId    *Many2One `xmlrpc:"channel_id,omptempty"`
	CreateDate   *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid    *Many2One `xmlrpc:"create_uid,omptempty"`
	DeletedAt    *Time     `xmlrpc:"deleted_at,omptempty"`
	DisplayName  *String   `xmlrpc:"display_name,omptempty"`
	EndDate      *String   `xmlrpc:"end_date,omptempty"`
	EndTime      *String   `xmlrpc:"end_time,omptempty"`
	HourBreak    *Int      `xmlrpc:"hour_break,omptempty"`
	Id           *Int      `xmlrpc:"id,omptempty"`
	LastUpdate   *Time     `xmlrpc:"__last_update,omptempty"`
	MaxSize      *Int      `xmlrpc:"max_size,omptempty"`
	ScheduleType *String   `xmlrpc:"schedule_type,omptempty"`
	StartDate    *String   `xmlrpc:"start_date,omptempty"`
	StartTime    *String   `xmlrpc:"start_time,omptempty"`
	TotalDays    *Int      `xmlrpc:"total_days,omptempty"`
	Venue        *String   `xmlrpc:"venue,omptempty"`
	WriteDate    *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid     *Many2One `xmlrpc:"write_uid,omptempty"`
}

SlideChannelSchedules represents slide.channel_schedules model.

func (*SlideChannelSchedules) Many2One

func (sc *SlideChannelSchedules) Many2One() *Many2One

Many2One convert SlideChannelSchedules to *Many2One.

type SlideChannelScheduless

type SlideChannelScheduless []SlideChannelSchedules

SlideChannelScheduless represents array of slide.channel_schedules model.

type SlideChannelSfcPrices

type SlideChannelSfcPrices struct {
	ChannelId    *Many2One `xmlrpc:"channel_id,omptempty"`
	CourseCode   *String   `xmlrpc:"course_code,omptempty"`
	CreateDate   *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid    *Many2One `xmlrpc:"create_uid,omptempty"`
	DeletedAt    *Time     `xmlrpc:"deleted_at,omptempty"`
	DisplayName  *String   `xmlrpc:"display_name,omptempty"`
	Id           *Int      `xmlrpc:"id,omptempty"`
	LastUpdate   *Time     `xmlrpc:"__last_update,omptempty"`
	Price        *Float    `xmlrpc:"price,omptempty"`
	Sequence     *Int      `xmlrpc:"sequence,omptempty"`
	Title        *String   `xmlrpc:"title,omptempty"`
	Type         *String   `xmlrpc:"type,omptempty"`
	PriceOptions *String   `xmlrpc:"price_options,omptempty"`
	WriteDate    *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid     *Many2One `xmlrpc:"write_uid,omptempty"`
}

SlideChannelSfcPrices represents slide.channel_sfc_prices model.

func (*SlideChannelSfcPrices) Many2One

func (sc *SlideChannelSfcPrices) Many2One() *Many2One

Many2One convert SlideChannelSfcPrices to *Many2One.

type SlideChannelSfcPricess

type SlideChannelSfcPricess []SlideChannelSfcPrices

SlideChannelSfcPricess represents array of slide.channel_sfc_prices model.

type SlideChannelTag

type SlideChannelTag struct {
	ChannelIds    *Relation `xmlrpc:"channel_ids,omptempty"`
	CreateDate    *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid     *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName   *String   `xmlrpc:"display_name,omptempty"`
	GroupId       *Many2One `xmlrpc:"group_id,omptempty"`
	GroupSequence *Int      `xmlrpc:"group_sequence,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"`
}

SlideChannelTag represents slide.channel.tag model.

func (*SlideChannelTag) Many2One

func (sct *SlideChannelTag) Many2One() *Many2One

Many2One convert SlideChannelTag to *Many2One.

type SlideChannelTagGroup

type SlideChannelTagGroup struct {
	CanPublish       *Bool     `xmlrpc:"can_publish,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"`
	LastUpdate       *Time     `xmlrpc:"__last_update,omptempty"`
	Name             *String   `xmlrpc:"name,omptempty"`
	Sequence         *Int      `xmlrpc:"sequence,omptempty"`
	TagIds           *Relation `xmlrpc:"tag_ids,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"`
}

SlideChannelTagGroup represents slide.channel.tag.group model.

func (*SlideChannelTagGroup) Many2One

func (sctg *SlideChannelTagGroup) Many2One() *Many2One

Many2One convert SlideChannelTagGroup to *Many2One.

type SlideChannelTagGroups

type SlideChannelTagGroups []SlideChannelTagGroup

SlideChannelTagGroups represents array of slide.channel.tag.group model.

type SlideChannelTags

type SlideChannelTags []SlideChannelTag

SlideChannelTags represents array of slide.channel.tag model.

type SlideChannels

type SlideChannels []SlideChannel

SlideChannels represents array of slide.channel model.

type SlideCourseType

type SlideCourseType 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"`
	Name        *String   `xmlrpc:"name,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

SlideCourseType represents slide.course_type model.

func (*SlideCourseType) Many2One

func (sc *SlideCourseType) Many2One() *Many2One

Many2One convert SlideCourseType to *Many2One.

type SlideCourseTypes

type SlideCourseTypes []SlideCourseType

SlideCourseTypes represents array of slide.course_type model.

type SlideEmbed

type SlideEmbed struct {
	CountViews  *Int      `xmlrpc:"count_views,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"`
	SlideId     *Many2One `xmlrpc:"slide_id,omptempty"`
	Url         *String   `xmlrpc:"url,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

SlideEmbed represents slide.embed model.

func (*SlideEmbed) Many2One

func (se *SlideEmbed) Many2One() *Many2One

Many2One convert SlideEmbed to *Many2One.

type SlideEmbeds

type SlideEmbeds []SlideEmbed

SlideEmbeds represents array of slide.embed model.

type SlideQuestion

type SlideQuestion struct {
	AnswerIds            *Relation `xmlrpc:"answer_ids,omptempty"`
	AssessmentCriteriaId *Int      `xmlrpc:"assessment_criteria_id,omptempty"`
	AttemptsAvg          *Float    `xmlrpc:"attempts_avg,omptempty"`
	AttemptsCount        *Int      `xmlrpc:"attempts_count,omptempty"`
	CreateDate           *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid            *Many2One `xmlrpc:"create_uid,omptempty"`
	DeletedAt            *Time     `xmlrpc:"deleted_at,omptempty"`
	DisplayName          *String   `xmlrpc:"display_name,omptempty"`
	DoneCount            *Int      `xmlrpc:"done_count,omptempty"`
	Id                   *Int      `xmlrpc:"id,omptempty"`
	LastUpdate           *Time     `xmlrpc:"__last_update,omptempty"`
	Question             *String   `xmlrpc:"question,omptempty"`
	Sequence             *Int      `xmlrpc:"sequence,omptempty"`
	SlideId              *Many2One `xmlrpc:"slide_id,omptempty"`
	Types                *String   `xmlrpc:"types,omptempty"`
	MultipleChoices      *String   `xmlrpc:"multiple_choices,omptempty"`
	MultipleSurvey       *String   `xmlrpc:"multiple_survey,omptempty"`
	WriteDate            *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid             *Many2One `xmlrpc:"write_uid,omptempty"`
}

SlideQuestion represents slide.question model.

func (*SlideQuestion) Many2One

func (sq *SlideQuestion) Many2One() *Many2One

Many2One convert SlideQuestion to *Many2One.

type SlideQuestions

type SlideQuestions []SlideQuestion

SlideQuestions represents array of slide.question model.

type SlideSlide

type SlideSlide struct {
	Active                   *Bool      `xmlrpc:"active,omptempty"`
	CanPublish               *Bool      `xmlrpc:"can_publish,omptempty"`
	CategoryId               *Many2One  `xmlrpc:"category_id,omptempty"`
	ChannelAllowComment      *Bool      `xmlrpc:"channel_allow_comment,omptempty"`
	ChannelId                *Many2One  `xmlrpc:"channel_id,omptempty"`
	ChannelType              *Selection `xmlrpc:"channel_type,omptempty"`
	CommentsCount            *Int       `xmlrpc:"comments_count,omptempty"`
	CompletionTime           *Float     `xmlrpc:"completion_time,omptempty"`
	CreateDate               *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid                *Many2One  `xmlrpc:"create_uid,omptempty"`
	Datas                    *String    `xmlrpc:"datas,omptempty"`
	DatePublished            *Time      `xmlrpc:"date_published,omptempty"`
	DeletedAt                *Time      `xmlrpc:"deleted_at,omptempty"`
	Description              *String    `xmlrpc:"description,omptempty"`
	Dislikes                 *Int       `xmlrpc:"dislikes,omptempty"`
	DisplayName              *String    `xmlrpc:"display_name,omptempty"`
	DocumentId               *String    `xmlrpc:"document_id,omptempty"`
	EmbedCode                *String    `xmlrpc:"embed_code,omptempty"`
	EmbedcountIds            *Relation  `xmlrpc:"embedcount_ids,omptempty"`
	HtmlContent              *String    `xmlrpc:"html_content,omptempty"`
	Id                       *Int       `xmlrpc:"id,omptempty"`
	Image1024                *String    `xmlrpc:"image_1024,omptempty"`
	Image128                 *String    `xmlrpc:"image_128,omptempty"`
	Image1920                *String    `xmlrpc:"image_1920,omptempty"`
	Image256                 *String    `xmlrpc:"image_256,omptempty"`
	Image512                 *String    `xmlrpc:"image_512,omptempty"`
	IsCategory               *Bool      `xmlrpc:"is_category,omptempty"`
	IsPreview                *Bool      `xmlrpc:"is_preview,omptempty"`
	IsPublished              *Bool      `xmlrpc:"is_published,omptempty"`
	IsSeoOptimized           *Bool      `xmlrpc:"is_seo_optimized,omptempty"`
	ShowQuizOnly             *Bool      `xmlrpc:"show_quiz_only,omptempty"`
	IsShowAnswer             *Bool      `xmlrpc:"is_show_answer,omptempty"`
	IsCorrectAnswer          *Bool      `xmlrpc:"is_correct_answer,omptempty"`
	LastUpdate               *Time      `xmlrpc:"__last_update,omptempty"`
	Likes                    *Int       `xmlrpc:"likes,omptempty"`
	LinkIds                  *Relation  `xmlrpc:"link_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"`
	MimeType                 *String    `xmlrpc:"mime_type,omptempty"`
	Name                     *String    `xmlrpc:"name,omptempty"`
	NbrDocument              *Int       `xmlrpc:"nbr_document,omptempty"`
	NbrInfographic           *Int       `xmlrpc:"nbr_infographic,omptempty"`
	NbrPresentation          *Int       `xmlrpc:"nbr_presentation,omptempty"`
	NbrQuiz                  *Int       `xmlrpc:"nbr_quiz,omptempty"`
	NbrVideo                 *Int       `xmlrpc:"nbr_video,omptempty"`
	NbrWebpage               *Int       `xmlrpc:"nbr_webpage,omptempty"`
	PartnerIds               *Relation  `xmlrpc:"partner_ids,omptempty"`
	PublicViews              *Int       `xmlrpc:"public_views,omptempty"`
	QuestionIds              *Relation  `xmlrpc:"question_ids,omptempty"`
	QuestionsCount           *Int       `xmlrpc:"questions_count,omptempty"`
	QuizFirstAttemptReward   *Int       `xmlrpc:"quiz_first_attempt_reward,omptempty"`
	QuizFourthAttemptReward  *Int       `xmlrpc:"quiz_fourth_attempt_reward,omptempty"`
	QuizSecondAttemptReward  *Int       `xmlrpc:"quiz_second_attempt_reward,omptempty"`
	QuizThirdAttemptReward   *Int       `xmlrpc:"quiz_third_attempt_reward,omptempty"`
	Sequence                 *Int       `xmlrpc:"sequence,omptempty"`
	SubSequence              *Int       `xmlrpc:"sub_sequence,omptempty"`
	SlideIds                 *Relation  `xmlrpc:"slide_ids,omptempty"`
	SlidePartnerIds          *Relation  `xmlrpc:"slide_partner_ids,omptempty"`
	SlideType                *Selection `xmlrpc:"slide_type,omptempty"`
	SlideViews               *Int       `xmlrpc:"slide_views,omptempty"`
	TagIds                   *Relation  `xmlrpc:"tag_ids,omptempty"`
	TotalSlides              *Int       `xmlrpc:"total_slides,omptempty"`
	TotalViews               *Int       `xmlrpc:"total_views,omptempty"`
	QuizPassRate             *Int       `xmlrpc:"quiz_pass_rate,omptempty"`
	Url                      *String    `xmlrpc:"url,omptempty"`
	ImageUrl                 *String    `xmlrpc:"image_url,omptempty"`
	DocumentUrl              *String    `xmlrpc:"document_url,omptempty"`
	Filename                 *String    `xmlrpc:"filename,omptempty"`
	ScormVersion             *String    `xmlrpc:"scorm_version,omptempty"`
	UserId                   *Many2One  `xmlrpc:"user_id,omptempty"`
	UserMembershipId         *Many2One  `xmlrpc:"user_membership_id,omptempty"`
	UserVote                 *Int       `xmlrpc:"user_vote,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"`
}

SlideSlide represents slide.slide model.

func (*SlideSlide) Many2One

func (ss *SlideSlide) Many2One() *Many2One

Many2One convert SlideSlide to *Many2One.

type SlideSlideAttachment

type SlideSlideAttachment struct {
	Attachment  *String   `xmlrpc:"attachment,omptempty"`
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DeletedAt   *Time     `xmlrpc:"deleted_at,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	Name        *String   `xmlrpc:"name,omptempty"`
	SlideId     *Many2One `xmlrpc:"slide_id,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

SlideSlideAttachment represents slide.slide_attachment model.

func (*SlideSlideAttachment) Many2One

func (ss *SlideSlideAttachment) Many2One() *Many2One

Many2One convert SlideSlideAttachment to *Many2One.

type SlideSlideAttachments

type SlideSlideAttachments []SlideSlideAttachment

SlideSlideAttachments represents array of slide.slide_attachment model.

type SlideSlideLink 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"`
	Link        *String   `xmlrpc:"link,omptempty"`
	Name        *String   `xmlrpc:"name,omptempty"`
	SlideId     *Many2One `xmlrpc:"slide_id,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

SlideSlideLink represents slide.slide.link model.

func (*SlideSlideLink) Many2One

func (ssl *SlideSlideLink) Many2One() *Many2One

Many2One convert SlideSlideLink to *Many2One.

type SlideSlideLinks []SlideSlideLink

SlideSlideLinks represents array of slide.slide.link model.

type SlideSlidePartner

type SlideSlidePartner struct {
	ChannelId         *Many2One `xmlrpc:"channel_id,omptempty"`
	Completed         *Bool     `xmlrpc:"completed,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"`
	QuizAttemptsCount *Int      `xmlrpc:"quiz_attempts_count,omptempty"`
	SlideId           *Many2One `xmlrpc:"slide_id,omptempty"`
	Vote              *Int      `xmlrpc:"vote,omptempty"`
	WriteDate         *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid          *Many2One `xmlrpc:"write_uid,omptempty"`
}

SlideSlidePartner represents slide.slide.partner model.

func (*SlideSlidePartner) Many2One

func (ssp *SlideSlidePartner) Many2One() *Many2One

Many2One convert SlideSlidePartner to *Many2One.

type SlideSlidePartners

type SlideSlidePartners []SlideSlidePartner

SlideSlidePartners represents array of slide.slide.partner model.

type SlideSlideSchedule

type SlideSlideSchedule struct {
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DeletedAt   *Time     `xmlrpc:"deleted_at,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	ScheduleId  *Many2One `xmlrpc:"schedule_id,omptempty"`
	SlideId     *Many2One `xmlrpc:"slide_id,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

SlideSlideSchedule represents slide.slide_schedule model.

func (*SlideSlideSchedule) Many2One

func (ss *SlideSlideSchedule) Many2One() *Many2One

Many2One convert SlideSlideSchedule to *Many2One.

type SlideSlideSchedules

type SlideSlideSchedules []SlideSlideSchedule

SlideSlideSchedules represents array of slide.slide_schedule model.

type SlideSlides

type SlideSlides []SlideSlide

SlideSlides represents array of slide.slide model.

type SlideTag

type SlideTag 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"`
}

SlideTag represents slide.tag model.

func (*SlideTag) Many2One

func (st *SlideTag) Many2One() *Many2One

Many2One convert SlideTag to *Many2One.

type SlideTags

type SlideTags []SlideTag

SlideTags represents array of slide.tag model.

type SmsApi

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

SmsApi represents sms.api model.

func (*SmsApi) Many2One

func (sa *SmsApi) Many2One() *Many2One

Many2One convert SmsApi to *Many2One.

type SmsApis

type SmsApis []SmsApi

SmsApis represents array of sms.api model.

type SmsCancel

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

SmsCancel represents sms.cancel model.

func (*SmsCancel) Many2One

func (sc *SmsCancel) Many2One() *Many2One

Many2One convert SmsCancel to *Many2One.

type SmsCancels

type SmsCancels []SmsCancel

SmsCancels represents array of sms.cancel model.

type SmsComposer

type SmsComposer struct {
	ActiveDomain            *String    `xmlrpc:"active_domain,omptempty"`
	ActiveDomainCount       *Int       `xmlrpc:"active_domain_count,omptempty"`
	Body                    *String    `xmlrpc:"body,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"`
	Id                      *Int       `xmlrpc:"id,omptempty"`
	LastUpdate              *Time      `xmlrpc:"__last_update,omptempty"`
	MailingId               *Many2One  `xmlrpc:"mailing_id,omptempty"`
	MassForceSend           *Bool      `xmlrpc:"mass_force_send,omptempty"`
	MassKeepLog             *Bool      `xmlrpc:"mass_keep_log,omptempty"`
	MassSmsAllowUnsubscribe *Bool      `xmlrpc:"mass_sms_allow_unsubscribe,omptempty"`
	MassUseBlacklist        *Bool      `xmlrpc:"mass_use_blacklist,omptempty"`
	NumberFieldName         *String    `xmlrpc:"number_field_name,omptempty"`
	Numbers                 *String    `xmlrpc:"numbers,omptempty"`
	PartnerIds              *Relation  `xmlrpc:"partner_ids,omptempty"`
	RecipientCount          *Int       `xmlrpc:"recipient_count,omptempty"`
	RecipientDescription    *String    `xmlrpc:"recipient_description,omptempty"`
	RecipientInvalidCount   *Int       `xmlrpc:"recipient_invalid_count,omptempty"`
	ResId                   *Int       `xmlrpc:"res_id,omptempty"`
	ResIds                  *String    `xmlrpc:"res_ids,omptempty"`
	ResIdsCount             *Int       `xmlrpc:"res_ids_count,omptempty"`
	ResModel                *String    `xmlrpc:"res_model,omptempty"`
	SanitizedNumbers        *String    `xmlrpc:"sanitized_numbers,omptempty"`
	TemplateId              *Many2One  `xmlrpc:"template_id,omptempty"`
	UseActiveDomain         *Bool      `xmlrpc:"use_active_domain,omptempty"`
	UtmCampaignId           *Many2One  `xmlrpc:"utm_campaign_id,omptempty"`
	WriteDate               *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid                *Many2One  `xmlrpc:"write_uid,omptempty"`
}

SmsComposer represents sms.composer model.

func (*SmsComposer) Many2One

func (sc *SmsComposer) Many2One() *Many2One

Many2One convert SmsComposer to *Many2One.

type SmsComposers

type SmsComposers []SmsComposer

SmsComposers represents array of sms.composer model.

type SmsResend

type SmsResend struct {
	CreateDate            *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid             *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName           *String   `xmlrpc:"display_name,omptempty"`
	HasCancel             *Bool     `xmlrpc:"has_cancel,omptempty"`
	HasInsufficientCredit *Bool     `xmlrpc:"has_insufficient_credit,omptempty"`
	Id                    *Int      `xmlrpc:"id,omptempty"`
	LastUpdate            *Time     `xmlrpc:"__last_update,omptempty"`
	MailMessageId         *Many2One `xmlrpc:"mail_message_id,omptempty"`
	RecipientIds          *Relation `xmlrpc:"recipient_ids,omptempty"`
	WriteDate             *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid              *Many2One `xmlrpc:"write_uid,omptempty"`
}

SmsResend represents sms.resend model.

func (*SmsResend) Many2One

func (sr *SmsResend) Many2One() *Many2One

Many2One convert SmsResend to *Many2One.

type SmsResendRecipient

type SmsResendRecipient struct {
	CreateDate     *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid      *Many2One  `xmlrpc:"create_uid,omptempty"`
	DisplayName    *String    `xmlrpc:"display_name,omptempty"`
	FailureType    *Selection `xmlrpc:"failure_type,omptempty"`
	Id             *Int       `xmlrpc:"id,omptempty"`
	LastUpdate     *Time      `xmlrpc:"__last_update,omptempty"`
	NotificationId *Many2One  `xmlrpc:"notification_id,omptempty"`
	PartnerId      *Many2One  `xmlrpc:"partner_id,omptempty"`
	PartnerName    *String    `xmlrpc:"partner_name,omptempty"`
	Resend         *Bool      `xmlrpc:"resend,omptempty"`
	SmsNumber      *String    `xmlrpc:"sms_number,omptempty"`
	SmsResendId    *Many2One  `xmlrpc:"sms_resend_id,omptempty"`
	WriteDate      *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid       *Many2One  `xmlrpc:"write_uid,omptempty"`
}

SmsResendRecipient represents sms.resend.recipient model.

func (*SmsResendRecipient) Many2One

func (srr *SmsResendRecipient) Many2One() *Many2One

Many2One convert SmsResendRecipient to *Many2One.

type SmsResendRecipients

type SmsResendRecipients []SmsResendRecipient

SmsResendRecipients represents array of sms.resend.recipient model.

type SmsResends

type SmsResends []SmsResend

SmsResends represents array of sms.resend model.

type SmsSms

type SmsSms struct {
	Body            *String    `xmlrpc:"body,omptempty"`
	CreateDate      *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid       *Many2One  `xmlrpc:"create_uid,omptempty"`
	DisplayName     *String    `xmlrpc:"display_name,omptempty"`
	ErrorCode       *Selection `xmlrpc:"error_code,omptempty"`
	Id              *Int       `xmlrpc:"id,omptempty"`
	LastUpdate      *Time      `xmlrpc:"__last_update,omptempty"`
	MailingId       *Many2One  `xmlrpc:"mailing_id,omptempty"`
	MailingTraceIds *Relation  `xmlrpc:"mailing_trace_ids,omptempty"`
	MailMessageId   *Many2One  `xmlrpc:"mail_message_id,omptempty"`
	Number          *String    `xmlrpc:"number,omptempty"`
	PartnerId       *Many2One  `xmlrpc:"partner_id,omptempty"`
	State           *Selection `xmlrpc:"state,omptempty"`
	WriteDate       *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid        *Many2One  `xmlrpc:"write_uid,omptempty"`
}

SmsSms represents sms.sms model.

func (*SmsSms) Many2One

func (ss *SmsSms) Many2One() *Many2One

Many2One convert SmsSms to *Many2One.

type SmsSmss

type SmsSmss []SmsSms

SmsSmss represents array of sms.sms model.

type SmsTemplate

type SmsTemplate struct {
	Body                *String   `xmlrpc:"body,omptempty"`
	Copyvalue           *String   `xmlrpc:"copyvalue,omptempty"`
	CreateDate          *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid           *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName         *String   `xmlrpc:"display_name,omptempty"`
	Id                  *Int      `xmlrpc:"id,omptempty"`
	Lang                *String   `xmlrpc:"lang,omptempty"`
	LastUpdate          *Time     `xmlrpc:"__last_update,omptempty"`
	Model               *String   `xmlrpc:"model,omptempty"`
	ModelId             *Many2One `xmlrpc:"model_id,omptempty"`
	ModelObjectField    *Many2One `xmlrpc:"model_object_field,omptempty"`
	Name                *String   `xmlrpc:"name,omptempty"`
	NullValue           *String   `xmlrpc:"null_value,omptempty"`
	SidebarActionId     *Many2One `xmlrpc:"sidebar_action_id,omptempty"`
	SubModelObjectField *Many2One `xmlrpc:"sub_model_object_field,omptempty"`
	SubObject           *Many2One `xmlrpc:"sub_object,omptempty"`
	WriteDate           *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid            *Many2One `xmlrpc:"write_uid,omptempty"`
}

SmsTemplate represents sms.template model.

func (*SmsTemplate) Many2One

func (st *SmsTemplate) Many2One() *Many2One

Many2One convert SmsTemplate to *Many2One.

type SmsTemplatePreview

type SmsTemplatePreview struct {
	Body                *String    `xmlrpc:"body,omptempty"`
	Copyvalue           *String    `xmlrpc:"copyvalue,omptempty"`
	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"`
	Model               *String    `xmlrpc:"model,omptempty"`
	ModelId             *Many2One  `xmlrpc:"model_id,omptempty"`
	ModelObjectField    *Many2One  `xmlrpc:"model_object_field,omptempty"`
	Name                *String    `xmlrpc:"name,omptempty"`
	NullValue           *String    `xmlrpc:"null_value,omptempty"`
	ResId               *Int       `xmlrpc:"res_id,omptempty"`
	ResourceRef         *String    `xmlrpc:"resource_ref,omptempty"`
	SidebarActionId     *Many2One  `xmlrpc:"sidebar_action_id,omptempty"`
	SmsTemplateId       *Many2One  `xmlrpc:"sms_template_id,omptempty"`
	SubModelObjectField *Many2One  `xmlrpc:"sub_model_object_field,omptempty"`
	SubObject           *Many2One  `xmlrpc:"sub_object,omptempty"`
	WriteDate           *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid            *Many2One  `xmlrpc:"write_uid,omptempty"`
}

SmsTemplatePreview represents sms.template.preview model.

func (*SmsTemplatePreview) Many2One

func (stp *SmsTemplatePreview) Many2One() *Many2One

Many2One convert SmsTemplatePreview to *Many2One.

type SmsTemplatePreviews

type SmsTemplatePreviews []SmsTemplatePreview

SmsTemplatePreviews represents array of sms.template.preview model.

type SmsTemplates

type SmsTemplates []SmsTemplate

SmsTemplates represents array of sms.template model.

type SnailmailLetter

type SnailmailLetter struct {
	AttachmentDatas *String    `xmlrpc:"attachment_datas,omptempty"`
	AttachmentFname *String    `xmlrpc:"attachment_fname,omptempty"`
	AttachmentId    *Many2One  `xmlrpc:"attachment_id,omptempty"`
	City            *String    `xmlrpc:"city,omptempty"`
	Color           *Bool      `xmlrpc:"color,omptempty"`
	CompanyId       *Many2One  `xmlrpc:"company_id,omptempty"`
	CountryId       *Many2One  `xmlrpc:"country_id,omptempty"`
	Cover           *Bool      `xmlrpc:"cover,omptempty"`
	CreateDate      *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid       *Many2One  `xmlrpc:"create_uid,omptempty"`
	DisplayName     *String    `xmlrpc:"display_name,omptempty"`
	Duplex          *Bool      `xmlrpc:"duplex,omptempty"`
	ErrorCode       *Selection `xmlrpc:"error_code,omptempty"`
	Id              *Int       `xmlrpc:"id,omptempty"`
	InfoMsg         *String    `xmlrpc:"info_msg,omptempty"`
	LastUpdate      *Time      `xmlrpc:"__last_update,omptempty"`
	MessageId       *Many2One  `xmlrpc:"message_id,omptempty"`
	Model           *String    `xmlrpc:"model,omptempty"`
	PartnerId       *Many2One  `xmlrpc:"partner_id,omptempty"`
	Reference       *String    `xmlrpc:"reference,omptempty"`
	ReportTemplate  *Many2One  `xmlrpc:"report_template,omptempty"`
	ResId           *Int       `xmlrpc:"res_id,omptempty"`
	State           *Selection `xmlrpc:"state,omptempty"`
	StateId         *Many2One  `xmlrpc:"state_id,omptempty"`
	Street          *String    `xmlrpc:"street,omptempty"`
	Street2         *String    `xmlrpc:"street2,omptempty"`
	UserId          *Many2One  `xmlrpc:"user_id,omptempty"`
	WriteDate       *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid        *Many2One  `xmlrpc:"write_uid,omptempty"`
	Zip             *String    `xmlrpc:"zip,omptempty"`
}

SnailmailLetter represents snailmail.letter model.

func (*SnailmailLetter) Many2One

func (sl *SnailmailLetter) Many2One() *Many2One

Many2One convert SnailmailLetter to *Many2One.

type SnailmailLetterCancel

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

SnailmailLetterCancel represents snailmail.letter.cancel model.

func (*SnailmailLetterCancel) Many2One

func (slc *SnailmailLetterCancel) Many2One() *Many2One

Many2One convert SnailmailLetterCancel to *Many2One.

type SnailmailLetterCancels

type SnailmailLetterCancels []SnailmailLetterCancel

SnailmailLetterCancels represents array of snailmail.letter.cancel model.

type SnailmailLetterFormatError

type SnailmailLetterFormatError 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"`
	MessageId      *Many2One `xmlrpc:"message_id,omptempty"`
	SnailmailCover *Bool     `xmlrpc:"snailmail_cover,omptempty"`
	WriteDate      *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid       *Many2One `xmlrpc:"write_uid,omptempty"`
}

SnailmailLetterFormatError represents snailmail.letter.format.error model.

func (*SnailmailLetterFormatError) Many2One

func (slfe *SnailmailLetterFormatError) Many2One() *Many2One

Many2One convert SnailmailLetterFormatError to *Many2One.

type SnailmailLetterFormatErrors

type SnailmailLetterFormatErrors []SnailmailLetterFormatError

SnailmailLetterFormatErrors represents array of snailmail.letter.format.error model.

type SnailmailLetterMissingRequiredFields

type SnailmailLetterMissingRequiredFields struct {
	City        *String   `xmlrpc:"city,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"`
	LetterId    *Many2One `xmlrpc:"letter_id,omptempty"`
	PartnerId   *Many2One `xmlrpc:"partner_id,omptempty"`
	StateId     *Many2One `xmlrpc:"state_id,omptempty"`
	Street      *String   `xmlrpc:"street,omptempty"`
	Street2     *String   `xmlrpc:"street2,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
	Zip         *String   `xmlrpc:"zip,omptempty"`
}

SnailmailLetterMissingRequiredFields represents snailmail.letter.missing.required.fields model.

func (*SnailmailLetterMissingRequiredFields) Many2One

Many2One convert SnailmailLetterMissingRequiredFields to *Many2One.

type SnailmailLetterMissingRequiredFieldss

type SnailmailLetterMissingRequiredFieldss []SnailmailLetterMissingRequiredFields

SnailmailLetterMissingRequiredFieldss represents array of snailmail.letter.missing.required.fields model.

type SnailmailLetters

type SnailmailLetters []SnailmailLetter

SnailmailLetters represents array of snailmail.letter model.

type String

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

String is a string wrapper

func NewString

func NewString(v string) *String

NewString creates a new *String.

func (*String) Get

func (s *String) Get() string

Get *String value.

type SurveyInvite

type SurveyInvite struct {
	AttachmentIds            *Relation  `xmlrpc:"attachment_ids,omptempty"`
	AuthorId                 *Many2One  `xmlrpc:"author_id,omptempty"`
	Body                     *String    `xmlrpc:"body,omptempty"`
	CreateDate               *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid                *Many2One  `xmlrpc:"create_uid,omptempty"`
	Deadline                 *Time      `xmlrpc:"deadline,omptempty"`
	DisplayName              *String    `xmlrpc:"display_name,omptempty"`
	EmailFrom                *String    `xmlrpc:"email_from,omptempty"`
	Emails                   *String    `xmlrpc:"emails,omptempty"`
	ExistingEmails           *String    `xmlrpc:"existing_emails,omptempty"`
	ExistingMode             *Selection `xmlrpc:"existing_mode,omptempty"`
	ExistingPartnerIds       *Relation  `xmlrpc:"existing_partner_ids,omptempty"`
	ExistingText             *String    `xmlrpc:"existing_text,omptempty"`
	Id                       *Int       `xmlrpc:"id,omptempty"`
	LastUpdate               *Time      `xmlrpc:"__last_update,omptempty"`
	MailServerId             *Many2One  `xmlrpc:"mail_server_id,omptempty"`
	PartnerIds               *Relation  `xmlrpc:"partner_ids,omptempty"`
	Subject                  *String    `xmlrpc:"subject,omptempty"`
	SurveyAccessMode         *Selection `xmlrpc:"survey_access_mode,omptempty"`
	SurveyId                 *Many2One  `xmlrpc:"survey_id,omptempty"`
	SurveyUrl                *String    `xmlrpc:"survey_url,omptempty"`
	SurveyUsersLoginRequired *Bool      `xmlrpc:"survey_users_login_required,omptempty"`
	TemplateId               *Many2One  `xmlrpc:"template_id,omptempty"`
	WriteDate                *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid                 *Many2One  `xmlrpc:"write_uid,omptempty"`
}

SurveyInvite represents survey.invite model.

func (*SurveyInvite) Many2One

func (si *SurveyInvite) Many2One() *Many2One

Many2One convert SurveyInvite to *Many2One.

type SurveyInvites

type SurveyInvites []SurveyInvite

SurveyInvites represents array of survey.invite model.

type SurveyLabel

type SurveyLabel struct {
	AnswerScore *Float    `xmlrpc:"answer_score,omptempty"`
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	IsCorrect   *Bool     `xmlrpc:"is_correct,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	QuestionId  *Many2One `xmlrpc:"question_id,omptempty"`
	QuestionId2 *Many2One `xmlrpc:"question_id_2,omptempty"`
	Sequence    *Int      `xmlrpc:"sequence,omptempty"`
	Value       *String   `xmlrpc:"value,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

SurveyLabel represents survey.label model.

func (*SurveyLabel) Many2One

func (sl *SurveyLabel) Many2One() *Many2One

Many2One convert SurveyLabel to *Many2One.

type SurveyLabels

type SurveyLabels []SurveyLabel

SurveyLabels represents array of survey.label model.

type SurveyQuestion

type SurveyQuestion struct {
	ColumnNb                *Selection `xmlrpc:"column_nb,omptempty"`
	CommentCountAsAnswer    *Bool      `xmlrpc:"comment_count_as_answer,omptempty"`
	CommentsAllowed         *Bool      `xmlrpc:"comments_allowed,omptempty"`
	CommentsMessage         *String    `xmlrpc:"comments_message,omptempty"`
	ConstrErrorMsg          *String    `xmlrpc:"constr_error_msg,omptempty"`
	ConstrMandatory         *Bool      `xmlrpc:"constr_mandatory,omptempty"`
	CreateDate              *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid               *Many2One  `xmlrpc:"create_uid,omptempty"`
	Description             *String    `xmlrpc:"description,omptempty"`
	DisplayMode             *Selection `xmlrpc:"display_mode,omptempty"`
	DisplayName             *String    `xmlrpc:"display_name,omptempty"`
	Id                      *Int       `xmlrpc:"id,omptempty"`
	IsPage                  *Bool      `xmlrpc:"is_page,omptempty"`
	LabelsIds               *Relation  `xmlrpc:"labels_ids,omptempty"`
	LabelsIds2              *Relation  `xmlrpc:"labels_ids_2,omptempty"`
	LastUpdate              *Time      `xmlrpc:"__last_update,omptempty"`
	MatrixSubtype           *Selection `xmlrpc:"matrix_subtype,omptempty"`
	PageId                  *Many2One  `xmlrpc:"page_id,omptempty"`
	Question                *String    `xmlrpc:"question,omptempty"`
	QuestionIds             *Relation  `xmlrpc:"question_ids,omptempty"`
	QuestionsSelection      *Selection `xmlrpc:"questions_selection,omptempty"`
	QuestionType            *Selection `xmlrpc:"question_type,omptempty"`
	RandomQuestionsCount    *Int       `xmlrpc:"random_questions_count,omptempty"`
	ScoringType             *Selection `xmlrpc:"scoring_type,omptempty"`
	Sequence                *Int       `xmlrpc:"sequence,omptempty"`
	SurveyId                *Many2One  `xmlrpc:"survey_id,omptempty"`
	Title                   *String    `xmlrpc:"title,omptempty"`
	UserInputLineIds        *Relation  `xmlrpc:"user_input_line_ids,omptempty"`
	ValidationEmail         *Bool      `xmlrpc:"validation_email,omptempty"`
	ValidationErrorMsg      *String    `xmlrpc:"validation_error_msg,omptempty"`
	ValidationLengthMax     *Int       `xmlrpc:"validation_length_max,omptempty"`
	ValidationLengthMin     *Int       `xmlrpc:"validation_length_min,omptempty"`
	ValidationMaxDate       *Time      `xmlrpc:"validation_max_date,omptempty"`
	ValidationMaxDatetime   *Time      `xmlrpc:"validation_max_datetime,omptempty"`
	ValidationMaxFloatValue *Float     `xmlrpc:"validation_max_float_value,omptempty"`
	ValidationMinDate       *Time      `xmlrpc:"validation_min_date,omptempty"`
	ValidationMinDatetime   *Time      `xmlrpc:"validation_min_datetime,omptempty"`
	ValidationMinFloatValue *Float     `xmlrpc:"validation_min_float_value,omptempty"`
	ValidationRequired      *Bool      `xmlrpc:"validation_required,omptempty"`
	WriteDate               *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid                *Many2One  `xmlrpc:"write_uid,omptempty"`
}

SurveyQuestion represents survey.question model.

func (*SurveyQuestion) Many2One

func (sq *SurveyQuestion) Many2One() *Many2One

Many2One convert SurveyQuestion to *Many2One.

type SurveyQuestions

type SurveyQuestions []SurveyQuestion

SurveyQuestions represents array of survey.question model.

type SurveySurvey

type SurveySurvey struct {
	AccessMode                  *Selection `xmlrpc:"access_mode,omptempty"`
	AccessToken                 *String    `xmlrpc:"access_token,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"`
	AnswerCount                 *Int       `xmlrpc:"answer_count,omptempty"`
	AnswerDoneCount             *Int       `xmlrpc:"answer_done_count,omptempty"`
	AnswerScoreAvg              *Float     `xmlrpc:"answer_score_avg,omptempty"`
	AttemptsLimit               *Int       `xmlrpc:"attempts_limit,omptempty"`
	Category                    *Selection `xmlrpc:"category,omptempty"`
	Certificate                 *Bool      `xmlrpc:"certificate,omptempty"`
	CertificationBadgeId        *Many2One  `xmlrpc:"certification_badge_id,omptempty"`
	CertificationBadgeIdDummy   *Many2One  `xmlrpc:"certification_badge_id_dummy,omptempty"`
	CertificationGiveBadge      *Bool      `xmlrpc:"certification_give_badge,omptempty"`
	CertificationMailTemplateId *Many2One  `xmlrpc:"certification_mail_template_id,omptempty"`
	Color                       *Int       `xmlrpc:"color,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"`
	IsAttemptsLimited           *Bool      `xmlrpc:"is_attempts_limited,omptempty"`
	IsTimeLimited               *Bool      `xmlrpc:"is_time_limited,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"`
	PageIds                     *Relation  `xmlrpc:"page_ids,omptempty"`
	PassingScore                *Float     `xmlrpc:"passing_score,omptempty"`
	PublicUrl                   *String    `xmlrpc:"public_url,omptempty"`
	QuestionAndPageIds          *Relation  `xmlrpc:"question_and_page_ids,omptempty"`
	QuestionIds                 *Relation  `xmlrpc:"question_ids,omptempty"`
	QuestionsLayout             *Selection `xmlrpc:"questions_layout,omptempty"`
	QuestionsSelection          *Selection `xmlrpc:"questions_selection,omptempty"`
	ScoringType                 *Selection `xmlrpc:"scoring_type,omptempty"`
	State                       *Selection `xmlrpc:"state,omptempty"`
	SuccessCount                *Int       `xmlrpc:"success_count,omptempty"`
	SuccessRatio                *Int       `xmlrpc:"success_ratio,omptempty"`
	ThankYouMessage             *String    `xmlrpc:"thank_you_message,omptempty"`
	TimeLimit                   *Float     `xmlrpc:"time_limit,omptempty"`
	Title                       *String    `xmlrpc:"title,omptempty"`
	UserInputIds                *Relation  `xmlrpc:"user_input_ids,omptempty"`
	UsersCanGoBack              *Bool      `xmlrpc:"users_can_go_back,omptempty"`
	UsersCanSignup              *Bool      `xmlrpc:"users_can_signup,omptempty"`
	UsersLoginRequired          *Bool      `xmlrpc:"users_login_required,omptempty"`
	WebsiteMessageIds           *Relation  `xmlrpc:"website_message_ids,omptempty"`
	WriteDate                   *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid                    *Many2One  `xmlrpc:"write_uid,omptempty"`
}

SurveySurvey represents survey.survey model.

func (*SurveySurvey) Many2One

func (ss *SurveySurvey) Many2One() *Many2One

Many2One convert SurveySurvey to *Many2One.

type SurveySurveys

type SurveySurveys []SurveySurvey

SurveySurveys represents array of survey.survey model.

type SurveyUserInput

type SurveyUserInput struct {
	AttemptNumber       *Int       `xmlrpc:"attempt_number,omptempty"`
	AttemptsLimit       *Int       `xmlrpc:"attempts_limit,omptempty"`
	CreateDate          *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid           *Many2One  `xmlrpc:"create_uid,omptempty"`
	Deadline            *Time      `xmlrpc:"deadline,omptempty"`
	DisplayName         *String    `xmlrpc:"display_name,omptempty"`
	Email               *String    `xmlrpc:"email,omptempty"`
	Id                  *Int       `xmlrpc:"id,omptempty"`
	InputType           *Selection `xmlrpc:"input_type,omptempty"`
	InviteToken         *String    `xmlrpc:"invite_token,omptempty"`
	IsAttemptsLimited   *Bool      `xmlrpc:"is_attempts_limited,omptempty"`
	IsTimeLimitReached  *Bool      `xmlrpc:"is_time_limit_reached,omptempty"`
	LastDisplayedPageId *Many2One  `xmlrpc:"last_displayed_page_id,omptempty"`
	LastUpdate          *Time      `xmlrpc:"__last_update,omptempty"`
	PartnerId           *Many2One  `xmlrpc:"partner_id,omptempty"`
	QuestionIds         *Relation  `xmlrpc:"question_ids,omptempty"`
	QuizzPassed         *Bool      `xmlrpc:"quizz_passed,omptempty"`
	QuizzScore          *Float     `xmlrpc:"quizz_score,omptempty"`
	ScoringType         *Selection `xmlrpc:"scoring_type,omptempty"`
	StartDatetime       *Time      `xmlrpc:"start_datetime,omptempty"`
	State               *Selection `xmlrpc:"state,omptempty"`
	SurveyId            *Many2One  `xmlrpc:"survey_id,omptempty"`
	TestEntry           *Bool      `xmlrpc:"test_entry,omptempty"`
	Token               *String    `xmlrpc:"token,omptempty"`
	UserInputLineIds    *Relation  `xmlrpc:"user_input_line_ids,omptempty"`
	WriteDate           *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid            *Many2One  `xmlrpc:"write_uid,omptempty"`
}

SurveyUserInput represents survey.user_input model.

func (*SurveyUserInput) Many2One

func (su *SurveyUserInput) Many2One() *Many2One

Many2One convert SurveyUserInput to *Many2One.

type SurveyUserInputLine

type SurveyUserInputLine struct {
	AnswerIsCorrect   *Bool      `xmlrpc:"answer_is_correct,omptempty"`
	AnswerScore       *Float     `xmlrpc:"answer_score,omptempty"`
	AnswerType        *Selection `xmlrpc:"answer_type,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"`
	PageId            *Many2One  `xmlrpc:"page_id,omptempty"`
	QuestionId        *Many2One  `xmlrpc:"question_id,omptempty"`
	QuestionSequence  *Int       `xmlrpc:"question_sequence,omptempty"`
	Skipped           *Bool      `xmlrpc:"skipped,omptempty"`
	SurveyId          *Many2One  `xmlrpc:"survey_id,omptempty"`
	UserInputId       *Many2One  `xmlrpc:"user_input_id,omptempty"`
	ValueDate         *Time      `xmlrpc:"value_date,omptempty"`
	ValueDatetime     *Time      `xmlrpc:"value_datetime,omptempty"`
	ValueFreeText     *String    `xmlrpc:"value_free_text,omptempty"`
	ValueNumber       *Float     `xmlrpc:"value_number,omptempty"`
	ValueSuggested    *Many2One  `xmlrpc:"value_suggested,omptempty"`
	ValueSuggestedRow *Many2One  `xmlrpc:"value_suggested_row,omptempty"`
	ValueText         *String    `xmlrpc:"value_text,omptempty"`
	WriteDate         *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid          *Many2One  `xmlrpc:"write_uid,omptempty"`
}

SurveyUserInputLine represents survey.user_input_line model.

func (*SurveyUserInputLine) Many2One

func (su *SurveyUserInputLine) Many2One() *Many2One

Many2One convert SurveyUserInputLine to *Many2One.

type SurveyUserInputLines

type SurveyUserInputLines []SurveyUserInputLine

SurveyUserInputLines represents array of survey.user_input_line model.

type SurveyUserInputs

type SurveyUserInputs []SurveyUserInput

SurveyUserInputs represents array of survey.user_input model.

type TaxAdjustmentsWizard

type TaxAdjustmentsWizard struct {
	AdjustmentType    *Selection `xmlrpc:"adjustment_type,omptempty"`
	Amount            *Float     `xmlrpc:"amount,omptempty"`
	CompanyCurrencyId *Many2One  `xmlrpc:"company_currency_id,omptempty"`
	CountryId         *Many2One  `xmlrpc:"country_id,omptempty"`
	CreateDate        *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid         *Many2One  `xmlrpc:"create_uid,omptempty"`
	CreditAccountId   *Many2One  `xmlrpc:"credit_account_id,omptempty"`
	Date              *Time      `xmlrpc:"date,omptempty"`
	DebitAccountId    *Many2One  `xmlrpc:"debit_account_id,omptempty"`
	DisplayName       *String    `xmlrpc:"display_name,omptempty"`
	Id                *Int       `xmlrpc:"id,omptempty"`
	JournalId         *Many2One  `xmlrpc:"journal_id,omptempty"`
	LastUpdate        *Time      `xmlrpc:"__last_update,omptempty"`
	Reason            *String    `xmlrpc:"reason,omptempty"`
	TaxReportLineId   *Many2One  `xmlrpc:"tax_report_line_id,omptempty"`
	WriteDate         *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid          *Many2One  `xmlrpc:"write_uid,omptempty"`
}

TaxAdjustmentsWizard represents tax.adjustments.wizard model.

func (*TaxAdjustmentsWizard) Many2One

func (taw *TaxAdjustmentsWizard) Many2One() *Many2One

Many2One convert TaxAdjustmentsWizard to *Many2One.

type TaxAdjustmentsWizards

type TaxAdjustmentsWizards []TaxAdjustmentsWizard

TaxAdjustmentsWizards represents array of tax.adjustments.wizard model.

type ThemeIrAttachment

type ThemeIrAttachment struct {
	CopyIds     *Relation `xmlrpc:"copy_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"`
	Key         *String   `xmlrpc:"key,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	Name        *String   `xmlrpc:"name,omptempty"`
	Url         *String   `xmlrpc:"url,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

ThemeIrAttachment represents theme.ir.attachment model.

func (*ThemeIrAttachment) Many2One

func (tia *ThemeIrAttachment) Many2One() *Many2One

Many2One convert ThemeIrAttachment to *Many2One.

type ThemeIrAttachments

type ThemeIrAttachments []ThemeIrAttachment

ThemeIrAttachments represents array of theme.ir.attachment model.

type ThemeIrUiView

type ThemeIrUiView struct {
	Active      *Bool      `xmlrpc:"active,omptempty"`
	Arch        *String    `xmlrpc:"arch,omptempty"`
	ArchFs      *String    `xmlrpc:"arch_fs,omptempty"`
	CopyIds     *Relation  `xmlrpc:"copy_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"`
	InheritId   *String    `xmlrpc:"inherit_id,omptempty"`
	Key         *String    `xmlrpc:"key,omptempty"`
	LastUpdate  *Time      `xmlrpc:"__last_update,omptempty"`
	Mode        *Selection `xmlrpc:"mode,omptempty"`
	Name        *String    `xmlrpc:"name,omptempty"`
	Priority    *Int       `xmlrpc:"priority,omptempty"`
	Type        *String    `xmlrpc:"type,omptempty"`
	WriteDate   *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One  `xmlrpc:"write_uid,omptempty"`
}

ThemeIrUiView represents theme.ir.ui.view model.

func (*ThemeIrUiView) Many2One

func (tiuv *ThemeIrUiView) Many2One() *Many2One

Many2One convert ThemeIrUiView to *Many2One.

type ThemeIrUiViews

type ThemeIrUiViews []ThemeIrUiView

ThemeIrUiViews represents array of theme.ir.ui.view model.

type ThemeUtils

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

ThemeUtils represents theme.utils model.

func (*ThemeUtils) Many2One

func (tu *ThemeUtils) Many2One() *Many2One

Many2One convert ThemeUtils to *Many2One.

type ThemeUtilss

type ThemeUtilss []ThemeUtils

ThemeUtilss represents array of theme.utils model.

type ThemeWebsiteMenu

type ThemeWebsiteMenu struct {
	CopyIds     *Relation `xmlrpc:"copy_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"`
	Name        *String   `xmlrpc:"name,omptempty"`
	NewWindow   *Bool     `xmlrpc:"new_window,omptempty"`
	PageId      *Many2One `xmlrpc:"page_id,omptempty"`
	ParentId    *Many2One `xmlrpc:"parent_id,omptempty"`
	Sequence    *Int      `xmlrpc:"sequence,omptempty"`
	Url         *String   `xmlrpc:"url,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

ThemeWebsiteMenu represents theme.website.menu model.

func (*ThemeWebsiteMenu) Many2One

func (twm *ThemeWebsiteMenu) Many2One() *Many2One

Many2One convert ThemeWebsiteMenu to *Many2One.

type ThemeWebsiteMenus

type ThemeWebsiteMenus []ThemeWebsiteMenu

ThemeWebsiteMenus represents array of theme.website.menu model.

type ThemeWebsitePage

type ThemeWebsitePage struct {
	CopyIds        *Relation `xmlrpc:"copy_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"`
	Url            *String   `xmlrpc:"url,omptempty"`
	ViewId         *Many2One `xmlrpc:"view_id,omptempty"`
	WebsiteIndexed *Bool     `xmlrpc:"website_indexed,omptempty"`
	WriteDate      *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid       *Many2One `xmlrpc:"write_uid,omptempty"`
}

ThemeWebsitePage represents theme.website.page model.

func (*ThemeWebsitePage) Many2One

func (twp *ThemeWebsitePage) Many2One() *Many2One

Many2One convert ThemeWebsitePage to *Many2One.

type ThemeWebsitePages

type ThemeWebsitePages []ThemeWebsitePage

ThemeWebsitePages represents array of theme.website.page model.

type Time

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

Time is a time.Time wrapper.

func NewTime

func NewTime(v time.Time) *Time

NewTime creates a new *Time.

func (*Time) Get

func (t *Time) Get() time.Time

Get *Time value.

type UomCategory

type UomCategory 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"`
	MeasureType *Selection `xmlrpc:"measure_type,omptempty"`
	Name        *String    `xmlrpc:"name,omptempty"`
	WriteDate   *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One  `xmlrpc:"write_uid,omptempty"`
}

UomCategory represents uom.category model.

func (*UomCategory) Many2One

func (uc *UomCategory) Many2One() *Many2One

Many2One convert UomCategory to *Many2One.

type UomCategorys

type UomCategorys []UomCategory

UomCategorys represents array of uom.category model.

type UomUom

type UomUom struct {
	Active      *Bool      `xmlrpc:"active,omptempty"`
	CategoryId  *Many2One  `xmlrpc:"category_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"`
	FactorInv   *Float     `xmlrpc:"factor_inv,omptempty"`
	Id          *Int       `xmlrpc:"id,omptempty"`
	LastUpdate  *Time      `xmlrpc:"__last_update,omptempty"`
	MeasureType *Selection `xmlrpc:"measure_type,omptempty"`
	Name        *String    `xmlrpc:"name,omptempty"`
	Rounding    *Float     `xmlrpc:"rounding,omptempty"`
	UomType     *Selection `xmlrpc:"uom_type,omptempty"`
	WriteDate   *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One  `xmlrpc:"write_uid,omptempty"`
}

UomUom represents uom.uom model.

func (*UomUom) Many2One

func (uu *UomUom) Many2One() *Many2One

Many2One convert UomUom to *Many2One.

type UomUoms

type UomUoms []UomUom

UomUoms represents array of uom.uom model.

type UserPayment

type UserPayment struct {
	Attachment     *String   `xmlrpc:"attachment,omptempty"`
	AttachmentName *String   `xmlrpc:"attachment_name,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"`
}

UserPayment represents user.payment model.

func (*UserPayment) Many2One

func (up *UserPayment) Many2One() *Many2One

Many2One convert UserPayment to *Many2One.

type UserPayments

type UserPayments []UserPayment

UserPayments represents array of user.payment model.

type UserProfile

type UserProfile 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"`
	NricBack    *String   `xmlrpc:"nric_back,omptempty"`
	NricFront   *String   `xmlrpc:"nric_front,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

UserProfile represents user.profile model.

func (*UserProfile) Many2One

func (up *UserProfile) Many2One() *Many2One

Many2One convert UserProfile to *Many2One.

type UserProfiles

type UserProfiles []UserProfile

UserProfiles represents array of user.profile model.

type UtmCampaign

type UtmCampaign struct {
	Bounced            *Int      `xmlrpc:"bounced,omptempty"`
	BouncedRatio       *Int      `xmlrpc:"bounced_ratio,omptempty"`
	ClickCount         *Int      `xmlrpc:"click_count,omptempty"`
	Color              *Int      `xmlrpc:"color,omptempty"`
	CompanyId          *Many2One `xmlrpc:"company_id,omptempty"`
	CreateDate         *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid          *Many2One `xmlrpc:"create_uid,omptempty"`
	CrmLeadActivated   *Bool     `xmlrpc:"crm_lead_activated,omptempty"`
	CurrencyId         *Many2One `xmlrpc:"currency_id,omptempty"`
	Delivered          *Int      `xmlrpc:"delivered,omptempty"`
	DisplayName        *String   `xmlrpc:"display_name,omptempty"`
	Failed             *Int      `xmlrpc:"failed,omptempty"`
	Id                 *Int      `xmlrpc:"id,omptempty"`
	Ignored            *Int      `xmlrpc:"ignored,omptempty"`
	InvoicedAmount     *Int      `xmlrpc:"invoiced_amount,omptempty"`
	IsWebsite          *Bool     `xmlrpc:"is_website,omptempty"`
	LastUpdate         *Time     `xmlrpc:"__last_update,omptempty"`
	LeadCount          *Int      `xmlrpc:"lead_count,omptempty"`
	MailingClicked     *Int      `xmlrpc:"mailing_clicked,omptempty"`
	MailingClicksRatio *Int      `xmlrpc:"mailing_clicks_ratio,omptempty"`
	MailingItems       *Int      `xmlrpc:"mailing_items,omptempty"`
	MailingMailCount   *Int      `xmlrpc:"mailing_mail_count,omptempty"`
	MailingMailIds     *Relation `xmlrpc:"mailing_mail_ids,omptempty"`
	MailingSmsCount    *Int      `xmlrpc:"mailing_sms_count,omptempty"`
	MailingSmsIds      *Relation `xmlrpc:"mailing_sms_ids,omptempty"`
	Name               *String   `xmlrpc:"name,omptempty"`
	Opened             *Int      `xmlrpc:"opened,omptempty"`
	OpenedRatio        *Int      `xmlrpc:"opened_ratio,omptempty"`
	OpportunityCount   *Int      `xmlrpc:"opportunity_count,omptempty"`
	QuotationCount     *Int      `xmlrpc:"quotation_count,omptempty"`
	ReceivedRatio      *Int      `xmlrpc:"received_ratio,omptempty"`
	Replied            *Int      `xmlrpc:"replied,omptempty"`
	RepliedRatio       *Int      `xmlrpc:"replied_ratio,omptempty"`
	Scheduled          *Int      `xmlrpc:"scheduled,omptempty"`
	Sent               *Int      `xmlrpc:"sent,omptempty"`
	StageId            *Many2One `xmlrpc:"stage_id,omptempty"`
	TagIds             *Relation `xmlrpc:"tag_ids,omptempty"`
	Total              *Int      `xmlrpc:"total,omptempty"`
	UserId             *Many2One `xmlrpc:"user_id,omptempty"`
	WriteDate          *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid           *Many2One `xmlrpc:"write_uid,omptempty"`
}

UtmCampaign represents utm.campaign model.

func (*UtmCampaign) Many2One

func (uc *UtmCampaign) Many2One() *Many2One

Many2One convert UtmCampaign to *Many2One.

type UtmCampaigns

type UtmCampaigns []UtmCampaign

UtmCampaigns represents array of utm.campaign model.

type UtmMedium

type UtmMedium 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"`
	Name        *String   `xmlrpc:"name,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

UtmMedium represents utm.medium model.

func (*UtmMedium) Many2One

func (um *UtmMedium) Many2One() *Many2One

Many2One convert UtmMedium to *Many2One.

type UtmMediums

type UtmMediums []UtmMedium

UtmMediums represents array of utm.medium model.

type UtmMixin

type UtmMixin struct {
	CampaignId  *Many2One `xmlrpc:"campaign_id,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	MediumId    *Many2One `xmlrpc:"medium_id,omptempty"`
	SourceId    *Many2One `xmlrpc:"source_id,omptempty"`
}

UtmMixin represents utm.mixin model.

func (*UtmMixin) Many2One

func (um *UtmMixin) Many2One() *Many2One

Many2One convert UtmMixin to *Many2One.

type UtmMixins

type UtmMixins []UtmMixin

UtmMixins represents array of utm.mixin model.

type UtmSource

type UtmSource 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"`
}

UtmSource represents utm.source model.

func (*UtmSource) Many2One

func (us *UtmSource) Many2One() *Many2One

Many2One convert UtmSource to *Many2One.

type UtmSources

type UtmSources []UtmSource

UtmSources represents array of utm.source model.

type UtmStage

type UtmStage 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"`
	Sequence    *Int      `xmlrpc:"sequence,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

UtmStage represents utm.stage model.

func (*UtmStage) Many2One

func (us *UtmStage) Many2One() *Many2One

Many2One convert UtmStage to *Many2One.

type UtmStages

type UtmStages []UtmStage

UtmStages represents array of utm.stage model.

type UtmTag

type UtmTag struct {
	Color       *Int      `xmlrpc:"color,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"`
}

UtmTag represents utm.tag model.

func (*UtmTag) Many2One

func (ut *UtmTag) Many2One() *Many2One

Many2One convert UtmTag to *Many2One.

type UtmTags

type UtmTags []UtmTag

UtmTags represents array of utm.tag model.

type ValidateAccountMove

type ValidateAccountMove 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"`
}

ValidateAccountMove represents validate.account.move model.

func (*ValidateAccountMove) Many2One

func (vam *ValidateAccountMove) Many2One() *Many2One

Many2One convert ValidateAccountMove to *Many2One.

type ValidateAccountMoves

type ValidateAccountMoves []ValidateAccountMove

ValidateAccountMoves represents array of validate.account.move model.

type Version

type Version struct {
	ServerVersion     *String     `xmlrpc:"server_version"`
	ServerVersionInfo interface{} `xmlrpc:"server_version_info"`
	ServerSerie       *String     `xmlrpc:"server_serie"`
	ProtocolVersion   *Int        `xmlrpc:"protocol_version"`
}

Version describes odoo instance version.

type WebEditorAssets

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

WebEditorAssets represents web_editor.assets model.

func (*WebEditorAssets) Many2One

func (wa *WebEditorAssets) Many2One() *Many2One

Many2One convert WebEditorAssets to *Many2One.

type WebEditorAssetss

type WebEditorAssetss []WebEditorAssets

WebEditorAssetss represents array of web_editor.assets model.

type WebEditorConverterTestSub

type WebEditorConverterTestSub 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"`
}

WebEditorConverterTestSub represents web_editor.converter.test.sub model.

func (*WebEditorConverterTestSub) Many2One

func (wcts *WebEditorConverterTestSub) Many2One() *Many2One

Many2One convert WebEditorConverterTestSub to *Many2One.

type WebEditorConverterTestSubs

type WebEditorConverterTestSubs []WebEditorConverterTestSub

WebEditorConverterTestSubs represents array of web_editor.converter.test.sub model.

type WebTourTour

type WebTourTour struct {
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,omptempty"`
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	Name        *String   `xmlrpc:"name,omptempty"`
	UserId      *Many2One `xmlrpc:"user_id,omptempty"`
}

WebTourTour represents web_tour.tour model.

func (*WebTourTour) Many2One

func (wt *WebTourTour) Many2One() *Many2One

Many2One convert WebTourTour to *Many2One.

type WebTourTours

type WebTourTours []WebTourTour

WebTourTours represents array of web_tour.tour model.

type Website

type Website struct {
	AuthSignupUninvited          *Selection `xmlrpc:"auth_signup_uninvited,omptempty"`
	AutoRedirectLang             *Bool      `xmlrpc:"auto_redirect_lang,omptempty"`
	CdnActivated                 *Bool      `xmlrpc:"cdn_activated,omptempty"`
	CdnFilters                   *String    `xmlrpc:"cdn_filters,omptempty"`
	CdnUrl                       *String    `xmlrpc:"cdn_url,omptempty"`
	ChannelId                    *Many2One  `xmlrpc:"channel_id,omptempty"`
	CompanyId                    *Many2One  `xmlrpc:"company_id,omptempty"`
	CountryGroupIds              *Relation  `xmlrpc:"country_group_ids,omptempty"`
	CreateDate                   *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid                    *Many2One  `xmlrpc:"create_uid,omptempty"`
	CrmDefaultTeamId             *Many2One  `xmlrpc:"crm_default_team_id,omptempty"`
	CrmDefaultUserId             *Many2One  `xmlrpc:"crm_default_user_id,omptempty"`
	DefaultLangId                *Many2One  `xmlrpc:"default_lang_id,omptempty"`
	DisplayName                  *String    `xmlrpc:"display_name,omptempty"`
	Domain                       *String    `xmlrpc:"domain,omptempty"`
	Favicon                      *String    `xmlrpc:"favicon,omptempty"`
	GoogleAnalyticsKey           *String    `xmlrpc:"google_analytics_key,omptempty"`
	GoogleManagementClientId     *String    `xmlrpc:"google_management_client_id,omptempty"`
	GoogleManagementClientSecret *String    `xmlrpc:"google_management_client_secret,omptempty"`
	GoogleMapsApiKey             *String    `xmlrpc:"google_maps_api_key,omptempty"`
	HomepageId                   *Many2One  `xmlrpc:"homepage_id,omptempty"`
	Id                           *Int       `xmlrpc:"id,omptempty"`
	KarmaProfileMin              *Int       `xmlrpc:"karma_profile_min,omptempty"`
	LanguageIds                  *Relation  `xmlrpc:"language_ids,omptempty"`
	LastUpdate                   *Time      `xmlrpc:"__last_update,omptempty"`
	MenuId                       *Many2One  `xmlrpc:"menu_id,omptempty"`
	Name                         *String    `xmlrpc:"name,omptempty"`
	PartnerId                    *Many2One  `xmlrpc:"partner_id,omptempty"`
	SocialDefaultImage           *String    `xmlrpc:"social_default_image,omptempty"`
	SocialFacebook               *String    `xmlrpc:"social_facebook,omptempty"`
	SocialGithub                 *String    `xmlrpc:"social_github,omptempty"`
	SocialInstagram              *String    `xmlrpc:"social_instagram,omptempty"`
	SocialLinkedin               *String    `xmlrpc:"social_linkedin,omptempty"`
	SocialTwitter                *String    `xmlrpc:"social_twitter,omptempty"`
	SocialYoutube                *String    `xmlrpc:"social_youtube,omptempty"`
	SpecificUserAccount          *Bool      `xmlrpc:"specific_user_account,omptempty"`
	ThemeId                      *Many2One  `xmlrpc:"theme_id,omptempty"`
	UserId                       *Many2One  `xmlrpc:"user_id,omptempty"`
	WebsiteFormEnableMetadata    *Bool      `xmlrpc:"website_form_enable_metadata,omptempty"`
	WebsiteSlideGoogleAppKey     *String    `xmlrpc:"website_slide_google_app_key,omptempty"`
	WriteDate                    *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid                     *Many2One  `xmlrpc:"write_uid,omptempty"`
	ZoomEmail                    *String    `xmlrpc:"zoom_email,omptempty"`
}

Website represents website model.

func (*Website) Many2One

func (w *Website) Many2One() *Many2One

Many2One convert Website to *Many2One.

type WebsiteMassMailingPopup

type WebsiteMassMailingPopup 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"`
	MailingListId *Many2One `xmlrpc:"mailing_list_id,omptempty"`
	PopupContent  *String   `xmlrpc:"popup_content,omptempty"`
	WebsiteId     *Many2One `xmlrpc:"website_id,omptempty"`
	WriteDate     *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid      *Many2One `xmlrpc:"write_uid,omptempty"`
}

WebsiteMassMailingPopup represents website.mass_mailing.popup model.

func (*WebsiteMassMailingPopup) Many2One

func (wmp *WebsiteMassMailingPopup) Many2One() *Many2One

Many2One convert WebsiteMassMailingPopup to *Many2One.

type WebsiteMassMailingPopups

type WebsiteMassMailingPopups []WebsiteMassMailingPopup

WebsiteMassMailingPopups represents array of website.mass_mailing.popup model.

type WebsiteMenu

type WebsiteMenu struct {
	ChildId         *Relation `xmlrpc:"child_id,omptempty"`
	CreateDate      *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid       *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName     *String   `xmlrpc:"display_name,omptempty"`
	GroupIds        *Relation `xmlrpc:"group_ids,omptempty"`
	Id              *Int      `xmlrpc:"id,omptempty"`
	IsMegaMenu      *Bool     `xmlrpc:"is_mega_menu,omptempty"`
	IsVisible       *Bool     `xmlrpc:"is_visible,omptempty"`
	LastUpdate      *Time     `xmlrpc:"__last_update,omptempty"`
	MegaMenuClasses *String   `xmlrpc:"mega_menu_classes,omptempty"`
	MegaMenuContent *String   `xmlrpc:"mega_menu_content,omptempty"`
	Name            *String   `xmlrpc:"name,omptempty"`
	NewWindow       *Bool     `xmlrpc:"new_window,omptempty"`
	PageId          *Many2One `xmlrpc:"page_id,omptempty"`
	ParentId        *Many2One `xmlrpc:"parent_id,omptempty"`
	ParentPath      *String   `xmlrpc:"parent_path,omptempty"`
	Sequence        *Int      `xmlrpc:"sequence,omptempty"`
	ThemeTemplateId *Many2One `xmlrpc:"theme_template_id,omptempty"`
	Url             *String   `xmlrpc:"url,omptempty"`
	WebsiteId       *Many2One `xmlrpc:"website_id,omptempty"`
	WriteDate       *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid        *Many2One `xmlrpc:"write_uid,omptempty"`
}

WebsiteMenu represents website.menu model.

func (*WebsiteMenu) Many2One

func (wm *WebsiteMenu) Many2One() *Many2One

Many2One convert WebsiteMenu to *Many2One.

type WebsiteMenus

type WebsiteMenus []WebsiteMenu

WebsiteMenus represents array of website.menu model.

type WebsiteMultiMixin

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

WebsiteMultiMixin represents website.multi.mixin model.

func (*WebsiteMultiMixin) Many2One

func (wmm *WebsiteMultiMixin) Many2One() *Many2One

Many2One convert WebsiteMultiMixin to *Many2One.

type WebsiteMultiMixins

type WebsiteMultiMixins []WebsiteMultiMixin

WebsiteMultiMixins represents array of website.multi.mixin model.

type WebsitePage

type WebsitePage struct {
	Active                 *Bool      `xmlrpc:"active,omptempty"`
	Arch                   *String    `xmlrpc:"arch,omptempty"`
	ArchBase               *String    `xmlrpc:"arch_base,omptempty"`
	ArchDb                 *String    `xmlrpc:"arch_db,omptempty"`
	ArchFs                 *String    `xmlrpc:"arch_fs,omptempty"`
	ArchPrev               *String    `xmlrpc:"arch_prev,omptempty"`
	ArchUpdated            *Bool      `xmlrpc:"arch_updated,omptempty"`
	CanPublish             *Bool      `xmlrpc:"can_publish,omptempty"`
	CreateDate             *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid              *Many2One  `xmlrpc:"create_uid,omptempty"`
	CustomizeShow          *Bool      `xmlrpc:"customize_show,omptempty"`
	DatePublish            *Time      `xmlrpc:"date_publish,omptempty"`
	DisplayName            *String    `xmlrpc:"display_name,omptempty"`
	FieldParent            *String    `xmlrpc:"field_parent,omptempty"`
	FirstPageId            *Many2One  `xmlrpc:"first_page_id,omptempty"`
	GroupsId               *Relation  `xmlrpc:"groups_id,omptempty"`
	HeaderColor            *String    `xmlrpc:"header_color,omptempty"`
	HeaderOverlay          *Bool      `xmlrpc:"header_overlay,omptempty"`
	Id                     *Int       `xmlrpc:"id,omptempty"`
	InheritChildrenIds     *Relation  `xmlrpc:"inherit_children_ids,omptempty"`
	InheritId              *Many2One  `xmlrpc:"inherit_id,omptempty"`
	IsHomepage             *Bool      `xmlrpc:"is_homepage,omptempty"`
	IsPublished            *Bool      `xmlrpc:"is_published,omptempty"`
	IsSeoOptimized         *Bool      `xmlrpc:"is_seo_optimized,omptempty"`
	IsVisible              *Bool      `xmlrpc:"is_visible,omptempty"`
	Key                    *String    `xmlrpc:"key,omptempty"`
	LastUpdate             *Time      `xmlrpc:"__last_update,omptempty"`
	MenuIds                *Relation  `xmlrpc:"menu_ids,omptempty"`
	Mode                   *Selection `xmlrpc:"mode,omptempty"`
	Model                  *String    `xmlrpc:"model,omptempty"`
	ModelDataId            *Many2One  `xmlrpc:"model_data_id,omptempty"`
	ModelIds               *Relation  `xmlrpc:"model_ids,omptempty"`
	Name                   *String    `xmlrpc:"name,omptempty"`
	PageIds                *Relation  `xmlrpc:"page_ids,omptempty"`
	Priority               *Int       `xmlrpc:"priority,omptempty"`
	ThemeTemplateId        *Many2One  `xmlrpc:"theme_template_id,omptempty"`
	Track                  *Bool      `xmlrpc:"track,omptempty"`
	Type                   *Selection `xmlrpc:"type,omptempty"`
	Url                    *String    `xmlrpc:"url,omptempty"`
	ViewId                 *Many2One  `xmlrpc:"view_id,omptempty"`
	WebsiteId              *Many2One  `xmlrpc:"website_id,omptempty"`
	WebsiteIndexed         *Bool      `xmlrpc:"website_indexed,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"`
	XmlId                  *String    `xmlrpc:"xml_id,omptempty"`
}

WebsitePage represents website.page model.

func (*WebsitePage) Many2One

func (wp *WebsitePage) Many2One() *Many2One

Many2One convert WebsitePage to *Many2One.

type WebsitePages

type WebsitePages []WebsitePage

WebsitePages represents array of website.page model.

type WebsitePublishedMixin

type WebsitePublishedMixin struct {
	CanPublish       *Bool   `xmlrpc:"can_publish,omptempty"`
	DisplayName      *String `xmlrpc:"display_name,omptempty"`
	Id               *Int    `xmlrpc:"id,omptempty"`
	IsPublished      *Bool   `xmlrpc:"is_published,omptempty"`
	LastUpdate       *Time   `xmlrpc:"__last_update,omptempty"`
	WebsitePublished *Bool   `xmlrpc:"website_published,omptempty"`
	WebsiteUrl       *String `xmlrpc:"website_url,omptempty"`
}

WebsitePublishedMixin represents website.published.mixin model.

func (*WebsitePublishedMixin) Many2One

func (wpm *WebsitePublishedMixin) Many2One() *Many2One

Many2One convert WebsitePublishedMixin to *Many2One.

type WebsitePublishedMixins

type WebsitePublishedMixins []WebsitePublishedMixin

WebsitePublishedMixins represents array of website.published.mixin model.

type WebsitePublishedMultiMixin

type WebsitePublishedMultiMixin struct {
	CanPublish       *Bool     `xmlrpc:"can_publish,omptempty"`
	DisplayName      *String   `xmlrpc:"display_name,omptempty"`
	Id               *Int      `xmlrpc:"id,omptempty"`
	IsPublished      *Bool     `xmlrpc:"is_published,omptempty"`
	LastUpdate       *Time     `xmlrpc:"__last_update,omptempty"`
	WebsiteId        *Many2One `xmlrpc:"website_id,omptempty"`
	WebsitePublished *Bool     `xmlrpc:"website_published,omptempty"`
	WebsiteUrl       *String   `xmlrpc:"website_url,omptempty"`
}

WebsitePublishedMultiMixin represents website.published.multi.mixin model.

func (*WebsitePublishedMultiMixin) Many2One

func (wpmm *WebsitePublishedMultiMixin) Many2One() *Many2One

Many2One convert WebsitePublishedMultiMixin to *Many2One.

type WebsitePublishedMultiMixins

type WebsitePublishedMultiMixins []WebsitePublishedMultiMixin

WebsitePublishedMultiMixins represents array of website.published.multi.mixin model.

type WebsiteRewrite

type WebsiteRewrite 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"`
	Name         *String    `xmlrpc:"name,omptempty"`
	RedirectType *Selection `xmlrpc:"redirect_type,omptempty"`
	RouteId      *Many2One  `xmlrpc:"route_id,omptempty"`
	Sequence     *Int       `xmlrpc:"sequence,omptempty"`
	UrlFrom      *String    `xmlrpc:"url_from,omptempty"`
	UrlTo        *String    `xmlrpc:"url_to,omptempty"`
	WebsiteId    *Many2One  `xmlrpc:"website_id,omptempty"`
	WriteDate    *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid     *Many2One  `xmlrpc:"write_uid,omptempty"`
}

WebsiteRewrite represents website.rewrite model.

func (*WebsiteRewrite) Many2One

func (wr *WebsiteRewrite) Many2One() *Many2One

Many2One convert WebsiteRewrite to *Many2One.

type WebsiteRewrites

type WebsiteRewrites []WebsiteRewrite

WebsiteRewrites represents array of website.rewrite model.

type WebsiteRoute

type WebsiteRoute 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"`
	Path        *String   `xmlrpc:"path,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

WebsiteRoute represents website.route model.

func (*WebsiteRoute) Many2One

func (wr *WebsiteRoute) Many2One() *Many2One

Many2One convert WebsiteRoute to *Many2One.

type WebsiteRoutes

type WebsiteRoutes []WebsiteRoute

WebsiteRoutes represents array of website.route model.

type WebsiteSeoMetadata

type WebsiteSeoMetadata struct {
	DisplayName            *String `xmlrpc:"display_name,omptempty"`
	Id                     *Int    `xmlrpc:"id,omptempty"`
	IsSeoOptimized         *Bool   `xmlrpc:"is_seo_optimized,omptempty"`
	LastUpdate             *Time   `xmlrpc:"__last_update,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"`
}

WebsiteSeoMetadata represents website.seo.metadata model.

func (*WebsiteSeoMetadata) Many2One

func (wsm *WebsiteSeoMetadata) Many2One() *Many2One

Many2One convert WebsiteSeoMetadata to *Many2One.

type WebsiteSeoMetadatas

type WebsiteSeoMetadatas []WebsiteSeoMetadata

WebsiteSeoMetadatas represents array of website.seo.metadata model.

type WebsiteTrack

type WebsiteTrack struct {
	DisplayName   *String   `xmlrpc:"display_name,omptempty"`
	Id            *Int      `xmlrpc:"id,omptempty"`
	LastUpdate    *Time     `xmlrpc:"__last_update,omptempty"`
	PageId        *Many2One `xmlrpc:"page_id,omptempty"`
	Url           *String   `xmlrpc:"url,omptempty"`
	VisitDatetime *Time     `xmlrpc:"visit_datetime,omptempty"`
	VisitorId     *Many2One `xmlrpc:"visitor_id,omptempty"`
}

WebsiteTrack represents website.track model.

func (*WebsiteTrack) Many2One

func (wt *WebsiteTrack) Many2One() *Many2One

Many2One convert WebsiteTrack to *Many2One.

type WebsiteTracks

type WebsiteTracks []WebsiteTrack

WebsiteTracks represents array of website.track model.

type WebsiteVisitor

type WebsiteVisitor struct {
	AccessToken            *String    `xmlrpc:"access_token,omptempty"`
	Active                 *Bool      `xmlrpc:"active,omptempty"`
	CountryFlag            *String    `xmlrpc:"country_flag,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"`
	Email                  *String    `xmlrpc:"email,omptempty"`
	Id                     *Int       `xmlrpc:"id,omptempty"`
	IsConnected            *Bool      `xmlrpc:"is_connected,omptempty"`
	LangId                 *Many2One  `xmlrpc:"lang_id,omptempty"`
	LastConnectionDatetime *Time      `xmlrpc:"last_connection_datetime,omptempty"`
	LastUpdate             *Time      `xmlrpc:"__last_update,omptempty"`
	LastVisitedPageId      *Many2One  `xmlrpc:"last_visited_page_id,omptempty"`
	LeadCount              *Int       `xmlrpc:"lead_count,omptempty"`
	LeadIds                *Relation  `xmlrpc:"lead_ids,omptempty"`
	LivechatOperatorId     *Many2One  `xmlrpc:"livechat_operator_id,omptempty"`
	LivechatOperatorName   *String    `xmlrpc:"livechat_operator_name,omptempty"`
	MailChannelIds         *Relation  `xmlrpc:"mail_channel_ids,omptempty"`
	Mobile                 *String    `xmlrpc:"mobile,omptempty"`
	Name                   *String    `xmlrpc:"name,omptempty"`
	PageCount              *Int       `xmlrpc:"page_count,omptempty"`
	PageIds                *Relation  `xmlrpc:"page_ids,omptempty"`
	PartnerId              *Many2One  `xmlrpc:"partner_id,omptempty"`
	PartnerImage           *String    `xmlrpc:"partner_image,omptempty"`
	SessionCount           *Int       `xmlrpc:"session_count,omptempty"`
	TimeSinceLastAction    *String    `xmlrpc:"time_since_last_action,omptempty"`
	Timezone               *Selection `xmlrpc:"timezone,omptempty"`
	VisitCount             *Int       `xmlrpc:"visit_count,omptempty"`
	VisitorPageCount       *Int       `xmlrpc:"visitor_page_count,omptempty"`
	WebsiteId              *Many2One  `xmlrpc:"website_id,omptempty"`
	WebsiteTrackIds        *Relation  `xmlrpc:"website_track_ids,omptempty"`
	WriteDate              *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid               *Many2One  `xmlrpc:"write_uid,omptempty"`
}

WebsiteVisitor represents website.visitor model.

func (*WebsiteVisitor) Many2One

func (wv *WebsiteVisitor) Many2One() *Many2One

Many2One convert WebsiteVisitor to *Many2One.

type WebsiteVisitors

type WebsiteVisitors []WebsiteVisitor

WebsiteVisitors represents array of website.visitor model.

type Websites

type Websites []Website

Websites represents array of website model.

type WizardIrModelMenuCreate

type WizardIrModelMenuCreate 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"`
	MenuId      *Many2One `xmlrpc:"menu_id,omptempty"`
	Name        *String   `xmlrpc:"name,omptempty"`
	WriteDate   *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid    *Many2One `xmlrpc:"write_uid,omptempty"`
}

WizardIrModelMenuCreate represents wizard.ir.model.menu.create model.

func (*WizardIrModelMenuCreate) Many2One

func (wimmc *WizardIrModelMenuCreate) Many2One() *Many2One

Many2One convert WizardIrModelMenuCreate to *Many2One.

type WizardIrModelMenuCreates

type WizardIrModelMenuCreates []WizardIrModelMenuCreate

WizardIrModelMenuCreates represents array of wizard.ir.model.menu.create model.

Source Files

Directories

Path Synopsis
cmd

Jump to

Keyboard shortcuts

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