odoo

package module
v0.0.0-...-7685b5f Latest Latest
Warning

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

Go to latest
Published: Jun 30, 2022 License: Apache-2.0 Imports: 7 Imported by: 0

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

Note: Generating models require to follow instructions in GOPATH mode. Refactoring for go modules will come soon.

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 // ensure the user has sufficient permissions to generate models
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/github.com/localrivet/go-odoo

Download library and generate models :

GO111MODULE="off" go get github.com/localrivet/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
GO111MODULE="off" 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 "github.com/localrivet/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 AccountAnalyticAccountModel = "account.analytic.account"

AccountAnalyticAccountModel 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 AccountInvoiceLineModel = "account.invoice.line"

AccountInvoiceLineModel is the odoo model name.

View Source
const AccountInvoiceModel = "account.invoice"

AccountInvoiceModel is the odoo model name.

View Source
const AccountJournalModel = "account.journal"

AccountJournalModel 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 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 CrmLeadModel = "crm.lead"

CrmLeadModel is the odoo model name.

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

CrmLeadTagModel is the odoo model name.

View Source
const DecimalPrecisionModel = "decimal.precision"

DecimalPrecisionModel is the odoo model name.

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

FormatAddressMixinModel 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 ProductProductModel = "product.product"

ProductProductModel is the odoo model name.

View Source
const ProductSupplierinfoModel = "product.supplierinfo"

ProductSupplierinfoModel is the odoo model name.

View Source
const ProjectProjectModel = "project.project"

ProjectProjectModel is the odoo model name.

View Source
const ProjectTaskModel = "project.task"

ProjectTaskModel is the odoo model name.

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

ReportBaseReportIrmodulereferenceModel 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 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 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 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 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 {
	LastUpdate             *Time      `xmlrpc:"__last_update,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"`
	Deprecated             *Bool      `xmlrpc:"deprecated,omptempty"`
	DisplayName            *String    `xmlrpc:"display_name,omptempty"`
	GroupId                *Many2One  `xmlrpc:"group_id,omptempty"`
	Id                     *Int       `xmlrpc:"id,omptempty"`
	InternalType           *Selection `xmlrpc:"internal_type,omptempty"`
	LastTimeEntriesChecked *Time      `xmlrpc:"last_time_entries_checked,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"`
	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"`
}

AccountAccount represents account.account model.

func (*AccountAccount) Many2One

func (aa *AccountAccount) Many2One() *Many2One

Many2One convert AccountAccount to *Many2One.

type AccountAccounts

type AccountAccounts []AccountAccount

AccountAccounts represents array of account.account model.

type AccountAnalyticAccount

type AccountAnalyticAccount struct {
	LastUpdate               *Time     `xmlrpc:"__last_update,omptempty"`
	Active                   *Bool     `xmlrpc:"active,omptempty"`
	Balance                  *Float    `xmlrpc:"balance,omptempty"`
	Code                     *String   `xmlrpc:"code,omptempty"`
	CompanyId                *Many2One `xmlrpc:"company_id,omptempty"`
	CompanyUomId             *Many2One `xmlrpc:"company_uom_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"`
	Id                       *Int      `xmlrpc:"id,omptempty"`
	LineIds                  *Relation `xmlrpc:"line_ids,omptempty"`
	MachineProjectName       *String   `xmlrpc:"machine_project_name,omptempty"`
	MessageChannelIds        *Relation `xmlrpc:"message_channel_ids,omptempty"`
	MessageFollowerIds       *Relation `xmlrpc:"message_follower_ids,omptempty"`
	MessageIds               *Relation `xmlrpc:"message_ids,omptempty"`
	MessageIsFollower        *Bool     `xmlrpc:"message_is_follower,omptempty"`
	MessageLastPost          *Time     `xmlrpc:"message_last_post,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"`
	ProjectCreated           *Bool     `xmlrpc:"project_created,omptempty"`
	ProjectIds               *Relation `xmlrpc:"project_ids,omptempty"`
	TagIds                   *Relation `xmlrpc:"tag_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 AccountAnalyticLine

type AccountAnalyticLine struct {
	LastUpdate             *Time      `xmlrpc:"__last_update,omptempty"`
	AccountId              *Many2One  `xmlrpc:"account_id,omptempty"`
	Amount                 *Float     `xmlrpc:"amount,omptempty"`
	AmountCurrency         *Float     `xmlrpc:"amount_currency,omptempty"`
	AnalyticAmountCurrency *Float     `xmlrpc:"analytic_amount_currency,omptempty"`
	Code                   *String    `xmlrpc:"code,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"`
	DepartmentId           *Many2One  `xmlrpc:"department_id,omptempty"`
	DisplayName            *String    `xmlrpc:"display_name,omptempty"`
	EmployeeId             *Many2One  `xmlrpc:"employee_id,omptempty"`
	GeneralAccountId       *Many2One  `xmlrpc:"general_account_id,omptempty"`
	HolidayId              *Many2One  `xmlrpc:"holiday_id,omptempty"`
	Id                     *Int       `xmlrpc:"id,omptempty"`
	MoveId                 *Many2One  `xmlrpc:"move_id,omptempty"`
	Name                   *String    `xmlrpc:"name,omptempty"`
	PartnerId              *Many2One  `xmlrpc:"partner_id,omptempty"`
	ProductId              *Many2One  `xmlrpc:"product_id,omptempty"`
	ProductUomId           *Many2One  `xmlrpc:"product_uom_id,omptempty"`
	ProjectId              *Many2One  `xmlrpc:"project_id,omptempty"`
	Ref                    *String    `xmlrpc:"ref,omptempty"`
	SoLine                 *Many2One  `xmlrpc:"so_line,omptempty"`
	TagIds                 *Relation  `xmlrpc:"tag_ids,omptempty"`
	TaskId                 *Many2One  `xmlrpc:"task_id,omptempty"`
	TimesheetInvoiceId     *Many2One  `xmlrpc:"timesheet_invoice_id,omptempty"`
	TimesheetInvoiceType   *Selection `xmlrpc:"timesheet_invoice_type,omptempty"`
	TimesheetRevenue       *Float     `xmlrpc:"timesheet_revenue,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 {
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	Active      *Bool     `xmlrpc:"active,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"`
	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 AccountInvoice

type AccountInvoice struct {
	LastUpdate                     *Time      `xmlrpc:"__last_update,omptempty"`
	AccessToken                    *String    `xmlrpc:"access_token,omptempty"`
	AccountId                      *Many2One  `xmlrpc:"account_id,omptempty"`
	ActivityDateDeadline           *Time      `xmlrpc:"activity_date_deadline,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"`
	AmountTax                      *Float     `xmlrpc:"amount_tax,omptempty"`
	AmountTotal                    *Float     `xmlrpc:"amount_total,omptempty"`
	AmountTotalCompanySigned       *Float     `xmlrpc:"amount_total_company_signed,omptempty"`
	AmountTotalSigned              *Float     `xmlrpc:"amount_total_signed,omptempty"`
	AmountUntaxed                  *Float     `xmlrpc:"amount_untaxed,omptempty"`
	AmountUntaxedSigned            *Float     `xmlrpc:"amount_untaxed_signed,omptempty"`
	CampaignId                     *Many2One  `xmlrpc:"campaign_id,omptempty"`
	CashRoundingId                 *Many2One  `xmlrpc:"cash_rounding_id,omptempty"`
	Comment                        *String    `xmlrpc:"comment,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"`
	DateDue                        *Time      `xmlrpc:"date_due,omptempty"`
	DateInvoice                    *Time      `xmlrpc:"date_invoice,omptempty"`
	DisplayName                    *String    `xmlrpc:"display_name,omptempty"`
	FiscalPositionId               *Many2One  `xmlrpc:"fiscal_position_id,omptempty"`
	HasOutstanding                 *Bool      `xmlrpc:"has_outstanding,omptempty"`
	Id                             *Int       `xmlrpc:"id,omptempty"`
	InNote                         *String    `xmlrpc:"in_note,omptempty"`
	IncotermsId                    *Many2One  `xmlrpc:"incoterms_id,omptempty"`
	InvoiceLineIds                 *Relation  `xmlrpc:"invoice_line_ids,omptempty"`
	JournalId                      *Many2One  `xmlrpc:"journal_id,omptempty"`
	MachineInvoice                 *Bool      `xmlrpc:"machine_invoice,omptempty"`
	MachineInvoiceTitle            *String    `xmlrpc:"machine_invoice_title,omptempty"`
	MachinePurchaseOrder           *String    `xmlrpc:"machine_purchase_order,omptempty"`
	MediumId                       *Many2One  `xmlrpc:"medium_id,omptempty"`
	MessageChannelIds              *Relation  `xmlrpc:"message_channel_ids,omptempty"`
	MessageFollowerIds             *Relation  `xmlrpc:"message_follower_ids,omptempty"`
	MessageIds                     *Relation  `xmlrpc:"message_ids,omptempty"`
	MessageIsFollower              *Bool      `xmlrpc:"message_is_follower,omptempty"`
	MessageLastPost                *Time      `xmlrpc:"message_last_post,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"`
	MoveId                         *Many2One  `xmlrpc:"move_id,omptempty"`
	MoveName                       *String    `xmlrpc:"move_name,omptempty"`
	Name                           *String    `xmlrpc:"name,omptempty"`
	Number                         *String    `xmlrpc:"number,omptempty"`
	Origin                         *String    `xmlrpc:"origin,omptempty"`
	OutNote                        *String    `xmlrpc:"out_note,omptempty"`
	OutstandingCreditsDebitsWidget *String    `xmlrpc:"outstanding_credits_debits_widget,omptempty"`
	PartnerBankId                  *Many2One  `xmlrpc:"partner_bank_id,omptempty"`
	PartnerId                      *Many2One  `xmlrpc:"partner_id,omptempty"`
	PartnerShippingId              *Many2One  `xmlrpc:"partner_shipping_id,omptempty"`
	PaymentIds                     *Relation  `xmlrpc:"payment_ids,omptempty"`
	PaymentMoveLineIds             *Relation  `xmlrpc:"payment_move_line_ids,omptempty"`
	PaymentTermId                  *Many2One  `xmlrpc:"payment_term_id,omptempty"`
	PaymentsWidget                 *String    `xmlrpc:"payments_widget,omptempty"`
	PortalUrl                      *String    `xmlrpc:"portal_url,omptempty"`
	PurchaseId                     *Many2One  `xmlrpc:"purchase_id,omptempty"`
	QuantityTotal                  *Float     `xmlrpc:"quantity_total,omptempty"`
	Reconciled                     *Bool      `xmlrpc:"reconciled,omptempty"`
	Reference                      *String    `xmlrpc:"reference,omptempty"`
	ReferenceType                  *Selection `xmlrpc:"reference_type,omptempty"`
	RefundInvoiceId                *Many2One  `xmlrpc:"refund_invoice_id,omptempty"`
	RefundInvoiceIds               *Relation  `xmlrpc:"refund_invoice_ids,omptempty"`
	Residual                       *Float     `xmlrpc:"residual,omptempty"`
	ResidualCompanySigned          *Float     `xmlrpc:"residual_company_signed,omptempty"`
	ResidualSigned                 *Float     `xmlrpc:"residual_signed,omptempty"`
	Sent                           *Bool      `xmlrpc:"sent,omptempty"`
	SequenceNumberNext             *String    `xmlrpc:"sequence_number_next,omptempty"`
	SequenceNumberNextPrefix       *String    `xmlrpc:"sequence_number_next_prefix,omptempty"`
	SourceId                       *Many2One  `xmlrpc:"source_id,omptempty"`
	State                          *Selection `xmlrpc:"state,omptempty"`
	TaxLineIds                     *Relation  `xmlrpc:"tax_line_ids,omptempty"`
	TeamId                         *Many2One  `xmlrpc:"team_id,omptempty"`
	TimesheetCount                 *Int       `xmlrpc:"timesheet_count,omptempty"`
	TimesheetIds                   *Relation  `xmlrpc:"timesheet_ids,omptempty"`
	Type                           *Selection `xmlrpc:"type,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"`
}

AccountInvoice represents account.invoice model.

func (*AccountInvoice) Many2One

func (ai *AccountInvoice) Many2One() *Many2One

Many2One convert AccountInvoice to *Many2One.

type AccountInvoiceLine

type AccountInvoiceLine struct {
	LastUpdate             *Time     `xmlrpc:"__last_update,omptempty"`
	AccountAnalyticId      *Many2One `xmlrpc:"account_analytic_id,omptempty"`
	AccountId              *Many2One `xmlrpc:"account_id,omptempty"`
	AnalyticTagIds         *Relation `xmlrpc:"analytic_tag_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"`
	CurrencyId             *Many2One `xmlrpc:"currency_id,omptempty"`
	Discount               *Float    `xmlrpc:"discount,omptempty"`
	DisplayName            *String   `xmlrpc:"display_name,omptempty"`
	Id                     *Int      `xmlrpc:"id,omptempty"`
	InvoiceId              *Many2One `xmlrpc:"invoice_id,omptempty"`
	InvoiceLineTaxIds      *Relation `xmlrpc:"invoice_line_tax_ids,omptempty"`
	IsRoundingLine         *Bool     `xmlrpc:"is_rounding_line,omptempty"`
	LayoutCategoryId       *Many2One `xmlrpc:"layout_category_id,omptempty"`
	LayoutCategorySequence *Int      `xmlrpc:"layout_category_sequence,omptempty"`
	Name                   *String   `xmlrpc:"name,omptempty"`
	Origin                 *String   `xmlrpc:"origin,omptempty"`
	PartnerId              *Many2One `xmlrpc:"partner_id,omptempty"`
	PriceSubtotal          *Float    `xmlrpc:"price_subtotal,omptempty"`
	PriceSubtotalSigned    *Float    `xmlrpc:"price_subtotal_signed,omptempty"`
	PriceTotal             *Float    `xmlrpc:"price_total,omptempty"`
	PriceUnit              *Float    `xmlrpc:"price_unit,omptempty"`
	ProductId              *Many2One `xmlrpc:"product_id,omptempty"`
	ProductImage           *String   `xmlrpc:"product_image,omptempty"`
	PurchaseId             *Many2One `xmlrpc:"purchase_id,omptempty"`
	PurchaseLineId         *Many2One `xmlrpc:"purchase_line_id,omptempty"`
	Quantity               *Float    `xmlrpc:"quantity,omptempty"`
	SaleLineIds            *Relation `xmlrpc:"sale_line_ids,omptempty"`
	Sequence               *Int      `xmlrpc:"sequence,omptempty"`
	UomId                  *Many2One `xmlrpc:"uom_id,omptempty"`
	WriteDate              *Time     `xmlrpc:"write_date,omptempty"`
	WriteUid               *Many2One `xmlrpc:"write_uid,omptempty"`
}

AccountInvoiceLine represents account.invoice.line model.

func (*AccountInvoiceLine) Many2One

func (ail *AccountInvoiceLine) Many2One() *Many2One

Many2One convert AccountInvoiceLine to *Many2One.

type AccountInvoiceLines

type AccountInvoiceLines []AccountInvoiceLine

AccountInvoiceLines represents array of account.invoice.line model.

type AccountInvoices

type AccountInvoices []AccountInvoice

AccountInvoices represents array of account.invoice model.

type AccountJournal

type AccountJournal struct {
	LastUpdate               *Time      `xmlrpc:"__last_update,omptempty"`
	AccountControlIds        *Relation  `xmlrpc:"account_control_ids,omptempty"`
	AccountSetupBankDataDone *Bool      `xmlrpc:"account_setup_bank_data_done,omptempty"`
	Active                   *Bool      `xmlrpc:"active,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"`
	BelongsToCompany         *Bool      `xmlrpc:"belongs_to_company,omptempty"`
	Code                     *String    `xmlrpc:"code,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"`
	DefaultCreditAccountId   *Many2One  `xmlrpc:"default_credit_account_id,omptempty"`
	DefaultDebitAccountId    *Many2One  `xmlrpc:"default_debit_account_id,omptempty"`
	DisplayName              *String    `xmlrpc:"display_name,omptempty"`
	GroupInvoiceLines        *Bool      `xmlrpc:"group_invoice_lines,omptempty"`
	Id                       *Int       `xmlrpc:"id,omptempty"`
	InboundPaymentMethodIds  *Relation  `xmlrpc:"inbound_payment_method_ids,omptempty"`
	KanbanDashboard          *String    `xmlrpc:"kanban_dashboard,omptempty"`
	KanbanDashboardGraph     *String    `xmlrpc:"kanban_dashboard_graph,omptempty"`
	LossAccountId            *Many2One  `xmlrpc:"loss_account_id,omptempty"`
	Name                     *String    `xmlrpc:"name,omptempty"`
	OutboundPaymentMethodIds *Relation  `xmlrpc:"outbound_payment_method_ids,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"`
	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"`
	UpdatePosted             *Bool      `xmlrpc:"update_posted,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 AccountJournals

type AccountJournals []AccountJournal

AccountJournals represents array of account.journal model.

type Base

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

Base represents base model.

func (*Base) Many2One

func (b *Base) Many2One() *Many2One

Many2One convert Base to *Many2One.

type BaseDocumentLayout

type BaseDocumentLayout struct {
	LastUpdate             *Time      `xmlrpc:"__last_update,omptempty"`
	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"`
	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 {
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	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"`
	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 {
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	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"`
	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 {
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,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 {
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,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 {
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,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 {
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,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 {
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,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 {
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,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 {
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	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"`
	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 {
	LastUpdate  *Time     `xmlrpc:"__last_update,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"`
	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 {
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,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 {
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,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 {
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,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 {
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,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 {
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,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 {
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,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 {
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,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 {
	LastUpdate  *Time      `xmlrpc:"__last_update,omptempty"`
	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"`
	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 {
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	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"`
	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 {
	LastUpdate  *Time      `xmlrpc:"__last_update,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"`
	Overwrite   *Bool      `xmlrpc:"overwrite,omptempty"`
	State       *Selection `xmlrpc:"state,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 {
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,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 {
	LastUpdate  *Time      `xmlrpc:"__last_update,omptempty"`
	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"`
	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 {
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,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 {
	LastUpdate         *Time      `xmlrpc:"__last_update,omptempty"`
	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"`
	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 {
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	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"`
	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 {
	LastUpdate  *Time      `xmlrpc:"__last_update,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"`
	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 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 ChangePasswordUser

type ChangePasswordUser struct {
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,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 {
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,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) CreateAccountAnalyticAccount

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

CreateAccountAnalyticAccount creates a new account.analytic.account 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) CreateAccountInvoice

func (c *Client) CreateAccountInvoice(ai *AccountInvoice) (int64, error)

CreateAccountInvoice creates a new account.invoice model and returns its id.

func (*Client) CreateAccountInvoiceLine

func (c *Client) CreateAccountInvoiceLine(ail *AccountInvoiceLine) (int64, error)

CreateAccountInvoiceLine creates a new account.invoice.line 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) 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) 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) CreateCrmLead

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

CreateCrmLead creates a new crm.lead 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) CreateDecimalPrecision

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

CreateDecimalPrecision creates a new decimal.precision 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) 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) 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) CreateProjectProject

func (c *Client) CreateProjectProject(pp *ProjectProject) (int64, error)

CreateProjectProject creates a new project.project 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) CreateReportBaseReportIrmodulereference

func (c *Client) CreateReportBaseReportIrmodulereference(rbr *ReportBaseReportIrmodulereference) (int64, error)

CreateReportBaseReportIrmodulereference creates a new report.base.report_irmodulereference 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) 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) 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) CreateResetViewArchWizard

func (c *Client) CreateResetViewArchWizard(rvaw *ResetViewArchWizard) (int64, error)

CreateResetViewArchWizard creates a new reset.view.arch.wizard 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) 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) DeleteAccountAccounts

func (c *Client) DeleteAccountAccounts(ids []int64) error

DeleteAccountAccounts deletes existing account.account 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) 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) DeleteAccountInvoice

func (c *Client) DeleteAccountInvoice(id int64) error

DeleteAccountInvoice deletes an existing account.invoice record.

func (*Client) DeleteAccountInvoiceLine

func (c *Client) DeleteAccountInvoiceLine(id int64) error

DeleteAccountInvoiceLine deletes an existing account.invoice.line record.

func (*Client) DeleteAccountInvoiceLines

func (c *Client) DeleteAccountInvoiceLines(ids []int64) error

DeleteAccountInvoiceLines deletes existing account.invoice.line records.

func (*Client) DeleteAccountInvoices

func (c *Client) DeleteAccountInvoices(ids []int64) error

DeleteAccountInvoices deletes existing account.invoice records.

func (*Client) DeleteAccountJournal

func (c *Client) DeleteAccountJournal(id int64) error

DeleteAccountJournal deletes an existing account.journal record.

func (*Client) DeleteAccountJournals

func (c *Client) DeleteAccountJournals(ids []int64) error

DeleteAccountJournals deletes existing account.journal 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) 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) DeleteCrmLead

func (c *Client) DeleteCrmLead(id int64) error

DeleteCrmLead deletes an existing crm.lead record.

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

func (c *Client) DeleteProjectTask(id int64) error

DeleteProjectTask deletes an existing project.task record.

func (*Client) DeleteProjectTasks

func (c *Client) DeleteProjectTasks(ids []int64) error

DeleteProjectTasks deletes existing project.task 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) 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) 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) 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) 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) 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) 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) 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) 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) FindAccountInvoice

func (c *Client) FindAccountInvoice(criteria *Criteria) (*AccountInvoice, error)

FindAccountInvoice finds account.invoice record by querying it with criteria.

func (*Client) FindAccountInvoiceId

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

FindAccountInvoiceId finds record id by querying it with criteria.

func (*Client) FindAccountInvoiceIds

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

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

func (*Client) FindAccountInvoiceLine

func (c *Client) FindAccountInvoiceLine(criteria *Criteria) (*AccountInvoiceLine, error)

FindAccountInvoiceLine finds account.invoice.line record by querying it with criteria.

func (*Client) FindAccountInvoiceLineId

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

FindAccountInvoiceLineId finds record id by querying it with criteria.

func (*Client) FindAccountInvoiceLineIds

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

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

func (*Client) FindAccountInvoiceLines

func (c *Client) FindAccountInvoiceLines(criteria *Criteria, options *Options) (*AccountInvoiceLines, error)

FindAccountInvoiceLines finds account.invoice.line records by querying it and filtering it with criteria and options.

func (*Client) FindAccountInvoices

func (c *Client) FindAccountInvoices(criteria *Criteria, options *Options) (*AccountInvoices, error)

FindAccountInvoices finds account.invoice 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) 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) 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) 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) FindCrmLead

func (c *Client) FindCrmLead(criteria *Criteria) (*CrmLead, error)

FindCrmLead finds crm.lead record by querying it with criteria.

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

func (c *Client) GetAccountAccounts(ids []int64) (*AccountAccounts, error)

GetAccountAccounts gets account.account 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) 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) GetAccountInvoice

func (c *Client) GetAccountInvoice(id int64) (*AccountInvoice, error)

GetAccountInvoice gets account.invoice existing record.

func (*Client) GetAccountInvoiceLine

func (c *Client) GetAccountInvoiceLine(id int64) (*AccountInvoiceLine, error)

GetAccountInvoiceLine gets account.invoice.line existing record.

func (*Client) GetAccountInvoiceLines

func (c *Client) GetAccountInvoiceLines(ids []int64) (*AccountInvoiceLines, error)

GetAccountInvoiceLines gets account.invoice.line existing records.

func (*Client) GetAccountInvoices

func (c *Client) GetAccountInvoices(ids []int64) (*AccountInvoices, error)

GetAccountInvoices gets account.invoice existing records.

func (*Client) GetAccountJournal

func (c *Client) GetAccountJournal(id int64) (*AccountJournal, error)

GetAccountJournal gets account.journal existing record.

func (*Client) GetAccountJournals

func (c *Client) GetAccountJournals(ids []int64) (*AccountJournals, error)

GetAccountJournals gets account.journal 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) 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) GetCrmLead

func (c *Client) GetCrmLead(id int64) (*CrmLead, error)

GetCrmLead gets crm.lead existing record.

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

func (c *Client) GetProjectTask(id int64) (*ProjectTask, error)

GetProjectTask gets project.task existing record.

func (*Client) GetProjectTasks

func (c *Client) GetProjectTasks(ids []int64) (*ProjectTasks, error)

GetProjectTasks gets project.task 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) 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) 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) 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) 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) 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) 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) 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) 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) 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) UpdateAccountInvoice

func (c *Client) UpdateAccountInvoice(ai *AccountInvoice) error

UpdateAccountInvoice updates an existing account.invoice record.

func (*Client) UpdateAccountInvoiceLine

func (c *Client) UpdateAccountInvoiceLine(ail *AccountInvoiceLine) error

UpdateAccountInvoiceLine updates an existing account.invoice.line record.

func (*Client) UpdateAccountInvoiceLines

func (c *Client) UpdateAccountInvoiceLines(ids []int64, ail *AccountInvoiceLine) error

UpdateAccountInvoiceLines updates existing account.invoice.line records. All records (represented by ids) will be updated by ail values.

func (*Client) UpdateAccountInvoices

func (c *Client) UpdateAccountInvoices(ids []int64, ai *AccountInvoice) error

UpdateAccountInvoices updates existing account.invoice records. All records (represented by ids) will be updated by ai values.

func (*Client) UpdateAccountJournal

func (c *Client) UpdateAccountJournal(aj *AccountJournal) error

UpdateAccountJournal updates an existing account.journal record.

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

func (c *Client) UpdateCrmLead(cl *CrmLead) error

UpdateCrmLead updates an existing crm.lead record.

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

func (c *Client) UpdateProjectTask(pt *ProjectTask) error

UpdateProjectTask updates an existing project.task record.

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

type CrmLead struct {
	LastUpdate               *Time      `xmlrpc:"__last_update,omptempty"`
	Active                   *Bool      `xmlrpc:"active,omptempty"`
	ActivityDateDeadline     *Time      `xmlrpc:"activity_date_deadline,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"`
	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"`
	Function                 *String    `xmlrpc:"function,omptempty"`
	Id                       *Int       `xmlrpc:"id,omptempty"`
	KanbanState              *Selection `xmlrpc:"kanban_state,omptempty"`
	LostReason               *Many2One  `xmlrpc:"lost_reason,omptempty"`
	MachineLeadName          *String    `xmlrpc:"machine_lead_name,omptempty"`
	MediumId                 *Many2One  `xmlrpc:"medium_id,omptempty"`
	MeetingCount             *Int       `xmlrpc:"meeting_count,omptempty"`
	MessageBounce            *Int       `xmlrpc:"message_bounce,omptempty"`
	MessageChannelIds        *Relation  `xmlrpc:"message_channel_ids,omptempty"`
	MessageFollowerIds       *Relation  `xmlrpc:"message_follower_ids,omptempty"`
	MessageIds               *Relation  `xmlrpc:"message_ids,omptempty"`
	MessageIsFollower        *Bool      `xmlrpc:"message_is_follower,omptempty"`
	MessageLastPost          *Time      `xmlrpc:"message_last_post,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"`
	OrderIds                 *Relation  `xmlrpc:"order_ids,omptempty"`
	PartnerAddressEmail      *String    `xmlrpc:"partner_address_email,omptempty"`
	PartnerAddressName       *String    `xmlrpc:"partner_address_name,omptempty"`
	PartnerId                *Many2One  `xmlrpc:"partner_id,omptempty"`
	PartnerName              *String    `xmlrpc:"partner_name,omptempty"`
	Phone                    *String    `xmlrpc:"phone,omptempty"`
	PlannedRevenue           *Float     `xmlrpc:"planned_revenue,omptempty"`
	Priority                 *Selection `xmlrpc:"priority,omptempty"`
	Probability              *Float     `xmlrpc:"probability,omptempty"`
	Referred                 *String    `xmlrpc:"referred,omptempty"`
	SaleAmountTotal          *Float     `xmlrpc:"sale_amount_total,omptempty"`
	SaleNumber               *Int       `xmlrpc:"sale_number,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"`
	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 CrmLeadTag

type CrmLeadTag struct {
	LastUpdate  *Time     `xmlrpc:"__last_update,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"`
	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 DecimalPrecision

type DecimalPrecision struct {
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	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"`
	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 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 {
	LastUpdate  *Time   `xmlrpc:"__last_update,omptempty"`
	DisplayName *String `xmlrpc:"display_name,omptempty"`
	Id          *Int    `xmlrpc:"id,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 ImageMixin

type ImageMixin struct {
	LastUpdate  *Time   `xmlrpc:"__last_update,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"`
}

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 {
	LastUpdate       *Time      `xmlrpc:"__last_update,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"`
	Help             *String    `xmlrpc:"help,omptempty"`
	Id               *Int       `xmlrpc:"id,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 {
	LastUpdate       *Time      `xmlrpc:"__last_update,omptempty"`
	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"`
	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 {
	LastUpdate       *Time      `xmlrpc:"__last_update,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"`
	Help             *String    `xmlrpc:"help,omptempty"`
	Id               *Int       `xmlrpc:"id,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 {
	LastUpdate  *Time      `xmlrpc:"__last_update,omptempty"`
	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"`
	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 {
	LastUpdate       *Time      `xmlrpc:"__last_update,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"`
	Help             *String    `xmlrpc:"help,omptempty"`
	Id               *Int       `xmlrpc:"id,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 {
	LastUpdate       *Time      `xmlrpc:"__last_update,omptempty"`
	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"`
	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 {
	LastUpdate       *Time      `xmlrpc:"__last_update,omptempty"`
	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"`
	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 {
	LastUpdate       *Time      `xmlrpc:"__last_update,omptempty"`
	BindingModelId   *Many2One  `xmlrpc:"binding_model_id,omptempty"`
	BindingType      *Selection `xmlrpc:"binding_type,omptempty"`
	BindingViewTypes *String    `xmlrpc:"binding_view_types,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"`
	LinkFieldId      *Many2One  `xmlrpc:"link_field_id,omptempty"`
	ModelId          *Many2One  `xmlrpc:"model_id,omptempty"`
	ModelName        *String    `xmlrpc:"model_name,omptempty"`
	Name             *String    `xmlrpc:"name,omptempty"`
	Sequence         *Int       `xmlrpc:"sequence,omptempty"`
	State            *Selection `xmlrpc:"state,omptempty"`
	Type             *String    `xmlrpc:"type,omptempty"`
	Usage            *Selection `xmlrpc:"usage,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 {
	LastUpdate  *Time      `xmlrpc:"__last_update,omptempty"`
	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"`
	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 {
	LastUpdate   *Time      `xmlrpc:"__last_update,omptempty"`
	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"`
	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"`
	Type         *Selection `xmlrpc:"type,omptempty"`
	Url          *String    `xmlrpc:"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 {
	LastUpdate  *Time   `xmlrpc:"__last_update,omptempty"`
	DisplayName *String `xmlrpc:"display_name,omptempty"`
	Id          *Int    `xmlrpc:"id,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 {
	LastUpdate  *Time     `xmlrpc:"__last_update,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"`
	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 {
	LastUpdate        *Time      `xmlrpc:"__last_update,omptempty"`
	Active            *Bool      `xmlrpc:"active,omptempty"`
	BindingModelId    *Many2One  `xmlrpc:"binding_model_id,omptempty"`
	BindingType       *Selection `xmlrpc:"binding_type,omptempty"`
	BindingViewTypes  *String    `xmlrpc:"binding_view_types,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"`
	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"`
	Priority          *Int       `xmlrpc:"priority,omptempty"`
	Sequence          *Int       `xmlrpc:"sequence,omptempty"`
	State             *Selection `xmlrpc:"state,omptempty"`
	Type              *String    `xmlrpc:"type,omptempty"`
	Usage             *Selection `xmlrpc:"usage,omptempty"`
	UserId            *Many2One  `xmlrpc:"user_id,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 {
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	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"`
	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 {
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,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 {
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	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"`
	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 {
	LastUpdate    *Time     `xmlrpc:"__last_update,omptempty"`
	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"`
	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 {
	LastUpdate   *Time     `xmlrpc:"__last_update,omptempty"`
	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"`
	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 {
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	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"`
	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 {
	LastUpdate  *Time   `xmlrpc:"__last_update,omptempty"`
	DisplayName *String `xmlrpc:"display_name,omptempty"`
	Id          *Int    `xmlrpc:"id,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 {
	LastUpdate  *Time      `xmlrpc:"__last_update,omptempty"`
	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"`
	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 {
	LastUpdate  *Time   `xmlrpc:"__last_update,omptempty"`
	DisplayName *String `xmlrpc:"display_name,omptempty"`
	Id          *Int    `xmlrpc:"id,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 {
	LastUpdate  *Time      `xmlrpc:"__last_update,omptempty"`
	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"`
	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 {
	LastUpdate     *Time      `xmlrpc:"__last_update,omptempty"`
	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"`
	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 {
	LastUpdate        *Time      `xmlrpc:"__last_update,omptempty"`
	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"`
	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"`
	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 {
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	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"`
	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 {
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	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"`
	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 {
	LastUpdate   *Time     `xmlrpc:"__last_update,omptempty"`
	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"`
	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 {
	LastUpdate       *Time      `xmlrpc:"__last_update,omptempty"`
	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"`
	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"`
	Translate        *Bool      `xmlrpc:"translate,omptempty"`
	Ttype            *Selection `xmlrpc:"ttype,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 {
	LastUpdate  *Time     `xmlrpc:"__last_update,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"`
	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 {
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,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 {
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	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"`
	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 {
	LastUpdate       *Time      `xmlrpc:"__last_update,omptempty"`
	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"`
	InstalledVersion *String    `xmlrpc:"installed_version,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 {
	LastUpdate          *Time      `xmlrpc:"__last_update,omptempty"`
	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"`
	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 {
	LastUpdate  *Time      `xmlrpc:"__last_update,omptempty"`
	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"`
	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 {
	LastUpdate     *Time      `xmlrpc:"__last_update,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"`
	FieldsId       *Many2One  `xmlrpc:"fields_id,omptempty"`
	Id             *Int       `xmlrpc:"id,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 {
	LastUpdate  *Time   `xmlrpc:"__last_update,omptempty"`
	DisplayName *String `xmlrpc:"display_name,omptempty"`
	Id          *Int    `xmlrpc:"id,omptempty"`
}

IrQweb represents ir.qweb model.

func (*IrQweb) Many2One

func (iq *IrQweb) Many2One() *Many2One

Many2One convert IrQweb to *Many2One.

type IrQwebField

type IrQwebField struct {
	LastUpdate  *Time   `xmlrpc:"__last_update,omptempty"`
	DisplayName *String `xmlrpc:"display_name,omptempty"`
	Id          *Int    `xmlrpc:"id,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 {
	LastUpdate  *Time   `xmlrpc:"__last_update,omptempty"`
	DisplayName *String `xmlrpc:"display_name,omptempty"`
	Id          *Int    `xmlrpc:"id,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 {
	LastUpdate  *Time   `xmlrpc:"__last_update,omptempty"`
	DisplayName *String `xmlrpc:"display_name,omptempty"`
	Id          *Int    `xmlrpc:"id,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 {
	LastUpdate  *Time   `xmlrpc:"__last_update,omptempty"`
	DisplayName *String `xmlrpc:"display_name,omptempty"`
	Id          *Int    `xmlrpc:"id,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 {
	LastUpdate  *Time   `xmlrpc:"__last_update,omptempty"`
	DisplayName *String `xmlrpc:"display_name,omptempty"`
	Id          *Int    `xmlrpc:"id,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 {
	LastUpdate  *Time   `xmlrpc:"__last_update,omptempty"`
	DisplayName *String `xmlrpc:"display_name,omptempty"`
	Id          *Int    `xmlrpc:"id,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 {
	LastUpdate  *Time   `xmlrpc:"__last_update,omptempty"`
	DisplayName *String `xmlrpc:"display_name,omptempty"`
	Id          *Int    `xmlrpc:"id,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 {
	LastUpdate  *Time   `xmlrpc:"__last_update,omptempty"`
	DisplayName *String `xmlrpc:"display_name,omptempty"`
	Id          *Int    `xmlrpc:"id,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 {
	LastUpdate  *Time   `xmlrpc:"__last_update,omptempty"`
	DisplayName *String `xmlrpc:"display_name,omptempty"`
	Id          *Int    `xmlrpc:"id,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 {
	LastUpdate  *Time   `xmlrpc:"__last_update,omptempty"`
	DisplayName *String `xmlrpc:"display_name,omptempty"`
	Id          *Int    `xmlrpc:"id,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 {
	LastUpdate  *Time   `xmlrpc:"__last_update,omptempty"`
	DisplayName *String `xmlrpc:"display_name,omptempty"`
	Id          *Int    `xmlrpc:"id,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 {
	LastUpdate  *Time   `xmlrpc:"__last_update,omptempty"`
	DisplayName *String `xmlrpc:"display_name,omptempty"`
	Id          *Int    `xmlrpc:"id,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 {
	LastUpdate  *Time   `xmlrpc:"__last_update,omptempty"`
	DisplayName *String `xmlrpc:"display_name,omptempty"`
	Id          *Int    `xmlrpc:"id,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 {
	LastUpdate  *Time   `xmlrpc:"__last_update,omptempty"`
	DisplayName *String `xmlrpc:"display_name,omptempty"`
	Id          *Int    `xmlrpc:"id,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 {
	LastUpdate  *Time   `xmlrpc:"__last_update,omptempty"`
	DisplayName *String `xmlrpc:"display_name,omptempty"`
	Id          *Int    `xmlrpc:"id,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 {
	LastUpdate  *Time   `xmlrpc:"__last_update,omptempty"`
	DisplayName *String `xmlrpc:"display_name,omptempty"`
	Id          *Int    `xmlrpc:"id,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 {
	LastUpdate  *Time   `xmlrpc:"__last_update,omptempty"`
	DisplayName *String `xmlrpc:"display_name,omptempty"`
	Id          *Int    `xmlrpc:"id,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 {
	LastUpdate  *Time   `xmlrpc:"__last_update,omptempty"`
	DisplayName *String `xmlrpc:"display_name,omptempty"`
	Id          *Int    `xmlrpc:"id,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 {
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	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"`
	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 {
	LastUpdate       *Time      `xmlrpc:"__last_update,omptempty"`
	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"`
	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 {
	LastUpdate       *Time     `xmlrpc:"__last_update,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"`
	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 {
	LastUpdate     *Time      `xmlrpc:"__last_update,omptempty"`
	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"`
	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 {
	LastUpdate  *Time      `xmlrpc:"__last_update,omptempty"`
	Comments    *String    `xmlrpc:"comments,omptempty"`
	DisplayName *String    `xmlrpc:"display_name,omptempty"`
	Id          *Int       `xmlrpc:"id,omptempty"`
	Lang        *Selection `xmlrpc:"lang,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 {
	LastUpdate   *Time     `xmlrpc:"__last_update,omptempty"`
	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"`
	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 {
	LastUpdate         *Time      `xmlrpc:"__last_update,omptempty"`
	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"`
	DisplayName        *String    `xmlrpc:"display_name,omptempty"`
	FieldParent        *String    `xmlrpc:"field_parent,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"`
	Key                *String    `xmlrpc:"key,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"`
	Priority           *Int       `xmlrpc:"priority,omptempty"`
	Type               *Selection `xmlrpc:"type,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 {
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	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"`
	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 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 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) 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) 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 ProductProduct

type ProductProduct struct {
	LastUpdate                             *Time      `xmlrpc:"__last_update,omptempty"`
	Active                                 *Bool      `xmlrpc:"active,omptempty"`
	ActivityDateDeadline                   *Time      `xmlrpc:"activity_date_deadline,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"`
	AttributeValueIds                      *Relation  `xmlrpc:"attribute_value_ids,omptempty"`
	Barcode                                *String    `xmlrpc:"barcode,omptempty"`
	CategId                                *Many2One  `xmlrpc:"categ_id,omptempty"`
	Code                                   *String    `xmlrpc:"code,omptempty"`
	Color                                  *Int       `xmlrpc:"color,omptempty"`
	CompanyId                              *Many2One  `xmlrpc:"company_id,omptempty"`
	CostMethod                             *String    `xmlrpc:"cost_method,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"`
	DescriptionPicking                     *String    `xmlrpc:"description_picking,omptempty"`
	DescriptionPickingin                   *String    `xmlrpc:"description_pickingin,omptempty"`
	DescriptionPickingout                  *String    `xmlrpc:"description_pickingout,omptempty"`
	DescriptionPurchase                    *String    `xmlrpc:"description_purchase,omptempty"`
	DescriptionSale                        *String    `xmlrpc:"description_sale,omptempty"`
	DisplayName                            *String    `xmlrpc:"display_name,omptempty"`
	ExpensePolicy                          *Selection `xmlrpc:"expense_policy,omptempty"`
	Id                                     *Int       `xmlrpc:"id,omptempty"`
	Image                                  *String    `xmlrpc:"image,omptempty"`
	ImageMedium                            *String    `xmlrpc:"image_medium,omptempty"`
	ImageSmall                             *String    `xmlrpc:"image_small,omptempty"`
	ImageVariant                           *String    `xmlrpc:"image_variant,omptempty"`
	IncomingQty                            *Float     `xmlrpc:"incoming_qty,omptempty"`
	InvoicePolicy                          *Selection `xmlrpc:"invoice_policy,omptempty"`
	IsProductVariant                       *Bool      `xmlrpc:"is_product_variant,omptempty"`
	ItemIds                                *Relation  `xmlrpc:"item_ids,omptempty"`
	ListPrice                              *Float     `xmlrpc:"list_price,omptempty"`
	LocationId                             *Many2One  `xmlrpc:"location_id,omptempty"`
	LstPrice                               *Float     `xmlrpc:"lst_price,omptempty"`
	MessageChannelIds                      *Relation  `xmlrpc:"message_channel_ids,omptempty"`
	MessageFollowerIds                     *Relation  `xmlrpc:"message_follower_ids,omptempty"`
	MessageIds                             *Relation  `xmlrpc:"message_ids,omptempty"`
	MessageIsFollower                      *Bool      `xmlrpc:"message_is_follower,omptempty"`
	MessageLastPost                        *Time      `xmlrpc:"message_last_post,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"`
	NbrReorderingRules                     *Int       `xmlrpc:"nbr_reordering_rules,omptempty"`
	OrderpointIds                          *Relation  `xmlrpc:"orderpoint_ids,omptempty"`
	OutgoingQty                            *Float     `xmlrpc:"outgoing_qty,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"`
	PricelistItemIds                       *Relation  `xmlrpc:"pricelist_item_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"`
	ProjectId                              *Many2One  `xmlrpc:"project_id,omptempty"`
	PropertyAccountCreditorPriceDifference *Many2One  `xmlrpc:"property_account_creditor_price_difference,omptempty"`
	PropertyAccountExpenseId               *Many2One  `xmlrpc:"property_account_expense_id,omptempty"`
	PropertyAccountIncomeId                *Many2One  `xmlrpc:"property_account_income_id,omptempty"`
	PropertyCostMethod                     *Selection `xmlrpc:"property_cost_method,omptempty"`
	PropertyStockAccountInput              *Many2One  `xmlrpc:"property_stock_account_input,omptempty"`
	PropertyStockAccountOutput             *Many2One  `xmlrpc:"property_stock_account_output,omptempty"`
	PropertyStockInventory                 *Many2One  `xmlrpc:"property_stock_inventory,omptempty"`
	PropertyStockProduction                *Many2One  `xmlrpc:"property_stock_production,omptempty"`
	PropertyValuation                      *Selection `xmlrpc:"property_valuation,omptempty"`
	PurchaseCount                          *Int       `xmlrpc:"purchase_count,omptempty"`
	PurchaseLineWarn                       *Selection `xmlrpc:"purchase_line_warn,omptempty"`
	PurchaseLineWarnMsg                    *String    `xmlrpc:"purchase_line_warn_msg,omptempty"`
	PurchaseMethod                         *Selection `xmlrpc:"purchase_method,omptempty"`
	PurchaseOk                             *Bool      `xmlrpc:"purchase_ok,omptempty"`
	QtyAtDate                              *Float     `xmlrpc:"qty_at_date,omptempty"`
	QtyAvailable                           *Float     `xmlrpc:"qty_available,omptempty"`
	Rental                                 *Bool      `xmlrpc:"rental,omptempty"`
	ReorderingMaxQty                       *Float     `xmlrpc:"reordering_max_qty,omptempty"`
	ReorderingMinQty                       *Float     `xmlrpc:"reordering_min_qty,omptempty"`
	ResponsibleId                          *Many2One  `xmlrpc:"responsible_id,omptempty"`
	RouteFromCategIds                      *Relation  `xmlrpc:"route_from_categ_ids,omptempty"`
	RouteIds                               *Relation  `xmlrpc:"route_ids,omptempty"`
	SaleDelay                              *Float     `xmlrpc:"sale_delay,omptempty"`
	SaleLineWarn                           *Selection `xmlrpc:"sale_line_warn,omptempty"`
	SaleLineWarnMsg                        *String    `xmlrpc:"sale_line_warn_msg,omptempty"`
	SaleOk                                 *Bool      `xmlrpc:"sale_ok,omptempty"`
	SalesCount                             *Int       `xmlrpc:"sales_count,omptempty"`
	SellerIds                              *Relation  `xmlrpc:"seller_ids,omptempty"`
	Sequence                               *Int       `xmlrpc:"sequence,omptempty"`
	ServicePolicy                          *Selection `xmlrpc:"service_policy,omptempty"`
	ServiceTracking                        *Selection `xmlrpc:"service_tracking,omptempty"`
	ServiceType                            *Selection `xmlrpc:"service_type,omptempty"`
	StandardPrice                          *Float     `xmlrpc:"standard_price,omptempty"`
	StockFifoManualMoveIds                 *Relation  `xmlrpc:"stock_fifo_manual_move_ids,omptempty"`
	StockFifoRealTimeAmlIds                *Relation  `xmlrpc:"stock_fifo_real_time_aml_ids,omptempty"`
	StockMoveIds                           *Relation  `xmlrpc:"stock_move_ids,omptempty"`
	StockQuantIds                          *Relation  `xmlrpc:"stock_quant_ids,omptempty"`
	StockValue                             *Float     `xmlrpc:"stock_value,omptempty"`
	SupplierTaxesId                        *Relation  `xmlrpc:"supplier_taxes_id,omptempty"`
	TaxesId                                *Relation  `xmlrpc:"taxes_id,omptempty"`
	Tracking                               *Selection `xmlrpc:"tracking,omptempty"`
	Type                                   *Selection `xmlrpc:"type,omptempty"`
	UomId                                  *Many2One  `xmlrpc:"uom_id,omptempty"`
	UomPoId                                *Many2One  `xmlrpc:"uom_po_id,omptempty"`
	Valuation                              *String    `xmlrpc:"valuation,omptempty"`
	VariantSellerIds                       *Relation  `xmlrpc:"variant_seller_ids,omptempty"`
	VirtualAvailable                       *Float     `xmlrpc:"virtual_available,omptempty"`
	Volume                                 *Float     `xmlrpc:"volume,omptempty"`
	WarehouseId                            *Many2One  `xmlrpc:"warehouse_id,omptempty"`
	WebsiteMessageIds                      *Relation  `xmlrpc:"website_message_ids,omptempty"`
	Weight                                 *Float     `xmlrpc:"weight,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 {
	LastUpdate          *Time     `xmlrpc:"__last_update,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"`
	Delay               *Int      `xmlrpc:"delay,omptempty"`
	DisplayName         *String   `xmlrpc:"display_name,omptempty"`
	Id                  *Int      `xmlrpc:"id,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 ProjectProject

type ProjectProject struct {
	LastUpdate               *Time      `xmlrpc:"__last_update,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"`
	AllowTimesheets          *Bool      `xmlrpc:"allow_timesheets,omptempty"`
	AnalyticAccountId        *Many2One  `xmlrpc:"analytic_account_id,omptempty"`
	Balance                  *Float     `xmlrpc:"balance,omptempty"`
	Code                     *String    `xmlrpc:"code,omptempty"`
	Color                    *Int       `xmlrpc:"color,omptempty"`
	CompanyId                *Many2One  `xmlrpc:"company_id,omptempty"`
	CompanyUomId             *Many2One  `xmlrpc:"company_uom_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"`
	DateStart                *Time      `xmlrpc:"date_start,omptempty"`
	Debit                    *Float     `xmlrpc:"debit,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"`
	LineIds                  *Relation  `xmlrpc:"line_ids,omptempty"`
	MachineProjectName       *String    `xmlrpc:"machine_project_name,omptempty"`
	MessageChannelIds        *Relation  `xmlrpc:"message_channel_ids,omptempty"`
	MessageFollowerIds       *Relation  `xmlrpc:"message_follower_ids,omptempty"`
	MessageIds               *Relation  `xmlrpc:"message_ids,omptempty"`
	MessageIsFollower        *Bool      `xmlrpc:"message_is_follower,omptempty"`
	MessageLastPost          *Time      `xmlrpc:"message_last_post,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"`
	PortalUrl                *String    `xmlrpc:"portal_url,omptempty"`
	PrivacyVisibility        *Selection `xmlrpc:"privacy_visibility,omptempty"`
	ProjectCount             *Int       `xmlrpc:"project_count,omptempty"`
	ProjectCreated           *Bool      `xmlrpc:"project_created,omptempty"`
	ProjectIds               *Relation  `xmlrpc:"project_ids,omptempty"`
	ResourceCalendarId       *Many2One  `xmlrpc:"resource_calendar_id,omptempty"`
	SaleLineId               *Many2One  `xmlrpc:"sale_line_id,omptempty"`
	Sequence                 *Int       `xmlrpc:"sequence,omptempty"`
	SubtaskProjectId         *Many2One  `xmlrpc:"subtask_project_id,omptempty"`
	TagIds                   *Relation  `xmlrpc:"tag_ids,omptempty"`
	TaskCount                *Int       `xmlrpc:"task_count,omptempty"`
	TaskIds                  *Relation  `xmlrpc:"task_ids,omptempty"`
	TaskNeedactionCount      *Int       `xmlrpc:"task_needaction_count,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 ProjectTask

type ProjectTask struct {
	LastUpdate               *Time      `xmlrpc:"__last_update,omptempty"`
	Active                   *Bool      `xmlrpc:"active,omptempty"`
	ActivityDateDeadline     *Time      `xmlrpc:"activity_date_deadline,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"`
	ChildrenHours            *Float     `xmlrpc:"children_hours,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"`
	DateEnd                  *Time      `xmlrpc:"date_end,omptempty"`
	DateLastStageUpdate      *Time      `xmlrpc:"date_last_stage_update,omptempty"`
	DateStart                *Time      `xmlrpc:"date_start,omptempty"`
	DelayHours               *Float     `xmlrpc:"delay_hours,omptempty"`
	Description              *String    `xmlrpc:"description,omptempty"`
	DisplayName              *String    `xmlrpc:"display_name,omptempty"`
	DisplayedImageId         *Many2One  `xmlrpc:"displayed_image_id,omptempty"`
	EffectiveHours           *Float     `xmlrpc:"effective_hours,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"`
	LegendBlocked            *String    `xmlrpc:"legend_blocked,omptempty"`
	LegendDone               *String    `xmlrpc:"legend_done,omptempty"`
	LegendNormal             *String    `xmlrpc:"legend_normal,omptempty"`
	ManagerId                *Many2One  `xmlrpc:"manager_id,omptempty"`
	MessageChannelIds        *Relation  `xmlrpc:"message_channel_ids,omptempty"`
	MessageFollowerIds       *Relation  `xmlrpc:"message_follower_ids,omptempty"`
	MessageIds               *Relation  `xmlrpc:"message_ids,omptempty"`
	MessageIsFollower        *Bool      `xmlrpc:"message_is_follower,omptempty"`
	MessageLastPost          *Time      `xmlrpc:"message_last_post,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"`
	ParentId                 *Many2One  `xmlrpc:"parent_id,omptempty"`
	PartnerId                *Many2One  `xmlrpc:"partner_id,omptempty"`
	PlannedHours             *Float     `xmlrpc:"planned_hours,omptempty"`
	PortalUrl                *String    `xmlrpc:"portal_url,omptempty"`
	Priority                 *Selection `xmlrpc:"priority,omptempty"`
	Progress                 *Float     `xmlrpc:"progress,omptempty"`
	ProjectId                *Many2One  `xmlrpc:"project_id,omptempty"`
	RemainingHours           *Float     `xmlrpc:"remaining_hours,omptempty"`
	SaleLineId               *Many2One  `xmlrpc:"sale_line_id,omptempty"`
	Sequence                 *Int       `xmlrpc:"sequence,omptempty"`
	StageId                  *Many2One  `xmlrpc:"stage_id,omptempty"`
	SubtaskCount             *Int       `xmlrpc:"subtask_count,omptempty"`
	SubtaskProjectId         *Many2One  `xmlrpc:"subtask_project_id,omptempty"`
	TagIds                   *Relation  `xmlrpc:"tag_ids,omptempty"`
	TimesheetIds             *Relation  `xmlrpc:"timesheet_ids,omptempty"`
	TotalHours               *Float     `xmlrpc:"total_hours,omptempty"`
	TotalHoursSpent          *Float     `xmlrpc:"total_hours_spent,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 ProjectTasks

type ProjectTasks []ProjectTask

ProjectTasks represents array of project.task 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 ReportBaseReportIrmodulereference

type ReportBaseReportIrmodulereference struct {
	LastUpdate  *Time   `xmlrpc:"__last_update,omptempty"`
	DisplayName *String `xmlrpc:"display_name,omptempty"`
	Id          *Int    `xmlrpc:"id,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 ReportLayout

type ReportLayout struct {
	LastUpdate  *Time     `xmlrpc:"__last_update,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"`
	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 {
	LastUpdate      *Time      `xmlrpc:"__last_update,omptempty"`
	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"`
	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 ResBank

type ResBank struct {
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	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"`
	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 {
	LastUpdate                 *Time      `xmlrpc:"__last_update,omptempty"`
	AccountNo                  *String    `xmlrpc:"account_no,omptempty"`
	BankIds                    *Relation  `xmlrpc:"bank_ids,omptempty"`
	BaseOnboardingCompanyState *Selection `xmlrpc:"base_onboarding_company_state,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"`
	CurrencyId                 *Many2One  `xmlrpc:"currency_id,omptempty"`
	DisplayName                *String    `xmlrpc:"display_name,omptempty"`
	Email                      *String    `xmlrpc:"email,omptempty"`
	ExternalReportLayoutId     *Many2One  `xmlrpc:"external_report_layout_id,omptempty"`
	Favicon                    *String    `xmlrpc:"favicon,omptempty"`
	Font                       *Selection `xmlrpc:"font,omptempty"`
	Id                         *Int       `xmlrpc:"id,omptempty"`
	LogoWeb                    *String    `xmlrpc:"logo_web,omptempty"`
	Name                       *String    `xmlrpc:"name,omptempty"`
	PaperformatId              *Many2One  `xmlrpc:"paperformat_id,omptempty"`
	ParentId                   *Many2One  `xmlrpc:"parent_id,omptempty"`
	PartnerId                  *Many2One  `xmlrpc:"partner_id,omptempty"`
	Phone                      *String    `xmlrpc:"phone,omptempty"`
	PrimaryColor               *String    `xmlrpc:"primary_color,omptempty"`
	ReportFooter               *String    `xmlrpc:"report_footer,omptempty"`
	ReportHeader               *String    `xmlrpc:"report_header,omptempty"`
	SecondaryColor             *String    `xmlrpc:"secondary_color,omptempty"`
	Sequence                   *Int       `xmlrpc:"sequence,omptempty"`
	StateId                    *Many2One  `xmlrpc:"state_id,omptempty"`
	Street                     *String    `xmlrpc:"street,omptempty"`
	Street2                    *String    `xmlrpc:"street2,omptempty"`
	UserIds                    *Relation  `xmlrpc:"user_ids,omptempty"`
	Vat                        *String    `xmlrpc:"vat,omptempty"`
	Website                    *String    `xmlrpc:"website,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 {
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,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 {
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,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 {
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,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 {
	LastUpdate      *Time      `xmlrpc:"__last_update,omptempty"`
	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"`
	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 {
	LastUpdate  *Time     `xmlrpc:"__last_update,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"`
	Name        *String   `xmlrpc:"name,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 {
	LastUpdate  *Time     `xmlrpc:"__last_update,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"`
	Id          *Int      `xmlrpc:"id,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 {
	LastUpdate           *Time      `xmlrpc:"__last_update,omptempty"`
	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"`
	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 {
	LastUpdate  *Time     `xmlrpc:"__last_update,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"`
	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 {
	LastUpdate      *Time     `xmlrpc:"__last_update,omptempty"`
	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"`
	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 {
	LastUpdate   *Time      `xmlrpc:"__last_update,omptempty"`
	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"`
	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 {
	LastUpdate            *Time      `xmlrpc:"__last_update,omptempty"`
	Active                *Bool      `xmlrpc:"active,omptempty"`
	ActiveLangCount       *Int       `xmlrpc:"active_lang_count,omptempty"`
	BankIds               *Relation  `xmlrpc:"bank_ids,omptempty"`
	CategoryId            *Relation  `xmlrpc:"category_id,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"`
	CountryId             *Many2One  `xmlrpc:"country_id,omptempty"`
	CreateDate            *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid             *Many2One  `xmlrpc:"create_uid,omptempty"`
	CreditLimit           *Float     `xmlrpc:"credit_limit,omptempty"`
	Date                  *Time      `xmlrpc:"date,omptempty"`
	DisplayName           *String    `xmlrpc:"display_name,omptempty"`
	Email                 *String    `xmlrpc:"email,omptempty"`
	EmailFormatted        *String    `xmlrpc:"email_formatted,omptempty"`
	Employee              *Bool      `xmlrpc:"employee,omptempty"`
	Function              *String    `xmlrpc:"function,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"`
	IndustryId            *Many2One  `xmlrpc:"industry_id,omptempty"`
	IsCompany             *Bool      `xmlrpc:"is_company,omptempty"`
	Lang                  *Selection `xmlrpc:"lang,omptempty"`
	Mobile                *String    `xmlrpc:"mobile,omptempty"`
	Name                  *String    `xmlrpc:"name,omptempty"`
	ParentId              *Many2One  `xmlrpc:"parent_id,omptempty"`
	ParentName            *String    `xmlrpc:"parent_name,omptempty"`
	PartnerLatitude       *Float     `xmlrpc:"partner_latitude,omptempty"`
	PartnerLongitude      *Float     `xmlrpc:"partner_longitude,omptempty"`
	PartnerShare          *Bool      `xmlrpc:"partner_share,omptempty"`
	Phone                 *String    `xmlrpc:"phone,omptempty"`
	Ref                   *String    `xmlrpc:"ref,omptempty"`
	SameVatPartnerId      *Many2One  `xmlrpc:"same_vat_partner_id,omptempty"`
	Self                  *Many2One  `xmlrpc:"self,omptempty"`
	StateId               *Many2One  `xmlrpc:"state_id,omptempty"`
	Street                *String    `xmlrpc:"street,omptempty"`
	Street2               *String    `xmlrpc:"street2,omptempty"`
	Title                 *Many2One  `xmlrpc:"title,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"`
	Website               *String    `xmlrpc:"website,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 ResPartnerBank

type ResPartnerBank struct {
	LastUpdate         *Time      `xmlrpc:"__last_update,omptempty"`
	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"`
	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 {
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	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"`
	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 {
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	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"`
	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 {
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,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 {
	LastUpdate            *Time      `xmlrpc:"__last_update,omptempty"`
	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"`
	BankIds               *Relation  `xmlrpc:"bank_ids,omptempty"`
	CategoryId            *Relation  `xmlrpc:"category_id,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"`
	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"`
	CountryId             *Many2One  `xmlrpc:"country_id,omptempty"`
	CreateDate            *Time      `xmlrpc:"create_date,omptempty"`
	CreateUid             *Many2One  `xmlrpc:"create_uid,omptempty"`
	CreditLimit           *Float     `xmlrpc:"credit_limit,omptempty"`
	Date                  *Time      `xmlrpc:"date,omptempty"`
	DisplayName           *String    `xmlrpc:"display_name,omptempty"`
	Email                 *String    `xmlrpc:"email,omptempty"`
	EmailFormatted        *String    `xmlrpc:"email_formatted,omptempty"`
	Employee              *Bool      `xmlrpc:"employee,omptempty"`
	Function              *String    `xmlrpc:"function,omptempty"`
	GroupsCount           *Int       `xmlrpc:"groups_count,omptempty"`
	GroupsId              *Relation  `xmlrpc:"groups_id,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"`
	IndustryId            *Many2One  `xmlrpc:"industry_id,omptempty"`
	IsCompany             *Bool      `xmlrpc:"is_company,omptempty"`
	Lang                  *Selection `xmlrpc:"lang,omptempty"`
	LogIds                *Relation  `xmlrpc:"log_ids,omptempty"`
	Login                 *String    `xmlrpc:"login,omptempty"`
	LoginDate             *Time      `xmlrpc:"login_date,omptempty"`
	Mobile                *String    `xmlrpc:"mobile,omptempty"`
	Name                  *String    `xmlrpc:"name,omptempty"`
	NewPassword           *String    `xmlrpc:"new_password,omptempty"`
	ParentId              *Many2One  `xmlrpc:"parent_id,omptempty"`
	ParentName            *String    `xmlrpc:"parent_name,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"`
	Password              *String    `xmlrpc:"password,omptempty"`
	Phone                 *String    `xmlrpc:"phone,omptempty"`
	Ref                   *String    `xmlrpc:"ref,omptempty"`
	RulesCount            *Int       `xmlrpc:"rules_count,omptempty"`
	SameVatPartnerId      *Many2One  `xmlrpc:"same_vat_partner_id,omptempty"`
	Self                  *Many2One  `xmlrpc:"self,omptempty"`
	Share                 *Bool      `xmlrpc:"share,omptempty"`
	Signature             *String    `xmlrpc:"signature,omptempty"`
	StateId               *Many2One  `xmlrpc:"state_id,omptempty"`
	Street                *String    `xmlrpc:"street,omptempty"`
	Street2               *String    `xmlrpc:"street2,omptempty"`
	Title                 *Many2One  `xmlrpc:"title,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"`
	Website               *String    `xmlrpc:"website,omptempty"`
	WriteDate             *Time      `xmlrpc:"write_date,omptempty"`
	WriteUid              *Many2One  `xmlrpc:"write_uid,omptempty"`
	Zip                   *String    `xmlrpc:"zip,omptempty"`
}

ResUsers represents res.users model.

func (*ResUsers) Many2One

func (ru *ResUsers) Many2One() *Many2One

Many2One convert ResUsers to *Many2One.

type ResUsersLog

type ResUsersLog struct {
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,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 {
	LastUpdate  *Time      `xmlrpc:"__last_update,omptempty"`
	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"`
	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 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 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 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 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 {
	LastUpdate  *Time   `xmlrpc:"__last_update,omptempty"`
	DisplayName *String `xmlrpc:"display_name,omptempty"`
	Id          *Int    `xmlrpc:"id,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 {
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,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 {
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,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 WizardIrModelMenuCreate

type WizardIrModelMenuCreate struct {
	LastUpdate  *Time     `xmlrpc:"__last_update,omptempty"`
	CreateDate  *Time     `xmlrpc:"create_date,omptempty"`
	CreateUid   *Many2One `xmlrpc:"create_uid,omptempty"`
	DisplayName *String   `xmlrpc:"display_name,omptempty"`
	Id          *Int      `xmlrpc:"id,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