connectwisesellapi

package module
v0.0.0-...-638d5a2 Latest Latest
Warning

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

Go to latest
Published: May 28, 2026 License: MIT Imports: 20 Imported by: 0

README

Go API client for connectwisesellapi

Version 1.0

Overview

This API client was generated by the OpenAPI Generator project. By using the OpenAPI-spec from a remote server, you can easily generate an API client.

  • API version: 1.0
  • Package version: 1.0.0
  • Generator version: 7.22.0
  • Build package: org.openapitools.codegen.languages.GoClientCodegen

Installation

Import the package in a go file in your project and run go mod tidy:

import connectwisesellapi "github.com/ai-connor/connectwise-sell-api"

To use a proxy, set the environment variable HTTP_PROXY:

os.Setenv("HTTP_PROXY", "http://proxy_name:proxy_port")

Configuration of Server URL

Default configuration comes with Servers field that contains server objects as defined in the OpenAPI specification.

Select Server Configuration

For using other server than the one defined on index 0 set context value connectwisesellapi.ContextServerIndex of type int.

ctx := context.WithValue(context.Background(), connectwisesellapi.ContextServerIndex, 1)
Templated Server URL

Templated server URL is formatted using default variables from configuration or from context value connectwisesellapi.ContextServerVariables of type map[string]string.

ctx := context.WithValue(context.Background(), connectwisesellapi.ContextServerVariables, map[string]string{
	"basePath": "v2",
})

Note, enum values are always validated and all unused variables are silently ignored.

URLs Configuration per Operation

Each operation can use different server URL defined using OperationServers map in the Configuration. An operation is uniquely identified by "{classname}Service.{nickname}" string. Similar rules for overriding default operation server index and variables applies by using connectwisesellapi.ContextOperationServerIndices and connectwisesellapi.ContextOperationServerVariables context maps.

ctx := context.WithValue(context.Background(), connectwisesellapi.ContextOperationServerIndices, map[string]int{
	"{classname}Service.{nickname}": 2,
})
ctx = context.WithValue(context.Background(), connectwisesellapi.ContextOperationServerVariables, map[string]map[string]string{
	"{classname}Service.{nickname}": {
		"port": "8443",
	},
})

Documentation for API Endpoints

All URIs are relative to https://sellapi.quosalsell.com

Class Method HTTP request Description
QuoteCustomersAPI DeleteQuoteCustomerForQuoteCustomerID Delete /api/quotes/{quoteId}/customers/{id}
QuoteCustomersAPI GetQuoteCustomersForQuoteID Get /api/quotes/{quoteId}/customers
QuoteCustomersAPI PatchQuoteCustomerForQuoteCustomerID Patch /api/quotes/{quoteId}/customers/{id}
QuoteCustomersAPI PutQuoteCustomerForQuoteCustomerID Put /api/quotes/{quoteId}/customers/{id}
QuoteItemsAPI DeleteQuoteItemByID Delete /api/quoteItems/{id}
QuoteItemsAPI GetQuoteItemByID Get /api/quoteItems/{id}
QuoteItemsAPI GetQuoteItems Get /api/quoteItems
QuoteItemsAPI PatchQuoteItemByID Patch /api/quoteItems/{id}
QuoteItemsAPI PostQuoteItem Post /api/quoteItems
QuoteTabsAPI GetQuoteItemsByTabId Get /api/quoteTabs/{id}/quoteItems
QuoteTabsAPI GetQuoteTabs Get /api/quoteTabs
QuoteTermsAPI AddQuoteTerm Post /api/quotes/{quoteId}/quoteTerms
QuoteTermsAPI DeleteQuoteTerm Delete /api/quotes/{quoteId}/quoteTerms/{id}
QuoteTermsAPI GetQuoteTerms Get /api/quotes/{quoteId}/quoteTerms
QuoteTermsAPI UpdateQuoteTerm Patch /api/quotes/{quoteId}/quoteTerms/{id}
QuotesAPI CopyQuote Post /api/quotes/copyById/{id}
QuotesAPI DeleteQuoteByID Delete /api/quotes/{id}
QuotesAPI DeleteQuoteByNumberAndVersion Delete /api/quotes/{quoteNumber}/versions/{quoteVersion}
QuotesAPI GetLatestVersionOfQuoteByQuoteNumber Get /api/quotes/{quoteNumber}/versions/latest
QuotesAPI GetQuoteByID Get /api/quotes/{id}
QuotesAPI GetQuoteByQuoteNumberAndVersion Get /api/quotes/{quoteNumber}/versions/{quoteVersion}
QuotesAPI GetQuotes Get /api/quotes
QuotesAPI GetQuotesByQuoteNumber Get /api/quotes/{quoteNumber}/versions
QuotesAPI PatchQuoteByID Patch /api/quotes/{id}
RecurringRevenueAPI GetRecurringRevenues Get /api/recurringRevenues
TaxCodeAPI GetTaxCodes Get /api/taxCodes
TemplatesAPI GetTemplates Get /api/templates
UserAPI GetUser Get /settings/user
UserAPI PatchUserByID Patch /settings/user/{id}

Documentation For Models

Documentation For Authorization

Authentication schemes defined for the API:

basic
  • Type: HTTP basic authentication

Example

auth := context.WithValue(context.Background(), connectwisesellapi.ContextBasicAuth, connectwisesellapi.BasicAuth{
	UserName: "username",
	Password: "password",
})
r, err := client.Service.Operation(auth, args)

Documentation for Utility Methods

Due to the fact that model structure members are all pointers, this package contains a number of utility functions to easily obtain pointers to values of basic types. Each of these functions takes a value of the given basic type and returns a pointer to it:

  • PtrBool
  • PtrInt
  • PtrInt32
  • PtrInt64
  • PtrFloat
  • PtrFloat32
  • PtrFloat64
  • PtrString
  • PtrTime

Author

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	JsonCheck = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?json)`)
	XmlCheck  = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?xml)`)
)
View Source
var (
	// ContextBasicAuth takes BasicAuth as authentication for the request.
	ContextBasicAuth = contextKey("basic")

	// ContextServerIndex uses a server configuration from the index.
	ContextServerIndex = contextKey("serverIndex")

	// ContextOperationServerIndices uses a server configuration from the index mapping.
	ContextOperationServerIndices = contextKey("serverOperationIndices")

	// ContextServerVariables overrides a server configuration variables.
	ContextServerVariables = contextKey("serverVariables")

	// ContextOperationServerVariables overrides a server configuration variables using operation specific values.
	ContextOperationServerVariables = contextKey("serverOperationVariables")
)

Functions

func CacheExpires

func CacheExpires(r *http.Response) time.Time

CacheExpires helper function to determine remaining time before repeating a request.

func IsNil

func IsNil(i interface{}) bool

IsNil checks if an input is nil

func PtrBool

func PtrBool(v bool) *bool

PtrBool is a helper routine that returns a pointer to given boolean value.

func PtrFloat32

func PtrFloat32(v float32) *float32

PtrFloat32 is a helper routine that returns a pointer to given float value.

func PtrFloat64

func PtrFloat64(v float64) *float64

PtrFloat64 is a helper routine that returns a pointer to given float value.

func PtrInt

func PtrInt(v int) *int

PtrInt is a helper routine that returns a pointer to given integer value.

func PtrInt32

func PtrInt32(v int32) *int32

PtrInt32 is a helper routine that returns a pointer to given integer value.

func PtrInt64

func PtrInt64(v int64) *int64

PtrInt64 is a helper routine that returns a pointer to given integer value.

func PtrString

func PtrString(v string) *string

PtrString is a helper routine that returns a pointer to given string value.

func PtrTime

func PtrTime(v time.Time) *time.Time

PtrTime is helper routine that returns a pointer to given Time value.

Types

type APIClient

type APIClient struct {
	QuoteCustomersAPI *QuoteCustomersAPIService

	QuoteItemsAPI *QuoteItemsAPIService

	QuoteTabsAPI *QuoteTabsAPIService

	QuoteTermsAPI *QuoteTermsAPIService

	QuotesAPI *QuotesAPIService

	RecurringRevenueAPI *RecurringRevenueAPIService

	TaxCodeAPI *TaxCodeAPIService

	TemplatesAPI *TemplatesAPIService

	UserAPI *UserAPIService
	// contains filtered or unexported fields
}

APIClient manages communication with the ConnectWiseSellService API v1.0 In most cases there should be only one, shared, APIClient.

func NewAPIClient

func NewAPIClient(cfg *Configuration) *APIClient

NewAPIClient creates a new API client. Requires a userAgent string describing your application. optionally a custom http.Client to allow for advanced features such as caching.

func (*APIClient) GetConfig

func (c *APIClient) GetConfig() *Configuration

Allow modification of underlying config for alternate implementations and testing Caution: modifying the configuration while live can cause data races and potentially unwanted behavior

type APIKey

type APIKey struct {
	Key    string
	Prefix string
}

APIKey provides API key based authentication to a request passed via context using ContextAPIKey

type APIResponse

type APIResponse struct {
	*http.Response `json:"-"`
	Message        string `json:"message,omitempty"`
	// Operation is the name of the OpenAPI operation.
	Operation string `json:"operation,omitempty"`
	// RequestURL is the request URL. This value is always available, even if the
	// embedded *http.Response is nil.
	RequestURL string `json:"url,omitempty"`
	// Method is the HTTP method used for the request.  This value is always
	// available, even if the embedded *http.Response is nil.
	Method string `json:"method,omitempty"`
	// Payload holds the contents of the response body (which may be nil or empty).
	// This is provided here as the raw response.Body() reader will have already
	// been drained.
	Payload []byte `json:"-"`
}

APIResponse stores the API response returned by the server.

func NewAPIResponse

func NewAPIResponse(r *http.Response) *APIResponse

NewAPIResponse returns a new APIResponse object.

func NewAPIResponseWithError

func NewAPIResponseWithError(errorMessage string) *APIResponse

NewAPIResponseWithError returns a new APIResponse object with the provided error message.

type ApiAddQuoteTermRequest

type ApiAddQuoteTermRequest struct {
	ApiService *QuoteTermsAPIService
	// contains filtered or unexported fields
}

func (ApiAddQuoteTermRequest) Execute

func (ApiAddQuoteTermRequest) RequestBody

func (r ApiAddQuoteTermRequest) RequestBody(requestBody QuoteTermView) ApiAddQuoteTermRequest

type ApiCopyQuoteRequest

type ApiCopyQuoteRequest struct {
	ApiService *QuotesAPIService
	// contains filtered or unexported fields
}

func (ApiCopyQuoteRequest) Execute

func (r ApiCopyQuoteRequest) Execute() (*QuoteView, *http.Response, error)

type ApiDeleteQuoteByIDRequest

type ApiDeleteQuoteByIDRequest struct {
	ApiService *QuotesAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteQuoteByIDRequest) Execute

func (r ApiDeleteQuoteByIDRequest) Execute() (*http.Response, error)

type ApiDeleteQuoteByNumberAndVersionRequest

type ApiDeleteQuoteByNumberAndVersionRequest struct {
	ApiService *QuotesAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteQuoteByNumberAndVersionRequest) Execute

type ApiDeleteQuoteCustomerForQuoteCustomerIDRequest

type ApiDeleteQuoteCustomerForQuoteCustomerIDRequest struct {
	ApiService *QuoteCustomersAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteQuoteCustomerForQuoteCustomerIDRequest) Execute

type ApiDeleteQuoteItemByIDRequest

type ApiDeleteQuoteItemByIDRequest struct {
	ApiService *QuoteItemsAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteQuoteItemByIDRequest) Execute

type ApiDeleteQuoteTermRequest

type ApiDeleteQuoteTermRequest struct {
	ApiService *QuoteTermsAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteQuoteTermRequest) Execute

func (r ApiDeleteQuoteTermRequest) Execute() (*http.Response, error)

type ApiGetLatestVersionOfQuoteByQuoteNumberRequest

type ApiGetLatestVersionOfQuoteByQuoteNumberRequest struct {
	ApiService *QuotesAPIService
	// contains filtered or unexported fields
}

func (ApiGetLatestVersionOfQuoteByQuoteNumberRequest) Execute

type ApiGetQuoteByIDRequest

type ApiGetQuoteByIDRequest struct {
	ApiService *QuotesAPIService
	// contains filtered or unexported fields
}

func (ApiGetQuoteByIDRequest) Execute

type ApiGetQuoteByQuoteNumberAndVersionRequest

type ApiGetQuoteByQuoteNumberAndVersionRequest struct {
	ApiService *QuotesAPIService
	// contains filtered or unexported fields
}

func (ApiGetQuoteByQuoteNumberAndVersionRequest) Execute

type ApiGetQuoteCustomersForQuoteIDRequest

type ApiGetQuoteCustomersForQuoteIDRequest struct {
	ApiService *QuoteCustomersAPIService
	// contains filtered or unexported fields
}

func (ApiGetQuoteCustomersForQuoteIDRequest) Execute

type ApiGetQuoteItemByIDRequest

type ApiGetQuoteItemByIDRequest struct {
	ApiService *QuoteItemsAPIService
	// contains filtered or unexported fields
}

func (ApiGetQuoteItemByIDRequest) Execute

type ApiGetQuoteItemsByTabIdRequest

type ApiGetQuoteItemsByTabIdRequest struct {
	ApiService *QuoteTabsAPIService
	// contains filtered or unexported fields
}

func (ApiGetQuoteItemsByTabIdRequest) Execute

type ApiGetQuoteItemsRequest

type ApiGetQuoteItemsRequest struct {
	ApiService *QuoteItemsAPIService
	// contains filtered or unexported fields
}

func (ApiGetQuoteItemsRequest) Conditions

func (r ApiGetQuoteItemsRequest) Conditions(conditions string) ApiGetQuoteItemsRequest

Conditional retrieve statements.

func (ApiGetQuoteItemsRequest) Execute

func (ApiGetQuoteItemsRequest) IncludeFields

func (r ApiGetQuoteItemsRequest) IncludeFields(includeFields string) ApiGetQuoteItemsRequest

Comma separated list of fields to return.

func (ApiGetQuoteItemsRequest) Page

Page of results to get. 1-index based.

func (ApiGetQuoteItemsRequest) PageSize

Page size of results to get. Max size 1000, default 50.

func (ApiGetQuoteItemsRequest) ShowAllVersions

func (r ApiGetQuoteItemsRequest) ShowAllVersions(showAllVersions bool) ApiGetQuoteItemsRequest

Set true for results from deleted or archived quotes. Set false to omit records from deleted or archive quotes. Defaults to true.

type ApiGetQuoteTabsRequest

type ApiGetQuoteTabsRequest struct {
	ApiService *QuoteTabsAPIService
	// contains filtered or unexported fields
}

func (ApiGetQuoteTabsRequest) Conditions

func (r ApiGetQuoteTabsRequest) Conditions(conditions string) ApiGetQuoteTabsRequest

Conditional retrieve statements.

func (ApiGetQuoteTabsRequest) Execute

func (ApiGetQuoteTabsRequest) IncludeFields

func (r ApiGetQuoteTabsRequest) IncludeFields(includeFields string) ApiGetQuoteTabsRequest

Comma separated list of fields to return.

func (ApiGetQuoteTabsRequest) Page

Page of results to get. 1-index based.

func (ApiGetQuoteTabsRequest) PageSize

Page size of results to get. Max size 1000, default 50.

func (ApiGetQuoteTabsRequest) ShowAllVersions

func (r ApiGetQuoteTabsRequest) ShowAllVersions(showAllVersions bool) ApiGetQuoteTabsRequest

Set true for results from deleted or archived quotes. Set false to omit records from deleted or archive quotes. Defaults to true.

type ApiGetQuoteTermsRequest

type ApiGetQuoteTermsRequest struct {
	ApiService *QuoteTermsAPIService
	// contains filtered or unexported fields
}

func (ApiGetQuoteTermsRequest) Conditions

func (r ApiGetQuoteTermsRequest) Conditions(conditions string) ApiGetQuoteTermsRequest

Conditional retrieve statements.

func (ApiGetQuoteTermsRequest) Execute

func (ApiGetQuoteTermsRequest) IncludeFields

func (r ApiGetQuoteTermsRequest) IncludeFields(includeFields string) ApiGetQuoteTermsRequest

Comma separated list of fields to return.

func (ApiGetQuoteTermsRequest) Page

Page of results to get. 1-index based.

func (ApiGetQuoteTermsRequest) PageSize

Page size of results to get. Max size 1000, default 50.

type ApiGetQuotesByQuoteNumberRequest

type ApiGetQuotesByQuoteNumberRequest struct {
	ApiService *QuotesAPIService
	// contains filtered or unexported fields
}

func (ApiGetQuotesByQuoteNumberRequest) Execute

type ApiGetQuotesRequest

type ApiGetQuotesRequest struct {
	ApiService *QuotesAPIService
	// contains filtered or unexported fields
}

func (ApiGetQuotesRequest) Conditions

func (r ApiGetQuotesRequest) Conditions(conditions string) ApiGetQuotesRequest

Conditional retrieve statements.

func (ApiGetQuotesRequest) Execute

func (r ApiGetQuotesRequest) Execute() ([]QuoteView, *http.Response, error)

func (ApiGetQuotesRequest) IncludeFields

func (r ApiGetQuotesRequest) IncludeFields(includeFields string) ApiGetQuotesRequest

Comma separated list of fields to return.

func (ApiGetQuotesRequest) Page

Page of results to get. 1-index based.

func (ApiGetQuotesRequest) PageSize

func (r ApiGetQuotesRequest) PageSize(pageSize int32) ApiGetQuotesRequest

Page size of results to get. Max size 1000, default 50.

func (ApiGetQuotesRequest) ShowAllVersions

func (r ApiGetQuotesRequest) ShowAllVersions(showAllVersions bool) ApiGetQuotesRequest

Set true for results from deleted or archived quotes. Defaults to false.

type ApiGetRecurringRevenuesRequest

type ApiGetRecurringRevenuesRequest struct {
	ApiService *RecurringRevenueAPIService
	// contains filtered or unexported fields
}

func (ApiGetRecurringRevenuesRequest) Conditions

Conditional retrieve statements.

func (ApiGetRecurringRevenuesRequest) Execute

func (ApiGetRecurringRevenuesRequest) IncludeFields

Comma separated list of fields to return.

func (ApiGetRecurringRevenuesRequest) Page

Page of results to get. 1-index based.

func (ApiGetRecurringRevenuesRequest) PageSize

Page size of results to get. Max size 1000, default 50.

type ApiGetTaxCodesRequest

type ApiGetTaxCodesRequest struct {
	ApiService *TaxCodeAPIService
	// contains filtered or unexported fields
}

func (ApiGetTaxCodesRequest) Conditions

func (r ApiGetTaxCodesRequest) Conditions(conditions string) ApiGetTaxCodesRequest

Conditional retrieve statements.

func (ApiGetTaxCodesRequest) Execute

func (ApiGetTaxCodesRequest) IncludeFields

func (r ApiGetTaxCodesRequest) IncludeFields(includeFields string) ApiGetTaxCodesRequest

Comma separated list of fields to return.

func (ApiGetTaxCodesRequest) Page

Page of results to get. 1-index based.

func (ApiGetTaxCodesRequest) PageSize

func (r ApiGetTaxCodesRequest) PageSize(pageSize int32) ApiGetTaxCodesRequest

Page size of results to get. Max size 1000, default 50.

type ApiGetTemplatesRequest

type ApiGetTemplatesRequest struct {
	ApiService *TemplatesAPIService
	// contains filtered or unexported fields
}

func (ApiGetTemplatesRequest) Execute

func (r ApiGetTemplatesRequest) Execute() ([]QuoteView, *http.Response, error)

type ApiGetUserRequest

type ApiGetUserRequest struct {
	ApiService *UserAPIService
	// contains filtered or unexported fields
}

func (ApiGetUserRequest) Conditions

func (r ApiGetUserRequest) Conditions(conditions string) ApiGetUserRequest

Conditional retrieve statements.

func (ApiGetUserRequest) Execute

func (r ApiGetUserRequest) Execute() ([]UserView, *http.Response, error)

func (ApiGetUserRequest) IncludeFields

func (r ApiGetUserRequest) IncludeFields(includeFields string) ApiGetUserRequest

Comma separated list of fields to return.

func (ApiGetUserRequest) Page

Page of results to get. 1-index based.

func (ApiGetUserRequest) PageSize

func (r ApiGetUserRequest) PageSize(pageSize int32) ApiGetUserRequest

Page size of results to get. Max size 1000, default 50.

type ApiPatchQuoteByIDRequest

type ApiPatchQuoteByIDRequest struct {
	ApiService *QuotesAPIService
	// contains filtered or unexported fields
}

func (ApiPatchQuoteByIDRequest) Execute

func (ApiPatchQuoteByIDRequest) Patch

type ApiPatchQuoteCustomerForQuoteCustomerIDRequest

type ApiPatchQuoteCustomerForQuoteCustomerIDRequest struct {
	ApiService *QuoteCustomersAPIService
	// contains filtered or unexported fields
}

func (ApiPatchQuoteCustomerForQuoteCustomerIDRequest) Execute

type ApiPatchQuoteItemByIDRequest

type ApiPatchQuoteItemByIDRequest struct {
	ApiService *QuoteItemsAPIService
	// contains filtered or unexported fields
}

func (ApiPatchQuoteItemByIDRequest) Execute

func (ApiPatchQuoteItemByIDRequest) Patch

type ApiPatchUserByIDRequest

type ApiPatchUserByIDRequest struct {
	ApiService *UserAPIService
	// contains filtered or unexported fields
}

func (ApiPatchUserByIDRequest) Execute

func (ApiPatchUserByIDRequest) Patch

type ApiPostQuoteItemRequest

type ApiPostQuoteItemRequest struct {
	ApiService *QuoteItemsAPIService
	// contains filtered or unexported fields
}

func (ApiPostQuoteItemRequest) Execute

func (ApiPostQuoteItemRequest) Post

type ApiPutQuoteCustomerForQuoteCustomerIDRequest

type ApiPutQuoteCustomerForQuoteCustomerIDRequest struct {
	ApiService *QuoteCustomersAPIService
	// contains filtered or unexported fields
}

func (ApiPutQuoteCustomerForQuoteCustomerIDRequest) Execute

func (ApiPutQuoteCustomerForQuoteCustomerIDRequest) RequestBody

type ApiUpdateQuoteTermRequest

type ApiUpdateQuoteTermRequest struct {
	ApiService *QuoteTermsAPIService
	// contains filtered or unexported fields
}

func (ApiUpdateQuoteTermRequest) Execute

func (ApiUpdateQuoteTermRequest) Patch

type BasicAuth

type BasicAuth struct {
	UserName string `json:"userName,omitempty"`
	Password string `json:"password,omitempty"`
}

BasicAuth provides basic http authentication to a request passed via context using ContextBasicAuth

type Configuration

type Configuration struct {
	Host             string            `json:"host,omitempty"`
	Scheme           string            `json:"scheme,omitempty"`
	DefaultHeader    map[string]string `json:"defaultHeader,omitempty"`
	UserAgent        string            `json:"userAgent,omitempty"`
	Debug            bool              `json:"debug,omitempty"`
	Servers          ServerConfigurations
	OperationServers map[string]ServerConfigurations
	HTTPClient       *http.Client
}

Configuration stores the configuration of the API client

func NewConfiguration

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader

func (c *Configuration) AddDefaultHeader(key string, value string)

AddDefaultHeader adds a new HTTP header to the default header in the request

func (*Configuration) ServerURL

func (c *Configuration) ServerURL(index int, variables map[string]string) (string, error)

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext

func (c *Configuration) ServerURLWithContext(ctx context.Context, endpoint string) (string, error)

ServerURLWithContext returns a new server URL given an endpoint

type CustomerView

type CustomerView struct {
	AccountName           *string `json:"accountName,omitempty"`
	AccountNumber         *string `json:"accountNumber,omitempty"`
	Address1              *string `json:"address1,omitempty"`
	Address2              *string `json:"address2,omitempty"`
	City                  *string `json:"city,omitempty"`
	CompanyId             *string `json:"companyId,omitempty"`
	Country               *string `json:"country,omitempty"`
	CustomCustomerString1 *string `json:"customCustomerString1,omitempty"`
	CustomCustomerString2 *string `json:"customCustomerString2,omitempty"`
	CustomCustomerString3 *string `json:"customCustomerString3,omitempty"`
	CustomerSource        *string `json:"customerSource,omitempty"`
	CustomerSourceId      *string `json:"customerSourceId,omitempty"`
	// This field is Read Only.
	CustomerType *string `json:"customerType,omitempty"`
	DayPhone     *string `json:"dayPhone,omitempty"`
	Description  *string `json:"description,omitempty"`
	EmailAddress *string `json:"emailAddress,omitempty"`
	FirstName    *string `json:"firstName,omitempty"`
	// This field is Read Only.
	Id            *string `json:"id,omitempty"`
	IntegrationId *string `json:"integrationId,omitempty"`
	JobTitle      *string `json:"jobTitle,omitempty"`
	LastName      *string `json:"lastName,omitempty"`
	LocationId    *string `json:"locationId,omitempty"`
	MobilePhone   *string `json:"mobilePhone,omitempty"`
	// This field is Read Only.
	ModifyDate             *time.Time     `json:"modifyDate,omitempty"`
	PostalCode             *string        `json:"postalCode,omitempty"`
	PriceLevel             *string        `json:"priceLevel,omitempty"`
	PriceLevelName         *string        `json:"priceLevelName,omitempty"`
	Quote                  *ReferenceLink `json:"quote,omitempty"`
	RelationshipSinceDate  *time.Time     `json:"relationshipSinceDate,omitempty"`
	State                  *string        `json:"state,omitempty"`
	TaxExternalReferenceId *string        `json:"taxExternalReferenceId,omitempty"`
	Title                  *string        `json:"title,omitempty"`
	UserId                 *string        `json:"userId,omitempty"`
	AdditionalProperties   map[string]interface{}
}

CustomerView struct for CustomerView

func NewCustomerView

func NewCustomerView() *CustomerView

NewCustomerView instantiates a new CustomerView object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewCustomerViewWithDefaults

func NewCustomerViewWithDefaults() *CustomerView

NewCustomerViewWithDefaults instantiates a new CustomerView object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*CustomerView) GetAccountName

func (o *CustomerView) GetAccountName() string

GetAccountName returns the AccountName field value if set, zero value otherwise.

func (*CustomerView) GetAccountNameOk

func (o *CustomerView) GetAccountNameOk() (*string, bool)

GetAccountNameOk returns a tuple with the AccountName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CustomerView) GetAccountNumber

func (o *CustomerView) GetAccountNumber() string

GetAccountNumber returns the AccountNumber field value if set, zero value otherwise.

func (*CustomerView) GetAccountNumberOk

func (o *CustomerView) GetAccountNumberOk() (*string, bool)

GetAccountNumberOk returns a tuple with the AccountNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CustomerView) GetAddress1

func (o *CustomerView) GetAddress1() string

GetAddress1 returns the Address1 field value if set, zero value otherwise.

func (*CustomerView) GetAddress1Ok

func (o *CustomerView) GetAddress1Ok() (*string, bool)

GetAddress1Ok returns a tuple with the Address1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CustomerView) GetAddress2

func (o *CustomerView) GetAddress2() string

GetAddress2 returns the Address2 field value if set, zero value otherwise.

func (*CustomerView) GetAddress2Ok

func (o *CustomerView) GetAddress2Ok() (*string, bool)

GetAddress2Ok returns a tuple with the Address2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CustomerView) GetCity

func (o *CustomerView) GetCity() string

GetCity returns the City field value if set, zero value otherwise.

func (*CustomerView) GetCityOk

func (o *CustomerView) GetCityOk() (*string, bool)

GetCityOk returns a tuple with the City field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CustomerView) GetCompanyId

func (o *CustomerView) GetCompanyId() string

GetCompanyId returns the CompanyId field value if set, zero value otherwise.

func (*CustomerView) GetCompanyIdOk

func (o *CustomerView) GetCompanyIdOk() (*string, bool)

GetCompanyIdOk returns a tuple with the CompanyId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CustomerView) GetCountry

func (o *CustomerView) GetCountry() string

GetCountry returns the Country field value if set, zero value otherwise.

func (*CustomerView) GetCountryOk

func (o *CustomerView) GetCountryOk() (*string, bool)

GetCountryOk returns a tuple with the Country field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CustomerView) GetCustomCustomerString1

func (o *CustomerView) GetCustomCustomerString1() string

GetCustomCustomerString1 returns the CustomCustomerString1 field value if set, zero value otherwise.

func (*CustomerView) GetCustomCustomerString1Ok

func (o *CustomerView) GetCustomCustomerString1Ok() (*string, bool)

GetCustomCustomerString1Ok returns a tuple with the CustomCustomerString1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CustomerView) GetCustomCustomerString2

func (o *CustomerView) GetCustomCustomerString2() string

GetCustomCustomerString2 returns the CustomCustomerString2 field value if set, zero value otherwise.

func (*CustomerView) GetCustomCustomerString2Ok

func (o *CustomerView) GetCustomCustomerString2Ok() (*string, bool)

GetCustomCustomerString2Ok returns a tuple with the CustomCustomerString2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CustomerView) GetCustomCustomerString3

func (o *CustomerView) GetCustomCustomerString3() string

GetCustomCustomerString3 returns the CustomCustomerString3 field value if set, zero value otherwise.

func (*CustomerView) GetCustomCustomerString3Ok

func (o *CustomerView) GetCustomCustomerString3Ok() (*string, bool)

GetCustomCustomerString3Ok returns a tuple with the CustomCustomerString3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CustomerView) GetCustomerSource

func (o *CustomerView) GetCustomerSource() string

GetCustomerSource returns the CustomerSource field value if set, zero value otherwise.

func (*CustomerView) GetCustomerSourceId

func (o *CustomerView) GetCustomerSourceId() string

GetCustomerSourceId returns the CustomerSourceId field value if set, zero value otherwise.

func (*CustomerView) GetCustomerSourceIdOk

func (o *CustomerView) GetCustomerSourceIdOk() (*string, bool)

GetCustomerSourceIdOk returns a tuple with the CustomerSourceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CustomerView) GetCustomerSourceOk

func (o *CustomerView) GetCustomerSourceOk() (*string, bool)

GetCustomerSourceOk returns a tuple with the CustomerSource field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CustomerView) GetCustomerType

func (o *CustomerView) GetCustomerType() string

GetCustomerType returns the CustomerType field value if set, zero value otherwise.

func (*CustomerView) GetCustomerTypeOk

func (o *CustomerView) GetCustomerTypeOk() (*string, bool)

GetCustomerTypeOk returns a tuple with the CustomerType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CustomerView) GetDayPhone

func (o *CustomerView) GetDayPhone() string

GetDayPhone returns the DayPhone field value if set, zero value otherwise.

func (*CustomerView) GetDayPhoneOk

func (o *CustomerView) GetDayPhoneOk() (*string, bool)

GetDayPhoneOk returns a tuple with the DayPhone field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CustomerView) GetDescription

func (o *CustomerView) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*CustomerView) GetDescriptionOk

func (o *CustomerView) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CustomerView) GetEmailAddress

func (o *CustomerView) GetEmailAddress() string

GetEmailAddress returns the EmailAddress field value if set, zero value otherwise.

func (*CustomerView) GetEmailAddressOk

func (o *CustomerView) GetEmailAddressOk() (*string, bool)

GetEmailAddressOk returns a tuple with the EmailAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CustomerView) GetFirstName

func (o *CustomerView) GetFirstName() string

GetFirstName returns the FirstName field value if set, zero value otherwise.

func (*CustomerView) GetFirstNameOk

func (o *CustomerView) GetFirstNameOk() (*string, bool)

GetFirstNameOk returns a tuple with the FirstName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CustomerView) GetId

func (o *CustomerView) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*CustomerView) GetIdOk

func (o *CustomerView) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CustomerView) GetIntegrationId

func (o *CustomerView) GetIntegrationId() string

GetIntegrationId returns the IntegrationId field value if set, zero value otherwise.

func (*CustomerView) GetIntegrationIdOk

func (o *CustomerView) GetIntegrationIdOk() (*string, bool)

GetIntegrationIdOk returns a tuple with the IntegrationId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CustomerView) GetJobTitle

func (o *CustomerView) GetJobTitle() string

GetJobTitle returns the JobTitle field value if set, zero value otherwise.

func (*CustomerView) GetJobTitleOk

func (o *CustomerView) GetJobTitleOk() (*string, bool)

GetJobTitleOk returns a tuple with the JobTitle field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CustomerView) GetLastName

func (o *CustomerView) GetLastName() string

GetLastName returns the LastName field value if set, zero value otherwise.

func (*CustomerView) GetLastNameOk

func (o *CustomerView) GetLastNameOk() (*string, bool)

GetLastNameOk returns a tuple with the LastName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CustomerView) GetLocationId

func (o *CustomerView) GetLocationId() string

GetLocationId returns the LocationId field value if set, zero value otherwise.

func (*CustomerView) GetLocationIdOk

func (o *CustomerView) GetLocationIdOk() (*string, bool)

GetLocationIdOk returns a tuple with the LocationId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CustomerView) GetMobilePhone

func (o *CustomerView) GetMobilePhone() string

GetMobilePhone returns the MobilePhone field value if set, zero value otherwise.

func (*CustomerView) GetMobilePhoneOk

func (o *CustomerView) GetMobilePhoneOk() (*string, bool)

GetMobilePhoneOk returns a tuple with the MobilePhone field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CustomerView) GetModifyDate

func (o *CustomerView) GetModifyDate() time.Time

GetModifyDate returns the ModifyDate field value if set, zero value otherwise.

func (*CustomerView) GetModifyDateOk

func (o *CustomerView) GetModifyDateOk() (*time.Time, bool)

GetModifyDateOk returns a tuple with the ModifyDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CustomerView) GetPostalCode

func (o *CustomerView) GetPostalCode() string

GetPostalCode returns the PostalCode field value if set, zero value otherwise.

func (*CustomerView) GetPostalCodeOk

func (o *CustomerView) GetPostalCodeOk() (*string, bool)

GetPostalCodeOk returns a tuple with the PostalCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CustomerView) GetPriceLevel

func (o *CustomerView) GetPriceLevel() string

GetPriceLevel returns the PriceLevel field value if set, zero value otherwise.

func (*CustomerView) GetPriceLevelName

func (o *CustomerView) GetPriceLevelName() string

GetPriceLevelName returns the PriceLevelName field value if set, zero value otherwise.

func (*CustomerView) GetPriceLevelNameOk

func (o *CustomerView) GetPriceLevelNameOk() (*string, bool)

GetPriceLevelNameOk returns a tuple with the PriceLevelName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CustomerView) GetPriceLevelOk

func (o *CustomerView) GetPriceLevelOk() (*string, bool)

GetPriceLevelOk returns a tuple with the PriceLevel field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CustomerView) GetQuote

func (o *CustomerView) GetQuote() ReferenceLink

GetQuote returns the Quote field value if set, zero value otherwise.

func (*CustomerView) GetQuoteOk

func (o *CustomerView) GetQuoteOk() (*ReferenceLink, bool)

GetQuoteOk returns a tuple with the Quote field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CustomerView) GetRelationshipSinceDate

func (o *CustomerView) GetRelationshipSinceDate() time.Time

GetRelationshipSinceDate returns the RelationshipSinceDate field value if set, zero value otherwise.

func (*CustomerView) GetRelationshipSinceDateOk

func (o *CustomerView) GetRelationshipSinceDateOk() (*time.Time, bool)

GetRelationshipSinceDateOk returns a tuple with the RelationshipSinceDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CustomerView) GetState

func (o *CustomerView) GetState() string

GetState returns the State field value if set, zero value otherwise.

func (*CustomerView) GetStateOk

func (o *CustomerView) GetStateOk() (*string, bool)

GetStateOk returns a tuple with the State field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CustomerView) GetTaxExternalReferenceId

func (o *CustomerView) GetTaxExternalReferenceId() string

GetTaxExternalReferenceId returns the TaxExternalReferenceId field value if set, zero value otherwise.

func (*CustomerView) GetTaxExternalReferenceIdOk

func (o *CustomerView) GetTaxExternalReferenceIdOk() (*string, bool)

GetTaxExternalReferenceIdOk returns a tuple with the TaxExternalReferenceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CustomerView) GetTitle

func (o *CustomerView) GetTitle() string

GetTitle returns the Title field value if set, zero value otherwise.

func (*CustomerView) GetTitleOk

func (o *CustomerView) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CustomerView) GetUserId

func (o *CustomerView) GetUserId() string

GetUserId returns the UserId field value if set, zero value otherwise.

func (*CustomerView) GetUserIdOk

func (o *CustomerView) GetUserIdOk() (*string, bool)

GetUserIdOk returns a tuple with the UserId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CustomerView) HasAccountName

func (o *CustomerView) HasAccountName() bool

HasAccountName returns a boolean if a field has been set.

func (*CustomerView) HasAccountNumber

func (o *CustomerView) HasAccountNumber() bool

HasAccountNumber returns a boolean if a field has been set.

func (*CustomerView) HasAddress1

func (o *CustomerView) HasAddress1() bool

HasAddress1 returns a boolean if a field has been set.

func (*CustomerView) HasAddress2

func (o *CustomerView) HasAddress2() bool

HasAddress2 returns a boolean if a field has been set.

func (*CustomerView) HasCity

func (o *CustomerView) HasCity() bool

HasCity returns a boolean if a field has been set.

func (*CustomerView) HasCompanyId

func (o *CustomerView) HasCompanyId() bool

HasCompanyId returns a boolean if a field has been set.

func (*CustomerView) HasCountry

func (o *CustomerView) HasCountry() bool

HasCountry returns a boolean if a field has been set.

func (*CustomerView) HasCustomCustomerString1

func (o *CustomerView) HasCustomCustomerString1() bool

HasCustomCustomerString1 returns a boolean if a field has been set.

func (*CustomerView) HasCustomCustomerString2

func (o *CustomerView) HasCustomCustomerString2() bool

HasCustomCustomerString2 returns a boolean if a field has been set.

func (*CustomerView) HasCustomCustomerString3

func (o *CustomerView) HasCustomCustomerString3() bool

HasCustomCustomerString3 returns a boolean if a field has been set.

func (*CustomerView) HasCustomerSource

func (o *CustomerView) HasCustomerSource() bool

HasCustomerSource returns a boolean if a field has been set.

func (*CustomerView) HasCustomerSourceId

func (o *CustomerView) HasCustomerSourceId() bool

HasCustomerSourceId returns a boolean if a field has been set.

func (*CustomerView) HasCustomerType

func (o *CustomerView) HasCustomerType() bool

HasCustomerType returns a boolean if a field has been set.

func (*CustomerView) HasDayPhone

func (o *CustomerView) HasDayPhone() bool

HasDayPhone returns a boolean if a field has been set.

func (*CustomerView) HasDescription

func (o *CustomerView) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*CustomerView) HasEmailAddress

func (o *CustomerView) HasEmailAddress() bool

HasEmailAddress returns a boolean if a field has been set.

func (*CustomerView) HasFirstName

func (o *CustomerView) HasFirstName() bool

HasFirstName returns a boolean if a field has been set.

func (*CustomerView) HasId

func (o *CustomerView) HasId() bool

HasId returns a boolean if a field has been set.

func (*CustomerView) HasIntegrationId

func (o *CustomerView) HasIntegrationId() bool

HasIntegrationId returns a boolean if a field has been set.

func (*CustomerView) HasJobTitle

func (o *CustomerView) HasJobTitle() bool

HasJobTitle returns a boolean if a field has been set.

func (*CustomerView) HasLastName

func (o *CustomerView) HasLastName() bool

HasLastName returns a boolean if a field has been set.

func (*CustomerView) HasLocationId

func (o *CustomerView) HasLocationId() bool

HasLocationId returns a boolean if a field has been set.

func (*CustomerView) HasMobilePhone

func (o *CustomerView) HasMobilePhone() bool

HasMobilePhone returns a boolean if a field has been set.

func (*CustomerView) HasModifyDate

func (o *CustomerView) HasModifyDate() bool

HasModifyDate returns a boolean if a field has been set.

func (*CustomerView) HasPostalCode

func (o *CustomerView) HasPostalCode() bool

HasPostalCode returns a boolean if a field has been set.

func (*CustomerView) HasPriceLevel

func (o *CustomerView) HasPriceLevel() bool

HasPriceLevel returns a boolean if a field has been set.

func (*CustomerView) HasPriceLevelName

func (o *CustomerView) HasPriceLevelName() bool

HasPriceLevelName returns a boolean if a field has been set.

func (*CustomerView) HasQuote

func (o *CustomerView) HasQuote() bool

HasQuote returns a boolean if a field has been set.

func (*CustomerView) HasRelationshipSinceDate

func (o *CustomerView) HasRelationshipSinceDate() bool

HasRelationshipSinceDate returns a boolean if a field has been set.

func (*CustomerView) HasState

func (o *CustomerView) HasState() bool

HasState returns a boolean if a field has been set.

func (*CustomerView) HasTaxExternalReferenceId

func (o *CustomerView) HasTaxExternalReferenceId() bool

HasTaxExternalReferenceId returns a boolean if a field has been set.

func (*CustomerView) HasTitle

func (o *CustomerView) HasTitle() bool

HasTitle returns a boolean if a field has been set.

func (*CustomerView) HasUserId

func (o *CustomerView) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (CustomerView) MarshalJSON

func (o CustomerView) MarshalJSON() ([]byte, error)

func (*CustomerView) SetAccountName

func (o *CustomerView) SetAccountName(v string)

SetAccountName gets a reference to the given string and assigns it to the AccountName field.

func (*CustomerView) SetAccountNumber

func (o *CustomerView) SetAccountNumber(v string)

SetAccountNumber gets a reference to the given string and assigns it to the AccountNumber field.

func (*CustomerView) SetAddress1

func (o *CustomerView) SetAddress1(v string)

SetAddress1 gets a reference to the given string and assigns it to the Address1 field.

func (*CustomerView) SetAddress2

func (o *CustomerView) SetAddress2(v string)

SetAddress2 gets a reference to the given string and assigns it to the Address2 field.

func (*CustomerView) SetCity

func (o *CustomerView) SetCity(v string)

SetCity gets a reference to the given string and assigns it to the City field.

func (*CustomerView) SetCompanyId

func (o *CustomerView) SetCompanyId(v string)

SetCompanyId gets a reference to the given string and assigns it to the CompanyId field.

func (*CustomerView) SetCountry

func (o *CustomerView) SetCountry(v string)

SetCountry gets a reference to the given string and assigns it to the Country field.

func (*CustomerView) SetCustomCustomerString1

func (o *CustomerView) SetCustomCustomerString1(v string)

SetCustomCustomerString1 gets a reference to the given string and assigns it to the CustomCustomerString1 field.

func (*CustomerView) SetCustomCustomerString2

func (o *CustomerView) SetCustomCustomerString2(v string)

SetCustomCustomerString2 gets a reference to the given string and assigns it to the CustomCustomerString2 field.

func (*CustomerView) SetCustomCustomerString3

func (o *CustomerView) SetCustomCustomerString3(v string)

SetCustomCustomerString3 gets a reference to the given string and assigns it to the CustomCustomerString3 field.

func (*CustomerView) SetCustomerSource

func (o *CustomerView) SetCustomerSource(v string)

SetCustomerSource gets a reference to the given string and assigns it to the CustomerSource field.

func (*CustomerView) SetCustomerSourceId

func (o *CustomerView) SetCustomerSourceId(v string)

SetCustomerSourceId gets a reference to the given string and assigns it to the CustomerSourceId field.

func (*CustomerView) SetCustomerType

func (o *CustomerView) SetCustomerType(v string)

SetCustomerType gets a reference to the given string and assigns it to the CustomerType field.

func (*CustomerView) SetDayPhone

func (o *CustomerView) SetDayPhone(v string)

SetDayPhone gets a reference to the given string and assigns it to the DayPhone field.

func (*CustomerView) SetDescription

func (o *CustomerView) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*CustomerView) SetEmailAddress

func (o *CustomerView) SetEmailAddress(v string)

SetEmailAddress gets a reference to the given string and assigns it to the EmailAddress field.

func (*CustomerView) SetFirstName

func (o *CustomerView) SetFirstName(v string)

SetFirstName gets a reference to the given string and assigns it to the FirstName field.

func (*CustomerView) SetId

func (o *CustomerView) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*CustomerView) SetIntegrationId

func (o *CustomerView) SetIntegrationId(v string)

SetIntegrationId gets a reference to the given string and assigns it to the IntegrationId field.

func (*CustomerView) SetJobTitle

func (o *CustomerView) SetJobTitle(v string)

SetJobTitle gets a reference to the given string and assigns it to the JobTitle field.

func (*CustomerView) SetLastName

func (o *CustomerView) SetLastName(v string)

SetLastName gets a reference to the given string and assigns it to the LastName field.

func (*CustomerView) SetLocationId

func (o *CustomerView) SetLocationId(v string)

SetLocationId gets a reference to the given string and assigns it to the LocationId field.

func (*CustomerView) SetMobilePhone

func (o *CustomerView) SetMobilePhone(v string)

SetMobilePhone gets a reference to the given string and assigns it to the MobilePhone field.

func (*CustomerView) SetModifyDate

func (o *CustomerView) SetModifyDate(v time.Time)

SetModifyDate gets a reference to the given time.Time and assigns it to the ModifyDate field.

func (*CustomerView) SetPostalCode

func (o *CustomerView) SetPostalCode(v string)

SetPostalCode gets a reference to the given string and assigns it to the PostalCode field.

func (*CustomerView) SetPriceLevel

func (o *CustomerView) SetPriceLevel(v string)

SetPriceLevel gets a reference to the given string and assigns it to the PriceLevel field.

func (*CustomerView) SetPriceLevelName

func (o *CustomerView) SetPriceLevelName(v string)

SetPriceLevelName gets a reference to the given string and assigns it to the PriceLevelName field.

func (*CustomerView) SetQuote

func (o *CustomerView) SetQuote(v ReferenceLink)

SetQuote gets a reference to the given ReferenceLink and assigns it to the Quote field.

func (*CustomerView) SetRelationshipSinceDate

func (o *CustomerView) SetRelationshipSinceDate(v time.Time)

SetRelationshipSinceDate gets a reference to the given time.Time and assigns it to the RelationshipSinceDate field.

func (*CustomerView) SetState

func (o *CustomerView) SetState(v string)

SetState gets a reference to the given string and assigns it to the State field.

func (*CustomerView) SetTaxExternalReferenceId

func (o *CustomerView) SetTaxExternalReferenceId(v string)

SetTaxExternalReferenceId gets a reference to the given string and assigns it to the TaxExternalReferenceId field.

func (*CustomerView) SetTitle

func (o *CustomerView) SetTitle(v string)

SetTitle gets a reference to the given string and assigns it to the Title field.

func (*CustomerView) SetUserId

func (o *CustomerView) SetUserId(v string)

SetUserId gets a reference to the given string and assigns it to the UserId field.

func (CustomerView) ToMap

func (o CustomerView) ToMap() (map[string]interface{}, error)

func (*CustomerView) UnmarshalJSON

func (o *CustomerView) UnmarshalJSON(data []byte) (err error)

type GenericOpenAPIError

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

GenericOpenAPIError Provides access to the body, error and model on returned errors.

func (GenericOpenAPIError) Body

func (e GenericOpenAPIError) Body() []byte

Body returns the raw bytes of the response

func (GenericOpenAPIError) Error

func (e GenericOpenAPIError) Error() string

Error returns non-empty string if there was an error.

func (GenericOpenAPIError) Model

func (e GenericOpenAPIError) Model() interface{}

Model returns the unpacked model of the error

type JsonPatchDocumentCustomerView

type JsonPatchDocumentCustomerView struct {
	// This field is Read Only.
	Operations           []OperationCustomerView `json:"operations,omitempty"`
	AdditionalProperties map[string]interface{}
}

JsonPatchDocumentCustomerView struct for JsonPatchDocumentCustomerView

func NewJsonPatchDocumentCustomerView

func NewJsonPatchDocumentCustomerView() *JsonPatchDocumentCustomerView

NewJsonPatchDocumentCustomerView instantiates a new JsonPatchDocumentCustomerView object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewJsonPatchDocumentCustomerViewWithDefaults

func NewJsonPatchDocumentCustomerViewWithDefaults() *JsonPatchDocumentCustomerView

NewJsonPatchDocumentCustomerViewWithDefaults instantiates a new JsonPatchDocumentCustomerView object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*JsonPatchDocumentCustomerView) GetOperations

GetOperations returns the Operations field value if set, zero value otherwise.

func (*JsonPatchDocumentCustomerView) GetOperationsOk

func (o *JsonPatchDocumentCustomerView) GetOperationsOk() ([]OperationCustomerView, bool)

GetOperationsOk returns a tuple with the Operations field value if set, nil otherwise and a boolean to check if the value has been set.

func (*JsonPatchDocumentCustomerView) HasOperations

func (o *JsonPatchDocumentCustomerView) HasOperations() bool

HasOperations returns a boolean if a field has been set.

func (JsonPatchDocumentCustomerView) MarshalJSON

func (o JsonPatchDocumentCustomerView) MarshalJSON() ([]byte, error)

func (*JsonPatchDocumentCustomerView) SetOperations

SetOperations gets a reference to the given []OperationCustomerView and assigns it to the Operations field.

func (JsonPatchDocumentCustomerView) ToMap

func (o JsonPatchDocumentCustomerView) ToMap() (map[string]interface{}, error)

func (*JsonPatchDocumentCustomerView) UnmarshalJSON

func (o *JsonPatchDocumentCustomerView) UnmarshalJSON(data []byte) (err error)

type JsonPatchDocumentQuoteItemView

type JsonPatchDocumentQuoteItemView struct {
	// This field is Read Only.
	Operations           []OperationQuoteItemView `json:"operations,omitempty"`
	AdditionalProperties map[string]interface{}
}

JsonPatchDocumentQuoteItemView struct for JsonPatchDocumentQuoteItemView

func NewJsonPatchDocumentQuoteItemView

func NewJsonPatchDocumentQuoteItemView() *JsonPatchDocumentQuoteItemView

NewJsonPatchDocumentQuoteItemView instantiates a new JsonPatchDocumentQuoteItemView object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewJsonPatchDocumentQuoteItemViewWithDefaults

func NewJsonPatchDocumentQuoteItemViewWithDefaults() *JsonPatchDocumentQuoteItemView

NewJsonPatchDocumentQuoteItemViewWithDefaults instantiates a new JsonPatchDocumentQuoteItemView object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*JsonPatchDocumentQuoteItemView) GetOperations

GetOperations returns the Operations field value if set, zero value otherwise.

func (*JsonPatchDocumentQuoteItemView) GetOperationsOk

GetOperationsOk returns a tuple with the Operations field value if set, nil otherwise and a boolean to check if the value has been set.

func (*JsonPatchDocumentQuoteItemView) HasOperations

func (o *JsonPatchDocumentQuoteItemView) HasOperations() bool

HasOperations returns a boolean if a field has been set.

func (JsonPatchDocumentQuoteItemView) MarshalJSON

func (o JsonPatchDocumentQuoteItemView) MarshalJSON() ([]byte, error)

func (*JsonPatchDocumentQuoteItemView) SetOperations

SetOperations gets a reference to the given []OperationQuoteItemView and assigns it to the Operations field.

func (JsonPatchDocumentQuoteItemView) ToMap

func (o JsonPatchDocumentQuoteItemView) ToMap() (map[string]interface{}, error)

func (*JsonPatchDocumentQuoteItemView) UnmarshalJSON

func (o *JsonPatchDocumentQuoteItemView) UnmarshalJSON(data []byte) (err error)

type JsonPatchDocumentQuoteTermView

type JsonPatchDocumentQuoteTermView struct {
	// This field is Read Only.
	Operations           []OperationQuoteTermView `json:"operations,omitempty"`
	AdditionalProperties map[string]interface{}
}

JsonPatchDocumentQuoteTermView struct for JsonPatchDocumentQuoteTermView

func NewJsonPatchDocumentQuoteTermView

func NewJsonPatchDocumentQuoteTermView() *JsonPatchDocumentQuoteTermView

NewJsonPatchDocumentQuoteTermView instantiates a new JsonPatchDocumentQuoteTermView object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewJsonPatchDocumentQuoteTermViewWithDefaults

func NewJsonPatchDocumentQuoteTermViewWithDefaults() *JsonPatchDocumentQuoteTermView

NewJsonPatchDocumentQuoteTermViewWithDefaults instantiates a new JsonPatchDocumentQuoteTermView object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*JsonPatchDocumentQuoteTermView) GetOperations

GetOperations returns the Operations field value if set, zero value otherwise.

func (*JsonPatchDocumentQuoteTermView) GetOperationsOk

GetOperationsOk returns a tuple with the Operations field value if set, nil otherwise and a boolean to check if the value has been set.

func (*JsonPatchDocumentQuoteTermView) HasOperations

func (o *JsonPatchDocumentQuoteTermView) HasOperations() bool

HasOperations returns a boolean if a field has been set.

func (JsonPatchDocumentQuoteTermView) MarshalJSON

func (o JsonPatchDocumentQuoteTermView) MarshalJSON() ([]byte, error)

func (*JsonPatchDocumentQuoteTermView) SetOperations

SetOperations gets a reference to the given []OperationQuoteTermView and assigns it to the Operations field.

func (JsonPatchDocumentQuoteTermView) ToMap

func (o JsonPatchDocumentQuoteTermView) ToMap() (map[string]interface{}, error)

func (*JsonPatchDocumentQuoteTermView) UnmarshalJSON

func (o *JsonPatchDocumentQuoteTermView) UnmarshalJSON(data []byte) (err error)

type JsonPatchDocumentQuoteView

type JsonPatchDocumentQuoteView struct {
	// This field is Read Only.
	Operations           []OperationQuoteView `json:"operations,omitempty"`
	AdditionalProperties map[string]interface{}
}

JsonPatchDocumentQuoteView struct for JsonPatchDocumentQuoteView

func NewJsonPatchDocumentQuoteView

func NewJsonPatchDocumentQuoteView() *JsonPatchDocumentQuoteView

NewJsonPatchDocumentQuoteView instantiates a new JsonPatchDocumentQuoteView object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewJsonPatchDocumentQuoteViewWithDefaults

func NewJsonPatchDocumentQuoteViewWithDefaults() *JsonPatchDocumentQuoteView

NewJsonPatchDocumentQuoteViewWithDefaults instantiates a new JsonPatchDocumentQuoteView object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*JsonPatchDocumentQuoteView) GetOperations

func (o *JsonPatchDocumentQuoteView) GetOperations() []OperationQuoteView

GetOperations returns the Operations field value if set, zero value otherwise.

func (*JsonPatchDocumentQuoteView) GetOperationsOk

func (o *JsonPatchDocumentQuoteView) GetOperationsOk() ([]OperationQuoteView, bool)

GetOperationsOk returns a tuple with the Operations field value if set, nil otherwise and a boolean to check if the value has been set.

func (*JsonPatchDocumentQuoteView) HasOperations

func (o *JsonPatchDocumentQuoteView) HasOperations() bool

HasOperations returns a boolean if a field has been set.

func (JsonPatchDocumentQuoteView) MarshalJSON

func (o JsonPatchDocumentQuoteView) MarshalJSON() ([]byte, error)

func (*JsonPatchDocumentQuoteView) SetOperations

func (o *JsonPatchDocumentQuoteView) SetOperations(v []OperationQuoteView)

SetOperations gets a reference to the given []OperationQuoteView and assigns it to the Operations field.

func (JsonPatchDocumentQuoteView) ToMap

func (o JsonPatchDocumentQuoteView) ToMap() (map[string]interface{}, error)

func (*JsonPatchDocumentQuoteView) UnmarshalJSON

func (o *JsonPatchDocumentQuoteView) UnmarshalJSON(data []byte) (err error)

type JsonPatchDocumentUserView

type JsonPatchDocumentUserView struct {
	// This field is Read Only.
	Operations           []OperationUserView `json:"operations,omitempty"`
	AdditionalProperties map[string]interface{}
}

JsonPatchDocumentUserView struct for JsonPatchDocumentUserView

func NewJsonPatchDocumentUserView

func NewJsonPatchDocumentUserView() *JsonPatchDocumentUserView

NewJsonPatchDocumentUserView instantiates a new JsonPatchDocumentUserView object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewJsonPatchDocumentUserViewWithDefaults

func NewJsonPatchDocumentUserViewWithDefaults() *JsonPatchDocumentUserView

NewJsonPatchDocumentUserViewWithDefaults instantiates a new JsonPatchDocumentUserView object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*JsonPatchDocumentUserView) GetOperations

func (o *JsonPatchDocumentUserView) GetOperations() []OperationUserView

GetOperations returns the Operations field value if set, zero value otherwise.

func (*JsonPatchDocumentUserView) GetOperationsOk

func (o *JsonPatchDocumentUserView) GetOperationsOk() ([]OperationUserView, bool)

GetOperationsOk returns a tuple with the Operations field value if set, nil otherwise and a boolean to check if the value has been set.

func (*JsonPatchDocumentUserView) HasOperations

func (o *JsonPatchDocumentUserView) HasOperations() bool

HasOperations returns a boolean if a field has been set.

func (JsonPatchDocumentUserView) MarshalJSON

func (o JsonPatchDocumentUserView) MarshalJSON() ([]byte, error)

func (*JsonPatchDocumentUserView) SetOperations

func (o *JsonPatchDocumentUserView) SetOperations(v []OperationUserView)

SetOperations gets a reference to the given []OperationUserView and assigns it to the Operations field.

func (JsonPatchDocumentUserView) ToMap

func (o JsonPatchDocumentUserView) ToMap() (map[string]interface{}, error)

func (*JsonPatchDocumentUserView) UnmarshalJSON

func (o *JsonPatchDocumentUserView) UnmarshalJSON(data []byte) (err error)

type MappedNullable

type MappedNullable interface {
	ToMap() (map[string]interface{}, error)
}

type NullableBool

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

func NewNullableBool

func NewNullableBool(val *bool) *NullableBool

func (NullableBool) Get

func (v NullableBool) Get() *bool

func (NullableBool) IsSet

func (v NullableBool) IsSet() bool

func (NullableBool) MarshalJSON

func (v NullableBool) MarshalJSON() ([]byte, error)

func (*NullableBool) Set

func (v *NullableBool) Set(val *bool)

func (*NullableBool) UnmarshalJSON

func (v *NullableBool) UnmarshalJSON(src []byte) error

func (*NullableBool) Unset

func (v *NullableBool) Unset()

type NullableCustomerView

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

func NewNullableCustomerView

func NewNullableCustomerView(val *CustomerView) *NullableCustomerView

func (NullableCustomerView) Get

func (NullableCustomerView) IsSet

func (v NullableCustomerView) IsSet() bool

func (NullableCustomerView) MarshalJSON

func (v NullableCustomerView) MarshalJSON() ([]byte, error)

func (*NullableCustomerView) Set

func (v *NullableCustomerView) Set(val *CustomerView)

func (*NullableCustomerView) UnmarshalJSON

func (v *NullableCustomerView) UnmarshalJSON(src []byte) error

func (*NullableCustomerView) Unset

func (v *NullableCustomerView) Unset()

type NullableFloat32

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

func NewNullableFloat32

func NewNullableFloat32(val *float32) *NullableFloat32

func (NullableFloat32) Get

func (v NullableFloat32) Get() *float32

func (NullableFloat32) IsSet

func (v NullableFloat32) IsSet() bool

func (NullableFloat32) MarshalJSON

func (v NullableFloat32) MarshalJSON() ([]byte, error)

func (*NullableFloat32) Set

func (v *NullableFloat32) Set(val *float32)

func (*NullableFloat32) UnmarshalJSON

func (v *NullableFloat32) UnmarshalJSON(src []byte) error

func (*NullableFloat32) Unset

func (v *NullableFloat32) Unset()

type NullableFloat64

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

func NewNullableFloat64

func NewNullableFloat64(val *float64) *NullableFloat64

func (NullableFloat64) Get

func (v NullableFloat64) Get() *float64

func (NullableFloat64) IsSet

func (v NullableFloat64) IsSet() bool

func (NullableFloat64) MarshalJSON

func (v NullableFloat64) MarshalJSON() ([]byte, error)

func (*NullableFloat64) Set

func (v *NullableFloat64) Set(val *float64)

func (*NullableFloat64) UnmarshalJSON

func (v *NullableFloat64) UnmarshalJSON(src []byte) error

func (*NullableFloat64) Unset

func (v *NullableFloat64) Unset()

type NullableInt

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

func NewNullableInt

func NewNullableInt(val *int) *NullableInt

func (NullableInt) Get

func (v NullableInt) Get() *int

func (NullableInt) IsSet

func (v NullableInt) IsSet() bool

func (NullableInt) MarshalJSON

func (v NullableInt) MarshalJSON() ([]byte, error)

func (*NullableInt) Set

func (v *NullableInt) Set(val *int)

func (*NullableInt) UnmarshalJSON

func (v *NullableInt) UnmarshalJSON(src []byte) error

func (*NullableInt) Unset

func (v *NullableInt) Unset()

type NullableInt32

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

func NewNullableInt32

func NewNullableInt32(val *int32) *NullableInt32

func (NullableInt32) Get

func (v NullableInt32) Get() *int32

func (NullableInt32) IsSet

func (v NullableInt32) IsSet() bool

func (NullableInt32) MarshalJSON

func (v NullableInt32) MarshalJSON() ([]byte, error)

func (*NullableInt32) Set

func (v *NullableInt32) Set(val *int32)

func (*NullableInt32) UnmarshalJSON

func (v *NullableInt32) UnmarshalJSON(src []byte) error

func (*NullableInt32) Unset

func (v *NullableInt32) Unset()

type NullableInt64

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

func NewNullableInt64

func NewNullableInt64(val *int64) *NullableInt64

func (NullableInt64) Get

func (v NullableInt64) Get() *int64

func (NullableInt64) IsSet

func (v NullableInt64) IsSet() bool

func (NullableInt64) MarshalJSON

func (v NullableInt64) MarshalJSON() ([]byte, error)

func (*NullableInt64) Set

func (v *NullableInt64) Set(val *int64)

func (*NullableInt64) UnmarshalJSON

func (v *NullableInt64) UnmarshalJSON(src []byte) error

func (*NullableInt64) Unset

func (v *NullableInt64) Unset()

type NullableJsonPatchDocumentCustomerView

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

func (NullableJsonPatchDocumentCustomerView) Get

func (NullableJsonPatchDocumentCustomerView) IsSet

func (NullableJsonPatchDocumentCustomerView) MarshalJSON

func (v NullableJsonPatchDocumentCustomerView) MarshalJSON() ([]byte, error)

func (*NullableJsonPatchDocumentCustomerView) Set

func (*NullableJsonPatchDocumentCustomerView) UnmarshalJSON

func (v *NullableJsonPatchDocumentCustomerView) UnmarshalJSON(src []byte) error

func (*NullableJsonPatchDocumentCustomerView) Unset

type NullableJsonPatchDocumentQuoteItemView

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

func (NullableJsonPatchDocumentQuoteItemView) Get

func (NullableJsonPatchDocumentQuoteItemView) IsSet

func (NullableJsonPatchDocumentQuoteItemView) MarshalJSON

func (v NullableJsonPatchDocumentQuoteItemView) MarshalJSON() ([]byte, error)

func (*NullableJsonPatchDocumentQuoteItemView) Set

func (*NullableJsonPatchDocumentQuoteItemView) UnmarshalJSON

func (v *NullableJsonPatchDocumentQuoteItemView) UnmarshalJSON(src []byte) error

func (*NullableJsonPatchDocumentQuoteItemView) Unset

type NullableJsonPatchDocumentQuoteTermView

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

func (NullableJsonPatchDocumentQuoteTermView) Get

func (NullableJsonPatchDocumentQuoteTermView) IsSet

func (NullableJsonPatchDocumentQuoteTermView) MarshalJSON

func (v NullableJsonPatchDocumentQuoteTermView) MarshalJSON() ([]byte, error)

func (*NullableJsonPatchDocumentQuoteTermView) Set

func (*NullableJsonPatchDocumentQuoteTermView) UnmarshalJSON

func (v *NullableJsonPatchDocumentQuoteTermView) UnmarshalJSON(src []byte) error

func (*NullableJsonPatchDocumentQuoteTermView) Unset

type NullableJsonPatchDocumentQuoteView

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

func (NullableJsonPatchDocumentQuoteView) Get

func (NullableJsonPatchDocumentQuoteView) IsSet

func (NullableJsonPatchDocumentQuoteView) MarshalJSON

func (v NullableJsonPatchDocumentQuoteView) MarshalJSON() ([]byte, error)

func (*NullableJsonPatchDocumentQuoteView) Set

func (*NullableJsonPatchDocumentQuoteView) UnmarshalJSON

func (v *NullableJsonPatchDocumentQuoteView) UnmarshalJSON(src []byte) error

func (*NullableJsonPatchDocumentQuoteView) Unset

type NullableJsonPatchDocumentUserView

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

func (NullableJsonPatchDocumentUserView) Get

func (NullableJsonPatchDocumentUserView) IsSet

func (NullableJsonPatchDocumentUserView) MarshalJSON

func (v NullableJsonPatchDocumentUserView) MarshalJSON() ([]byte, error)

func (*NullableJsonPatchDocumentUserView) Set

func (*NullableJsonPatchDocumentUserView) UnmarshalJSON

func (v *NullableJsonPatchDocumentUserView) UnmarshalJSON(src []byte) error

func (*NullableJsonPatchDocumentUserView) Unset

type NullableOperationCustomerView

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

func (NullableOperationCustomerView) Get

func (NullableOperationCustomerView) IsSet

func (NullableOperationCustomerView) MarshalJSON

func (v NullableOperationCustomerView) MarshalJSON() ([]byte, error)

func (*NullableOperationCustomerView) Set

func (*NullableOperationCustomerView) UnmarshalJSON

func (v *NullableOperationCustomerView) UnmarshalJSON(src []byte) error

func (*NullableOperationCustomerView) Unset

func (v *NullableOperationCustomerView) Unset()

type NullableOperationQuoteItemView

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

func (NullableOperationQuoteItemView) Get

func (NullableOperationQuoteItemView) IsSet

func (NullableOperationQuoteItemView) MarshalJSON

func (v NullableOperationQuoteItemView) MarshalJSON() ([]byte, error)

func (*NullableOperationQuoteItemView) Set

func (*NullableOperationQuoteItemView) UnmarshalJSON

func (v *NullableOperationQuoteItemView) UnmarshalJSON(src []byte) error

func (*NullableOperationQuoteItemView) Unset

func (v *NullableOperationQuoteItemView) Unset()

type NullableOperationQuoteTermView

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

func (NullableOperationQuoteTermView) Get

func (NullableOperationQuoteTermView) IsSet

func (NullableOperationQuoteTermView) MarshalJSON

func (v NullableOperationQuoteTermView) MarshalJSON() ([]byte, error)

func (*NullableOperationQuoteTermView) Set

func (*NullableOperationQuoteTermView) UnmarshalJSON

func (v *NullableOperationQuoteTermView) UnmarshalJSON(src []byte) error

func (*NullableOperationQuoteTermView) Unset

func (v *NullableOperationQuoteTermView) Unset()

type NullableOperationQuoteView

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

func NewNullableOperationQuoteView

func NewNullableOperationQuoteView(val *OperationQuoteView) *NullableOperationQuoteView

func (NullableOperationQuoteView) Get

func (NullableOperationQuoteView) IsSet

func (v NullableOperationQuoteView) IsSet() bool

func (NullableOperationQuoteView) MarshalJSON

func (v NullableOperationQuoteView) MarshalJSON() ([]byte, error)

func (*NullableOperationQuoteView) Set

func (*NullableOperationQuoteView) UnmarshalJSON

func (v *NullableOperationQuoteView) UnmarshalJSON(src []byte) error

func (*NullableOperationQuoteView) Unset

func (v *NullableOperationQuoteView) Unset()

type NullableOperationUserView

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

func NewNullableOperationUserView

func NewNullableOperationUserView(val *OperationUserView) *NullableOperationUserView

func (NullableOperationUserView) Get

func (NullableOperationUserView) IsSet

func (v NullableOperationUserView) IsSet() bool

func (NullableOperationUserView) MarshalJSON

func (v NullableOperationUserView) MarshalJSON() ([]byte, error)

func (*NullableOperationUserView) Set

func (*NullableOperationUserView) UnmarshalJSON

func (v *NullableOperationUserView) UnmarshalJSON(src []byte) error

func (*NullableOperationUserView) Unset

func (v *NullableOperationUserView) Unset()

type NullableQuoteItemView

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

func NewNullableQuoteItemView

func NewNullableQuoteItemView(val *QuoteItemView) *NullableQuoteItemView

func (NullableQuoteItemView) Get

func (NullableQuoteItemView) IsSet

func (v NullableQuoteItemView) IsSet() bool

func (NullableQuoteItemView) MarshalJSON

func (v NullableQuoteItemView) MarshalJSON() ([]byte, error)

func (*NullableQuoteItemView) Set

func (v *NullableQuoteItemView) Set(val *QuoteItemView)

func (*NullableQuoteItemView) UnmarshalJSON

func (v *NullableQuoteItemView) UnmarshalJSON(src []byte) error

func (*NullableQuoteItemView) Unset

func (v *NullableQuoteItemView) Unset()

type NullableQuoteItemsQueryModel

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

func NewNullableQuoteItemsQueryModel

func NewNullableQuoteItemsQueryModel(val *QuoteItemsQueryModel) *NullableQuoteItemsQueryModel

func (NullableQuoteItemsQueryModel) Get

func (NullableQuoteItemsQueryModel) IsSet

func (NullableQuoteItemsQueryModel) MarshalJSON

func (v NullableQuoteItemsQueryModel) MarshalJSON() ([]byte, error)

func (*NullableQuoteItemsQueryModel) Set

func (*NullableQuoteItemsQueryModel) UnmarshalJSON

func (v *NullableQuoteItemsQueryModel) UnmarshalJSON(src []byte) error

func (*NullableQuoteItemsQueryModel) Unset

func (v *NullableQuoteItemsQueryModel) Unset()

type NullableQuoteQueryModel

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

func NewNullableQuoteQueryModel

func NewNullableQuoteQueryModel(val *QuoteQueryModel) *NullableQuoteQueryModel

func (NullableQuoteQueryModel) Get

func (NullableQuoteQueryModel) IsSet

func (v NullableQuoteQueryModel) IsSet() bool

func (NullableQuoteQueryModel) MarshalJSON

func (v NullableQuoteQueryModel) MarshalJSON() ([]byte, error)

func (*NullableQuoteQueryModel) Set

func (*NullableQuoteQueryModel) UnmarshalJSON

func (v *NullableQuoteQueryModel) UnmarshalJSON(src []byte) error

func (*NullableQuoteQueryModel) Unset

func (v *NullableQuoteQueryModel) Unset()

type NullableQuoteTabView

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

func NewNullableQuoteTabView

func NewNullableQuoteTabView(val *QuoteTabView) *NullableQuoteTabView

func (NullableQuoteTabView) Get

func (NullableQuoteTabView) IsSet

func (v NullableQuoteTabView) IsSet() bool

func (NullableQuoteTabView) MarshalJSON

func (v NullableQuoteTabView) MarshalJSON() ([]byte, error)

func (*NullableQuoteTabView) Set

func (v *NullableQuoteTabView) Set(val *QuoteTabView)

func (*NullableQuoteTabView) UnmarshalJSON

func (v *NullableQuoteTabView) UnmarshalJSON(src []byte) error

func (*NullableQuoteTabView) Unset

func (v *NullableQuoteTabView) Unset()

type NullableQuoteTabsQueryModel

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

func NewNullableQuoteTabsQueryModel

func NewNullableQuoteTabsQueryModel(val *QuoteTabsQueryModel) *NullableQuoteTabsQueryModel

func (NullableQuoteTabsQueryModel) Get

func (NullableQuoteTabsQueryModel) IsSet

func (NullableQuoteTabsQueryModel) MarshalJSON

func (v NullableQuoteTabsQueryModel) MarshalJSON() ([]byte, error)

func (*NullableQuoteTabsQueryModel) Set

func (*NullableQuoteTabsQueryModel) UnmarshalJSON

func (v *NullableQuoteTabsQueryModel) UnmarshalJSON(src []byte) error

func (*NullableQuoteTabsQueryModel) Unset

func (v *NullableQuoteTabsQueryModel) Unset()

type NullableQuoteTermView

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

func NewNullableQuoteTermView

func NewNullableQuoteTermView(val *QuoteTermView) *NullableQuoteTermView

func (NullableQuoteTermView) Get

func (NullableQuoteTermView) IsSet

func (v NullableQuoteTermView) IsSet() bool

func (NullableQuoteTermView) MarshalJSON

func (v NullableQuoteTermView) MarshalJSON() ([]byte, error)

func (*NullableQuoteTermView) Set

func (v *NullableQuoteTermView) Set(val *QuoteTermView)

func (*NullableQuoteTermView) UnmarshalJSON

func (v *NullableQuoteTermView) UnmarshalJSON(src []byte) error

func (*NullableQuoteTermView) Unset

func (v *NullableQuoteTermView) Unset()

type NullableQuoteTermsQueryModel

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

func NewNullableQuoteTermsQueryModel

func NewNullableQuoteTermsQueryModel(val *QuoteTermsQueryModel) *NullableQuoteTermsQueryModel

func (NullableQuoteTermsQueryModel) Get

func (NullableQuoteTermsQueryModel) IsSet

func (NullableQuoteTermsQueryModel) MarshalJSON

func (v NullableQuoteTermsQueryModel) MarshalJSON() ([]byte, error)

func (*NullableQuoteTermsQueryModel) Set

func (*NullableQuoteTermsQueryModel) UnmarshalJSON

func (v *NullableQuoteTermsQueryModel) UnmarshalJSON(src []byte) error

func (*NullableQuoteTermsQueryModel) Unset

func (v *NullableQuoteTermsQueryModel) Unset()

type NullableQuoteView

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

func NewNullableQuoteView

func NewNullableQuoteView(val *QuoteView) *NullableQuoteView

func (NullableQuoteView) Get

func (v NullableQuoteView) Get() *QuoteView

func (NullableQuoteView) IsSet

func (v NullableQuoteView) IsSet() bool

func (NullableQuoteView) MarshalJSON

func (v NullableQuoteView) MarshalJSON() ([]byte, error)

func (*NullableQuoteView) Set

func (v *NullableQuoteView) Set(val *QuoteView)

func (*NullableQuoteView) UnmarshalJSON

func (v *NullableQuoteView) UnmarshalJSON(src []byte) error

func (*NullableQuoteView) Unset

func (v *NullableQuoteView) Unset()

type NullableRecurringRevenueView

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

func NewNullableRecurringRevenueView

func NewNullableRecurringRevenueView(val *RecurringRevenueView) *NullableRecurringRevenueView

func (NullableRecurringRevenueView) Get

func (NullableRecurringRevenueView) IsSet

func (NullableRecurringRevenueView) MarshalJSON

func (v NullableRecurringRevenueView) MarshalJSON() ([]byte, error)

func (*NullableRecurringRevenueView) Set

func (*NullableRecurringRevenueView) UnmarshalJSON

func (v *NullableRecurringRevenueView) UnmarshalJSON(src []byte) error

func (*NullableRecurringRevenueView) Unset

func (v *NullableRecurringRevenueView) Unset()

type NullableRecurringRevenuesQueryModel

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

func (NullableRecurringRevenuesQueryModel) Get

func (NullableRecurringRevenuesQueryModel) IsSet

func (NullableRecurringRevenuesQueryModel) MarshalJSON

func (v NullableRecurringRevenuesQueryModel) MarshalJSON() ([]byte, error)

func (*NullableRecurringRevenuesQueryModel) Set

func (*NullableRecurringRevenuesQueryModel) UnmarshalJSON

func (v *NullableRecurringRevenuesQueryModel) UnmarshalJSON(src []byte) error

func (*NullableRecurringRevenuesQueryModel) Unset

type NullableReferenceLink struct {
	// contains filtered or unexported fields
}
func NewNullableReferenceLink(val *ReferenceLink) *NullableReferenceLink

func (NullableReferenceLink) Get

func (NullableReferenceLink) IsSet

func (v NullableReferenceLink) IsSet() bool

func (NullableReferenceLink) MarshalJSON

func (v NullableReferenceLink) MarshalJSON() ([]byte, error)

func (*NullableReferenceLink) Set

func (v *NullableReferenceLink) Set(val *ReferenceLink)

func (*NullableReferenceLink) UnmarshalJSON

func (v *NullableReferenceLink) UnmarshalJSON(src []byte) error

func (*NullableReferenceLink) Unset

func (v *NullableReferenceLink) Unset()

type NullableString

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

func NewNullableString

func NewNullableString(val *string) *NullableString

func (NullableString) Get

func (v NullableString) Get() *string

func (NullableString) IsSet

func (v NullableString) IsSet() bool

func (NullableString) MarshalJSON

func (v NullableString) MarshalJSON() ([]byte, error)

func (*NullableString) Set

func (v *NullableString) Set(val *string)

func (*NullableString) UnmarshalJSON

func (v *NullableString) UnmarshalJSON(src []byte) error

func (*NullableString) Unset

func (v *NullableString) Unset()

type NullableTaxCodeView

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

func NewNullableTaxCodeView

func NewNullableTaxCodeView(val *TaxCodeView) *NullableTaxCodeView

func (NullableTaxCodeView) Get

func (NullableTaxCodeView) IsSet

func (v NullableTaxCodeView) IsSet() bool

func (NullableTaxCodeView) MarshalJSON

func (v NullableTaxCodeView) MarshalJSON() ([]byte, error)

func (*NullableTaxCodeView) Set

func (v *NullableTaxCodeView) Set(val *TaxCodeView)

func (*NullableTaxCodeView) UnmarshalJSON

func (v *NullableTaxCodeView) UnmarshalJSON(src []byte) error

func (*NullableTaxCodeView) Unset

func (v *NullableTaxCodeView) Unset()

type NullableTime

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

func NewNullableTime

func NewNullableTime(val *time.Time) *NullableTime

func (NullableTime) Get

func (v NullableTime) Get() *time.Time

func (NullableTime) IsSet

func (v NullableTime) IsSet() bool

func (NullableTime) MarshalJSON

func (v NullableTime) MarshalJSON() ([]byte, error)

func (*NullableTime) Set

func (v *NullableTime) Set(val *time.Time)

func (*NullableTime) UnmarshalJSON

func (v *NullableTime) UnmarshalJSON(src []byte) error

func (*NullableTime) Unset

func (v *NullableTime) Unset()

type NullableUserQueryModel

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

func NewNullableUserQueryModel

func NewNullableUserQueryModel(val *UserQueryModel) *NullableUserQueryModel

func (NullableUserQueryModel) Get

func (NullableUserQueryModel) IsSet

func (v NullableUserQueryModel) IsSet() bool

func (NullableUserQueryModel) MarshalJSON

func (v NullableUserQueryModel) MarshalJSON() ([]byte, error)

func (*NullableUserQueryModel) Set

func (*NullableUserQueryModel) UnmarshalJSON

func (v *NullableUserQueryModel) UnmarshalJSON(src []byte) error

func (*NullableUserQueryModel) Unset

func (v *NullableUserQueryModel) Unset()

type NullableUserView

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

func NewNullableUserView

func NewNullableUserView(val *UserView) *NullableUserView

func (NullableUserView) Get

func (v NullableUserView) Get() *UserView

func (NullableUserView) IsSet

func (v NullableUserView) IsSet() bool

func (NullableUserView) MarshalJSON

func (v NullableUserView) MarshalJSON() ([]byte, error)

func (*NullableUserView) Set

func (v *NullableUserView) Set(val *UserView)

func (*NullableUserView) UnmarshalJSON

func (v *NullableUserView) UnmarshalJSON(src []byte) error

func (*NullableUserView) Unset

func (v *NullableUserView) Unset()

type NullableViewQueryModel

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

func NewNullableViewQueryModel

func NewNullableViewQueryModel(val *ViewQueryModel) *NullableViewQueryModel

func (NullableViewQueryModel) Get

func (NullableViewQueryModel) IsSet

func (v NullableViewQueryModel) IsSet() bool

func (NullableViewQueryModel) MarshalJSON

func (v NullableViewQueryModel) MarshalJSON() ([]byte, error)

func (*NullableViewQueryModel) Set

func (*NullableViewQueryModel) UnmarshalJSON

func (v *NullableViewQueryModel) UnmarshalJSON(src []byte) error

func (*NullableViewQueryModel) Unset

func (v *NullableViewQueryModel) Unset()

type OperationCustomerView

type OperationCustomerView struct {
	Value                map[string]interface{} `json:"value,omitempty"`
	Path                 *string                `json:"path,omitempty"`
	Op                   *string                `json:"op,omitempty"`
	From                 *string                `json:"from,omitempty"`
	AdditionalProperties map[string]interface{}
}

OperationCustomerView struct for OperationCustomerView

func NewOperationCustomerView

func NewOperationCustomerView() *OperationCustomerView

NewOperationCustomerView instantiates a new OperationCustomerView object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOperationCustomerViewWithDefaults

func NewOperationCustomerViewWithDefaults() *OperationCustomerView

NewOperationCustomerViewWithDefaults instantiates a new OperationCustomerView object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OperationCustomerView) GetFrom

func (o *OperationCustomerView) GetFrom() string

GetFrom returns the From field value if set, zero value otherwise.

func (*OperationCustomerView) GetFromOk

func (o *OperationCustomerView) GetFromOk() (*string, bool)

GetFromOk returns a tuple with the From field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OperationCustomerView) GetOp

func (o *OperationCustomerView) GetOp() string

GetOp returns the Op field value if set, zero value otherwise.

func (*OperationCustomerView) GetOpOk

func (o *OperationCustomerView) GetOpOk() (*string, bool)

GetOpOk returns a tuple with the Op field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OperationCustomerView) GetPath

func (o *OperationCustomerView) GetPath() string

GetPath returns the Path field value if set, zero value otherwise.

func (*OperationCustomerView) GetPathOk

func (o *OperationCustomerView) GetPathOk() (*string, bool)

GetPathOk returns a tuple with the Path field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OperationCustomerView) GetValue

func (o *OperationCustomerView) GetValue() map[string]interface{}

GetValue returns the Value field value if set, zero value otherwise.

func (*OperationCustomerView) GetValueOk

func (o *OperationCustomerView) GetValueOk() (map[string]interface{}, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OperationCustomerView) HasFrom

func (o *OperationCustomerView) HasFrom() bool

HasFrom returns a boolean if a field has been set.

func (*OperationCustomerView) HasOp

func (o *OperationCustomerView) HasOp() bool

HasOp returns a boolean if a field has been set.

func (*OperationCustomerView) HasPath

func (o *OperationCustomerView) HasPath() bool

HasPath returns a boolean if a field has been set.

func (*OperationCustomerView) HasValue

func (o *OperationCustomerView) HasValue() bool

HasValue returns a boolean if a field has been set.

func (OperationCustomerView) MarshalJSON

func (o OperationCustomerView) MarshalJSON() ([]byte, error)

func (*OperationCustomerView) SetFrom

func (o *OperationCustomerView) SetFrom(v string)

SetFrom gets a reference to the given string and assigns it to the From field.

func (*OperationCustomerView) SetOp

func (o *OperationCustomerView) SetOp(v string)

SetOp gets a reference to the given string and assigns it to the Op field.

func (*OperationCustomerView) SetPath

func (o *OperationCustomerView) SetPath(v string)

SetPath gets a reference to the given string and assigns it to the Path field.

func (*OperationCustomerView) SetValue

func (o *OperationCustomerView) SetValue(v map[string]interface{})

SetValue gets a reference to the given map[string]interface{} and assigns it to the Value field.

func (OperationCustomerView) ToMap

func (o OperationCustomerView) ToMap() (map[string]interface{}, error)

func (*OperationCustomerView) UnmarshalJSON

func (o *OperationCustomerView) UnmarshalJSON(data []byte) (err error)

type OperationQuoteItemView

type OperationQuoteItemView struct {
	Value                map[string]interface{} `json:"value,omitempty"`
	Path                 *string                `json:"path,omitempty"`
	Op                   *string                `json:"op,omitempty"`
	From                 *string                `json:"from,omitempty"`
	AdditionalProperties map[string]interface{}
}

OperationQuoteItemView struct for OperationQuoteItemView

func NewOperationQuoteItemView

func NewOperationQuoteItemView() *OperationQuoteItemView

NewOperationQuoteItemView instantiates a new OperationQuoteItemView object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOperationQuoteItemViewWithDefaults

func NewOperationQuoteItemViewWithDefaults() *OperationQuoteItemView

NewOperationQuoteItemViewWithDefaults instantiates a new OperationQuoteItemView object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OperationQuoteItemView) GetFrom

func (o *OperationQuoteItemView) GetFrom() string

GetFrom returns the From field value if set, zero value otherwise.

func (*OperationQuoteItemView) GetFromOk

func (o *OperationQuoteItemView) GetFromOk() (*string, bool)

GetFromOk returns a tuple with the From field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OperationQuoteItemView) GetOp

func (o *OperationQuoteItemView) GetOp() string

GetOp returns the Op field value if set, zero value otherwise.

func (*OperationQuoteItemView) GetOpOk

func (o *OperationQuoteItemView) GetOpOk() (*string, bool)

GetOpOk returns a tuple with the Op field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OperationQuoteItemView) GetPath

func (o *OperationQuoteItemView) GetPath() string

GetPath returns the Path field value if set, zero value otherwise.

func (*OperationQuoteItemView) GetPathOk

func (o *OperationQuoteItemView) GetPathOk() (*string, bool)

GetPathOk returns a tuple with the Path field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OperationQuoteItemView) GetValue

func (o *OperationQuoteItemView) GetValue() map[string]interface{}

GetValue returns the Value field value if set, zero value otherwise.

func (*OperationQuoteItemView) GetValueOk

func (o *OperationQuoteItemView) GetValueOk() (map[string]interface{}, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OperationQuoteItemView) HasFrom

func (o *OperationQuoteItemView) HasFrom() bool

HasFrom returns a boolean if a field has been set.

func (*OperationQuoteItemView) HasOp

func (o *OperationQuoteItemView) HasOp() bool

HasOp returns a boolean if a field has been set.

func (*OperationQuoteItemView) HasPath

func (o *OperationQuoteItemView) HasPath() bool

HasPath returns a boolean if a field has been set.

func (*OperationQuoteItemView) HasValue

func (o *OperationQuoteItemView) HasValue() bool

HasValue returns a boolean if a field has been set.

func (OperationQuoteItemView) MarshalJSON

func (o OperationQuoteItemView) MarshalJSON() ([]byte, error)

func (*OperationQuoteItemView) SetFrom

func (o *OperationQuoteItemView) SetFrom(v string)

SetFrom gets a reference to the given string and assigns it to the From field.

func (*OperationQuoteItemView) SetOp

func (o *OperationQuoteItemView) SetOp(v string)

SetOp gets a reference to the given string and assigns it to the Op field.

func (*OperationQuoteItemView) SetPath

func (o *OperationQuoteItemView) SetPath(v string)

SetPath gets a reference to the given string and assigns it to the Path field.

func (*OperationQuoteItemView) SetValue

func (o *OperationQuoteItemView) SetValue(v map[string]interface{})

SetValue gets a reference to the given map[string]interface{} and assigns it to the Value field.

func (OperationQuoteItemView) ToMap

func (o OperationQuoteItemView) ToMap() (map[string]interface{}, error)

func (*OperationQuoteItemView) UnmarshalJSON

func (o *OperationQuoteItemView) UnmarshalJSON(data []byte) (err error)

type OperationQuoteTermView

type OperationQuoteTermView struct {
	Value                map[string]interface{} `json:"value,omitempty"`
	Path                 *string                `json:"path,omitempty"`
	Op                   *string                `json:"op,omitempty"`
	From                 *string                `json:"from,omitempty"`
	AdditionalProperties map[string]interface{}
}

OperationQuoteTermView struct for OperationQuoteTermView

func NewOperationQuoteTermView

func NewOperationQuoteTermView() *OperationQuoteTermView

NewOperationQuoteTermView instantiates a new OperationQuoteTermView object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOperationQuoteTermViewWithDefaults

func NewOperationQuoteTermViewWithDefaults() *OperationQuoteTermView

NewOperationQuoteTermViewWithDefaults instantiates a new OperationQuoteTermView object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OperationQuoteTermView) GetFrom

func (o *OperationQuoteTermView) GetFrom() string

GetFrom returns the From field value if set, zero value otherwise.

func (*OperationQuoteTermView) GetFromOk

func (o *OperationQuoteTermView) GetFromOk() (*string, bool)

GetFromOk returns a tuple with the From field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OperationQuoteTermView) GetOp

func (o *OperationQuoteTermView) GetOp() string

GetOp returns the Op field value if set, zero value otherwise.

func (*OperationQuoteTermView) GetOpOk

func (o *OperationQuoteTermView) GetOpOk() (*string, bool)

GetOpOk returns a tuple with the Op field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OperationQuoteTermView) GetPath

func (o *OperationQuoteTermView) GetPath() string

GetPath returns the Path field value if set, zero value otherwise.

func (*OperationQuoteTermView) GetPathOk

func (o *OperationQuoteTermView) GetPathOk() (*string, bool)

GetPathOk returns a tuple with the Path field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OperationQuoteTermView) GetValue

func (o *OperationQuoteTermView) GetValue() map[string]interface{}

GetValue returns the Value field value if set, zero value otherwise.

func (*OperationQuoteTermView) GetValueOk

func (o *OperationQuoteTermView) GetValueOk() (map[string]interface{}, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OperationQuoteTermView) HasFrom

func (o *OperationQuoteTermView) HasFrom() bool

HasFrom returns a boolean if a field has been set.

func (*OperationQuoteTermView) HasOp

func (o *OperationQuoteTermView) HasOp() bool

HasOp returns a boolean if a field has been set.

func (*OperationQuoteTermView) HasPath

func (o *OperationQuoteTermView) HasPath() bool

HasPath returns a boolean if a field has been set.

func (*OperationQuoteTermView) HasValue

func (o *OperationQuoteTermView) HasValue() bool

HasValue returns a boolean if a field has been set.

func (OperationQuoteTermView) MarshalJSON

func (o OperationQuoteTermView) MarshalJSON() ([]byte, error)

func (*OperationQuoteTermView) SetFrom

func (o *OperationQuoteTermView) SetFrom(v string)

SetFrom gets a reference to the given string and assigns it to the From field.

func (*OperationQuoteTermView) SetOp

func (o *OperationQuoteTermView) SetOp(v string)

SetOp gets a reference to the given string and assigns it to the Op field.

func (*OperationQuoteTermView) SetPath

func (o *OperationQuoteTermView) SetPath(v string)

SetPath gets a reference to the given string and assigns it to the Path field.

func (*OperationQuoteTermView) SetValue

func (o *OperationQuoteTermView) SetValue(v map[string]interface{})

SetValue gets a reference to the given map[string]interface{} and assigns it to the Value field.

func (OperationQuoteTermView) ToMap

func (o OperationQuoteTermView) ToMap() (map[string]interface{}, error)

func (*OperationQuoteTermView) UnmarshalJSON

func (o *OperationQuoteTermView) UnmarshalJSON(data []byte) (err error)

type OperationQuoteView

type OperationQuoteView struct {
	Value                map[string]interface{} `json:"value,omitempty"`
	Path                 *string                `json:"path,omitempty"`
	Op                   *string                `json:"op,omitempty"`
	From                 *string                `json:"from,omitempty"`
	AdditionalProperties map[string]interface{}
}

OperationQuoteView struct for OperationQuoteView

func NewOperationQuoteView

func NewOperationQuoteView() *OperationQuoteView

NewOperationQuoteView instantiates a new OperationQuoteView object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOperationQuoteViewWithDefaults

func NewOperationQuoteViewWithDefaults() *OperationQuoteView

NewOperationQuoteViewWithDefaults instantiates a new OperationQuoteView object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OperationQuoteView) GetFrom

func (o *OperationQuoteView) GetFrom() string

GetFrom returns the From field value if set, zero value otherwise.

func (*OperationQuoteView) GetFromOk

func (o *OperationQuoteView) GetFromOk() (*string, bool)

GetFromOk returns a tuple with the From field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OperationQuoteView) GetOp

func (o *OperationQuoteView) GetOp() string

GetOp returns the Op field value if set, zero value otherwise.

func (*OperationQuoteView) GetOpOk

func (o *OperationQuoteView) GetOpOk() (*string, bool)

GetOpOk returns a tuple with the Op field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OperationQuoteView) GetPath

func (o *OperationQuoteView) GetPath() string

GetPath returns the Path field value if set, zero value otherwise.

func (*OperationQuoteView) GetPathOk

func (o *OperationQuoteView) GetPathOk() (*string, bool)

GetPathOk returns a tuple with the Path field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OperationQuoteView) GetValue

func (o *OperationQuoteView) GetValue() map[string]interface{}

GetValue returns the Value field value if set, zero value otherwise.

func (*OperationQuoteView) GetValueOk

func (o *OperationQuoteView) GetValueOk() (map[string]interface{}, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OperationQuoteView) HasFrom

func (o *OperationQuoteView) HasFrom() bool

HasFrom returns a boolean if a field has been set.

func (*OperationQuoteView) HasOp

func (o *OperationQuoteView) HasOp() bool

HasOp returns a boolean if a field has been set.

func (*OperationQuoteView) HasPath

func (o *OperationQuoteView) HasPath() bool

HasPath returns a boolean if a field has been set.

func (*OperationQuoteView) HasValue

func (o *OperationQuoteView) HasValue() bool

HasValue returns a boolean if a field has been set.

func (OperationQuoteView) MarshalJSON

func (o OperationQuoteView) MarshalJSON() ([]byte, error)

func (*OperationQuoteView) SetFrom

func (o *OperationQuoteView) SetFrom(v string)

SetFrom gets a reference to the given string and assigns it to the From field.

func (*OperationQuoteView) SetOp

func (o *OperationQuoteView) SetOp(v string)

SetOp gets a reference to the given string and assigns it to the Op field.

func (*OperationQuoteView) SetPath

func (o *OperationQuoteView) SetPath(v string)

SetPath gets a reference to the given string and assigns it to the Path field.

func (*OperationQuoteView) SetValue

func (o *OperationQuoteView) SetValue(v map[string]interface{})

SetValue gets a reference to the given map[string]interface{} and assigns it to the Value field.

func (OperationQuoteView) ToMap

func (o OperationQuoteView) ToMap() (map[string]interface{}, error)

func (*OperationQuoteView) UnmarshalJSON

func (o *OperationQuoteView) UnmarshalJSON(data []byte) (err error)

type OperationUserView

type OperationUserView struct {
	Value                map[string]interface{} `json:"value,omitempty"`
	Path                 *string                `json:"path,omitempty"`
	Op                   *string                `json:"op,omitempty"`
	From                 *string                `json:"from,omitempty"`
	AdditionalProperties map[string]interface{}
}

OperationUserView struct for OperationUserView

func NewOperationUserView

func NewOperationUserView() *OperationUserView

NewOperationUserView instantiates a new OperationUserView object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOperationUserViewWithDefaults

func NewOperationUserViewWithDefaults() *OperationUserView

NewOperationUserViewWithDefaults instantiates a new OperationUserView object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OperationUserView) GetFrom

func (o *OperationUserView) GetFrom() string

GetFrom returns the From field value if set, zero value otherwise.

func (*OperationUserView) GetFromOk

func (o *OperationUserView) GetFromOk() (*string, bool)

GetFromOk returns a tuple with the From field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OperationUserView) GetOp

func (o *OperationUserView) GetOp() string

GetOp returns the Op field value if set, zero value otherwise.

func (*OperationUserView) GetOpOk

func (o *OperationUserView) GetOpOk() (*string, bool)

GetOpOk returns a tuple with the Op field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OperationUserView) GetPath

func (o *OperationUserView) GetPath() string

GetPath returns the Path field value if set, zero value otherwise.

func (*OperationUserView) GetPathOk

func (o *OperationUserView) GetPathOk() (*string, bool)

GetPathOk returns a tuple with the Path field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OperationUserView) GetValue

func (o *OperationUserView) GetValue() map[string]interface{}

GetValue returns the Value field value if set, zero value otherwise.

func (*OperationUserView) GetValueOk

func (o *OperationUserView) GetValueOk() (map[string]interface{}, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OperationUserView) HasFrom

func (o *OperationUserView) HasFrom() bool

HasFrom returns a boolean if a field has been set.

func (*OperationUserView) HasOp

func (o *OperationUserView) HasOp() bool

HasOp returns a boolean if a field has been set.

func (*OperationUserView) HasPath

func (o *OperationUserView) HasPath() bool

HasPath returns a boolean if a field has been set.

func (*OperationUserView) HasValue

func (o *OperationUserView) HasValue() bool

HasValue returns a boolean if a field has been set.

func (OperationUserView) MarshalJSON

func (o OperationUserView) MarshalJSON() ([]byte, error)

func (*OperationUserView) SetFrom

func (o *OperationUserView) SetFrom(v string)

SetFrom gets a reference to the given string and assigns it to the From field.

func (*OperationUserView) SetOp

func (o *OperationUserView) SetOp(v string)

SetOp gets a reference to the given string and assigns it to the Op field.

func (*OperationUserView) SetPath

func (o *OperationUserView) SetPath(v string)

SetPath gets a reference to the given string and assigns it to the Path field.

func (*OperationUserView) SetValue

func (o *OperationUserView) SetValue(v map[string]interface{})

SetValue gets a reference to the given map[string]interface{} and assigns it to the Value field.

func (OperationUserView) ToMap

func (o OperationUserView) ToMap() (map[string]interface{}, error)

func (*OperationUserView) UnmarshalJSON

func (o *OperationUserView) UnmarshalJSON(data []byte) (err error)

type QuoteCustomersAPIService

type QuoteCustomersAPIService service

QuoteCustomersAPIService QuoteCustomersAPI service

func (*QuoteCustomersAPIService) DeleteQuoteCustomerForQuoteCustomerID

func (a *QuoteCustomersAPIService) DeleteQuoteCustomerForQuoteCustomerID(ctx context.Context, quoteId string, id string) ApiDeleteQuoteCustomerForQuoteCustomerIDRequest

DeleteQuoteCustomerForQuoteCustomerID Method for DeleteQuoteCustomerForQuoteCustomerID

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param quoteId
@param id
@return ApiDeleteQuoteCustomerForQuoteCustomerIDRequest

func (*QuoteCustomersAPIService) DeleteQuoteCustomerForQuoteCustomerIDExecute

func (a *QuoteCustomersAPIService) DeleteQuoteCustomerForQuoteCustomerIDExecute(r ApiDeleteQuoteCustomerForQuoteCustomerIDRequest) (*http.Response, error)

Execute executes the request

func (*QuoteCustomersAPIService) GetQuoteCustomersForQuoteID

func (a *QuoteCustomersAPIService) GetQuoteCustomersForQuoteID(ctx context.Context, quoteId string) ApiGetQuoteCustomersForQuoteIDRequest

GetQuoteCustomersForQuoteID Method for GetQuoteCustomersForQuoteID

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param quoteId
@return ApiGetQuoteCustomersForQuoteIDRequest

func (*QuoteCustomersAPIService) GetQuoteCustomersForQuoteIDExecute

func (a *QuoteCustomersAPIService) GetQuoteCustomersForQuoteIDExecute(r ApiGetQuoteCustomersForQuoteIDRequest) ([]CustomerView, *http.Response, error)

Execute executes the request

@return []CustomerView

func (*QuoteCustomersAPIService) PatchQuoteCustomerForQuoteCustomerID

func (a *QuoteCustomersAPIService) PatchQuoteCustomerForQuoteCustomerID(ctx context.Context, quoteId string, id string) ApiPatchQuoteCustomerForQuoteCustomerIDRequest

PatchQuoteCustomerForQuoteCustomerID Method for PatchQuoteCustomerForQuoteCustomerID

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param quoteId
@param id
@return ApiPatchQuoteCustomerForQuoteCustomerIDRequest

func (*QuoteCustomersAPIService) PatchQuoteCustomerForQuoteCustomerIDExecute

func (a *QuoteCustomersAPIService) PatchQuoteCustomerForQuoteCustomerIDExecute(r ApiPatchQuoteCustomerForQuoteCustomerIDRequest) (*CustomerView, *http.Response, error)

Execute executes the request

@return CustomerView

func (*QuoteCustomersAPIService) PutQuoteCustomerForQuoteCustomerID

func (a *QuoteCustomersAPIService) PutQuoteCustomerForQuoteCustomerID(ctx context.Context, quoteId string, id string) ApiPutQuoteCustomerForQuoteCustomerIDRequest

PutQuoteCustomerForQuoteCustomerID Method for PutQuoteCustomerForQuoteCustomerID

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param quoteId
@param id
@return ApiPutQuoteCustomerForQuoteCustomerIDRequest

func (*QuoteCustomersAPIService) PutQuoteCustomerForQuoteCustomerIDExecute

func (a *QuoteCustomersAPIService) PutQuoteCustomerForQuoteCustomerIDExecute(r ApiPutQuoteCustomerForQuoteCustomerIDRequest) (*CustomerView, *http.Response, error)

Execute executes the request

@return CustomerView

type QuoteItemView

type QuoteItemView struct {
	// This field is Read Only.
	Id      *string `json:"id,omitempty"`
	IdQuote *string `json:"idQuote,omitempty"`
	// This field is Read Only.
	ApprovalContentHash   *string  `json:"approvalContentHash,omitempty"`
	ApprovalMarginMinimum *float64 `json:"approvalMarginMinimum,omitempty"`
	ApprovalOnChange      *bool    `json:"approvalOnChange,omitempty"`
	ApprovalPriceMinimum  *float64 `json:"approvalPriceMinimum,omitempty"`
	BasePrice             *float64 `json:"basePrice,omitempty"`
	// This field is Read Only.
	ConfigId *string `json:"configId,omitempty"`
	// This field is Read Only.
	ConfigPosition   *int32   `json:"configPosition,omitempty"`
	Cost             *float64 `json:"cost,omitempty"`
	CostModifier     *string  `json:"costModifier,omitempty"`
	CrmReference     *string  `json:"crmReference,omitempty"`
	CwAgreement      *string  `json:"cwAgreement,omitempty"`
	CwClass          *string  `json:"cwClass,omitempty"`
	DefermentPeriods *int32   `json:"defermentPeriods,omitempty"`
	Dimension1       *string  `json:"dimension1,omitempty"`
	Dimension2       *string  `json:"dimension2,omitempty"`
	Dimension3       *string  `json:"dimension3,omitempty"`
	Dimension4       *string  `json:"dimension4,omitempty"`
	Dimension5       *string  `json:"dimension5,omitempty"`
	DisableRemaps    *bool    `json:"disableRemaps,omitempty"`
	// This field is Read Only.
	Discount *float64 `json:"discount,omitempty"`
	// This field is Read Only.
	DiscountAmount *float64 `json:"discountAmount,omitempty"`
	// This field is Read Only.
	DiscountAmountConverted     *float64 `json:"discountAmountConverted,omitempty"`
	EnforceItemModTags          *bool    `json:"enforceItemModTags,omitempty"`
	EtilizeProductId            *float64 `json:"etilizeProductId,omitempty"`
	EtilizeSerializedAttributes *string  `json:"etilizeSerializedAttributes,omitempty"`
	// This field is Read Only.
	ExtendedCost *float64 `json:"extendedCost,omitempty"`
	// This field is Read Only.
	ExtendedPrice *float64 `json:"extendedPrice,omitempty"`
	// This field is Read Only.
	ExtendedPriceConverted *float64 `json:"extendedPriceConverted,omitempty"`
	// This field is Read Only.
	ExtendedSuggestedPrice *float64 `json:"extendedSuggestedPrice,omitempty"`
	ExternalQuoteNumber    *string  `json:"externalQuoteNumber,omitempty"`
	ExternalReference      *string  `json:"externalReference,omitempty"`
	FactorItemMfp          *string  `json:"factorItemMfp,omitempty"`
	FactorQtyFixed         *float64 `json:"factorQtyFixed,omitempty"`
	FactorQtyMultiplier    *float64 `json:"factorQtyMultiplier,omitempty"`
	FederalGovPrice        *float64 `json:"federalGovPrice,omitempty"`
	// This field is Read Only.
	GrossMargin        *float64 `json:"grossMargin,omitempty"`
	GroupingCode       *string  `json:"groupingCode,omitempty"`
	GsaPrice           *float64 `json:"gsaPrice,omitempty"`
	Gst                *float64 `json:"gst,omitempty"`
	GstConverted       *float64 `json:"gstConverted,omitempty"`
	GstRate            *float64 `json:"gstRate,omitempty"`
	IdQuoteTabs        *string  `json:"idQuoteTabs,omitempty"`
	IdRecurringRevenue *string  `json:"idRecurringRevenue,omitempty"`
	// This field is Read Only.
	IsBundleComponent *bool `json:"isBundleComponent,omitempty"`
	// This field is Read Only.
	IsBundleHeader         *bool    `json:"isBundleHeader,omitempty"`
	IsDeferrable           *bool    `json:"isDeferrable,omitempty"`
	IsHiddenItem           *bool    `json:"isHiddenItem,omitempty"`
	IsMetadataItem         *bool    `json:"isMetadataItem,omitempty"`
	IsModTagModified       *bool    `json:"isModTagModified,omitempty"`
	IsOptional             *bool    `json:"isOptional,omitempty"`
	IsOverrideQty          *bool    `json:"isOverrideQty,omitempty"`
	IsPhaseItem            *bool    `json:"isPhaseItem,omitempty"`
	IsPrinted              *bool    `json:"isPrinted,omitempty"`
	IsPromotion            *bool    `json:"isPromotion,omitempty"`
	IsProtectedItem        *bool    `json:"isProtectedItem,omitempty"`
	IsProtectedPrice       *bool    `json:"isProtectedPrice,omitempty"`
	IsRampable             *bool    `json:"isRampable,omitempty"`
	IsRebate               *bool    `json:"isRebate,omitempty"`
	IsRecurringTaxable     *bool    `json:"isRecurringTaxable,omitempty"`
	IsSelected             *bool    `json:"isSelected,omitempty"`
	IsShowPrice            *bool    `json:"isShowPrice,omitempty"`
	IsSold                 *bool    `json:"isSold,omitempty"`
	IsTaxable              *bool    `json:"isTaxable,omitempty"`
	IsTotalsIncluded       *bool    `json:"isTotalsIncluded,omitempty"`
	ItemCube               *float64 `json:"itemCube,omitempty"`
	ItemHeight             *float64 `json:"itemHeight,omitempty"`
	ItemLength             *float64 `json:"itemLength,omitempty"`
	ItemNotes              *string  `json:"itemNotes,omitempty"`
	ItemNotesHtml          *string  `json:"itemNotesHtml,omitempty"`
	ItemNumber             *string  `json:"itemNumber,omitempty"`
	ItemWidth              *float64 `json:"itemWidth,omitempty"`
	InvoiceGroupingId      *int32   `json:"invoiceGroupingId,omitempty"`
	Keywords               *string  `json:"keywords,omitempty"`
	LineType               *string  `json:"lineType,omitempty"`
	LocalPriceFormula      *string  `json:"localPriceFormula,omitempty"`
	LongDescription        *string  `json:"longDescription,omitempty"`
	ManufacturerPartNumber *string  `json:"manufacturerPartNumber,omitempty"`
	MarketingInformation   *string  `json:"marketingInformation,omitempty"`
	// This field is Read Only.
	Markup *float64 `json:"markup,omitempty"`
	// This field is Read Only.
	ModifyDate             *time.Time `json:"modifyDate,omitempty"`
	NetCost                *float64   `json:"netCost,omitempty"`
	OnHand                 *int32     `json:"onHand,omitempty"`
	OnHandWarehouse1       *int32     `json:"onHandWarehouse1,omitempty"`
	OnHandWarehouse2       *int32     `json:"onHandWarehouse2,omitempty"`
	OnOrder                *int32     `json:"onOrder,omitempty"`
	OptionGroup            *string    `json:"optionGroup,omitempty"`
	OptionLocked           *bool      `json:"optionLocked,omitempty"`
	OverridePackageDetails *bool      `json:"overridePackageDetails,omitempty"`
	OverridePrice          *float64   `json:"overridePrice,omitempty"`
	OverridePriceModifier  *string    `json:"overridePriceModifier,omitempty"`
	Owner                  *string    `json:"owner,omitempty"`
	PackagePrice           *float64   `json:"packagePrice,omitempty"`
	PackageQty             *float64   `json:"packageQty,omitempty"`
	ParentQuoteItem        *string    `json:"parentQuoteItem,omitempty"`
	PdfAttachment          *string    `json:"pdfAttachment,omitempty"`
	Period                 *string    `json:"period,omitempty"`
	PoNumber               *string    `json:"poNumber,omitempty"`
	PosDescription         *string    `json:"posDescription,omitempty"`
	PoStatus               *string    `json:"poStatus,omitempty"`
	PriceConverted         *float64   `json:"priceConverted,omitempty"`
	// This field is Read Only.
	PriceModifier           *string        `json:"priceModifier,omitempty"`
	ProductCategory         *string        `json:"productCategory,omitempty"`
	ProductClass            *string        `json:"productClass,omitempty"`
	ProductSubCategory      *string        `json:"productSubCategory,omitempty"`
	ProductType             *string        `json:"productType,omitempty"`
	PromotionComment        *string        `json:"promotionComment,omitempty"`
	PromotionExpirationDate *time.Time     `json:"promotionExpirationDate,omitempty"`
	Pst                     *float64       `json:"pst,omitempty"`
	PstConverted            *float64       `json:"pstConverted,omitempty"`
	PstRate                 *float64       `json:"pstRate,omitempty"`
	Quantity                *float64       `json:"quantity,omitempty"`
	QuosalDescription       *string        `json:"quosalDescription,omitempty"`
	QuosalPurchasingNotes   *string        `json:"quosalPurchasingNotes,omitempty"`
	Quote                   *ReferenceLink `json:"quote,omitempty"`
	QuoteTab                *ReferenceLink `json:"quoteTab,omitempty"`
	QuoteItemPrice          *float64       `json:"quoteItemPrice,omitempty"`
	QuoteName               *string        `json:"quoteName,omitempty"`
	// This field is Read Only.
	QuoteReadableId      *string    `json:"quoteReadableId,omitempty"`
	RampPeriods          *int32     `json:"rampPeriods,omitempty"`
	RebateComment        *string    `json:"rebateComment,omitempty"`
	RebateExpirationDate *time.Time `json:"rebateExpirationDate,omitempty"`
	RecurringAmount      *float64   `json:"recurringAmount,omitempty"`
	RecurringBasePrice   *float64   `json:"recurringBasePrice,omitempty"`
	// This field is Read Only.
	RecurringCalculatedPriceModifier *string  `json:"recurringCalculatedPriceModifier,omitempty"`
	RecurringCost                    *float64 `json:"recurringCost,omitempty"`
	RecurringCostModifier            *string  `json:"recurringCostModifier,omitempty"`
	// This field is Read Only.
	RecurringExtendedCost *float64 `json:"recurringExtendedCost,omitempty"`
	// This field is Read Only.
	RecurringExtendedSuggestedPrice *float64 `json:"recurringExtendedSuggestedPrice,omitempty"`
	RecurringGst                    *float64 `json:"recurringGst,omitempty"`
	RecurringPrice                  *float64 `json:"recurringPrice,omitempty"`
	RecurringPriceModifier          *string  `json:"recurringPriceModifier,omitempty"`
	RecurringPst                    *float64 `json:"recurringPst,omitempty"`
	RecurringSuggestedPrice         *float64 `json:"recurringSuggestedPrice,omitempty"`
	RecurringTax                    *float64 `json:"recurringTax,omitempty"`
	RecurringTotal                  *float64 `json:"recurringTotal,omitempty"`
	ReplacementSku                  *string  `json:"replacementSku,omitempty"`
	ShortDescription                *string  `json:"shortDescription,omitempty"`
	// This field is Read Only.
	SortOrder              *int32   `json:"sortOrder,omitempty"`
	Source                 *string  `json:"source,omitempty"`
	SourceManufacturerId   *string  `json:"sourceManufacturerId,omitempty"`
	SourceManufacturerName *string  `json:"sourceManufacturerName,omitempty"`
	SourceSelectionDetails *string  `json:"sourceSelectionDetails,omitempty"`
	SourceVendorId         *string  `json:"sourceVendorId,omitempty"`
	SourceVendorName       *string  `json:"sourceVendorName,omitempty"`
	StartingCost           *float64 `json:"startingCost,omitempty"`
	StateGovPrice          *float64 `json:"stateGovPrice,omitempty"`
	SuggestedPrice         *float64 `json:"suggestedPrice,omitempty"`
	SvcSpread              *float64 `json:"svcSpread,omitempty"`
	// This field is Read Only.
	Tax     *float64 `json:"tax,omitempty"`
	TaxCode *string  `json:"taxCode,omitempty"`
	// This field is Read Only.
	TaxConverted *float64 `json:"taxConverted,omitempty"`
	// This field is Read Only.
	TaxRate     *float64 `json:"taxRate,omitempty"`
	Thumbnail   *string  `json:"thumbnail,omitempty" validate:"regexp=^(?:[A-Za-z0-9+\\/]{4})*(?:[A-Za-z0-9+\\/]{2}==|[A-Za-z0-9+\\/]{3}=)?$"`
	TotalWeight *float64 `json:"totalWeight,omitempty"`
	Uom         *string  `json:"uom,omitempty"`
	UomFactor   *int32   `json:"uomFactor,omitempty"`
	UomWeight   *float64 `json:"uomWeight,omitempty"`
	Uop         *string  `json:"uop,omitempty"`
	UopFactor   *int32   `json:"uopFactor,omitempty"`
	UpcNumber   *string  `json:"upcNumber,omitempty"`
	// This field is Read Only.
	UserId               *string    `json:"userId,omitempty"`
	VendorPartNumber     *string    `json:"vendorPartNumber,omitempty"`
	Warehouse            *string    `json:"warehouse,omitempty"`
	WarehouseCode        *string    `json:"warehouseCode,omitempty"`
	ZCustomBool1         *bool      `json:"zCustomBool1,omitempty"`
	ZCustomBool10        *bool      `json:"zCustomBool10,omitempty"`
	ZCustomBool2         *bool      `json:"zCustomBool2,omitempty"`
	ZCustomBool3         *bool      `json:"zCustomBool3,omitempty"`
	ZCustomBool4         *bool      `json:"zCustomBool4,omitempty"`
	ZCustomBool5         *bool      `json:"zCustomBool5,omitempty"`
	ZCustomBool6         *bool      `json:"zCustomBool6,omitempty"`
	ZCustomBool7         *bool      `json:"zCustomBool7,omitempty"`
	ZCustomBool8         *bool      `json:"zCustomBool8,omitempty"`
	ZCustomBool9         *bool      `json:"zCustomBool9,omitempty"`
	ZCustomDate1         *time.Time `json:"zCustomDate1,omitempty"`
	ZCustomDate2         *time.Time `json:"zCustomDate2,omitempty"`
	ZCustomDecimal1      *float64   `json:"zCustomDecimal1,omitempty"`
	ZCustomDecimal10     *float64   `json:"zCustomDecimal10,omitempty"`
	ZCustomDecimal2      *float64   `json:"zCustomDecimal2,omitempty"`
	ZCustomDecimal3      *float64   `json:"zCustomDecimal3,omitempty"`
	ZCustomDecimal4      *float64   `json:"zCustomDecimal4,omitempty"`
	ZCustomDecimal5      *float64   `json:"zCustomDecimal5,omitempty"`
	ZCustomDecimal6      *float64   `json:"zCustomDecimal6,omitempty"`
	ZCustomDecimal7      *float64   `json:"zCustomDecimal7,omitempty"`
	ZCustomDecimal8      *float64   `json:"zCustomDecimal8,omitempty"`
	ZCustomDecimal9      *float64   `json:"zCustomDecimal9,omitempty"`
	ZCustomNotes1        *string    `json:"zCustomNotes1,omitempty"`
	ZCustomNotes10       *string    `json:"zCustomNotes10,omitempty"`
	ZCustomNotes2        *string    `json:"zCustomNotes2,omitempty"`
	ZCustomNotes3        *string    `json:"zCustomNotes3,omitempty"`
	ZCustomNotes4        *string    `json:"zCustomNotes4,omitempty"`
	ZCustomNotes5        *string    `json:"zCustomNotes5,omitempty"`
	ZCustomNotes6        *string    `json:"zCustomNotes6,omitempty"`
	ZCustomNotes7        *string    `json:"zCustomNotes7,omitempty"`
	ZCustomNotes8        *string    `json:"zCustomNotes8,omitempty"`
	ZCustomNotes9        *string    `json:"zCustomNotes9,omitempty"`
	ZCustomString1       *string    `json:"zCustomString1,omitempty"`
	ZCustomString10      *string    `json:"zCustomString10,omitempty"`
	ZCustomString11      *string    `json:"zCustomString11,omitempty"`
	ZCustomString12      *string    `json:"zCustomString12,omitempty"`
	ZCustomString13      *string    `json:"zCustomString13,omitempty"`
	ZCustomString14      *string    `json:"zCustomString14,omitempty"`
	ZCustomString15      *string    `json:"zCustomString15,omitempty"`
	ZCustomString16      *string    `json:"zCustomString16,omitempty"`
	ZCustomString17      *string    `json:"zCustomString17,omitempty"`
	ZCustomString18      *string    `json:"zCustomString18,omitempty"`
	ZCustomString19      *string    `json:"zCustomString19,omitempty"`
	ZCustomString2       *string    `json:"zCustomString2,omitempty"`
	ZCustomString20      *string    `json:"zCustomString20,omitempty"`
	ZCustomString21      *string    `json:"zCustomString21,omitempty"`
	ZCustomString22      *string    `json:"zCustomString22,omitempty"`
	ZCustomString23      *string    `json:"zCustomString23,omitempty"`
	ZCustomString24      *string    `json:"zCustomString24,omitempty"`
	ZCustomString25      *string    `json:"zCustomString25,omitempty"`
	ZCustomString3       *string    `json:"zCustomString3,omitempty"`
	ZCustomString4       *string    `json:"zCustomString4,omitempty"`
	ZCustomString5       *string    `json:"zCustomString5,omitempty"`
	ZCustomString6       *string    `json:"zCustomString6,omitempty"`
	ZCustomString7       *string    `json:"zCustomString7,omitempty"`
	ZCustomString8       *string    `json:"zCustomString8,omitempty"`
	ZCustomString9       *string    `json:"zCustomString9,omitempty"`
	ZCustomText1         *string    `json:"zCustomText1,omitempty"`
	AdditionalProperties map[string]interface{}
}

QuoteItemView struct for QuoteItemView

func NewQuoteItemView

func NewQuoteItemView() *QuoteItemView

NewQuoteItemView instantiates a new QuoteItemView object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewQuoteItemViewWithDefaults

func NewQuoteItemViewWithDefaults() *QuoteItemView

NewQuoteItemViewWithDefaults instantiates a new QuoteItemView object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*QuoteItemView) GetApprovalContentHash

func (o *QuoteItemView) GetApprovalContentHash() string

GetApprovalContentHash returns the ApprovalContentHash field value if set, zero value otherwise.

func (*QuoteItemView) GetApprovalContentHashOk

func (o *QuoteItemView) GetApprovalContentHashOk() (*string, bool)

GetApprovalContentHashOk returns a tuple with the ApprovalContentHash field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetApprovalMarginMinimum

func (o *QuoteItemView) GetApprovalMarginMinimum() float64

GetApprovalMarginMinimum returns the ApprovalMarginMinimum field value if set, zero value otherwise.

func (*QuoteItemView) GetApprovalMarginMinimumOk

func (o *QuoteItemView) GetApprovalMarginMinimumOk() (*float64, bool)

GetApprovalMarginMinimumOk returns a tuple with the ApprovalMarginMinimum field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetApprovalOnChange

func (o *QuoteItemView) GetApprovalOnChange() bool

GetApprovalOnChange returns the ApprovalOnChange field value if set, zero value otherwise.

func (*QuoteItemView) GetApprovalOnChangeOk

func (o *QuoteItemView) GetApprovalOnChangeOk() (*bool, bool)

GetApprovalOnChangeOk returns a tuple with the ApprovalOnChange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetApprovalPriceMinimum

func (o *QuoteItemView) GetApprovalPriceMinimum() float64

GetApprovalPriceMinimum returns the ApprovalPriceMinimum field value if set, zero value otherwise.

func (*QuoteItemView) GetApprovalPriceMinimumOk

func (o *QuoteItemView) GetApprovalPriceMinimumOk() (*float64, bool)

GetApprovalPriceMinimumOk returns a tuple with the ApprovalPriceMinimum field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetBasePrice

func (o *QuoteItemView) GetBasePrice() float64

GetBasePrice returns the BasePrice field value if set, zero value otherwise.

func (*QuoteItemView) GetBasePriceOk

func (o *QuoteItemView) GetBasePriceOk() (*float64, bool)

GetBasePriceOk returns a tuple with the BasePrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetConfigId

func (o *QuoteItemView) GetConfigId() string

GetConfigId returns the ConfigId field value if set, zero value otherwise.

func (*QuoteItemView) GetConfigIdOk

func (o *QuoteItemView) GetConfigIdOk() (*string, bool)

GetConfigIdOk returns a tuple with the ConfigId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetConfigPosition

func (o *QuoteItemView) GetConfigPosition() int32

GetConfigPosition returns the ConfigPosition field value if set, zero value otherwise.

func (*QuoteItemView) GetConfigPositionOk

func (o *QuoteItemView) GetConfigPositionOk() (*int32, bool)

GetConfigPositionOk returns a tuple with the ConfigPosition field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetCost

func (o *QuoteItemView) GetCost() float64

GetCost returns the Cost field value if set, zero value otherwise.

func (*QuoteItemView) GetCostModifier

func (o *QuoteItemView) GetCostModifier() string

GetCostModifier returns the CostModifier field value if set, zero value otherwise.

func (*QuoteItemView) GetCostModifierOk

func (o *QuoteItemView) GetCostModifierOk() (*string, bool)

GetCostModifierOk returns a tuple with the CostModifier field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetCostOk

func (o *QuoteItemView) GetCostOk() (*float64, bool)

GetCostOk returns a tuple with the Cost field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetCrmReference

func (o *QuoteItemView) GetCrmReference() string

GetCrmReference returns the CrmReference field value if set, zero value otherwise.

func (*QuoteItemView) GetCrmReferenceOk

func (o *QuoteItemView) GetCrmReferenceOk() (*string, bool)

GetCrmReferenceOk returns a tuple with the CrmReference field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetCwAgreement

func (o *QuoteItemView) GetCwAgreement() string

GetCwAgreement returns the CwAgreement field value if set, zero value otherwise.

func (*QuoteItemView) GetCwAgreementOk

func (o *QuoteItemView) GetCwAgreementOk() (*string, bool)

GetCwAgreementOk returns a tuple with the CwAgreement field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetCwClass

func (o *QuoteItemView) GetCwClass() string

GetCwClass returns the CwClass field value if set, zero value otherwise.

func (*QuoteItemView) GetCwClassOk

func (o *QuoteItemView) GetCwClassOk() (*string, bool)

GetCwClassOk returns a tuple with the CwClass field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetDefermentPeriods

func (o *QuoteItemView) GetDefermentPeriods() int32

GetDefermentPeriods returns the DefermentPeriods field value if set, zero value otherwise.

func (*QuoteItemView) GetDefermentPeriodsOk

func (o *QuoteItemView) GetDefermentPeriodsOk() (*int32, bool)

GetDefermentPeriodsOk returns a tuple with the DefermentPeriods field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetDimension1

func (o *QuoteItemView) GetDimension1() string

GetDimension1 returns the Dimension1 field value if set, zero value otherwise.

func (*QuoteItemView) GetDimension1Ok

func (o *QuoteItemView) GetDimension1Ok() (*string, bool)

GetDimension1Ok returns a tuple with the Dimension1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetDimension2

func (o *QuoteItemView) GetDimension2() string

GetDimension2 returns the Dimension2 field value if set, zero value otherwise.

func (*QuoteItemView) GetDimension2Ok

func (o *QuoteItemView) GetDimension2Ok() (*string, bool)

GetDimension2Ok returns a tuple with the Dimension2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetDimension3

func (o *QuoteItemView) GetDimension3() string

GetDimension3 returns the Dimension3 field value if set, zero value otherwise.

func (*QuoteItemView) GetDimension3Ok

func (o *QuoteItemView) GetDimension3Ok() (*string, bool)

GetDimension3Ok returns a tuple with the Dimension3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetDimension4

func (o *QuoteItemView) GetDimension4() string

GetDimension4 returns the Dimension4 field value if set, zero value otherwise.

func (*QuoteItemView) GetDimension4Ok

func (o *QuoteItemView) GetDimension4Ok() (*string, bool)

GetDimension4Ok returns a tuple with the Dimension4 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetDimension5

func (o *QuoteItemView) GetDimension5() string

GetDimension5 returns the Dimension5 field value if set, zero value otherwise.

func (*QuoteItemView) GetDimension5Ok

func (o *QuoteItemView) GetDimension5Ok() (*string, bool)

GetDimension5Ok returns a tuple with the Dimension5 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetDisableRemaps

func (o *QuoteItemView) GetDisableRemaps() bool

GetDisableRemaps returns the DisableRemaps field value if set, zero value otherwise.

func (*QuoteItemView) GetDisableRemapsOk

func (o *QuoteItemView) GetDisableRemapsOk() (*bool, bool)

GetDisableRemapsOk returns a tuple with the DisableRemaps field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetDiscount

func (o *QuoteItemView) GetDiscount() float64

GetDiscount returns the Discount field value if set, zero value otherwise.

func (*QuoteItemView) GetDiscountAmount

func (o *QuoteItemView) GetDiscountAmount() float64

GetDiscountAmount returns the DiscountAmount field value if set, zero value otherwise.

func (*QuoteItemView) GetDiscountAmountConverted

func (o *QuoteItemView) GetDiscountAmountConverted() float64

GetDiscountAmountConverted returns the DiscountAmountConverted field value if set, zero value otherwise.

func (*QuoteItemView) GetDiscountAmountConvertedOk

func (o *QuoteItemView) GetDiscountAmountConvertedOk() (*float64, bool)

GetDiscountAmountConvertedOk returns a tuple with the DiscountAmountConverted field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetDiscountAmountOk

func (o *QuoteItemView) GetDiscountAmountOk() (*float64, bool)

GetDiscountAmountOk returns a tuple with the DiscountAmount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetDiscountOk

func (o *QuoteItemView) GetDiscountOk() (*float64, bool)

GetDiscountOk returns a tuple with the Discount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetEnforceItemModTags

func (o *QuoteItemView) GetEnforceItemModTags() bool

GetEnforceItemModTags returns the EnforceItemModTags field value if set, zero value otherwise.

func (*QuoteItemView) GetEnforceItemModTagsOk

func (o *QuoteItemView) GetEnforceItemModTagsOk() (*bool, bool)

GetEnforceItemModTagsOk returns a tuple with the EnforceItemModTags field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetEtilizeProductId

func (o *QuoteItemView) GetEtilizeProductId() float64

GetEtilizeProductId returns the EtilizeProductId field value if set, zero value otherwise.

func (*QuoteItemView) GetEtilizeProductIdOk

func (o *QuoteItemView) GetEtilizeProductIdOk() (*float64, bool)

GetEtilizeProductIdOk returns a tuple with the EtilizeProductId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetEtilizeSerializedAttributes

func (o *QuoteItemView) GetEtilizeSerializedAttributes() string

GetEtilizeSerializedAttributes returns the EtilizeSerializedAttributes field value if set, zero value otherwise.

func (*QuoteItemView) GetEtilizeSerializedAttributesOk

func (o *QuoteItemView) GetEtilizeSerializedAttributesOk() (*string, bool)

GetEtilizeSerializedAttributesOk returns a tuple with the EtilizeSerializedAttributes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetExtendedCost

func (o *QuoteItemView) GetExtendedCost() float64

GetExtendedCost returns the ExtendedCost field value if set, zero value otherwise.

func (*QuoteItemView) GetExtendedCostOk

func (o *QuoteItemView) GetExtendedCostOk() (*float64, bool)

GetExtendedCostOk returns a tuple with the ExtendedCost field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetExtendedPrice

func (o *QuoteItemView) GetExtendedPrice() float64

GetExtendedPrice returns the ExtendedPrice field value if set, zero value otherwise.

func (*QuoteItemView) GetExtendedPriceConverted

func (o *QuoteItemView) GetExtendedPriceConverted() float64

GetExtendedPriceConverted returns the ExtendedPriceConverted field value if set, zero value otherwise.

func (*QuoteItemView) GetExtendedPriceConvertedOk

func (o *QuoteItemView) GetExtendedPriceConvertedOk() (*float64, bool)

GetExtendedPriceConvertedOk returns a tuple with the ExtendedPriceConverted field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetExtendedPriceOk

func (o *QuoteItemView) GetExtendedPriceOk() (*float64, bool)

GetExtendedPriceOk returns a tuple with the ExtendedPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetExtendedSuggestedPrice

func (o *QuoteItemView) GetExtendedSuggestedPrice() float64

GetExtendedSuggestedPrice returns the ExtendedSuggestedPrice field value if set, zero value otherwise.

func (*QuoteItemView) GetExtendedSuggestedPriceOk

func (o *QuoteItemView) GetExtendedSuggestedPriceOk() (*float64, bool)

GetExtendedSuggestedPriceOk returns a tuple with the ExtendedSuggestedPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetExternalQuoteNumber

func (o *QuoteItemView) GetExternalQuoteNumber() string

GetExternalQuoteNumber returns the ExternalQuoteNumber field value if set, zero value otherwise.

func (*QuoteItemView) GetExternalQuoteNumberOk

func (o *QuoteItemView) GetExternalQuoteNumberOk() (*string, bool)

GetExternalQuoteNumberOk returns a tuple with the ExternalQuoteNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetExternalReference

func (o *QuoteItemView) GetExternalReference() string

GetExternalReference returns the ExternalReference field value if set, zero value otherwise.

func (*QuoteItemView) GetExternalReferenceOk

func (o *QuoteItemView) GetExternalReferenceOk() (*string, bool)

GetExternalReferenceOk returns a tuple with the ExternalReference field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetFactorItemMfp

func (o *QuoteItemView) GetFactorItemMfp() string

GetFactorItemMfp returns the FactorItemMfp field value if set, zero value otherwise.

func (*QuoteItemView) GetFactorItemMfpOk

func (o *QuoteItemView) GetFactorItemMfpOk() (*string, bool)

GetFactorItemMfpOk returns a tuple with the FactorItemMfp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetFactorQtyFixed

func (o *QuoteItemView) GetFactorQtyFixed() float64

GetFactorQtyFixed returns the FactorQtyFixed field value if set, zero value otherwise.

func (*QuoteItemView) GetFactorQtyFixedOk

func (o *QuoteItemView) GetFactorQtyFixedOk() (*float64, bool)

GetFactorQtyFixedOk returns a tuple with the FactorQtyFixed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetFactorQtyMultiplier

func (o *QuoteItemView) GetFactorQtyMultiplier() float64

GetFactorQtyMultiplier returns the FactorQtyMultiplier field value if set, zero value otherwise.

func (*QuoteItemView) GetFactorQtyMultiplierOk

func (o *QuoteItemView) GetFactorQtyMultiplierOk() (*float64, bool)

GetFactorQtyMultiplierOk returns a tuple with the FactorQtyMultiplier field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetFederalGovPrice

func (o *QuoteItemView) GetFederalGovPrice() float64

GetFederalGovPrice returns the FederalGovPrice field value if set, zero value otherwise.

func (*QuoteItemView) GetFederalGovPriceOk

func (o *QuoteItemView) GetFederalGovPriceOk() (*float64, bool)

GetFederalGovPriceOk returns a tuple with the FederalGovPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetGrossMargin

func (o *QuoteItemView) GetGrossMargin() float64

GetGrossMargin returns the GrossMargin field value if set, zero value otherwise.

func (*QuoteItemView) GetGrossMarginOk

func (o *QuoteItemView) GetGrossMarginOk() (*float64, bool)

GetGrossMarginOk returns a tuple with the GrossMargin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetGroupingCode

func (o *QuoteItemView) GetGroupingCode() string

GetGroupingCode returns the GroupingCode field value if set, zero value otherwise.

func (*QuoteItemView) GetGroupingCodeOk

func (o *QuoteItemView) GetGroupingCodeOk() (*string, bool)

GetGroupingCodeOk returns a tuple with the GroupingCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetGsaPrice

func (o *QuoteItemView) GetGsaPrice() float64

GetGsaPrice returns the GsaPrice field value if set, zero value otherwise.

func (*QuoteItemView) GetGsaPriceOk

func (o *QuoteItemView) GetGsaPriceOk() (*float64, bool)

GetGsaPriceOk returns a tuple with the GsaPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetGst

func (o *QuoteItemView) GetGst() float64

GetGst returns the Gst field value if set, zero value otherwise.

func (*QuoteItemView) GetGstConverted

func (o *QuoteItemView) GetGstConverted() float64

GetGstConverted returns the GstConverted field value if set, zero value otherwise.

func (*QuoteItemView) GetGstConvertedOk

func (o *QuoteItemView) GetGstConvertedOk() (*float64, bool)

GetGstConvertedOk returns a tuple with the GstConverted field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetGstOk

func (o *QuoteItemView) GetGstOk() (*float64, bool)

GetGstOk returns a tuple with the Gst field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetGstRate

func (o *QuoteItemView) GetGstRate() float64

GetGstRate returns the GstRate field value if set, zero value otherwise.

func (*QuoteItemView) GetGstRateOk

func (o *QuoteItemView) GetGstRateOk() (*float64, bool)

GetGstRateOk returns a tuple with the GstRate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetId

func (o *QuoteItemView) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*QuoteItemView) GetIdOk

func (o *QuoteItemView) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetIdQuote

func (o *QuoteItemView) GetIdQuote() string

GetIdQuote returns the IdQuote field value if set, zero value otherwise.

func (*QuoteItemView) GetIdQuoteOk

func (o *QuoteItemView) GetIdQuoteOk() (*string, bool)

GetIdQuoteOk returns a tuple with the IdQuote field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetIdQuoteTabs

func (o *QuoteItemView) GetIdQuoteTabs() string

GetIdQuoteTabs returns the IdQuoteTabs field value if set, zero value otherwise.

func (*QuoteItemView) GetIdQuoteTabsOk

func (o *QuoteItemView) GetIdQuoteTabsOk() (*string, bool)

GetIdQuoteTabsOk returns a tuple with the IdQuoteTabs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetIdRecurringRevenue

func (o *QuoteItemView) GetIdRecurringRevenue() string

GetIdRecurringRevenue returns the IdRecurringRevenue field value if set, zero value otherwise.

func (*QuoteItemView) GetIdRecurringRevenueOk

func (o *QuoteItemView) GetIdRecurringRevenueOk() (*string, bool)

GetIdRecurringRevenueOk returns a tuple with the IdRecurringRevenue field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetInvoiceGroupingId

func (o *QuoteItemView) GetInvoiceGroupingId() int32

GetInvoiceGroupingId returns the InvoiceGroupingId field value if set, zero value otherwise.

func (*QuoteItemView) GetInvoiceGroupingIdOk

func (o *QuoteItemView) GetInvoiceGroupingIdOk() (*int32, bool)

GetInvoiceGroupingIdOk returns a tuple with the InvoiceGroupingId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetIsBundleComponent

func (o *QuoteItemView) GetIsBundleComponent() bool

GetIsBundleComponent returns the IsBundleComponent field value if set, zero value otherwise.

func (*QuoteItemView) GetIsBundleComponentOk

func (o *QuoteItemView) GetIsBundleComponentOk() (*bool, bool)

GetIsBundleComponentOk returns a tuple with the IsBundleComponent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetIsBundleHeader

func (o *QuoteItemView) GetIsBundleHeader() bool

GetIsBundleHeader returns the IsBundleHeader field value if set, zero value otherwise.

func (*QuoteItemView) GetIsBundleHeaderOk

func (o *QuoteItemView) GetIsBundleHeaderOk() (*bool, bool)

GetIsBundleHeaderOk returns a tuple with the IsBundleHeader field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetIsDeferrable

func (o *QuoteItemView) GetIsDeferrable() bool

GetIsDeferrable returns the IsDeferrable field value if set, zero value otherwise.

func (*QuoteItemView) GetIsDeferrableOk

func (o *QuoteItemView) GetIsDeferrableOk() (*bool, bool)

GetIsDeferrableOk returns a tuple with the IsDeferrable field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetIsHiddenItem

func (o *QuoteItemView) GetIsHiddenItem() bool

GetIsHiddenItem returns the IsHiddenItem field value if set, zero value otherwise.

func (*QuoteItemView) GetIsHiddenItemOk

func (o *QuoteItemView) GetIsHiddenItemOk() (*bool, bool)

GetIsHiddenItemOk returns a tuple with the IsHiddenItem field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetIsMetadataItem

func (o *QuoteItemView) GetIsMetadataItem() bool

GetIsMetadataItem returns the IsMetadataItem field value if set, zero value otherwise.

func (*QuoteItemView) GetIsMetadataItemOk

func (o *QuoteItemView) GetIsMetadataItemOk() (*bool, bool)

GetIsMetadataItemOk returns a tuple with the IsMetadataItem field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetIsModTagModified

func (o *QuoteItemView) GetIsModTagModified() bool

GetIsModTagModified returns the IsModTagModified field value if set, zero value otherwise.

func (*QuoteItemView) GetIsModTagModifiedOk

func (o *QuoteItemView) GetIsModTagModifiedOk() (*bool, bool)

GetIsModTagModifiedOk returns a tuple with the IsModTagModified field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetIsOptional

func (o *QuoteItemView) GetIsOptional() bool

GetIsOptional returns the IsOptional field value if set, zero value otherwise.

func (*QuoteItemView) GetIsOptionalOk

func (o *QuoteItemView) GetIsOptionalOk() (*bool, bool)

GetIsOptionalOk returns a tuple with the IsOptional field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetIsOverrideQty

func (o *QuoteItemView) GetIsOverrideQty() bool

GetIsOverrideQty returns the IsOverrideQty field value if set, zero value otherwise.

func (*QuoteItemView) GetIsOverrideQtyOk

func (o *QuoteItemView) GetIsOverrideQtyOk() (*bool, bool)

GetIsOverrideQtyOk returns a tuple with the IsOverrideQty field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetIsPhaseItem

func (o *QuoteItemView) GetIsPhaseItem() bool

GetIsPhaseItem returns the IsPhaseItem field value if set, zero value otherwise.

func (*QuoteItemView) GetIsPhaseItemOk

func (o *QuoteItemView) GetIsPhaseItemOk() (*bool, bool)

GetIsPhaseItemOk returns a tuple with the IsPhaseItem field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetIsPrinted

func (o *QuoteItemView) GetIsPrinted() bool

GetIsPrinted returns the IsPrinted field value if set, zero value otherwise.

func (*QuoteItemView) GetIsPrintedOk

func (o *QuoteItemView) GetIsPrintedOk() (*bool, bool)

GetIsPrintedOk returns a tuple with the IsPrinted field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetIsPromotion

func (o *QuoteItemView) GetIsPromotion() bool

GetIsPromotion returns the IsPromotion field value if set, zero value otherwise.

func (*QuoteItemView) GetIsPromotionOk

func (o *QuoteItemView) GetIsPromotionOk() (*bool, bool)

GetIsPromotionOk returns a tuple with the IsPromotion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetIsProtectedItem

func (o *QuoteItemView) GetIsProtectedItem() bool

GetIsProtectedItem returns the IsProtectedItem field value if set, zero value otherwise.

func (*QuoteItemView) GetIsProtectedItemOk

func (o *QuoteItemView) GetIsProtectedItemOk() (*bool, bool)

GetIsProtectedItemOk returns a tuple with the IsProtectedItem field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetIsProtectedPrice

func (o *QuoteItemView) GetIsProtectedPrice() bool

GetIsProtectedPrice returns the IsProtectedPrice field value if set, zero value otherwise.

func (*QuoteItemView) GetIsProtectedPriceOk

func (o *QuoteItemView) GetIsProtectedPriceOk() (*bool, bool)

GetIsProtectedPriceOk returns a tuple with the IsProtectedPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetIsRampable

func (o *QuoteItemView) GetIsRampable() bool

GetIsRampable returns the IsRampable field value if set, zero value otherwise.

func (*QuoteItemView) GetIsRampableOk

func (o *QuoteItemView) GetIsRampableOk() (*bool, bool)

GetIsRampableOk returns a tuple with the IsRampable field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetIsRebate

func (o *QuoteItemView) GetIsRebate() bool

GetIsRebate returns the IsRebate field value if set, zero value otherwise.

func (*QuoteItemView) GetIsRebateOk

func (o *QuoteItemView) GetIsRebateOk() (*bool, bool)

GetIsRebateOk returns a tuple with the IsRebate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetIsRecurringTaxable

func (o *QuoteItemView) GetIsRecurringTaxable() bool

GetIsRecurringTaxable returns the IsRecurringTaxable field value if set, zero value otherwise.

func (*QuoteItemView) GetIsRecurringTaxableOk

func (o *QuoteItemView) GetIsRecurringTaxableOk() (*bool, bool)

GetIsRecurringTaxableOk returns a tuple with the IsRecurringTaxable field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetIsSelected

func (o *QuoteItemView) GetIsSelected() bool

GetIsSelected returns the IsSelected field value if set, zero value otherwise.

func (*QuoteItemView) GetIsSelectedOk

func (o *QuoteItemView) GetIsSelectedOk() (*bool, bool)

GetIsSelectedOk returns a tuple with the IsSelected field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetIsShowPrice

func (o *QuoteItemView) GetIsShowPrice() bool

GetIsShowPrice returns the IsShowPrice field value if set, zero value otherwise.

func (*QuoteItemView) GetIsShowPriceOk

func (o *QuoteItemView) GetIsShowPriceOk() (*bool, bool)

GetIsShowPriceOk returns a tuple with the IsShowPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetIsSold

func (o *QuoteItemView) GetIsSold() bool

GetIsSold returns the IsSold field value if set, zero value otherwise.

func (*QuoteItemView) GetIsSoldOk

func (o *QuoteItemView) GetIsSoldOk() (*bool, bool)

GetIsSoldOk returns a tuple with the IsSold field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetIsTaxable

func (o *QuoteItemView) GetIsTaxable() bool

GetIsTaxable returns the IsTaxable field value if set, zero value otherwise.

func (*QuoteItemView) GetIsTaxableOk

func (o *QuoteItemView) GetIsTaxableOk() (*bool, bool)

GetIsTaxableOk returns a tuple with the IsTaxable field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetIsTotalsIncluded

func (o *QuoteItemView) GetIsTotalsIncluded() bool

GetIsTotalsIncluded returns the IsTotalsIncluded field value if set, zero value otherwise.

func (*QuoteItemView) GetIsTotalsIncludedOk

func (o *QuoteItemView) GetIsTotalsIncludedOk() (*bool, bool)

GetIsTotalsIncludedOk returns a tuple with the IsTotalsIncluded field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetItemCube

func (o *QuoteItemView) GetItemCube() float64

GetItemCube returns the ItemCube field value if set, zero value otherwise.

func (*QuoteItemView) GetItemCubeOk

func (o *QuoteItemView) GetItemCubeOk() (*float64, bool)

GetItemCubeOk returns a tuple with the ItemCube field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetItemHeight

func (o *QuoteItemView) GetItemHeight() float64

GetItemHeight returns the ItemHeight field value if set, zero value otherwise.

func (*QuoteItemView) GetItemHeightOk

func (o *QuoteItemView) GetItemHeightOk() (*float64, bool)

GetItemHeightOk returns a tuple with the ItemHeight field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetItemLength

func (o *QuoteItemView) GetItemLength() float64

GetItemLength returns the ItemLength field value if set, zero value otherwise.

func (*QuoteItemView) GetItemLengthOk

func (o *QuoteItemView) GetItemLengthOk() (*float64, bool)

GetItemLengthOk returns a tuple with the ItemLength field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetItemNotes

func (o *QuoteItemView) GetItemNotes() string

GetItemNotes returns the ItemNotes field value if set, zero value otherwise.

func (*QuoteItemView) GetItemNotesHtml

func (o *QuoteItemView) GetItemNotesHtml() string

GetItemNotesHtml returns the ItemNotesHtml field value if set, zero value otherwise.

func (*QuoteItemView) GetItemNotesHtmlOk

func (o *QuoteItemView) GetItemNotesHtmlOk() (*string, bool)

GetItemNotesHtmlOk returns a tuple with the ItemNotesHtml field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetItemNotesOk

func (o *QuoteItemView) GetItemNotesOk() (*string, bool)

GetItemNotesOk returns a tuple with the ItemNotes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetItemNumber

func (o *QuoteItemView) GetItemNumber() string

GetItemNumber returns the ItemNumber field value if set, zero value otherwise.

func (*QuoteItemView) GetItemNumberOk

func (o *QuoteItemView) GetItemNumberOk() (*string, bool)

GetItemNumberOk returns a tuple with the ItemNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetItemWidth

func (o *QuoteItemView) GetItemWidth() float64

GetItemWidth returns the ItemWidth field value if set, zero value otherwise.

func (*QuoteItemView) GetItemWidthOk

func (o *QuoteItemView) GetItemWidthOk() (*float64, bool)

GetItemWidthOk returns a tuple with the ItemWidth field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetKeywords

func (o *QuoteItemView) GetKeywords() string

GetKeywords returns the Keywords field value if set, zero value otherwise.

func (*QuoteItemView) GetKeywordsOk

func (o *QuoteItemView) GetKeywordsOk() (*string, bool)

GetKeywordsOk returns a tuple with the Keywords field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetLineType

func (o *QuoteItemView) GetLineType() string

GetLineType returns the LineType field value if set, zero value otherwise.

func (*QuoteItemView) GetLineTypeOk

func (o *QuoteItemView) GetLineTypeOk() (*string, bool)

GetLineTypeOk returns a tuple with the LineType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetLocalPriceFormula

func (o *QuoteItemView) GetLocalPriceFormula() string

GetLocalPriceFormula returns the LocalPriceFormula field value if set, zero value otherwise.

func (*QuoteItemView) GetLocalPriceFormulaOk

func (o *QuoteItemView) GetLocalPriceFormulaOk() (*string, bool)

GetLocalPriceFormulaOk returns a tuple with the LocalPriceFormula field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetLongDescription

func (o *QuoteItemView) GetLongDescription() string

GetLongDescription returns the LongDescription field value if set, zero value otherwise.

func (*QuoteItemView) GetLongDescriptionOk

func (o *QuoteItemView) GetLongDescriptionOk() (*string, bool)

GetLongDescriptionOk returns a tuple with the LongDescription field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetManufacturerPartNumber

func (o *QuoteItemView) GetManufacturerPartNumber() string

GetManufacturerPartNumber returns the ManufacturerPartNumber field value if set, zero value otherwise.

func (*QuoteItemView) GetManufacturerPartNumberOk

func (o *QuoteItemView) GetManufacturerPartNumberOk() (*string, bool)

GetManufacturerPartNumberOk returns a tuple with the ManufacturerPartNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetMarketingInformation

func (o *QuoteItemView) GetMarketingInformation() string

GetMarketingInformation returns the MarketingInformation field value if set, zero value otherwise.

func (*QuoteItemView) GetMarketingInformationOk

func (o *QuoteItemView) GetMarketingInformationOk() (*string, bool)

GetMarketingInformationOk returns a tuple with the MarketingInformation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetMarkup

func (o *QuoteItemView) GetMarkup() float64

GetMarkup returns the Markup field value if set, zero value otherwise.

func (*QuoteItemView) GetMarkupOk

func (o *QuoteItemView) GetMarkupOk() (*float64, bool)

GetMarkupOk returns a tuple with the Markup field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetModifyDate

func (o *QuoteItemView) GetModifyDate() time.Time

GetModifyDate returns the ModifyDate field value if set, zero value otherwise.

func (*QuoteItemView) GetModifyDateOk

func (o *QuoteItemView) GetModifyDateOk() (*time.Time, bool)

GetModifyDateOk returns a tuple with the ModifyDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetNetCost

func (o *QuoteItemView) GetNetCost() float64

GetNetCost returns the NetCost field value if set, zero value otherwise.

func (*QuoteItemView) GetNetCostOk

func (o *QuoteItemView) GetNetCostOk() (*float64, bool)

GetNetCostOk returns a tuple with the NetCost field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetOnHand

func (o *QuoteItemView) GetOnHand() int32

GetOnHand returns the OnHand field value if set, zero value otherwise.

func (*QuoteItemView) GetOnHandOk

func (o *QuoteItemView) GetOnHandOk() (*int32, bool)

GetOnHandOk returns a tuple with the OnHand field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetOnHandWarehouse1

func (o *QuoteItemView) GetOnHandWarehouse1() int32

GetOnHandWarehouse1 returns the OnHandWarehouse1 field value if set, zero value otherwise.

func (*QuoteItemView) GetOnHandWarehouse1Ok

func (o *QuoteItemView) GetOnHandWarehouse1Ok() (*int32, bool)

GetOnHandWarehouse1Ok returns a tuple with the OnHandWarehouse1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetOnHandWarehouse2

func (o *QuoteItemView) GetOnHandWarehouse2() int32

GetOnHandWarehouse2 returns the OnHandWarehouse2 field value if set, zero value otherwise.

func (*QuoteItemView) GetOnHandWarehouse2Ok

func (o *QuoteItemView) GetOnHandWarehouse2Ok() (*int32, bool)

GetOnHandWarehouse2Ok returns a tuple with the OnHandWarehouse2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetOnOrder

func (o *QuoteItemView) GetOnOrder() int32

GetOnOrder returns the OnOrder field value if set, zero value otherwise.

func (*QuoteItemView) GetOnOrderOk

func (o *QuoteItemView) GetOnOrderOk() (*int32, bool)

GetOnOrderOk returns a tuple with the OnOrder field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetOptionGroup

func (o *QuoteItemView) GetOptionGroup() string

GetOptionGroup returns the OptionGroup field value if set, zero value otherwise.

func (*QuoteItemView) GetOptionGroupOk

func (o *QuoteItemView) GetOptionGroupOk() (*string, bool)

GetOptionGroupOk returns a tuple with the OptionGroup field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetOptionLocked

func (o *QuoteItemView) GetOptionLocked() bool

GetOptionLocked returns the OptionLocked field value if set, zero value otherwise.

func (*QuoteItemView) GetOptionLockedOk

func (o *QuoteItemView) GetOptionLockedOk() (*bool, bool)

GetOptionLockedOk returns a tuple with the OptionLocked field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetOverridePackageDetails

func (o *QuoteItemView) GetOverridePackageDetails() bool

GetOverridePackageDetails returns the OverridePackageDetails field value if set, zero value otherwise.

func (*QuoteItemView) GetOverridePackageDetailsOk

func (o *QuoteItemView) GetOverridePackageDetailsOk() (*bool, bool)

GetOverridePackageDetailsOk returns a tuple with the OverridePackageDetails field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetOverridePrice

func (o *QuoteItemView) GetOverridePrice() float64

GetOverridePrice returns the OverridePrice field value if set, zero value otherwise.

func (*QuoteItemView) GetOverridePriceModifier

func (o *QuoteItemView) GetOverridePriceModifier() string

GetOverridePriceModifier returns the OverridePriceModifier field value if set, zero value otherwise.

func (*QuoteItemView) GetOverridePriceModifierOk

func (o *QuoteItemView) GetOverridePriceModifierOk() (*string, bool)

GetOverridePriceModifierOk returns a tuple with the OverridePriceModifier field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetOverridePriceOk

func (o *QuoteItemView) GetOverridePriceOk() (*float64, bool)

GetOverridePriceOk returns a tuple with the OverridePrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetOwner

func (o *QuoteItemView) GetOwner() string

GetOwner returns the Owner field value if set, zero value otherwise.

func (*QuoteItemView) GetOwnerOk

func (o *QuoteItemView) GetOwnerOk() (*string, bool)

GetOwnerOk returns a tuple with the Owner field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetPackagePrice

func (o *QuoteItemView) GetPackagePrice() float64

GetPackagePrice returns the PackagePrice field value if set, zero value otherwise.

func (*QuoteItemView) GetPackagePriceOk

func (o *QuoteItemView) GetPackagePriceOk() (*float64, bool)

GetPackagePriceOk returns a tuple with the PackagePrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetPackageQty

func (o *QuoteItemView) GetPackageQty() float64

GetPackageQty returns the PackageQty field value if set, zero value otherwise.

func (*QuoteItemView) GetPackageQtyOk

func (o *QuoteItemView) GetPackageQtyOk() (*float64, bool)

GetPackageQtyOk returns a tuple with the PackageQty field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetParentQuoteItem

func (o *QuoteItemView) GetParentQuoteItem() string

GetParentQuoteItem returns the ParentQuoteItem field value if set, zero value otherwise.

func (*QuoteItemView) GetParentQuoteItemOk

func (o *QuoteItemView) GetParentQuoteItemOk() (*string, bool)

GetParentQuoteItemOk returns a tuple with the ParentQuoteItem field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetPdfAttachment

func (o *QuoteItemView) GetPdfAttachment() string

GetPdfAttachment returns the PdfAttachment field value if set, zero value otherwise.

func (*QuoteItemView) GetPdfAttachmentOk

func (o *QuoteItemView) GetPdfAttachmentOk() (*string, bool)

GetPdfAttachmentOk returns a tuple with the PdfAttachment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetPeriod

func (o *QuoteItemView) GetPeriod() string

GetPeriod returns the Period field value if set, zero value otherwise.

func (*QuoteItemView) GetPeriodOk

func (o *QuoteItemView) GetPeriodOk() (*string, bool)

GetPeriodOk returns a tuple with the Period field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetPoNumber

func (o *QuoteItemView) GetPoNumber() string

GetPoNumber returns the PoNumber field value if set, zero value otherwise.

func (*QuoteItemView) GetPoNumberOk

func (o *QuoteItemView) GetPoNumberOk() (*string, bool)

GetPoNumberOk returns a tuple with the PoNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetPoStatus

func (o *QuoteItemView) GetPoStatus() string

GetPoStatus returns the PoStatus field value if set, zero value otherwise.

func (*QuoteItemView) GetPoStatusOk

func (o *QuoteItemView) GetPoStatusOk() (*string, bool)

GetPoStatusOk returns a tuple with the PoStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetPosDescription

func (o *QuoteItemView) GetPosDescription() string

GetPosDescription returns the PosDescription field value if set, zero value otherwise.

func (*QuoteItemView) GetPosDescriptionOk

func (o *QuoteItemView) GetPosDescriptionOk() (*string, bool)

GetPosDescriptionOk returns a tuple with the PosDescription field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetPriceConverted

func (o *QuoteItemView) GetPriceConverted() float64

GetPriceConverted returns the PriceConverted field value if set, zero value otherwise.

func (*QuoteItemView) GetPriceConvertedOk

func (o *QuoteItemView) GetPriceConvertedOk() (*float64, bool)

GetPriceConvertedOk returns a tuple with the PriceConverted field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetPriceModifier

func (o *QuoteItemView) GetPriceModifier() string

GetPriceModifier returns the PriceModifier field value if set, zero value otherwise.

func (*QuoteItemView) GetPriceModifierOk

func (o *QuoteItemView) GetPriceModifierOk() (*string, bool)

GetPriceModifierOk returns a tuple with the PriceModifier field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetProductCategory

func (o *QuoteItemView) GetProductCategory() string

GetProductCategory returns the ProductCategory field value if set, zero value otherwise.

func (*QuoteItemView) GetProductCategoryOk

func (o *QuoteItemView) GetProductCategoryOk() (*string, bool)

GetProductCategoryOk returns a tuple with the ProductCategory field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetProductClass

func (o *QuoteItemView) GetProductClass() string

GetProductClass returns the ProductClass field value if set, zero value otherwise.

func (*QuoteItemView) GetProductClassOk

func (o *QuoteItemView) GetProductClassOk() (*string, bool)

GetProductClassOk returns a tuple with the ProductClass field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetProductSubCategory

func (o *QuoteItemView) GetProductSubCategory() string

GetProductSubCategory returns the ProductSubCategory field value if set, zero value otherwise.

func (*QuoteItemView) GetProductSubCategoryOk

func (o *QuoteItemView) GetProductSubCategoryOk() (*string, bool)

GetProductSubCategoryOk returns a tuple with the ProductSubCategory field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetProductType

func (o *QuoteItemView) GetProductType() string

GetProductType returns the ProductType field value if set, zero value otherwise.

func (*QuoteItemView) GetProductTypeOk

func (o *QuoteItemView) GetProductTypeOk() (*string, bool)

GetProductTypeOk returns a tuple with the ProductType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetPromotionComment

func (o *QuoteItemView) GetPromotionComment() string

GetPromotionComment returns the PromotionComment field value if set, zero value otherwise.

func (*QuoteItemView) GetPromotionCommentOk

func (o *QuoteItemView) GetPromotionCommentOk() (*string, bool)

GetPromotionCommentOk returns a tuple with the PromotionComment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetPromotionExpirationDate

func (o *QuoteItemView) GetPromotionExpirationDate() time.Time

GetPromotionExpirationDate returns the PromotionExpirationDate field value if set, zero value otherwise.

func (*QuoteItemView) GetPromotionExpirationDateOk

func (o *QuoteItemView) GetPromotionExpirationDateOk() (*time.Time, bool)

GetPromotionExpirationDateOk returns a tuple with the PromotionExpirationDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetPst

func (o *QuoteItemView) GetPst() float64

GetPst returns the Pst field value if set, zero value otherwise.

func (*QuoteItemView) GetPstConverted

func (o *QuoteItemView) GetPstConverted() float64

GetPstConverted returns the PstConverted field value if set, zero value otherwise.

func (*QuoteItemView) GetPstConvertedOk

func (o *QuoteItemView) GetPstConvertedOk() (*float64, bool)

GetPstConvertedOk returns a tuple with the PstConverted field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetPstOk

func (o *QuoteItemView) GetPstOk() (*float64, bool)

GetPstOk returns a tuple with the Pst field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetPstRate

func (o *QuoteItemView) GetPstRate() float64

GetPstRate returns the PstRate field value if set, zero value otherwise.

func (*QuoteItemView) GetPstRateOk

func (o *QuoteItemView) GetPstRateOk() (*float64, bool)

GetPstRateOk returns a tuple with the PstRate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetQuantity

func (o *QuoteItemView) GetQuantity() float64

GetQuantity returns the Quantity field value if set, zero value otherwise.

func (*QuoteItemView) GetQuantityOk

func (o *QuoteItemView) GetQuantityOk() (*float64, bool)

GetQuantityOk returns a tuple with the Quantity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetQuosalDescription

func (o *QuoteItemView) GetQuosalDescription() string

GetQuosalDescription returns the QuosalDescription field value if set, zero value otherwise.

func (*QuoteItemView) GetQuosalDescriptionOk

func (o *QuoteItemView) GetQuosalDescriptionOk() (*string, bool)

GetQuosalDescriptionOk returns a tuple with the QuosalDescription field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetQuosalPurchasingNotes

func (o *QuoteItemView) GetQuosalPurchasingNotes() string

GetQuosalPurchasingNotes returns the QuosalPurchasingNotes field value if set, zero value otherwise.

func (*QuoteItemView) GetQuosalPurchasingNotesOk

func (o *QuoteItemView) GetQuosalPurchasingNotesOk() (*string, bool)

GetQuosalPurchasingNotesOk returns a tuple with the QuosalPurchasingNotes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetQuote

func (o *QuoteItemView) GetQuote() ReferenceLink

GetQuote returns the Quote field value if set, zero value otherwise.

func (*QuoteItemView) GetQuoteItemPrice

func (o *QuoteItemView) GetQuoteItemPrice() float64

GetQuoteItemPrice returns the QuoteItemPrice field value if set, zero value otherwise.

func (*QuoteItemView) GetQuoteItemPriceOk

func (o *QuoteItemView) GetQuoteItemPriceOk() (*float64, bool)

GetQuoteItemPriceOk returns a tuple with the QuoteItemPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetQuoteName

func (o *QuoteItemView) GetQuoteName() string

GetQuoteName returns the QuoteName field value if set, zero value otherwise.

func (*QuoteItemView) GetQuoteNameOk

func (o *QuoteItemView) GetQuoteNameOk() (*string, bool)

GetQuoteNameOk returns a tuple with the QuoteName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetQuoteOk

func (o *QuoteItemView) GetQuoteOk() (*ReferenceLink, bool)

GetQuoteOk returns a tuple with the Quote field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetQuoteReadableId

func (o *QuoteItemView) GetQuoteReadableId() string

GetQuoteReadableId returns the QuoteReadableId field value if set, zero value otherwise.

func (*QuoteItemView) GetQuoteReadableIdOk

func (o *QuoteItemView) GetQuoteReadableIdOk() (*string, bool)

GetQuoteReadableIdOk returns a tuple with the QuoteReadableId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetQuoteTab

func (o *QuoteItemView) GetQuoteTab() ReferenceLink

GetQuoteTab returns the QuoteTab field value if set, zero value otherwise.

func (*QuoteItemView) GetQuoteTabOk

func (o *QuoteItemView) GetQuoteTabOk() (*ReferenceLink, bool)

GetQuoteTabOk returns a tuple with the QuoteTab field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetRampPeriods

func (o *QuoteItemView) GetRampPeriods() int32

GetRampPeriods returns the RampPeriods field value if set, zero value otherwise.

func (*QuoteItemView) GetRampPeriodsOk

func (o *QuoteItemView) GetRampPeriodsOk() (*int32, bool)

GetRampPeriodsOk returns a tuple with the RampPeriods field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetRebateComment

func (o *QuoteItemView) GetRebateComment() string

GetRebateComment returns the RebateComment field value if set, zero value otherwise.

func (*QuoteItemView) GetRebateCommentOk

func (o *QuoteItemView) GetRebateCommentOk() (*string, bool)

GetRebateCommentOk returns a tuple with the RebateComment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetRebateExpirationDate

func (o *QuoteItemView) GetRebateExpirationDate() time.Time

GetRebateExpirationDate returns the RebateExpirationDate field value if set, zero value otherwise.

func (*QuoteItemView) GetRebateExpirationDateOk

func (o *QuoteItemView) GetRebateExpirationDateOk() (*time.Time, bool)

GetRebateExpirationDateOk returns a tuple with the RebateExpirationDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetRecurringAmount

func (o *QuoteItemView) GetRecurringAmount() float64

GetRecurringAmount returns the RecurringAmount field value if set, zero value otherwise.

func (*QuoteItemView) GetRecurringAmountOk

func (o *QuoteItemView) GetRecurringAmountOk() (*float64, bool)

GetRecurringAmountOk returns a tuple with the RecurringAmount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetRecurringBasePrice

func (o *QuoteItemView) GetRecurringBasePrice() float64

GetRecurringBasePrice returns the RecurringBasePrice field value if set, zero value otherwise.

func (*QuoteItemView) GetRecurringBasePriceOk

func (o *QuoteItemView) GetRecurringBasePriceOk() (*float64, bool)

GetRecurringBasePriceOk returns a tuple with the RecurringBasePrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetRecurringCalculatedPriceModifier

func (o *QuoteItemView) GetRecurringCalculatedPriceModifier() string

GetRecurringCalculatedPriceModifier returns the RecurringCalculatedPriceModifier field value if set, zero value otherwise.

func (*QuoteItemView) GetRecurringCalculatedPriceModifierOk

func (o *QuoteItemView) GetRecurringCalculatedPriceModifierOk() (*string, bool)

GetRecurringCalculatedPriceModifierOk returns a tuple with the RecurringCalculatedPriceModifier field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetRecurringCost

func (o *QuoteItemView) GetRecurringCost() float64

GetRecurringCost returns the RecurringCost field value if set, zero value otherwise.

func (*QuoteItemView) GetRecurringCostModifier

func (o *QuoteItemView) GetRecurringCostModifier() string

GetRecurringCostModifier returns the RecurringCostModifier field value if set, zero value otherwise.

func (*QuoteItemView) GetRecurringCostModifierOk

func (o *QuoteItemView) GetRecurringCostModifierOk() (*string, bool)

GetRecurringCostModifierOk returns a tuple with the RecurringCostModifier field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetRecurringCostOk

func (o *QuoteItemView) GetRecurringCostOk() (*float64, bool)

GetRecurringCostOk returns a tuple with the RecurringCost field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetRecurringExtendedCost

func (o *QuoteItemView) GetRecurringExtendedCost() float64

GetRecurringExtendedCost returns the RecurringExtendedCost field value if set, zero value otherwise.

func (*QuoteItemView) GetRecurringExtendedCostOk

func (o *QuoteItemView) GetRecurringExtendedCostOk() (*float64, bool)

GetRecurringExtendedCostOk returns a tuple with the RecurringExtendedCost field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetRecurringExtendedSuggestedPrice

func (o *QuoteItemView) GetRecurringExtendedSuggestedPrice() float64

GetRecurringExtendedSuggestedPrice returns the RecurringExtendedSuggestedPrice field value if set, zero value otherwise.

func (*QuoteItemView) GetRecurringExtendedSuggestedPriceOk

func (o *QuoteItemView) GetRecurringExtendedSuggestedPriceOk() (*float64, bool)

GetRecurringExtendedSuggestedPriceOk returns a tuple with the RecurringExtendedSuggestedPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetRecurringGst

func (o *QuoteItemView) GetRecurringGst() float64

GetRecurringGst returns the RecurringGst field value if set, zero value otherwise.

func (*QuoteItemView) GetRecurringGstOk

func (o *QuoteItemView) GetRecurringGstOk() (*float64, bool)

GetRecurringGstOk returns a tuple with the RecurringGst field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetRecurringPrice

func (o *QuoteItemView) GetRecurringPrice() float64

GetRecurringPrice returns the RecurringPrice field value if set, zero value otherwise.

func (*QuoteItemView) GetRecurringPriceModifier

func (o *QuoteItemView) GetRecurringPriceModifier() string

GetRecurringPriceModifier returns the RecurringPriceModifier field value if set, zero value otherwise.

func (*QuoteItemView) GetRecurringPriceModifierOk

func (o *QuoteItemView) GetRecurringPriceModifierOk() (*string, bool)

GetRecurringPriceModifierOk returns a tuple with the RecurringPriceModifier field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetRecurringPriceOk

func (o *QuoteItemView) GetRecurringPriceOk() (*float64, bool)

GetRecurringPriceOk returns a tuple with the RecurringPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetRecurringPst

func (o *QuoteItemView) GetRecurringPst() float64

GetRecurringPst returns the RecurringPst field value if set, zero value otherwise.

func (*QuoteItemView) GetRecurringPstOk

func (o *QuoteItemView) GetRecurringPstOk() (*float64, bool)

GetRecurringPstOk returns a tuple with the RecurringPst field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetRecurringSuggestedPrice

func (o *QuoteItemView) GetRecurringSuggestedPrice() float64

GetRecurringSuggestedPrice returns the RecurringSuggestedPrice field value if set, zero value otherwise.

func (*QuoteItemView) GetRecurringSuggestedPriceOk

func (o *QuoteItemView) GetRecurringSuggestedPriceOk() (*float64, bool)

GetRecurringSuggestedPriceOk returns a tuple with the RecurringSuggestedPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetRecurringTax

func (o *QuoteItemView) GetRecurringTax() float64

GetRecurringTax returns the RecurringTax field value if set, zero value otherwise.

func (*QuoteItemView) GetRecurringTaxOk

func (o *QuoteItemView) GetRecurringTaxOk() (*float64, bool)

GetRecurringTaxOk returns a tuple with the RecurringTax field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetRecurringTotal

func (o *QuoteItemView) GetRecurringTotal() float64

GetRecurringTotal returns the RecurringTotal field value if set, zero value otherwise.

func (*QuoteItemView) GetRecurringTotalOk

func (o *QuoteItemView) GetRecurringTotalOk() (*float64, bool)

GetRecurringTotalOk returns a tuple with the RecurringTotal field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetReplacementSku

func (o *QuoteItemView) GetReplacementSku() string

GetReplacementSku returns the ReplacementSku field value if set, zero value otherwise.

func (*QuoteItemView) GetReplacementSkuOk

func (o *QuoteItemView) GetReplacementSkuOk() (*string, bool)

GetReplacementSkuOk returns a tuple with the ReplacementSku field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetShortDescription

func (o *QuoteItemView) GetShortDescription() string

GetShortDescription returns the ShortDescription field value if set, zero value otherwise.

func (*QuoteItemView) GetShortDescriptionOk

func (o *QuoteItemView) GetShortDescriptionOk() (*string, bool)

GetShortDescriptionOk returns a tuple with the ShortDescription field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetSortOrder

func (o *QuoteItemView) GetSortOrder() int32

GetSortOrder returns the SortOrder field value if set, zero value otherwise.

func (*QuoteItemView) GetSortOrderOk

func (o *QuoteItemView) GetSortOrderOk() (*int32, bool)

GetSortOrderOk returns a tuple with the SortOrder field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetSource

func (o *QuoteItemView) GetSource() string

GetSource returns the Source field value if set, zero value otherwise.

func (*QuoteItemView) GetSourceManufacturerId

func (o *QuoteItemView) GetSourceManufacturerId() string

GetSourceManufacturerId returns the SourceManufacturerId field value if set, zero value otherwise.

func (*QuoteItemView) GetSourceManufacturerIdOk

func (o *QuoteItemView) GetSourceManufacturerIdOk() (*string, bool)

GetSourceManufacturerIdOk returns a tuple with the SourceManufacturerId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetSourceManufacturerName

func (o *QuoteItemView) GetSourceManufacturerName() string

GetSourceManufacturerName returns the SourceManufacturerName field value if set, zero value otherwise.

func (*QuoteItemView) GetSourceManufacturerNameOk

func (o *QuoteItemView) GetSourceManufacturerNameOk() (*string, bool)

GetSourceManufacturerNameOk returns a tuple with the SourceManufacturerName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetSourceOk

func (o *QuoteItemView) GetSourceOk() (*string, bool)

GetSourceOk returns a tuple with the Source field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetSourceSelectionDetails

func (o *QuoteItemView) GetSourceSelectionDetails() string

GetSourceSelectionDetails returns the SourceSelectionDetails field value if set, zero value otherwise.

func (*QuoteItemView) GetSourceSelectionDetailsOk

func (o *QuoteItemView) GetSourceSelectionDetailsOk() (*string, bool)

GetSourceSelectionDetailsOk returns a tuple with the SourceSelectionDetails field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetSourceVendorId

func (o *QuoteItemView) GetSourceVendorId() string

GetSourceVendorId returns the SourceVendorId field value if set, zero value otherwise.

func (*QuoteItemView) GetSourceVendorIdOk

func (o *QuoteItemView) GetSourceVendorIdOk() (*string, bool)

GetSourceVendorIdOk returns a tuple with the SourceVendorId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetSourceVendorName

func (o *QuoteItemView) GetSourceVendorName() string

GetSourceVendorName returns the SourceVendorName field value if set, zero value otherwise.

func (*QuoteItemView) GetSourceVendorNameOk

func (o *QuoteItemView) GetSourceVendorNameOk() (*string, bool)

GetSourceVendorNameOk returns a tuple with the SourceVendorName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetStartingCost

func (o *QuoteItemView) GetStartingCost() float64

GetStartingCost returns the StartingCost field value if set, zero value otherwise.

func (*QuoteItemView) GetStartingCostOk

func (o *QuoteItemView) GetStartingCostOk() (*float64, bool)

GetStartingCostOk returns a tuple with the StartingCost field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetStateGovPrice

func (o *QuoteItemView) GetStateGovPrice() float64

GetStateGovPrice returns the StateGovPrice field value if set, zero value otherwise.

func (*QuoteItemView) GetStateGovPriceOk

func (o *QuoteItemView) GetStateGovPriceOk() (*float64, bool)

GetStateGovPriceOk returns a tuple with the StateGovPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetSuggestedPrice

func (o *QuoteItemView) GetSuggestedPrice() float64

GetSuggestedPrice returns the SuggestedPrice field value if set, zero value otherwise.

func (*QuoteItemView) GetSuggestedPriceOk

func (o *QuoteItemView) GetSuggestedPriceOk() (*float64, bool)

GetSuggestedPriceOk returns a tuple with the SuggestedPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetSvcSpread

func (o *QuoteItemView) GetSvcSpread() float64

GetSvcSpread returns the SvcSpread field value if set, zero value otherwise.

func (*QuoteItemView) GetSvcSpreadOk

func (o *QuoteItemView) GetSvcSpreadOk() (*float64, bool)

GetSvcSpreadOk returns a tuple with the SvcSpread field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetTax

func (o *QuoteItemView) GetTax() float64

GetTax returns the Tax field value if set, zero value otherwise.

func (*QuoteItemView) GetTaxCode

func (o *QuoteItemView) GetTaxCode() string

GetTaxCode returns the TaxCode field value if set, zero value otherwise.

func (*QuoteItemView) GetTaxCodeOk

func (o *QuoteItemView) GetTaxCodeOk() (*string, bool)

GetTaxCodeOk returns a tuple with the TaxCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetTaxConverted

func (o *QuoteItemView) GetTaxConverted() float64

GetTaxConverted returns the TaxConverted field value if set, zero value otherwise.

func (*QuoteItemView) GetTaxConvertedOk

func (o *QuoteItemView) GetTaxConvertedOk() (*float64, bool)

GetTaxConvertedOk returns a tuple with the TaxConverted field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetTaxOk

func (o *QuoteItemView) GetTaxOk() (*float64, bool)

GetTaxOk returns a tuple with the Tax field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetTaxRate

func (o *QuoteItemView) GetTaxRate() float64

GetTaxRate returns the TaxRate field value if set, zero value otherwise.

func (*QuoteItemView) GetTaxRateOk

func (o *QuoteItemView) GetTaxRateOk() (*float64, bool)

GetTaxRateOk returns a tuple with the TaxRate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetThumbnail

func (o *QuoteItemView) GetThumbnail() string

GetThumbnail returns the Thumbnail field value if set, zero value otherwise.

func (*QuoteItemView) GetThumbnailOk

func (o *QuoteItemView) GetThumbnailOk() (*string, bool)

GetThumbnailOk returns a tuple with the Thumbnail field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetTotalWeight

func (o *QuoteItemView) GetTotalWeight() float64

GetTotalWeight returns the TotalWeight field value if set, zero value otherwise.

func (*QuoteItemView) GetTotalWeightOk

func (o *QuoteItemView) GetTotalWeightOk() (*float64, bool)

GetTotalWeightOk returns a tuple with the TotalWeight field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetUom

func (o *QuoteItemView) GetUom() string

GetUom returns the Uom field value if set, zero value otherwise.

func (*QuoteItemView) GetUomFactor

func (o *QuoteItemView) GetUomFactor() int32

GetUomFactor returns the UomFactor field value if set, zero value otherwise.

func (*QuoteItemView) GetUomFactorOk

func (o *QuoteItemView) GetUomFactorOk() (*int32, bool)

GetUomFactorOk returns a tuple with the UomFactor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetUomOk

func (o *QuoteItemView) GetUomOk() (*string, bool)

GetUomOk returns a tuple with the Uom field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetUomWeight

func (o *QuoteItemView) GetUomWeight() float64

GetUomWeight returns the UomWeight field value if set, zero value otherwise.

func (*QuoteItemView) GetUomWeightOk

func (o *QuoteItemView) GetUomWeightOk() (*float64, bool)

GetUomWeightOk returns a tuple with the UomWeight field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetUop

func (o *QuoteItemView) GetUop() string

GetUop returns the Uop field value if set, zero value otherwise.

func (*QuoteItemView) GetUopFactor

func (o *QuoteItemView) GetUopFactor() int32

GetUopFactor returns the UopFactor field value if set, zero value otherwise.

func (*QuoteItemView) GetUopFactorOk

func (o *QuoteItemView) GetUopFactorOk() (*int32, bool)

GetUopFactorOk returns a tuple with the UopFactor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetUopOk

func (o *QuoteItemView) GetUopOk() (*string, bool)

GetUopOk returns a tuple with the Uop field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetUpcNumber

func (o *QuoteItemView) GetUpcNumber() string

GetUpcNumber returns the UpcNumber field value if set, zero value otherwise.

func (*QuoteItemView) GetUpcNumberOk

func (o *QuoteItemView) GetUpcNumberOk() (*string, bool)

GetUpcNumberOk returns a tuple with the UpcNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetUserId

func (o *QuoteItemView) GetUserId() string

GetUserId returns the UserId field value if set, zero value otherwise.

func (*QuoteItemView) GetUserIdOk

func (o *QuoteItemView) GetUserIdOk() (*string, bool)

GetUserIdOk returns a tuple with the UserId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetVendorPartNumber

func (o *QuoteItemView) GetVendorPartNumber() string

GetVendorPartNumber returns the VendorPartNumber field value if set, zero value otherwise.

func (*QuoteItemView) GetVendorPartNumberOk

func (o *QuoteItemView) GetVendorPartNumberOk() (*string, bool)

GetVendorPartNumberOk returns a tuple with the VendorPartNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetWarehouse

func (o *QuoteItemView) GetWarehouse() string

GetWarehouse returns the Warehouse field value if set, zero value otherwise.

func (*QuoteItemView) GetWarehouseCode

func (o *QuoteItemView) GetWarehouseCode() string

GetWarehouseCode returns the WarehouseCode field value if set, zero value otherwise.

func (*QuoteItemView) GetWarehouseCodeOk

func (o *QuoteItemView) GetWarehouseCodeOk() (*string, bool)

GetWarehouseCodeOk returns a tuple with the WarehouseCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetWarehouseOk

func (o *QuoteItemView) GetWarehouseOk() (*string, bool)

GetWarehouseOk returns a tuple with the Warehouse field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetZCustomBool1

func (o *QuoteItemView) GetZCustomBool1() bool

GetZCustomBool1 returns the ZCustomBool1 field value if set, zero value otherwise.

func (*QuoteItemView) GetZCustomBool1Ok

func (o *QuoteItemView) GetZCustomBool1Ok() (*bool, bool)

GetZCustomBool1Ok returns a tuple with the ZCustomBool1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetZCustomBool2

func (o *QuoteItemView) GetZCustomBool2() bool

GetZCustomBool2 returns the ZCustomBool2 field value if set, zero value otherwise.

func (*QuoteItemView) GetZCustomBool2Ok

func (o *QuoteItemView) GetZCustomBool2Ok() (*bool, bool)

GetZCustomBool2Ok returns a tuple with the ZCustomBool2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetZCustomBool3

func (o *QuoteItemView) GetZCustomBool3() bool

GetZCustomBool3 returns the ZCustomBool3 field value if set, zero value otherwise.

func (*QuoteItemView) GetZCustomBool3Ok

func (o *QuoteItemView) GetZCustomBool3Ok() (*bool, bool)

GetZCustomBool3Ok returns a tuple with the ZCustomBool3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetZCustomBool4

func (o *QuoteItemView) GetZCustomBool4() bool

GetZCustomBool4 returns the ZCustomBool4 field value if set, zero value otherwise.

func (*QuoteItemView) GetZCustomBool4Ok

func (o *QuoteItemView) GetZCustomBool4Ok() (*bool, bool)

GetZCustomBool4Ok returns a tuple with the ZCustomBool4 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetZCustomBool5

func (o *QuoteItemView) GetZCustomBool5() bool

GetZCustomBool5 returns the ZCustomBool5 field value if set, zero value otherwise.

func (*QuoteItemView) GetZCustomBool5Ok

func (o *QuoteItemView) GetZCustomBool5Ok() (*bool, bool)

GetZCustomBool5Ok returns a tuple with the ZCustomBool5 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetZCustomBool6

func (o *QuoteItemView) GetZCustomBool6() bool

GetZCustomBool6 returns the ZCustomBool6 field value if set, zero value otherwise.

func (*QuoteItemView) GetZCustomBool6Ok

func (o *QuoteItemView) GetZCustomBool6Ok() (*bool, bool)

GetZCustomBool6Ok returns a tuple with the ZCustomBool6 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetZCustomBool7

func (o *QuoteItemView) GetZCustomBool7() bool

GetZCustomBool7 returns the ZCustomBool7 field value if set, zero value otherwise.

func (*QuoteItemView) GetZCustomBool7Ok

func (o *QuoteItemView) GetZCustomBool7Ok() (*bool, bool)

GetZCustomBool7Ok returns a tuple with the ZCustomBool7 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetZCustomBool8

func (o *QuoteItemView) GetZCustomBool8() bool

GetZCustomBool8 returns the ZCustomBool8 field value if set, zero value otherwise.

func (*QuoteItemView) GetZCustomBool8Ok

func (o *QuoteItemView) GetZCustomBool8Ok() (*bool, bool)

GetZCustomBool8Ok returns a tuple with the ZCustomBool8 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetZCustomBool9

func (o *QuoteItemView) GetZCustomBool9() bool

GetZCustomBool9 returns the ZCustomBool9 field value if set, zero value otherwise.

func (*QuoteItemView) GetZCustomBool9Ok

func (o *QuoteItemView) GetZCustomBool9Ok() (*bool, bool)

GetZCustomBool9Ok returns a tuple with the ZCustomBool9 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetZCustomBool10

func (o *QuoteItemView) GetZCustomBool10() bool

GetZCustomBool10 returns the ZCustomBool10 field value if set, zero value otherwise.

func (*QuoteItemView) GetZCustomBool10Ok

func (o *QuoteItemView) GetZCustomBool10Ok() (*bool, bool)

GetZCustomBool10Ok returns a tuple with the ZCustomBool10 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetZCustomDate1

func (o *QuoteItemView) GetZCustomDate1() time.Time

GetZCustomDate1 returns the ZCustomDate1 field value if set, zero value otherwise.

func (*QuoteItemView) GetZCustomDate1Ok

func (o *QuoteItemView) GetZCustomDate1Ok() (*time.Time, bool)

GetZCustomDate1Ok returns a tuple with the ZCustomDate1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetZCustomDate2

func (o *QuoteItemView) GetZCustomDate2() time.Time

GetZCustomDate2 returns the ZCustomDate2 field value if set, zero value otherwise.

func (*QuoteItemView) GetZCustomDate2Ok

func (o *QuoteItemView) GetZCustomDate2Ok() (*time.Time, bool)

GetZCustomDate2Ok returns a tuple with the ZCustomDate2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetZCustomDecimal1

func (o *QuoteItemView) GetZCustomDecimal1() float64

GetZCustomDecimal1 returns the ZCustomDecimal1 field value if set, zero value otherwise.

func (*QuoteItemView) GetZCustomDecimal1Ok

func (o *QuoteItemView) GetZCustomDecimal1Ok() (*float64, bool)

GetZCustomDecimal1Ok returns a tuple with the ZCustomDecimal1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetZCustomDecimal2

func (o *QuoteItemView) GetZCustomDecimal2() float64

GetZCustomDecimal2 returns the ZCustomDecimal2 field value if set, zero value otherwise.

func (*QuoteItemView) GetZCustomDecimal2Ok

func (o *QuoteItemView) GetZCustomDecimal2Ok() (*float64, bool)

GetZCustomDecimal2Ok returns a tuple with the ZCustomDecimal2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetZCustomDecimal3

func (o *QuoteItemView) GetZCustomDecimal3() float64

GetZCustomDecimal3 returns the ZCustomDecimal3 field value if set, zero value otherwise.

func (*QuoteItemView) GetZCustomDecimal3Ok

func (o *QuoteItemView) GetZCustomDecimal3Ok() (*float64, bool)

GetZCustomDecimal3Ok returns a tuple with the ZCustomDecimal3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetZCustomDecimal4

func (o *QuoteItemView) GetZCustomDecimal4() float64

GetZCustomDecimal4 returns the ZCustomDecimal4 field value if set, zero value otherwise.

func (*QuoteItemView) GetZCustomDecimal4Ok

func (o *QuoteItemView) GetZCustomDecimal4Ok() (*float64, bool)

GetZCustomDecimal4Ok returns a tuple with the ZCustomDecimal4 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetZCustomDecimal5

func (o *QuoteItemView) GetZCustomDecimal5() float64

GetZCustomDecimal5 returns the ZCustomDecimal5 field value if set, zero value otherwise.

func (*QuoteItemView) GetZCustomDecimal5Ok

func (o *QuoteItemView) GetZCustomDecimal5Ok() (*float64, bool)

GetZCustomDecimal5Ok returns a tuple with the ZCustomDecimal5 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetZCustomDecimal6

func (o *QuoteItemView) GetZCustomDecimal6() float64

GetZCustomDecimal6 returns the ZCustomDecimal6 field value if set, zero value otherwise.

func (*QuoteItemView) GetZCustomDecimal6Ok

func (o *QuoteItemView) GetZCustomDecimal6Ok() (*float64, bool)

GetZCustomDecimal6Ok returns a tuple with the ZCustomDecimal6 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetZCustomDecimal7

func (o *QuoteItemView) GetZCustomDecimal7() float64

GetZCustomDecimal7 returns the ZCustomDecimal7 field value if set, zero value otherwise.

func (*QuoteItemView) GetZCustomDecimal7Ok

func (o *QuoteItemView) GetZCustomDecimal7Ok() (*float64, bool)

GetZCustomDecimal7Ok returns a tuple with the ZCustomDecimal7 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetZCustomDecimal8

func (o *QuoteItemView) GetZCustomDecimal8() float64

GetZCustomDecimal8 returns the ZCustomDecimal8 field value if set, zero value otherwise.

func (*QuoteItemView) GetZCustomDecimal8Ok

func (o *QuoteItemView) GetZCustomDecimal8Ok() (*float64, bool)

GetZCustomDecimal8Ok returns a tuple with the ZCustomDecimal8 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetZCustomDecimal9

func (o *QuoteItemView) GetZCustomDecimal9() float64

GetZCustomDecimal9 returns the ZCustomDecimal9 field value if set, zero value otherwise.

func (*QuoteItemView) GetZCustomDecimal9Ok

func (o *QuoteItemView) GetZCustomDecimal9Ok() (*float64, bool)

GetZCustomDecimal9Ok returns a tuple with the ZCustomDecimal9 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetZCustomDecimal10

func (o *QuoteItemView) GetZCustomDecimal10() float64

GetZCustomDecimal10 returns the ZCustomDecimal10 field value if set, zero value otherwise.

func (*QuoteItemView) GetZCustomDecimal10Ok

func (o *QuoteItemView) GetZCustomDecimal10Ok() (*float64, bool)

GetZCustomDecimal10Ok returns a tuple with the ZCustomDecimal10 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetZCustomNotes1

func (o *QuoteItemView) GetZCustomNotes1() string

GetZCustomNotes1 returns the ZCustomNotes1 field value if set, zero value otherwise.

func (*QuoteItemView) GetZCustomNotes1Ok

func (o *QuoteItemView) GetZCustomNotes1Ok() (*string, bool)

GetZCustomNotes1Ok returns a tuple with the ZCustomNotes1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetZCustomNotes2

func (o *QuoteItemView) GetZCustomNotes2() string

GetZCustomNotes2 returns the ZCustomNotes2 field value if set, zero value otherwise.

func (*QuoteItemView) GetZCustomNotes2Ok

func (o *QuoteItemView) GetZCustomNotes2Ok() (*string, bool)

GetZCustomNotes2Ok returns a tuple with the ZCustomNotes2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetZCustomNotes3

func (o *QuoteItemView) GetZCustomNotes3() string

GetZCustomNotes3 returns the ZCustomNotes3 field value if set, zero value otherwise.

func (*QuoteItemView) GetZCustomNotes3Ok

func (o *QuoteItemView) GetZCustomNotes3Ok() (*string, bool)

GetZCustomNotes3Ok returns a tuple with the ZCustomNotes3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetZCustomNotes4

func (o *QuoteItemView) GetZCustomNotes4() string

GetZCustomNotes4 returns the ZCustomNotes4 field value if set, zero value otherwise.

func (*QuoteItemView) GetZCustomNotes4Ok

func (o *QuoteItemView) GetZCustomNotes4Ok() (*string, bool)

GetZCustomNotes4Ok returns a tuple with the ZCustomNotes4 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetZCustomNotes5

func (o *QuoteItemView) GetZCustomNotes5() string

GetZCustomNotes5 returns the ZCustomNotes5 field value if set, zero value otherwise.

func (*QuoteItemView) GetZCustomNotes5Ok

func (o *QuoteItemView) GetZCustomNotes5Ok() (*string, bool)

GetZCustomNotes5Ok returns a tuple with the ZCustomNotes5 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetZCustomNotes6

func (o *QuoteItemView) GetZCustomNotes6() string

GetZCustomNotes6 returns the ZCustomNotes6 field value if set, zero value otherwise.

func (*QuoteItemView) GetZCustomNotes6Ok

func (o *QuoteItemView) GetZCustomNotes6Ok() (*string, bool)

GetZCustomNotes6Ok returns a tuple with the ZCustomNotes6 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetZCustomNotes7

func (o *QuoteItemView) GetZCustomNotes7() string

GetZCustomNotes7 returns the ZCustomNotes7 field value if set, zero value otherwise.

func (*QuoteItemView) GetZCustomNotes7Ok

func (o *QuoteItemView) GetZCustomNotes7Ok() (*string, bool)

GetZCustomNotes7Ok returns a tuple with the ZCustomNotes7 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetZCustomNotes8

func (o *QuoteItemView) GetZCustomNotes8() string

GetZCustomNotes8 returns the ZCustomNotes8 field value if set, zero value otherwise.

func (*QuoteItemView) GetZCustomNotes8Ok

func (o *QuoteItemView) GetZCustomNotes8Ok() (*string, bool)

GetZCustomNotes8Ok returns a tuple with the ZCustomNotes8 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetZCustomNotes9

func (o *QuoteItemView) GetZCustomNotes9() string

GetZCustomNotes9 returns the ZCustomNotes9 field value if set, zero value otherwise.

func (*QuoteItemView) GetZCustomNotes9Ok

func (o *QuoteItemView) GetZCustomNotes9Ok() (*string, bool)

GetZCustomNotes9Ok returns a tuple with the ZCustomNotes9 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetZCustomNotes10

func (o *QuoteItemView) GetZCustomNotes10() string

GetZCustomNotes10 returns the ZCustomNotes10 field value if set, zero value otherwise.

func (*QuoteItemView) GetZCustomNotes10Ok

func (o *QuoteItemView) GetZCustomNotes10Ok() (*string, bool)

GetZCustomNotes10Ok returns a tuple with the ZCustomNotes10 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetZCustomString1

func (o *QuoteItemView) GetZCustomString1() string

GetZCustomString1 returns the ZCustomString1 field value if set, zero value otherwise.

func (*QuoteItemView) GetZCustomString1Ok

func (o *QuoteItemView) GetZCustomString1Ok() (*string, bool)

GetZCustomString1Ok returns a tuple with the ZCustomString1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetZCustomString2

func (o *QuoteItemView) GetZCustomString2() string

GetZCustomString2 returns the ZCustomString2 field value if set, zero value otherwise.

func (*QuoteItemView) GetZCustomString2Ok

func (o *QuoteItemView) GetZCustomString2Ok() (*string, bool)

GetZCustomString2Ok returns a tuple with the ZCustomString2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetZCustomString3

func (o *QuoteItemView) GetZCustomString3() string

GetZCustomString3 returns the ZCustomString3 field value if set, zero value otherwise.

func (*QuoteItemView) GetZCustomString3Ok

func (o *QuoteItemView) GetZCustomString3Ok() (*string, bool)

GetZCustomString3Ok returns a tuple with the ZCustomString3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetZCustomString4

func (o *QuoteItemView) GetZCustomString4() string

GetZCustomString4 returns the ZCustomString4 field value if set, zero value otherwise.

func (*QuoteItemView) GetZCustomString4Ok

func (o *QuoteItemView) GetZCustomString4Ok() (*string, bool)

GetZCustomString4Ok returns a tuple with the ZCustomString4 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetZCustomString5

func (o *QuoteItemView) GetZCustomString5() string

GetZCustomString5 returns the ZCustomString5 field value if set, zero value otherwise.

func (*QuoteItemView) GetZCustomString5Ok

func (o *QuoteItemView) GetZCustomString5Ok() (*string, bool)

GetZCustomString5Ok returns a tuple with the ZCustomString5 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetZCustomString6

func (o *QuoteItemView) GetZCustomString6() string

GetZCustomString6 returns the ZCustomString6 field value if set, zero value otherwise.

func (*QuoteItemView) GetZCustomString6Ok

func (o *QuoteItemView) GetZCustomString6Ok() (*string, bool)

GetZCustomString6Ok returns a tuple with the ZCustomString6 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetZCustomString7

func (o *QuoteItemView) GetZCustomString7() string

GetZCustomString7 returns the ZCustomString7 field value if set, zero value otherwise.

func (*QuoteItemView) GetZCustomString7Ok

func (o *QuoteItemView) GetZCustomString7Ok() (*string, bool)

GetZCustomString7Ok returns a tuple with the ZCustomString7 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetZCustomString8

func (o *QuoteItemView) GetZCustomString8() string

GetZCustomString8 returns the ZCustomString8 field value if set, zero value otherwise.

func (*QuoteItemView) GetZCustomString8Ok

func (o *QuoteItemView) GetZCustomString8Ok() (*string, bool)

GetZCustomString8Ok returns a tuple with the ZCustomString8 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetZCustomString9

func (o *QuoteItemView) GetZCustomString9() string

GetZCustomString9 returns the ZCustomString9 field value if set, zero value otherwise.

func (*QuoteItemView) GetZCustomString9Ok

func (o *QuoteItemView) GetZCustomString9Ok() (*string, bool)

GetZCustomString9Ok returns a tuple with the ZCustomString9 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetZCustomString10

func (o *QuoteItemView) GetZCustomString10() string

GetZCustomString10 returns the ZCustomString10 field value if set, zero value otherwise.

func (*QuoteItemView) GetZCustomString10Ok

func (o *QuoteItemView) GetZCustomString10Ok() (*string, bool)

GetZCustomString10Ok returns a tuple with the ZCustomString10 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetZCustomString11

func (o *QuoteItemView) GetZCustomString11() string

GetZCustomString11 returns the ZCustomString11 field value if set, zero value otherwise.

func (*QuoteItemView) GetZCustomString11Ok

func (o *QuoteItemView) GetZCustomString11Ok() (*string, bool)

GetZCustomString11Ok returns a tuple with the ZCustomString11 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetZCustomString12

func (o *QuoteItemView) GetZCustomString12() string

GetZCustomString12 returns the ZCustomString12 field value if set, zero value otherwise.

func (*QuoteItemView) GetZCustomString12Ok

func (o *QuoteItemView) GetZCustomString12Ok() (*string, bool)

GetZCustomString12Ok returns a tuple with the ZCustomString12 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetZCustomString13

func (o *QuoteItemView) GetZCustomString13() string

GetZCustomString13 returns the ZCustomString13 field value if set, zero value otherwise.

func (*QuoteItemView) GetZCustomString13Ok

func (o *QuoteItemView) GetZCustomString13Ok() (*string, bool)

GetZCustomString13Ok returns a tuple with the ZCustomString13 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetZCustomString14

func (o *QuoteItemView) GetZCustomString14() string

GetZCustomString14 returns the ZCustomString14 field value if set, zero value otherwise.

func (*QuoteItemView) GetZCustomString14Ok

func (o *QuoteItemView) GetZCustomString14Ok() (*string, bool)

GetZCustomString14Ok returns a tuple with the ZCustomString14 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetZCustomString15

func (o *QuoteItemView) GetZCustomString15() string

GetZCustomString15 returns the ZCustomString15 field value if set, zero value otherwise.

func (*QuoteItemView) GetZCustomString15Ok

func (o *QuoteItemView) GetZCustomString15Ok() (*string, bool)

GetZCustomString15Ok returns a tuple with the ZCustomString15 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetZCustomString16

func (o *QuoteItemView) GetZCustomString16() string

GetZCustomString16 returns the ZCustomString16 field value if set, zero value otherwise.

func (*QuoteItemView) GetZCustomString16Ok

func (o *QuoteItemView) GetZCustomString16Ok() (*string, bool)

GetZCustomString16Ok returns a tuple with the ZCustomString16 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetZCustomString17

func (o *QuoteItemView) GetZCustomString17() string

GetZCustomString17 returns the ZCustomString17 field value if set, zero value otherwise.

func (*QuoteItemView) GetZCustomString17Ok

func (o *QuoteItemView) GetZCustomString17Ok() (*string, bool)

GetZCustomString17Ok returns a tuple with the ZCustomString17 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetZCustomString18

func (o *QuoteItemView) GetZCustomString18() string

GetZCustomString18 returns the ZCustomString18 field value if set, zero value otherwise.

func (*QuoteItemView) GetZCustomString18Ok

func (o *QuoteItemView) GetZCustomString18Ok() (*string, bool)

GetZCustomString18Ok returns a tuple with the ZCustomString18 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetZCustomString19

func (o *QuoteItemView) GetZCustomString19() string

GetZCustomString19 returns the ZCustomString19 field value if set, zero value otherwise.

func (*QuoteItemView) GetZCustomString19Ok

func (o *QuoteItemView) GetZCustomString19Ok() (*string, bool)

GetZCustomString19Ok returns a tuple with the ZCustomString19 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetZCustomString20

func (o *QuoteItemView) GetZCustomString20() string

GetZCustomString20 returns the ZCustomString20 field value if set, zero value otherwise.

func (*QuoteItemView) GetZCustomString20Ok

func (o *QuoteItemView) GetZCustomString20Ok() (*string, bool)

GetZCustomString20Ok returns a tuple with the ZCustomString20 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetZCustomString21

func (o *QuoteItemView) GetZCustomString21() string

GetZCustomString21 returns the ZCustomString21 field value if set, zero value otherwise.

func (*QuoteItemView) GetZCustomString21Ok

func (o *QuoteItemView) GetZCustomString21Ok() (*string, bool)

GetZCustomString21Ok returns a tuple with the ZCustomString21 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetZCustomString22

func (o *QuoteItemView) GetZCustomString22() string

GetZCustomString22 returns the ZCustomString22 field value if set, zero value otherwise.

func (*QuoteItemView) GetZCustomString22Ok

func (o *QuoteItemView) GetZCustomString22Ok() (*string, bool)

GetZCustomString22Ok returns a tuple with the ZCustomString22 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetZCustomString23

func (o *QuoteItemView) GetZCustomString23() string

GetZCustomString23 returns the ZCustomString23 field value if set, zero value otherwise.

func (*QuoteItemView) GetZCustomString23Ok

func (o *QuoteItemView) GetZCustomString23Ok() (*string, bool)

GetZCustomString23Ok returns a tuple with the ZCustomString23 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetZCustomString24

func (o *QuoteItemView) GetZCustomString24() string

GetZCustomString24 returns the ZCustomString24 field value if set, zero value otherwise.

func (*QuoteItemView) GetZCustomString24Ok

func (o *QuoteItemView) GetZCustomString24Ok() (*string, bool)

GetZCustomString24Ok returns a tuple with the ZCustomString24 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetZCustomString25

func (o *QuoteItemView) GetZCustomString25() string

GetZCustomString25 returns the ZCustomString25 field value if set, zero value otherwise.

func (*QuoteItemView) GetZCustomString25Ok

func (o *QuoteItemView) GetZCustomString25Ok() (*string, bool)

GetZCustomString25Ok returns a tuple with the ZCustomString25 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) GetZCustomText1

func (o *QuoteItemView) GetZCustomText1() string

GetZCustomText1 returns the ZCustomText1 field value if set, zero value otherwise.

func (*QuoteItemView) GetZCustomText1Ok

func (o *QuoteItemView) GetZCustomText1Ok() (*string, bool)

GetZCustomText1Ok returns a tuple with the ZCustomText1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemView) HasApprovalContentHash

func (o *QuoteItemView) HasApprovalContentHash() bool

HasApprovalContentHash returns a boolean if a field has been set.

func (*QuoteItemView) HasApprovalMarginMinimum

func (o *QuoteItemView) HasApprovalMarginMinimum() bool

HasApprovalMarginMinimum returns a boolean if a field has been set.

func (*QuoteItemView) HasApprovalOnChange

func (o *QuoteItemView) HasApprovalOnChange() bool

HasApprovalOnChange returns a boolean if a field has been set.

func (*QuoteItemView) HasApprovalPriceMinimum

func (o *QuoteItemView) HasApprovalPriceMinimum() bool

HasApprovalPriceMinimum returns a boolean if a field has been set.

func (*QuoteItemView) HasBasePrice

func (o *QuoteItemView) HasBasePrice() bool

HasBasePrice returns a boolean if a field has been set.

func (*QuoteItemView) HasConfigId

func (o *QuoteItemView) HasConfigId() bool

HasConfigId returns a boolean if a field has been set.

func (*QuoteItemView) HasConfigPosition

func (o *QuoteItemView) HasConfigPosition() bool

HasConfigPosition returns a boolean if a field has been set.

func (*QuoteItemView) HasCost

func (o *QuoteItemView) HasCost() bool

HasCost returns a boolean if a field has been set.

func (*QuoteItemView) HasCostModifier

func (o *QuoteItemView) HasCostModifier() bool

HasCostModifier returns a boolean if a field has been set.

func (*QuoteItemView) HasCrmReference

func (o *QuoteItemView) HasCrmReference() bool

HasCrmReference returns a boolean if a field has been set.

func (*QuoteItemView) HasCwAgreement

func (o *QuoteItemView) HasCwAgreement() bool

HasCwAgreement returns a boolean if a field has been set.

func (*QuoteItemView) HasCwClass

func (o *QuoteItemView) HasCwClass() bool

HasCwClass returns a boolean if a field has been set.

func (*QuoteItemView) HasDefermentPeriods

func (o *QuoteItemView) HasDefermentPeriods() bool

HasDefermentPeriods returns a boolean if a field has been set.

func (*QuoteItemView) HasDimension1

func (o *QuoteItemView) HasDimension1() bool

HasDimension1 returns a boolean if a field has been set.

func (*QuoteItemView) HasDimension2

func (o *QuoteItemView) HasDimension2() bool

HasDimension2 returns a boolean if a field has been set.

func (*QuoteItemView) HasDimension3

func (o *QuoteItemView) HasDimension3() bool

HasDimension3 returns a boolean if a field has been set.

func (*QuoteItemView) HasDimension4

func (o *QuoteItemView) HasDimension4() bool

HasDimension4 returns a boolean if a field has been set.

func (*QuoteItemView) HasDimension5

func (o *QuoteItemView) HasDimension5() bool

HasDimension5 returns a boolean if a field has been set.

func (*QuoteItemView) HasDisableRemaps

func (o *QuoteItemView) HasDisableRemaps() bool

HasDisableRemaps returns a boolean if a field has been set.

func (*QuoteItemView) HasDiscount

func (o *QuoteItemView) HasDiscount() bool

HasDiscount returns a boolean if a field has been set.

func (*QuoteItemView) HasDiscountAmount

func (o *QuoteItemView) HasDiscountAmount() bool

HasDiscountAmount returns a boolean if a field has been set.

func (*QuoteItemView) HasDiscountAmountConverted

func (o *QuoteItemView) HasDiscountAmountConverted() bool

HasDiscountAmountConverted returns a boolean if a field has been set.

func (*QuoteItemView) HasEnforceItemModTags

func (o *QuoteItemView) HasEnforceItemModTags() bool

HasEnforceItemModTags returns a boolean if a field has been set.

func (*QuoteItemView) HasEtilizeProductId

func (o *QuoteItemView) HasEtilizeProductId() bool

HasEtilizeProductId returns a boolean if a field has been set.

func (*QuoteItemView) HasEtilizeSerializedAttributes

func (o *QuoteItemView) HasEtilizeSerializedAttributes() bool

HasEtilizeSerializedAttributes returns a boolean if a field has been set.

func (*QuoteItemView) HasExtendedCost

func (o *QuoteItemView) HasExtendedCost() bool

HasExtendedCost returns a boolean if a field has been set.

func (*QuoteItemView) HasExtendedPrice

func (o *QuoteItemView) HasExtendedPrice() bool

HasExtendedPrice returns a boolean if a field has been set.

func (*QuoteItemView) HasExtendedPriceConverted

func (o *QuoteItemView) HasExtendedPriceConverted() bool

HasExtendedPriceConverted returns a boolean if a field has been set.

func (*QuoteItemView) HasExtendedSuggestedPrice

func (o *QuoteItemView) HasExtendedSuggestedPrice() bool

HasExtendedSuggestedPrice returns a boolean if a field has been set.

func (*QuoteItemView) HasExternalQuoteNumber

func (o *QuoteItemView) HasExternalQuoteNumber() bool

HasExternalQuoteNumber returns a boolean if a field has been set.

func (*QuoteItemView) HasExternalReference

func (o *QuoteItemView) HasExternalReference() bool

HasExternalReference returns a boolean if a field has been set.

func (*QuoteItemView) HasFactorItemMfp

func (o *QuoteItemView) HasFactorItemMfp() bool

HasFactorItemMfp returns a boolean if a field has been set.

func (*QuoteItemView) HasFactorQtyFixed

func (o *QuoteItemView) HasFactorQtyFixed() bool

HasFactorQtyFixed returns a boolean if a field has been set.

func (*QuoteItemView) HasFactorQtyMultiplier

func (o *QuoteItemView) HasFactorQtyMultiplier() bool

HasFactorQtyMultiplier returns a boolean if a field has been set.

func (*QuoteItemView) HasFederalGovPrice

func (o *QuoteItemView) HasFederalGovPrice() bool

HasFederalGovPrice returns a boolean if a field has been set.

func (*QuoteItemView) HasGrossMargin

func (o *QuoteItemView) HasGrossMargin() bool

HasGrossMargin returns a boolean if a field has been set.

func (*QuoteItemView) HasGroupingCode

func (o *QuoteItemView) HasGroupingCode() bool

HasGroupingCode returns a boolean if a field has been set.

func (*QuoteItemView) HasGsaPrice

func (o *QuoteItemView) HasGsaPrice() bool

HasGsaPrice returns a boolean if a field has been set.

func (*QuoteItemView) HasGst

func (o *QuoteItemView) HasGst() bool

HasGst returns a boolean if a field has been set.

func (*QuoteItemView) HasGstConverted

func (o *QuoteItemView) HasGstConverted() bool

HasGstConverted returns a boolean if a field has been set.

func (*QuoteItemView) HasGstRate

func (o *QuoteItemView) HasGstRate() bool

HasGstRate returns a boolean if a field has been set.

func (*QuoteItemView) HasId

func (o *QuoteItemView) HasId() bool

HasId returns a boolean if a field has been set.

func (*QuoteItemView) HasIdQuote

func (o *QuoteItemView) HasIdQuote() bool

HasIdQuote returns a boolean if a field has been set.

func (*QuoteItemView) HasIdQuoteTabs

func (o *QuoteItemView) HasIdQuoteTabs() bool

HasIdQuoteTabs returns a boolean if a field has been set.

func (*QuoteItemView) HasIdRecurringRevenue

func (o *QuoteItemView) HasIdRecurringRevenue() bool

HasIdRecurringRevenue returns a boolean if a field has been set.

func (*QuoteItemView) HasInvoiceGroupingId

func (o *QuoteItemView) HasInvoiceGroupingId() bool

HasInvoiceGroupingId returns a boolean if a field has been set.

func (*QuoteItemView) HasIsBundleComponent

func (o *QuoteItemView) HasIsBundleComponent() bool

HasIsBundleComponent returns a boolean if a field has been set.

func (*QuoteItemView) HasIsBundleHeader

func (o *QuoteItemView) HasIsBundleHeader() bool

HasIsBundleHeader returns a boolean if a field has been set.

func (*QuoteItemView) HasIsDeferrable

func (o *QuoteItemView) HasIsDeferrable() bool

HasIsDeferrable returns a boolean if a field has been set.

func (*QuoteItemView) HasIsHiddenItem

func (o *QuoteItemView) HasIsHiddenItem() bool

HasIsHiddenItem returns a boolean if a field has been set.

func (*QuoteItemView) HasIsMetadataItem

func (o *QuoteItemView) HasIsMetadataItem() bool

HasIsMetadataItem returns a boolean if a field has been set.

func (*QuoteItemView) HasIsModTagModified

func (o *QuoteItemView) HasIsModTagModified() bool

HasIsModTagModified returns a boolean if a field has been set.

func (*QuoteItemView) HasIsOptional

func (o *QuoteItemView) HasIsOptional() bool

HasIsOptional returns a boolean if a field has been set.

func (*QuoteItemView) HasIsOverrideQty

func (o *QuoteItemView) HasIsOverrideQty() bool

HasIsOverrideQty returns a boolean if a field has been set.

func (*QuoteItemView) HasIsPhaseItem

func (o *QuoteItemView) HasIsPhaseItem() bool

HasIsPhaseItem returns a boolean if a field has been set.

func (*QuoteItemView) HasIsPrinted

func (o *QuoteItemView) HasIsPrinted() bool

HasIsPrinted returns a boolean if a field has been set.

func (*QuoteItemView) HasIsPromotion

func (o *QuoteItemView) HasIsPromotion() bool

HasIsPromotion returns a boolean if a field has been set.

func (*QuoteItemView) HasIsProtectedItem

func (o *QuoteItemView) HasIsProtectedItem() bool

HasIsProtectedItem returns a boolean if a field has been set.

func (*QuoteItemView) HasIsProtectedPrice

func (o *QuoteItemView) HasIsProtectedPrice() bool

HasIsProtectedPrice returns a boolean if a field has been set.

func (*QuoteItemView) HasIsRampable

func (o *QuoteItemView) HasIsRampable() bool

HasIsRampable returns a boolean if a field has been set.

func (*QuoteItemView) HasIsRebate

func (o *QuoteItemView) HasIsRebate() bool

HasIsRebate returns a boolean if a field has been set.

func (*QuoteItemView) HasIsRecurringTaxable

func (o *QuoteItemView) HasIsRecurringTaxable() bool

HasIsRecurringTaxable returns a boolean if a field has been set.

func (*QuoteItemView) HasIsSelected

func (o *QuoteItemView) HasIsSelected() bool

HasIsSelected returns a boolean if a field has been set.

func (*QuoteItemView) HasIsShowPrice

func (o *QuoteItemView) HasIsShowPrice() bool

HasIsShowPrice returns a boolean if a field has been set.

func (*QuoteItemView) HasIsSold

func (o *QuoteItemView) HasIsSold() bool

HasIsSold returns a boolean if a field has been set.

func (*QuoteItemView) HasIsTaxable

func (o *QuoteItemView) HasIsTaxable() bool

HasIsTaxable returns a boolean if a field has been set.

func (*QuoteItemView) HasIsTotalsIncluded

func (o *QuoteItemView) HasIsTotalsIncluded() bool

HasIsTotalsIncluded returns a boolean if a field has been set.

func (*QuoteItemView) HasItemCube

func (o *QuoteItemView) HasItemCube() bool

HasItemCube returns a boolean if a field has been set.

func (*QuoteItemView) HasItemHeight

func (o *QuoteItemView) HasItemHeight() bool

HasItemHeight returns a boolean if a field has been set.

func (*QuoteItemView) HasItemLength

func (o *QuoteItemView) HasItemLength() bool

HasItemLength returns a boolean if a field has been set.

func (*QuoteItemView) HasItemNotes

func (o *QuoteItemView) HasItemNotes() bool

HasItemNotes returns a boolean if a field has been set.

func (*QuoteItemView) HasItemNotesHtml

func (o *QuoteItemView) HasItemNotesHtml() bool

HasItemNotesHtml returns a boolean if a field has been set.

func (*QuoteItemView) HasItemNumber

func (o *QuoteItemView) HasItemNumber() bool

HasItemNumber returns a boolean if a field has been set.

func (*QuoteItemView) HasItemWidth

func (o *QuoteItemView) HasItemWidth() bool

HasItemWidth returns a boolean if a field has been set.

func (*QuoteItemView) HasKeywords

func (o *QuoteItemView) HasKeywords() bool

HasKeywords returns a boolean if a field has been set.

func (*QuoteItemView) HasLineType

func (o *QuoteItemView) HasLineType() bool

HasLineType returns a boolean if a field has been set.

func (*QuoteItemView) HasLocalPriceFormula

func (o *QuoteItemView) HasLocalPriceFormula() bool

HasLocalPriceFormula returns a boolean if a field has been set.

func (*QuoteItemView) HasLongDescription

func (o *QuoteItemView) HasLongDescription() bool

HasLongDescription returns a boolean if a field has been set.

func (*QuoteItemView) HasManufacturerPartNumber

func (o *QuoteItemView) HasManufacturerPartNumber() bool

HasManufacturerPartNumber returns a boolean if a field has been set.

func (*QuoteItemView) HasMarketingInformation

func (o *QuoteItemView) HasMarketingInformation() bool

HasMarketingInformation returns a boolean if a field has been set.

func (*QuoteItemView) HasMarkup

func (o *QuoteItemView) HasMarkup() bool

HasMarkup returns a boolean if a field has been set.

func (*QuoteItemView) HasModifyDate

func (o *QuoteItemView) HasModifyDate() bool

HasModifyDate returns a boolean if a field has been set.

func (*QuoteItemView) HasNetCost

func (o *QuoteItemView) HasNetCost() bool

HasNetCost returns a boolean if a field has been set.

func (*QuoteItemView) HasOnHand

func (o *QuoteItemView) HasOnHand() bool

HasOnHand returns a boolean if a field has been set.

func (*QuoteItemView) HasOnHandWarehouse1

func (o *QuoteItemView) HasOnHandWarehouse1() bool

HasOnHandWarehouse1 returns a boolean if a field has been set.

func (*QuoteItemView) HasOnHandWarehouse2

func (o *QuoteItemView) HasOnHandWarehouse2() bool

HasOnHandWarehouse2 returns a boolean if a field has been set.

func (*QuoteItemView) HasOnOrder

func (o *QuoteItemView) HasOnOrder() bool

HasOnOrder returns a boolean if a field has been set.

func (*QuoteItemView) HasOptionGroup

func (o *QuoteItemView) HasOptionGroup() bool

HasOptionGroup returns a boolean if a field has been set.

func (*QuoteItemView) HasOptionLocked

func (o *QuoteItemView) HasOptionLocked() bool

HasOptionLocked returns a boolean if a field has been set.

func (*QuoteItemView) HasOverridePackageDetails

func (o *QuoteItemView) HasOverridePackageDetails() bool

HasOverridePackageDetails returns a boolean if a field has been set.

func (*QuoteItemView) HasOverridePrice

func (o *QuoteItemView) HasOverridePrice() bool

HasOverridePrice returns a boolean if a field has been set.

func (*QuoteItemView) HasOverridePriceModifier

func (o *QuoteItemView) HasOverridePriceModifier() bool

HasOverridePriceModifier returns a boolean if a field has been set.

func (*QuoteItemView) HasOwner

func (o *QuoteItemView) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (*QuoteItemView) HasPackagePrice

func (o *QuoteItemView) HasPackagePrice() bool

HasPackagePrice returns a boolean if a field has been set.

func (*QuoteItemView) HasPackageQty

func (o *QuoteItemView) HasPackageQty() bool

HasPackageQty returns a boolean if a field has been set.

func (*QuoteItemView) HasParentQuoteItem

func (o *QuoteItemView) HasParentQuoteItem() bool

HasParentQuoteItem returns a boolean if a field has been set.

func (*QuoteItemView) HasPdfAttachment

func (o *QuoteItemView) HasPdfAttachment() bool

HasPdfAttachment returns a boolean if a field has been set.

func (*QuoteItemView) HasPeriod

func (o *QuoteItemView) HasPeriod() bool

HasPeriod returns a boolean if a field has been set.

func (*QuoteItemView) HasPoNumber

func (o *QuoteItemView) HasPoNumber() bool

HasPoNumber returns a boolean if a field has been set.

func (*QuoteItemView) HasPoStatus

func (o *QuoteItemView) HasPoStatus() bool

HasPoStatus returns a boolean if a field has been set.

func (*QuoteItemView) HasPosDescription

func (o *QuoteItemView) HasPosDescription() bool

HasPosDescription returns a boolean if a field has been set.

func (*QuoteItemView) HasPriceConverted

func (o *QuoteItemView) HasPriceConverted() bool

HasPriceConverted returns a boolean if a field has been set.

func (*QuoteItemView) HasPriceModifier

func (o *QuoteItemView) HasPriceModifier() bool

HasPriceModifier returns a boolean if a field has been set.

func (*QuoteItemView) HasProductCategory

func (o *QuoteItemView) HasProductCategory() bool

HasProductCategory returns a boolean if a field has been set.

func (*QuoteItemView) HasProductClass

func (o *QuoteItemView) HasProductClass() bool

HasProductClass returns a boolean if a field has been set.

func (*QuoteItemView) HasProductSubCategory

func (o *QuoteItemView) HasProductSubCategory() bool

HasProductSubCategory returns a boolean if a field has been set.

func (*QuoteItemView) HasProductType

func (o *QuoteItemView) HasProductType() bool

HasProductType returns a boolean if a field has been set.

func (*QuoteItemView) HasPromotionComment

func (o *QuoteItemView) HasPromotionComment() bool

HasPromotionComment returns a boolean if a field has been set.

func (*QuoteItemView) HasPromotionExpirationDate

func (o *QuoteItemView) HasPromotionExpirationDate() bool

HasPromotionExpirationDate returns a boolean if a field has been set.

func (*QuoteItemView) HasPst

func (o *QuoteItemView) HasPst() bool

HasPst returns a boolean if a field has been set.

func (*QuoteItemView) HasPstConverted

func (o *QuoteItemView) HasPstConverted() bool

HasPstConverted returns a boolean if a field has been set.

func (*QuoteItemView) HasPstRate

func (o *QuoteItemView) HasPstRate() bool

HasPstRate returns a boolean if a field has been set.

func (*QuoteItemView) HasQuantity

func (o *QuoteItemView) HasQuantity() bool

HasQuantity returns a boolean if a field has been set.

func (*QuoteItemView) HasQuosalDescription

func (o *QuoteItemView) HasQuosalDescription() bool

HasQuosalDescription returns a boolean if a field has been set.

func (*QuoteItemView) HasQuosalPurchasingNotes

func (o *QuoteItemView) HasQuosalPurchasingNotes() bool

HasQuosalPurchasingNotes returns a boolean if a field has been set.

func (*QuoteItemView) HasQuote

func (o *QuoteItemView) HasQuote() bool

HasQuote returns a boolean if a field has been set.

func (*QuoteItemView) HasQuoteItemPrice

func (o *QuoteItemView) HasQuoteItemPrice() bool

HasQuoteItemPrice returns a boolean if a field has been set.

func (*QuoteItemView) HasQuoteName

func (o *QuoteItemView) HasQuoteName() bool

HasQuoteName returns a boolean if a field has been set.

func (*QuoteItemView) HasQuoteReadableId

func (o *QuoteItemView) HasQuoteReadableId() bool

HasQuoteReadableId returns a boolean if a field has been set.

func (*QuoteItemView) HasQuoteTab

func (o *QuoteItemView) HasQuoteTab() bool

HasQuoteTab returns a boolean if a field has been set.

func (*QuoteItemView) HasRampPeriods

func (o *QuoteItemView) HasRampPeriods() bool

HasRampPeriods returns a boolean if a field has been set.

func (*QuoteItemView) HasRebateComment

func (o *QuoteItemView) HasRebateComment() bool

HasRebateComment returns a boolean if a field has been set.

func (*QuoteItemView) HasRebateExpirationDate

func (o *QuoteItemView) HasRebateExpirationDate() bool

HasRebateExpirationDate returns a boolean if a field has been set.

func (*QuoteItemView) HasRecurringAmount

func (o *QuoteItemView) HasRecurringAmount() bool

HasRecurringAmount returns a boolean if a field has been set.

func (*QuoteItemView) HasRecurringBasePrice

func (o *QuoteItemView) HasRecurringBasePrice() bool

HasRecurringBasePrice returns a boolean if a field has been set.

func (*QuoteItemView) HasRecurringCalculatedPriceModifier

func (o *QuoteItemView) HasRecurringCalculatedPriceModifier() bool

HasRecurringCalculatedPriceModifier returns a boolean if a field has been set.

func (*QuoteItemView) HasRecurringCost

func (o *QuoteItemView) HasRecurringCost() bool

HasRecurringCost returns a boolean if a field has been set.

func (*QuoteItemView) HasRecurringCostModifier

func (o *QuoteItemView) HasRecurringCostModifier() bool

HasRecurringCostModifier returns a boolean if a field has been set.

func (*QuoteItemView) HasRecurringExtendedCost

func (o *QuoteItemView) HasRecurringExtendedCost() bool

HasRecurringExtendedCost returns a boolean if a field has been set.

func (*QuoteItemView) HasRecurringExtendedSuggestedPrice

func (o *QuoteItemView) HasRecurringExtendedSuggestedPrice() bool

HasRecurringExtendedSuggestedPrice returns a boolean if a field has been set.

func (*QuoteItemView) HasRecurringGst

func (o *QuoteItemView) HasRecurringGst() bool

HasRecurringGst returns a boolean if a field has been set.

func (*QuoteItemView) HasRecurringPrice

func (o *QuoteItemView) HasRecurringPrice() bool

HasRecurringPrice returns a boolean if a field has been set.

func (*QuoteItemView) HasRecurringPriceModifier

func (o *QuoteItemView) HasRecurringPriceModifier() bool

HasRecurringPriceModifier returns a boolean if a field has been set.

func (*QuoteItemView) HasRecurringPst

func (o *QuoteItemView) HasRecurringPst() bool

HasRecurringPst returns a boolean if a field has been set.

func (*QuoteItemView) HasRecurringSuggestedPrice

func (o *QuoteItemView) HasRecurringSuggestedPrice() bool

HasRecurringSuggestedPrice returns a boolean if a field has been set.

func (*QuoteItemView) HasRecurringTax

func (o *QuoteItemView) HasRecurringTax() bool

HasRecurringTax returns a boolean if a field has been set.

func (*QuoteItemView) HasRecurringTotal

func (o *QuoteItemView) HasRecurringTotal() bool

HasRecurringTotal returns a boolean if a field has been set.

func (*QuoteItemView) HasReplacementSku

func (o *QuoteItemView) HasReplacementSku() bool

HasReplacementSku returns a boolean if a field has been set.

func (*QuoteItemView) HasShortDescription

func (o *QuoteItemView) HasShortDescription() bool

HasShortDescription returns a boolean if a field has been set.

func (*QuoteItemView) HasSortOrder

func (o *QuoteItemView) HasSortOrder() bool

HasSortOrder returns a boolean if a field has been set.

func (*QuoteItemView) HasSource

func (o *QuoteItemView) HasSource() bool

HasSource returns a boolean if a field has been set.

func (*QuoteItemView) HasSourceManufacturerId

func (o *QuoteItemView) HasSourceManufacturerId() bool

HasSourceManufacturerId returns a boolean if a field has been set.

func (*QuoteItemView) HasSourceManufacturerName

func (o *QuoteItemView) HasSourceManufacturerName() bool

HasSourceManufacturerName returns a boolean if a field has been set.

func (*QuoteItemView) HasSourceSelectionDetails

func (o *QuoteItemView) HasSourceSelectionDetails() bool

HasSourceSelectionDetails returns a boolean if a field has been set.

func (*QuoteItemView) HasSourceVendorId

func (o *QuoteItemView) HasSourceVendorId() bool

HasSourceVendorId returns a boolean if a field has been set.

func (*QuoteItemView) HasSourceVendorName

func (o *QuoteItemView) HasSourceVendorName() bool

HasSourceVendorName returns a boolean if a field has been set.

func (*QuoteItemView) HasStartingCost

func (o *QuoteItemView) HasStartingCost() bool

HasStartingCost returns a boolean if a field has been set.

func (*QuoteItemView) HasStateGovPrice

func (o *QuoteItemView) HasStateGovPrice() bool

HasStateGovPrice returns a boolean if a field has been set.

func (*QuoteItemView) HasSuggestedPrice

func (o *QuoteItemView) HasSuggestedPrice() bool

HasSuggestedPrice returns a boolean if a field has been set.

func (*QuoteItemView) HasSvcSpread

func (o *QuoteItemView) HasSvcSpread() bool

HasSvcSpread returns a boolean if a field has been set.

func (*QuoteItemView) HasTax

func (o *QuoteItemView) HasTax() bool

HasTax returns a boolean if a field has been set.

func (*QuoteItemView) HasTaxCode

func (o *QuoteItemView) HasTaxCode() bool

HasTaxCode returns a boolean if a field has been set.

func (*QuoteItemView) HasTaxConverted

func (o *QuoteItemView) HasTaxConverted() bool

HasTaxConverted returns a boolean if a field has been set.

func (*QuoteItemView) HasTaxRate

func (o *QuoteItemView) HasTaxRate() bool

HasTaxRate returns a boolean if a field has been set.

func (*QuoteItemView) HasThumbnail

func (o *QuoteItemView) HasThumbnail() bool

HasThumbnail returns a boolean if a field has been set.

func (*QuoteItemView) HasTotalWeight

func (o *QuoteItemView) HasTotalWeight() bool

HasTotalWeight returns a boolean if a field has been set.

func (*QuoteItemView) HasUom

func (o *QuoteItemView) HasUom() bool

HasUom returns a boolean if a field has been set.

func (*QuoteItemView) HasUomFactor

func (o *QuoteItemView) HasUomFactor() bool

HasUomFactor returns a boolean if a field has been set.

func (*QuoteItemView) HasUomWeight

func (o *QuoteItemView) HasUomWeight() bool

HasUomWeight returns a boolean if a field has been set.

func (*QuoteItemView) HasUop

func (o *QuoteItemView) HasUop() bool

HasUop returns a boolean if a field has been set.

func (*QuoteItemView) HasUopFactor

func (o *QuoteItemView) HasUopFactor() bool

HasUopFactor returns a boolean if a field has been set.

func (*QuoteItemView) HasUpcNumber

func (o *QuoteItemView) HasUpcNumber() bool

HasUpcNumber returns a boolean if a field has been set.

func (*QuoteItemView) HasUserId

func (o *QuoteItemView) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (*QuoteItemView) HasVendorPartNumber

func (o *QuoteItemView) HasVendorPartNumber() bool

HasVendorPartNumber returns a boolean if a field has been set.

func (*QuoteItemView) HasWarehouse

func (o *QuoteItemView) HasWarehouse() bool

HasWarehouse returns a boolean if a field has been set.

func (*QuoteItemView) HasWarehouseCode

func (o *QuoteItemView) HasWarehouseCode() bool

HasWarehouseCode returns a boolean if a field has been set.

func (*QuoteItemView) HasZCustomBool1

func (o *QuoteItemView) HasZCustomBool1() bool

HasZCustomBool1 returns a boolean if a field has been set.

func (*QuoteItemView) HasZCustomBool2

func (o *QuoteItemView) HasZCustomBool2() bool

HasZCustomBool2 returns a boolean if a field has been set.

func (*QuoteItemView) HasZCustomBool3

func (o *QuoteItemView) HasZCustomBool3() bool

HasZCustomBool3 returns a boolean if a field has been set.

func (*QuoteItemView) HasZCustomBool4

func (o *QuoteItemView) HasZCustomBool4() bool

HasZCustomBool4 returns a boolean if a field has been set.

func (*QuoteItemView) HasZCustomBool5

func (o *QuoteItemView) HasZCustomBool5() bool

HasZCustomBool5 returns a boolean if a field has been set.

func (*QuoteItemView) HasZCustomBool6

func (o *QuoteItemView) HasZCustomBool6() bool

HasZCustomBool6 returns a boolean if a field has been set.

func (*QuoteItemView) HasZCustomBool7

func (o *QuoteItemView) HasZCustomBool7() bool

HasZCustomBool7 returns a boolean if a field has been set.

func (*QuoteItemView) HasZCustomBool8

func (o *QuoteItemView) HasZCustomBool8() bool

HasZCustomBool8 returns a boolean if a field has been set.

func (*QuoteItemView) HasZCustomBool9

func (o *QuoteItemView) HasZCustomBool9() bool

HasZCustomBool9 returns a boolean if a field has been set.

func (*QuoteItemView) HasZCustomBool10

func (o *QuoteItemView) HasZCustomBool10() bool

HasZCustomBool10 returns a boolean if a field has been set.

func (*QuoteItemView) HasZCustomDate1

func (o *QuoteItemView) HasZCustomDate1() bool

HasZCustomDate1 returns a boolean if a field has been set.

func (*QuoteItemView) HasZCustomDate2

func (o *QuoteItemView) HasZCustomDate2() bool

HasZCustomDate2 returns a boolean if a field has been set.

func (*QuoteItemView) HasZCustomDecimal1

func (o *QuoteItemView) HasZCustomDecimal1() bool

HasZCustomDecimal1 returns a boolean if a field has been set.

func (*QuoteItemView) HasZCustomDecimal2

func (o *QuoteItemView) HasZCustomDecimal2() bool

HasZCustomDecimal2 returns a boolean if a field has been set.

func (*QuoteItemView) HasZCustomDecimal3

func (o *QuoteItemView) HasZCustomDecimal3() bool

HasZCustomDecimal3 returns a boolean if a field has been set.

func (*QuoteItemView) HasZCustomDecimal4

func (o *QuoteItemView) HasZCustomDecimal4() bool

HasZCustomDecimal4 returns a boolean if a field has been set.

func (*QuoteItemView) HasZCustomDecimal5

func (o *QuoteItemView) HasZCustomDecimal5() bool

HasZCustomDecimal5 returns a boolean if a field has been set.

func (*QuoteItemView) HasZCustomDecimal6

func (o *QuoteItemView) HasZCustomDecimal6() bool

HasZCustomDecimal6 returns a boolean if a field has been set.

func (*QuoteItemView) HasZCustomDecimal7

func (o *QuoteItemView) HasZCustomDecimal7() bool

HasZCustomDecimal7 returns a boolean if a field has been set.

func (*QuoteItemView) HasZCustomDecimal8

func (o *QuoteItemView) HasZCustomDecimal8() bool

HasZCustomDecimal8 returns a boolean if a field has been set.

func (*QuoteItemView) HasZCustomDecimal9

func (o *QuoteItemView) HasZCustomDecimal9() bool

HasZCustomDecimal9 returns a boolean if a field has been set.

func (*QuoteItemView) HasZCustomDecimal10

func (o *QuoteItemView) HasZCustomDecimal10() bool

HasZCustomDecimal10 returns a boolean if a field has been set.

func (*QuoteItemView) HasZCustomNotes1

func (o *QuoteItemView) HasZCustomNotes1() bool

HasZCustomNotes1 returns a boolean if a field has been set.

func (*QuoteItemView) HasZCustomNotes2

func (o *QuoteItemView) HasZCustomNotes2() bool

HasZCustomNotes2 returns a boolean if a field has been set.

func (*QuoteItemView) HasZCustomNotes3

func (o *QuoteItemView) HasZCustomNotes3() bool

HasZCustomNotes3 returns a boolean if a field has been set.

func (*QuoteItemView) HasZCustomNotes4

func (o *QuoteItemView) HasZCustomNotes4() bool

HasZCustomNotes4 returns a boolean if a field has been set.

func (*QuoteItemView) HasZCustomNotes5

func (o *QuoteItemView) HasZCustomNotes5() bool

HasZCustomNotes5 returns a boolean if a field has been set.

func (*QuoteItemView) HasZCustomNotes6

func (o *QuoteItemView) HasZCustomNotes6() bool

HasZCustomNotes6 returns a boolean if a field has been set.

func (*QuoteItemView) HasZCustomNotes7

func (o *QuoteItemView) HasZCustomNotes7() bool

HasZCustomNotes7 returns a boolean if a field has been set.

func (*QuoteItemView) HasZCustomNotes8

func (o *QuoteItemView) HasZCustomNotes8() bool

HasZCustomNotes8 returns a boolean if a field has been set.

func (*QuoteItemView) HasZCustomNotes9

func (o *QuoteItemView) HasZCustomNotes9() bool

HasZCustomNotes9 returns a boolean if a field has been set.

func (*QuoteItemView) HasZCustomNotes10

func (o *QuoteItemView) HasZCustomNotes10() bool

HasZCustomNotes10 returns a boolean if a field has been set.

func (*QuoteItemView) HasZCustomString1

func (o *QuoteItemView) HasZCustomString1() bool

HasZCustomString1 returns a boolean if a field has been set.

func (*QuoteItemView) HasZCustomString2

func (o *QuoteItemView) HasZCustomString2() bool

HasZCustomString2 returns a boolean if a field has been set.

func (*QuoteItemView) HasZCustomString3

func (o *QuoteItemView) HasZCustomString3() bool

HasZCustomString3 returns a boolean if a field has been set.

func (*QuoteItemView) HasZCustomString4

func (o *QuoteItemView) HasZCustomString4() bool

HasZCustomString4 returns a boolean if a field has been set.

func (*QuoteItemView) HasZCustomString5

func (o *QuoteItemView) HasZCustomString5() bool

HasZCustomString5 returns a boolean if a field has been set.

func (*QuoteItemView) HasZCustomString6

func (o *QuoteItemView) HasZCustomString6() bool

HasZCustomString6 returns a boolean if a field has been set.

func (*QuoteItemView) HasZCustomString7

func (o *QuoteItemView) HasZCustomString7() bool

HasZCustomString7 returns a boolean if a field has been set.

func (*QuoteItemView) HasZCustomString8

func (o *QuoteItemView) HasZCustomString8() bool

HasZCustomString8 returns a boolean if a field has been set.

func (*QuoteItemView) HasZCustomString9

func (o *QuoteItemView) HasZCustomString9() bool

HasZCustomString9 returns a boolean if a field has been set.

func (*QuoteItemView) HasZCustomString10

func (o *QuoteItemView) HasZCustomString10() bool

HasZCustomString10 returns a boolean if a field has been set.

func (*QuoteItemView) HasZCustomString11

func (o *QuoteItemView) HasZCustomString11() bool

HasZCustomString11 returns a boolean if a field has been set.

func (*QuoteItemView) HasZCustomString12

func (o *QuoteItemView) HasZCustomString12() bool

HasZCustomString12 returns a boolean if a field has been set.

func (*QuoteItemView) HasZCustomString13

func (o *QuoteItemView) HasZCustomString13() bool

HasZCustomString13 returns a boolean if a field has been set.

func (*QuoteItemView) HasZCustomString14

func (o *QuoteItemView) HasZCustomString14() bool

HasZCustomString14 returns a boolean if a field has been set.

func (*QuoteItemView) HasZCustomString15

func (o *QuoteItemView) HasZCustomString15() bool

HasZCustomString15 returns a boolean if a field has been set.

func (*QuoteItemView) HasZCustomString16

func (o *QuoteItemView) HasZCustomString16() bool

HasZCustomString16 returns a boolean if a field has been set.

func (*QuoteItemView) HasZCustomString17

func (o *QuoteItemView) HasZCustomString17() bool

HasZCustomString17 returns a boolean if a field has been set.

func (*QuoteItemView) HasZCustomString18

func (o *QuoteItemView) HasZCustomString18() bool

HasZCustomString18 returns a boolean if a field has been set.

func (*QuoteItemView) HasZCustomString19

func (o *QuoteItemView) HasZCustomString19() bool

HasZCustomString19 returns a boolean if a field has been set.

func (*QuoteItemView) HasZCustomString20

func (o *QuoteItemView) HasZCustomString20() bool

HasZCustomString20 returns a boolean if a field has been set.

func (*QuoteItemView) HasZCustomString21

func (o *QuoteItemView) HasZCustomString21() bool

HasZCustomString21 returns a boolean if a field has been set.

func (*QuoteItemView) HasZCustomString22

func (o *QuoteItemView) HasZCustomString22() bool

HasZCustomString22 returns a boolean if a field has been set.

func (*QuoteItemView) HasZCustomString23

func (o *QuoteItemView) HasZCustomString23() bool

HasZCustomString23 returns a boolean if a field has been set.

func (*QuoteItemView) HasZCustomString24

func (o *QuoteItemView) HasZCustomString24() bool

HasZCustomString24 returns a boolean if a field has been set.

func (*QuoteItemView) HasZCustomString25

func (o *QuoteItemView) HasZCustomString25() bool

HasZCustomString25 returns a boolean if a field has been set.

func (*QuoteItemView) HasZCustomText1

func (o *QuoteItemView) HasZCustomText1() bool

HasZCustomText1 returns a boolean if a field has been set.

func (QuoteItemView) MarshalJSON

func (o QuoteItemView) MarshalJSON() ([]byte, error)

func (*QuoteItemView) SetApprovalContentHash

func (o *QuoteItemView) SetApprovalContentHash(v string)

SetApprovalContentHash gets a reference to the given string and assigns it to the ApprovalContentHash field.

func (*QuoteItemView) SetApprovalMarginMinimum

func (o *QuoteItemView) SetApprovalMarginMinimum(v float64)

SetApprovalMarginMinimum gets a reference to the given float64 and assigns it to the ApprovalMarginMinimum field.

func (*QuoteItemView) SetApprovalOnChange

func (o *QuoteItemView) SetApprovalOnChange(v bool)

SetApprovalOnChange gets a reference to the given bool and assigns it to the ApprovalOnChange field.

func (*QuoteItemView) SetApprovalPriceMinimum

func (o *QuoteItemView) SetApprovalPriceMinimum(v float64)

SetApprovalPriceMinimum gets a reference to the given float64 and assigns it to the ApprovalPriceMinimum field.

func (*QuoteItemView) SetBasePrice

func (o *QuoteItemView) SetBasePrice(v float64)

SetBasePrice gets a reference to the given float64 and assigns it to the BasePrice field.

func (*QuoteItemView) SetConfigId

func (o *QuoteItemView) SetConfigId(v string)

SetConfigId gets a reference to the given string and assigns it to the ConfigId field.

func (*QuoteItemView) SetConfigPosition

func (o *QuoteItemView) SetConfigPosition(v int32)

SetConfigPosition gets a reference to the given int32 and assigns it to the ConfigPosition field.

func (*QuoteItemView) SetCost

func (o *QuoteItemView) SetCost(v float64)

SetCost gets a reference to the given float64 and assigns it to the Cost field.

func (*QuoteItemView) SetCostModifier

func (o *QuoteItemView) SetCostModifier(v string)

SetCostModifier gets a reference to the given string and assigns it to the CostModifier field.

func (*QuoteItemView) SetCrmReference

func (o *QuoteItemView) SetCrmReference(v string)

SetCrmReference gets a reference to the given string and assigns it to the CrmReference field.

func (*QuoteItemView) SetCwAgreement

func (o *QuoteItemView) SetCwAgreement(v string)

SetCwAgreement gets a reference to the given string and assigns it to the CwAgreement field.

func (*QuoteItemView) SetCwClass

func (o *QuoteItemView) SetCwClass(v string)

SetCwClass gets a reference to the given string and assigns it to the CwClass field.

func (*QuoteItemView) SetDefermentPeriods

func (o *QuoteItemView) SetDefermentPeriods(v int32)

SetDefermentPeriods gets a reference to the given int32 and assigns it to the DefermentPeriods field.

func (*QuoteItemView) SetDimension1

func (o *QuoteItemView) SetDimension1(v string)

SetDimension1 gets a reference to the given string and assigns it to the Dimension1 field.

func (*QuoteItemView) SetDimension2

func (o *QuoteItemView) SetDimension2(v string)

SetDimension2 gets a reference to the given string and assigns it to the Dimension2 field.

func (*QuoteItemView) SetDimension3

func (o *QuoteItemView) SetDimension3(v string)

SetDimension3 gets a reference to the given string and assigns it to the Dimension3 field.

func (*QuoteItemView) SetDimension4

func (o *QuoteItemView) SetDimension4(v string)

SetDimension4 gets a reference to the given string and assigns it to the Dimension4 field.

func (*QuoteItemView) SetDimension5

func (o *QuoteItemView) SetDimension5(v string)

SetDimension5 gets a reference to the given string and assigns it to the Dimension5 field.

func (*QuoteItemView) SetDisableRemaps

func (o *QuoteItemView) SetDisableRemaps(v bool)

SetDisableRemaps gets a reference to the given bool and assigns it to the DisableRemaps field.

func (*QuoteItemView) SetDiscount

func (o *QuoteItemView) SetDiscount(v float64)

SetDiscount gets a reference to the given float64 and assigns it to the Discount field.

func (*QuoteItemView) SetDiscountAmount

func (o *QuoteItemView) SetDiscountAmount(v float64)

SetDiscountAmount gets a reference to the given float64 and assigns it to the DiscountAmount field.

func (*QuoteItemView) SetDiscountAmountConverted

func (o *QuoteItemView) SetDiscountAmountConverted(v float64)

SetDiscountAmountConverted gets a reference to the given float64 and assigns it to the DiscountAmountConverted field.

func (*QuoteItemView) SetEnforceItemModTags

func (o *QuoteItemView) SetEnforceItemModTags(v bool)

SetEnforceItemModTags gets a reference to the given bool and assigns it to the EnforceItemModTags field.

func (*QuoteItemView) SetEtilizeProductId

func (o *QuoteItemView) SetEtilizeProductId(v float64)

SetEtilizeProductId gets a reference to the given float64 and assigns it to the EtilizeProductId field.

func (*QuoteItemView) SetEtilizeSerializedAttributes

func (o *QuoteItemView) SetEtilizeSerializedAttributes(v string)

SetEtilizeSerializedAttributes gets a reference to the given string and assigns it to the EtilizeSerializedAttributes field.

func (*QuoteItemView) SetExtendedCost

func (o *QuoteItemView) SetExtendedCost(v float64)

SetExtendedCost gets a reference to the given float64 and assigns it to the ExtendedCost field.

func (*QuoteItemView) SetExtendedPrice

func (o *QuoteItemView) SetExtendedPrice(v float64)

SetExtendedPrice gets a reference to the given float64 and assigns it to the ExtendedPrice field.

func (*QuoteItemView) SetExtendedPriceConverted

func (o *QuoteItemView) SetExtendedPriceConverted(v float64)

SetExtendedPriceConverted gets a reference to the given float64 and assigns it to the ExtendedPriceConverted field.

func (*QuoteItemView) SetExtendedSuggestedPrice

func (o *QuoteItemView) SetExtendedSuggestedPrice(v float64)

SetExtendedSuggestedPrice gets a reference to the given float64 and assigns it to the ExtendedSuggestedPrice field.

func (*QuoteItemView) SetExternalQuoteNumber

func (o *QuoteItemView) SetExternalQuoteNumber(v string)

SetExternalQuoteNumber gets a reference to the given string and assigns it to the ExternalQuoteNumber field.

func (*QuoteItemView) SetExternalReference

func (o *QuoteItemView) SetExternalReference(v string)

SetExternalReference gets a reference to the given string and assigns it to the ExternalReference field.

func (*QuoteItemView) SetFactorItemMfp

func (o *QuoteItemView) SetFactorItemMfp(v string)

SetFactorItemMfp gets a reference to the given string and assigns it to the FactorItemMfp field.

func (*QuoteItemView) SetFactorQtyFixed

func (o *QuoteItemView) SetFactorQtyFixed(v float64)

SetFactorQtyFixed gets a reference to the given float64 and assigns it to the FactorQtyFixed field.

func (*QuoteItemView) SetFactorQtyMultiplier

func (o *QuoteItemView) SetFactorQtyMultiplier(v float64)

SetFactorQtyMultiplier gets a reference to the given float64 and assigns it to the FactorQtyMultiplier field.

func (*QuoteItemView) SetFederalGovPrice

func (o *QuoteItemView) SetFederalGovPrice(v float64)

SetFederalGovPrice gets a reference to the given float64 and assigns it to the FederalGovPrice field.

func (*QuoteItemView) SetGrossMargin

func (o *QuoteItemView) SetGrossMargin(v float64)

SetGrossMargin gets a reference to the given float64 and assigns it to the GrossMargin field.

func (*QuoteItemView) SetGroupingCode

func (o *QuoteItemView) SetGroupingCode(v string)

SetGroupingCode gets a reference to the given string and assigns it to the GroupingCode field.

func (*QuoteItemView) SetGsaPrice

func (o *QuoteItemView) SetGsaPrice(v float64)

SetGsaPrice gets a reference to the given float64 and assigns it to the GsaPrice field.

func (*QuoteItemView) SetGst

func (o *QuoteItemView) SetGst(v float64)

SetGst gets a reference to the given float64 and assigns it to the Gst field.

func (*QuoteItemView) SetGstConverted

func (o *QuoteItemView) SetGstConverted(v float64)

SetGstConverted gets a reference to the given float64 and assigns it to the GstConverted field.

func (*QuoteItemView) SetGstRate

func (o *QuoteItemView) SetGstRate(v float64)

SetGstRate gets a reference to the given float64 and assigns it to the GstRate field.

func (*QuoteItemView) SetId

func (o *QuoteItemView) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*QuoteItemView) SetIdQuote

func (o *QuoteItemView) SetIdQuote(v string)

SetIdQuote gets a reference to the given string and assigns it to the IdQuote field.

func (*QuoteItemView) SetIdQuoteTabs

func (o *QuoteItemView) SetIdQuoteTabs(v string)

SetIdQuoteTabs gets a reference to the given string and assigns it to the IdQuoteTabs field.

func (*QuoteItemView) SetIdRecurringRevenue

func (o *QuoteItemView) SetIdRecurringRevenue(v string)

SetIdRecurringRevenue gets a reference to the given string and assigns it to the IdRecurringRevenue field.

func (*QuoteItemView) SetInvoiceGroupingId

func (o *QuoteItemView) SetInvoiceGroupingId(v int32)

SetInvoiceGroupingId gets a reference to the given int32 and assigns it to the InvoiceGroupingId field.

func (*QuoteItemView) SetIsBundleComponent

func (o *QuoteItemView) SetIsBundleComponent(v bool)

SetIsBundleComponent gets a reference to the given bool and assigns it to the IsBundleComponent field.

func (*QuoteItemView) SetIsBundleHeader

func (o *QuoteItemView) SetIsBundleHeader(v bool)

SetIsBundleHeader gets a reference to the given bool and assigns it to the IsBundleHeader field.

func (*QuoteItemView) SetIsDeferrable

func (o *QuoteItemView) SetIsDeferrable(v bool)

SetIsDeferrable gets a reference to the given bool and assigns it to the IsDeferrable field.

func (*QuoteItemView) SetIsHiddenItem

func (o *QuoteItemView) SetIsHiddenItem(v bool)

SetIsHiddenItem gets a reference to the given bool and assigns it to the IsHiddenItem field.

func (*QuoteItemView) SetIsMetadataItem

func (o *QuoteItemView) SetIsMetadataItem(v bool)

SetIsMetadataItem gets a reference to the given bool and assigns it to the IsMetadataItem field.

func (*QuoteItemView) SetIsModTagModified

func (o *QuoteItemView) SetIsModTagModified(v bool)

SetIsModTagModified gets a reference to the given bool and assigns it to the IsModTagModified field.

func (*QuoteItemView) SetIsOptional

func (o *QuoteItemView) SetIsOptional(v bool)

SetIsOptional gets a reference to the given bool and assigns it to the IsOptional field.

func (*QuoteItemView) SetIsOverrideQty

func (o *QuoteItemView) SetIsOverrideQty(v bool)

SetIsOverrideQty gets a reference to the given bool and assigns it to the IsOverrideQty field.

func (*QuoteItemView) SetIsPhaseItem

func (o *QuoteItemView) SetIsPhaseItem(v bool)

SetIsPhaseItem gets a reference to the given bool and assigns it to the IsPhaseItem field.

func (*QuoteItemView) SetIsPrinted

func (o *QuoteItemView) SetIsPrinted(v bool)

SetIsPrinted gets a reference to the given bool and assigns it to the IsPrinted field.

func (*QuoteItemView) SetIsPromotion

func (o *QuoteItemView) SetIsPromotion(v bool)

SetIsPromotion gets a reference to the given bool and assigns it to the IsPromotion field.

func (*QuoteItemView) SetIsProtectedItem

func (o *QuoteItemView) SetIsProtectedItem(v bool)

SetIsProtectedItem gets a reference to the given bool and assigns it to the IsProtectedItem field.

func (*QuoteItemView) SetIsProtectedPrice

func (o *QuoteItemView) SetIsProtectedPrice(v bool)

SetIsProtectedPrice gets a reference to the given bool and assigns it to the IsProtectedPrice field.

func (*QuoteItemView) SetIsRampable

func (o *QuoteItemView) SetIsRampable(v bool)

SetIsRampable gets a reference to the given bool and assigns it to the IsRampable field.

func (*QuoteItemView) SetIsRebate

func (o *QuoteItemView) SetIsRebate(v bool)

SetIsRebate gets a reference to the given bool and assigns it to the IsRebate field.

func (*QuoteItemView) SetIsRecurringTaxable

func (o *QuoteItemView) SetIsRecurringTaxable(v bool)

SetIsRecurringTaxable gets a reference to the given bool and assigns it to the IsRecurringTaxable field.

func (*QuoteItemView) SetIsSelected

func (o *QuoteItemView) SetIsSelected(v bool)

SetIsSelected gets a reference to the given bool and assigns it to the IsSelected field.

func (*QuoteItemView) SetIsShowPrice

func (o *QuoteItemView) SetIsShowPrice(v bool)

SetIsShowPrice gets a reference to the given bool and assigns it to the IsShowPrice field.

func (*QuoteItemView) SetIsSold

func (o *QuoteItemView) SetIsSold(v bool)

SetIsSold gets a reference to the given bool and assigns it to the IsSold field.

func (*QuoteItemView) SetIsTaxable

func (o *QuoteItemView) SetIsTaxable(v bool)

SetIsTaxable gets a reference to the given bool and assigns it to the IsTaxable field.

func (*QuoteItemView) SetIsTotalsIncluded

func (o *QuoteItemView) SetIsTotalsIncluded(v bool)

SetIsTotalsIncluded gets a reference to the given bool and assigns it to the IsTotalsIncluded field.

func (*QuoteItemView) SetItemCube

func (o *QuoteItemView) SetItemCube(v float64)

SetItemCube gets a reference to the given float64 and assigns it to the ItemCube field.

func (*QuoteItemView) SetItemHeight

func (o *QuoteItemView) SetItemHeight(v float64)

SetItemHeight gets a reference to the given float64 and assigns it to the ItemHeight field.

func (*QuoteItemView) SetItemLength

func (o *QuoteItemView) SetItemLength(v float64)

SetItemLength gets a reference to the given float64 and assigns it to the ItemLength field.

func (*QuoteItemView) SetItemNotes

func (o *QuoteItemView) SetItemNotes(v string)

SetItemNotes gets a reference to the given string and assigns it to the ItemNotes field.

func (*QuoteItemView) SetItemNotesHtml

func (o *QuoteItemView) SetItemNotesHtml(v string)

SetItemNotesHtml gets a reference to the given string and assigns it to the ItemNotesHtml field.

func (*QuoteItemView) SetItemNumber

func (o *QuoteItemView) SetItemNumber(v string)

SetItemNumber gets a reference to the given string and assigns it to the ItemNumber field.

func (*QuoteItemView) SetItemWidth

func (o *QuoteItemView) SetItemWidth(v float64)

SetItemWidth gets a reference to the given float64 and assigns it to the ItemWidth field.

func (*QuoteItemView) SetKeywords

func (o *QuoteItemView) SetKeywords(v string)

SetKeywords gets a reference to the given string and assigns it to the Keywords field.

func (*QuoteItemView) SetLineType

func (o *QuoteItemView) SetLineType(v string)

SetLineType gets a reference to the given string and assigns it to the LineType field.

func (*QuoteItemView) SetLocalPriceFormula

func (o *QuoteItemView) SetLocalPriceFormula(v string)

SetLocalPriceFormula gets a reference to the given string and assigns it to the LocalPriceFormula field.

func (*QuoteItemView) SetLongDescription

func (o *QuoteItemView) SetLongDescription(v string)

SetLongDescription gets a reference to the given string and assigns it to the LongDescription field.

func (*QuoteItemView) SetManufacturerPartNumber

func (o *QuoteItemView) SetManufacturerPartNumber(v string)

SetManufacturerPartNumber gets a reference to the given string and assigns it to the ManufacturerPartNumber field.

func (*QuoteItemView) SetMarketingInformation

func (o *QuoteItemView) SetMarketingInformation(v string)

SetMarketingInformation gets a reference to the given string and assigns it to the MarketingInformation field.

func (*QuoteItemView) SetMarkup

func (o *QuoteItemView) SetMarkup(v float64)

SetMarkup gets a reference to the given float64 and assigns it to the Markup field.

func (*QuoteItemView) SetModifyDate

func (o *QuoteItemView) SetModifyDate(v time.Time)

SetModifyDate gets a reference to the given time.Time and assigns it to the ModifyDate field.

func (*QuoteItemView) SetNetCost

func (o *QuoteItemView) SetNetCost(v float64)

SetNetCost gets a reference to the given float64 and assigns it to the NetCost field.

func (*QuoteItemView) SetOnHand

func (o *QuoteItemView) SetOnHand(v int32)

SetOnHand gets a reference to the given int32 and assigns it to the OnHand field.

func (*QuoteItemView) SetOnHandWarehouse1

func (o *QuoteItemView) SetOnHandWarehouse1(v int32)

SetOnHandWarehouse1 gets a reference to the given int32 and assigns it to the OnHandWarehouse1 field.

func (*QuoteItemView) SetOnHandWarehouse2

func (o *QuoteItemView) SetOnHandWarehouse2(v int32)

SetOnHandWarehouse2 gets a reference to the given int32 and assigns it to the OnHandWarehouse2 field.

func (*QuoteItemView) SetOnOrder

func (o *QuoteItemView) SetOnOrder(v int32)

SetOnOrder gets a reference to the given int32 and assigns it to the OnOrder field.

func (*QuoteItemView) SetOptionGroup

func (o *QuoteItemView) SetOptionGroup(v string)

SetOptionGroup gets a reference to the given string and assigns it to the OptionGroup field.

func (*QuoteItemView) SetOptionLocked

func (o *QuoteItemView) SetOptionLocked(v bool)

SetOptionLocked gets a reference to the given bool and assigns it to the OptionLocked field.

func (*QuoteItemView) SetOverridePackageDetails

func (o *QuoteItemView) SetOverridePackageDetails(v bool)

SetOverridePackageDetails gets a reference to the given bool and assigns it to the OverridePackageDetails field.

func (*QuoteItemView) SetOverridePrice

func (o *QuoteItemView) SetOverridePrice(v float64)

SetOverridePrice gets a reference to the given float64 and assigns it to the OverridePrice field.

func (*QuoteItemView) SetOverridePriceModifier

func (o *QuoteItemView) SetOverridePriceModifier(v string)

SetOverridePriceModifier gets a reference to the given string and assigns it to the OverridePriceModifier field.

func (*QuoteItemView) SetOwner

func (o *QuoteItemView) SetOwner(v string)

SetOwner gets a reference to the given string and assigns it to the Owner field.

func (*QuoteItemView) SetPackagePrice

func (o *QuoteItemView) SetPackagePrice(v float64)

SetPackagePrice gets a reference to the given float64 and assigns it to the PackagePrice field.

func (*QuoteItemView) SetPackageQty

func (o *QuoteItemView) SetPackageQty(v float64)

SetPackageQty gets a reference to the given float64 and assigns it to the PackageQty field.

func (*QuoteItemView) SetParentQuoteItem

func (o *QuoteItemView) SetParentQuoteItem(v string)

SetParentQuoteItem gets a reference to the given string and assigns it to the ParentQuoteItem field.

func (*QuoteItemView) SetPdfAttachment

func (o *QuoteItemView) SetPdfAttachment(v string)

SetPdfAttachment gets a reference to the given string and assigns it to the PdfAttachment field.

func (*QuoteItemView) SetPeriod

func (o *QuoteItemView) SetPeriod(v string)

SetPeriod gets a reference to the given string and assigns it to the Period field.

func (*QuoteItemView) SetPoNumber

func (o *QuoteItemView) SetPoNumber(v string)

SetPoNumber gets a reference to the given string and assigns it to the PoNumber field.

func (*QuoteItemView) SetPoStatus

func (o *QuoteItemView) SetPoStatus(v string)

SetPoStatus gets a reference to the given string and assigns it to the PoStatus field.

func (*QuoteItemView) SetPosDescription

func (o *QuoteItemView) SetPosDescription(v string)

SetPosDescription gets a reference to the given string and assigns it to the PosDescription field.

func (*QuoteItemView) SetPriceConverted

func (o *QuoteItemView) SetPriceConverted(v float64)

SetPriceConverted gets a reference to the given float64 and assigns it to the PriceConverted field.

func (*QuoteItemView) SetPriceModifier

func (o *QuoteItemView) SetPriceModifier(v string)

SetPriceModifier gets a reference to the given string and assigns it to the PriceModifier field.

func (*QuoteItemView) SetProductCategory

func (o *QuoteItemView) SetProductCategory(v string)

SetProductCategory gets a reference to the given string and assigns it to the ProductCategory field.

func (*QuoteItemView) SetProductClass

func (o *QuoteItemView) SetProductClass(v string)

SetProductClass gets a reference to the given string and assigns it to the ProductClass field.

func (*QuoteItemView) SetProductSubCategory

func (o *QuoteItemView) SetProductSubCategory(v string)

SetProductSubCategory gets a reference to the given string and assigns it to the ProductSubCategory field.

func (*QuoteItemView) SetProductType

func (o *QuoteItemView) SetProductType(v string)

SetProductType gets a reference to the given string and assigns it to the ProductType field.

func (*QuoteItemView) SetPromotionComment

func (o *QuoteItemView) SetPromotionComment(v string)

SetPromotionComment gets a reference to the given string and assigns it to the PromotionComment field.

func (*QuoteItemView) SetPromotionExpirationDate

func (o *QuoteItemView) SetPromotionExpirationDate(v time.Time)

SetPromotionExpirationDate gets a reference to the given time.Time and assigns it to the PromotionExpirationDate field.

func (*QuoteItemView) SetPst

func (o *QuoteItemView) SetPst(v float64)

SetPst gets a reference to the given float64 and assigns it to the Pst field.

func (*QuoteItemView) SetPstConverted

func (o *QuoteItemView) SetPstConverted(v float64)

SetPstConverted gets a reference to the given float64 and assigns it to the PstConverted field.

func (*QuoteItemView) SetPstRate

func (o *QuoteItemView) SetPstRate(v float64)

SetPstRate gets a reference to the given float64 and assigns it to the PstRate field.

func (*QuoteItemView) SetQuantity

func (o *QuoteItemView) SetQuantity(v float64)

SetQuantity gets a reference to the given float64 and assigns it to the Quantity field.

func (*QuoteItemView) SetQuosalDescription

func (o *QuoteItemView) SetQuosalDescription(v string)

SetQuosalDescription gets a reference to the given string and assigns it to the QuosalDescription field.

func (*QuoteItemView) SetQuosalPurchasingNotes

func (o *QuoteItemView) SetQuosalPurchasingNotes(v string)

SetQuosalPurchasingNotes gets a reference to the given string and assigns it to the QuosalPurchasingNotes field.

func (*QuoteItemView) SetQuote

func (o *QuoteItemView) SetQuote(v ReferenceLink)

SetQuote gets a reference to the given ReferenceLink and assigns it to the Quote field.

func (*QuoteItemView) SetQuoteItemPrice

func (o *QuoteItemView) SetQuoteItemPrice(v float64)

SetQuoteItemPrice gets a reference to the given float64 and assigns it to the QuoteItemPrice field.

func (*QuoteItemView) SetQuoteName

func (o *QuoteItemView) SetQuoteName(v string)

SetQuoteName gets a reference to the given string and assigns it to the QuoteName field.

func (*QuoteItemView) SetQuoteReadableId

func (o *QuoteItemView) SetQuoteReadableId(v string)

SetQuoteReadableId gets a reference to the given string and assigns it to the QuoteReadableId field.

func (*QuoteItemView) SetQuoteTab

func (o *QuoteItemView) SetQuoteTab(v ReferenceLink)

SetQuoteTab gets a reference to the given ReferenceLink and assigns it to the QuoteTab field.

func (*QuoteItemView) SetRampPeriods

func (o *QuoteItemView) SetRampPeriods(v int32)

SetRampPeriods gets a reference to the given int32 and assigns it to the RampPeriods field.

func (*QuoteItemView) SetRebateComment

func (o *QuoteItemView) SetRebateComment(v string)

SetRebateComment gets a reference to the given string and assigns it to the RebateComment field.

func (*QuoteItemView) SetRebateExpirationDate

func (o *QuoteItemView) SetRebateExpirationDate(v time.Time)

SetRebateExpirationDate gets a reference to the given time.Time and assigns it to the RebateExpirationDate field.

func (*QuoteItemView) SetRecurringAmount

func (o *QuoteItemView) SetRecurringAmount(v float64)

SetRecurringAmount gets a reference to the given float64 and assigns it to the RecurringAmount field.

func (*QuoteItemView) SetRecurringBasePrice

func (o *QuoteItemView) SetRecurringBasePrice(v float64)

SetRecurringBasePrice gets a reference to the given float64 and assigns it to the RecurringBasePrice field.

func (*QuoteItemView) SetRecurringCalculatedPriceModifier

func (o *QuoteItemView) SetRecurringCalculatedPriceModifier(v string)

SetRecurringCalculatedPriceModifier gets a reference to the given string and assigns it to the RecurringCalculatedPriceModifier field.

func (*QuoteItemView) SetRecurringCost

func (o *QuoteItemView) SetRecurringCost(v float64)

SetRecurringCost gets a reference to the given float64 and assigns it to the RecurringCost field.

func (*QuoteItemView) SetRecurringCostModifier

func (o *QuoteItemView) SetRecurringCostModifier(v string)

SetRecurringCostModifier gets a reference to the given string and assigns it to the RecurringCostModifier field.

func (*QuoteItemView) SetRecurringExtendedCost

func (o *QuoteItemView) SetRecurringExtendedCost(v float64)

SetRecurringExtendedCost gets a reference to the given float64 and assigns it to the RecurringExtendedCost field.

func (*QuoteItemView) SetRecurringExtendedSuggestedPrice

func (o *QuoteItemView) SetRecurringExtendedSuggestedPrice(v float64)

SetRecurringExtendedSuggestedPrice gets a reference to the given float64 and assigns it to the RecurringExtendedSuggestedPrice field.

func (*QuoteItemView) SetRecurringGst

func (o *QuoteItemView) SetRecurringGst(v float64)

SetRecurringGst gets a reference to the given float64 and assigns it to the RecurringGst field.

func (*QuoteItemView) SetRecurringPrice

func (o *QuoteItemView) SetRecurringPrice(v float64)

SetRecurringPrice gets a reference to the given float64 and assigns it to the RecurringPrice field.

func (*QuoteItemView) SetRecurringPriceModifier

func (o *QuoteItemView) SetRecurringPriceModifier(v string)

SetRecurringPriceModifier gets a reference to the given string and assigns it to the RecurringPriceModifier field.

func (*QuoteItemView) SetRecurringPst

func (o *QuoteItemView) SetRecurringPst(v float64)

SetRecurringPst gets a reference to the given float64 and assigns it to the RecurringPst field.

func (*QuoteItemView) SetRecurringSuggestedPrice

func (o *QuoteItemView) SetRecurringSuggestedPrice(v float64)

SetRecurringSuggestedPrice gets a reference to the given float64 and assigns it to the RecurringSuggestedPrice field.

func (*QuoteItemView) SetRecurringTax

func (o *QuoteItemView) SetRecurringTax(v float64)

SetRecurringTax gets a reference to the given float64 and assigns it to the RecurringTax field.

func (*QuoteItemView) SetRecurringTotal

func (o *QuoteItemView) SetRecurringTotal(v float64)

SetRecurringTotal gets a reference to the given float64 and assigns it to the RecurringTotal field.

func (*QuoteItemView) SetReplacementSku

func (o *QuoteItemView) SetReplacementSku(v string)

SetReplacementSku gets a reference to the given string and assigns it to the ReplacementSku field.

func (*QuoteItemView) SetShortDescription

func (o *QuoteItemView) SetShortDescription(v string)

SetShortDescription gets a reference to the given string and assigns it to the ShortDescription field.

func (*QuoteItemView) SetSortOrder

func (o *QuoteItemView) SetSortOrder(v int32)

SetSortOrder gets a reference to the given int32 and assigns it to the SortOrder field.

func (*QuoteItemView) SetSource

func (o *QuoteItemView) SetSource(v string)

SetSource gets a reference to the given string and assigns it to the Source field.

func (*QuoteItemView) SetSourceManufacturerId

func (o *QuoteItemView) SetSourceManufacturerId(v string)

SetSourceManufacturerId gets a reference to the given string and assigns it to the SourceManufacturerId field.

func (*QuoteItemView) SetSourceManufacturerName

func (o *QuoteItemView) SetSourceManufacturerName(v string)

SetSourceManufacturerName gets a reference to the given string and assigns it to the SourceManufacturerName field.

func (*QuoteItemView) SetSourceSelectionDetails

func (o *QuoteItemView) SetSourceSelectionDetails(v string)

SetSourceSelectionDetails gets a reference to the given string and assigns it to the SourceSelectionDetails field.

func (*QuoteItemView) SetSourceVendorId

func (o *QuoteItemView) SetSourceVendorId(v string)

SetSourceVendorId gets a reference to the given string and assigns it to the SourceVendorId field.

func (*QuoteItemView) SetSourceVendorName

func (o *QuoteItemView) SetSourceVendorName(v string)

SetSourceVendorName gets a reference to the given string and assigns it to the SourceVendorName field.

func (*QuoteItemView) SetStartingCost

func (o *QuoteItemView) SetStartingCost(v float64)

SetStartingCost gets a reference to the given float64 and assigns it to the StartingCost field.

func (*QuoteItemView) SetStateGovPrice

func (o *QuoteItemView) SetStateGovPrice(v float64)

SetStateGovPrice gets a reference to the given float64 and assigns it to the StateGovPrice field.

func (*QuoteItemView) SetSuggestedPrice

func (o *QuoteItemView) SetSuggestedPrice(v float64)

SetSuggestedPrice gets a reference to the given float64 and assigns it to the SuggestedPrice field.

func (*QuoteItemView) SetSvcSpread

func (o *QuoteItemView) SetSvcSpread(v float64)

SetSvcSpread gets a reference to the given float64 and assigns it to the SvcSpread field.

func (*QuoteItemView) SetTax

func (o *QuoteItemView) SetTax(v float64)

SetTax gets a reference to the given float64 and assigns it to the Tax field.

func (*QuoteItemView) SetTaxCode

func (o *QuoteItemView) SetTaxCode(v string)

SetTaxCode gets a reference to the given string and assigns it to the TaxCode field.

func (*QuoteItemView) SetTaxConverted

func (o *QuoteItemView) SetTaxConverted(v float64)

SetTaxConverted gets a reference to the given float64 and assigns it to the TaxConverted field.

func (*QuoteItemView) SetTaxRate

func (o *QuoteItemView) SetTaxRate(v float64)

SetTaxRate gets a reference to the given float64 and assigns it to the TaxRate field.

func (*QuoteItemView) SetThumbnail

func (o *QuoteItemView) SetThumbnail(v string)

SetThumbnail gets a reference to the given string and assigns it to the Thumbnail field.

func (*QuoteItemView) SetTotalWeight

func (o *QuoteItemView) SetTotalWeight(v float64)

SetTotalWeight gets a reference to the given float64 and assigns it to the TotalWeight field.

func (*QuoteItemView) SetUom

func (o *QuoteItemView) SetUom(v string)

SetUom gets a reference to the given string and assigns it to the Uom field.

func (*QuoteItemView) SetUomFactor

func (o *QuoteItemView) SetUomFactor(v int32)

SetUomFactor gets a reference to the given int32 and assigns it to the UomFactor field.

func (*QuoteItemView) SetUomWeight

func (o *QuoteItemView) SetUomWeight(v float64)

SetUomWeight gets a reference to the given float64 and assigns it to the UomWeight field.

func (*QuoteItemView) SetUop

func (o *QuoteItemView) SetUop(v string)

SetUop gets a reference to the given string and assigns it to the Uop field.

func (*QuoteItemView) SetUopFactor

func (o *QuoteItemView) SetUopFactor(v int32)

SetUopFactor gets a reference to the given int32 and assigns it to the UopFactor field.

func (*QuoteItemView) SetUpcNumber

func (o *QuoteItemView) SetUpcNumber(v string)

SetUpcNumber gets a reference to the given string and assigns it to the UpcNumber field.

func (*QuoteItemView) SetUserId

func (o *QuoteItemView) SetUserId(v string)

SetUserId gets a reference to the given string and assigns it to the UserId field.

func (*QuoteItemView) SetVendorPartNumber

func (o *QuoteItemView) SetVendorPartNumber(v string)

SetVendorPartNumber gets a reference to the given string and assigns it to the VendorPartNumber field.

func (*QuoteItemView) SetWarehouse

func (o *QuoteItemView) SetWarehouse(v string)

SetWarehouse gets a reference to the given string and assigns it to the Warehouse field.

func (*QuoteItemView) SetWarehouseCode

func (o *QuoteItemView) SetWarehouseCode(v string)

SetWarehouseCode gets a reference to the given string and assigns it to the WarehouseCode field.

func (*QuoteItemView) SetZCustomBool1

func (o *QuoteItemView) SetZCustomBool1(v bool)

SetZCustomBool1 gets a reference to the given bool and assigns it to the ZCustomBool1 field.

func (*QuoteItemView) SetZCustomBool2

func (o *QuoteItemView) SetZCustomBool2(v bool)

SetZCustomBool2 gets a reference to the given bool and assigns it to the ZCustomBool2 field.

func (*QuoteItemView) SetZCustomBool3

func (o *QuoteItemView) SetZCustomBool3(v bool)

SetZCustomBool3 gets a reference to the given bool and assigns it to the ZCustomBool3 field.

func (*QuoteItemView) SetZCustomBool4

func (o *QuoteItemView) SetZCustomBool4(v bool)

SetZCustomBool4 gets a reference to the given bool and assigns it to the ZCustomBool4 field.

func (*QuoteItemView) SetZCustomBool5

func (o *QuoteItemView) SetZCustomBool5(v bool)

SetZCustomBool5 gets a reference to the given bool and assigns it to the ZCustomBool5 field.

func (*QuoteItemView) SetZCustomBool6

func (o *QuoteItemView) SetZCustomBool6(v bool)

SetZCustomBool6 gets a reference to the given bool and assigns it to the ZCustomBool6 field.

func (*QuoteItemView) SetZCustomBool7

func (o *QuoteItemView) SetZCustomBool7(v bool)

SetZCustomBool7 gets a reference to the given bool and assigns it to the ZCustomBool7 field.

func (*QuoteItemView) SetZCustomBool8

func (o *QuoteItemView) SetZCustomBool8(v bool)

SetZCustomBool8 gets a reference to the given bool and assigns it to the ZCustomBool8 field.

func (*QuoteItemView) SetZCustomBool9

func (o *QuoteItemView) SetZCustomBool9(v bool)

SetZCustomBool9 gets a reference to the given bool and assigns it to the ZCustomBool9 field.

func (*QuoteItemView) SetZCustomBool10

func (o *QuoteItemView) SetZCustomBool10(v bool)

SetZCustomBool10 gets a reference to the given bool and assigns it to the ZCustomBool10 field.

func (*QuoteItemView) SetZCustomDate1

func (o *QuoteItemView) SetZCustomDate1(v time.Time)

SetZCustomDate1 gets a reference to the given time.Time and assigns it to the ZCustomDate1 field.

func (*QuoteItemView) SetZCustomDate2

func (o *QuoteItemView) SetZCustomDate2(v time.Time)

SetZCustomDate2 gets a reference to the given time.Time and assigns it to the ZCustomDate2 field.

func (*QuoteItemView) SetZCustomDecimal1

func (o *QuoteItemView) SetZCustomDecimal1(v float64)

SetZCustomDecimal1 gets a reference to the given float64 and assigns it to the ZCustomDecimal1 field.

func (*QuoteItemView) SetZCustomDecimal2

func (o *QuoteItemView) SetZCustomDecimal2(v float64)

SetZCustomDecimal2 gets a reference to the given float64 and assigns it to the ZCustomDecimal2 field.

func (*QuoteItemView) SetZCustomDecimal3

func (o *QuoteItemView) SetZCustomDecimal3(v float64)

SetZCustomDecimal3 gets a reference to the given float64 and assigns it to the ZCustomDecimal3 field.

func (*QuoteItemView) SetZCustomDecimal4

func (o *QuoteItemView) SetZCustomDecimal4(v float64)

SetZCustomDecimal4 gets a reference to the given float64 and assigns it to the ZCustomDecimal4 field.

func (*QuoteItemView) SetZCustomDecimal5

func (o *QuoteItemView) SetZCustomDecimal5(v float64)

SetZCustomDecimal5 gets a reference to the given float64 and assigns it to the ZCustomDecimal5 field.

func (*QuoteItemView) SetZCustomDecimal6

func (o *QuoteItemView) SetZCustomDecimal6(v float64)

SetZCustomDecimal6 gets a reference to the given float64 and assigns it to the ZCustomDecimal6 field.

func (*QuoteItemView) SetZCustomDecimal7

func (o *QuoteItemView) SetZCustomDecimal7(v float64)

SetZCustomDecimal7 gets a reference to the given float64 and assigns it to the ZCustomDecimal7 field.

func (*QuoteItemView) SetZCustomDecimal8

func (o *QuoteItemView) SetZCustomDecimal8(v float64)

SetZCustomDecimal8 gets a reference to the given float64 and assigns it to the ZCustomDecimal8 field.

func (*QuoteItemView) SetZCustomDecimal9

func (o *QuoteItemView) SetZCustomDecimal9(v float64)

SetZCustomDecimal9 gets a reference to the given float64 and assigns it to the ZCustomDecimal9 field.

func (*QuoteItemView) SetZCustomDecimal10

func (o *QuoteItemView) SetZCustomDecimal10(v float64)

SetZCustomDecimal10 gets a reference to the given float64 and assigns it to the ZCustomDecimal10 field.

func (*QuoteItemView) SetZCustomNotes1

func (o *QuoteItemView) SetZCustomNotes1(v string)

SetZCustomNotes1 gets a reference to the given string and assigns it to the ZCustomNotes1 field.

func (*QuoteItemView) SetZCustomNotes2

func (o *QuoteItemView) SetZCustomNotes2(v string)

SetZCustomNotes2 gets a reference to the given string and assigns it to the ZCustomNotes2 field.

func (*QuoteItemView) SetZCustomNotes3

func (o *QuoteItemView) SetZCustomNotes3(v string)

SetZCustomNotes3 gets a reference to the given string and assigns it to the ZCustomNotes3 field.

func (*QuoteItemView) SetZCustomNotes4

func (o *QuoteItemView) SetZCustomNotes4(v string)

SetZCustomNotes4 gets a reference to the given string and assigns it to the ZCustomNotes4 field.

func (*QuoteItemView) SetZCustomNotes5

func (o *QuoteItemView) SetZCustomNotes5(v string)

SetZCustomNotes5 gets a reference to the given string and assigns it to the ZCustomNotes5 field.

func (*QuoteItemView) SetZCustomNotes6

func (o *QuoteItemView) SetZCustomNotes6(v string)

SetZCustomNotes6 gets a reference to the given string and assigns it to the ZCustomNotes6 field.

func (*QuoteItemView) SetZCustomNotes7

func (o *QuoteItemView) SetZCustomNotes7(v string)

SetZCustomNotes7 gets a reference to the given string and assigns it to the ZCustomNotes7 field.

func (*QuoteItemView) SetZCustomNotes8

func (o *QuoteItemView) SetZCustomNotes8(v string)

SetZCustomNotes8 gets a reference to the given string and assigns it to the ZCustomNotes8 field.

func (*QuoteItemView) SetZCustomNotes9

func (o *QuoteItemView) SetZCustomNotes9(v string)

SetZCustomNotes9 gets a reference to the given string and assigns it to the ZCustomNotes9 field.

func (*QuoteItemView) SetZCustomNotes10

func (o *QuoteItemView) SetZCustomNotes10(v string)

SetZCustomNotes10 gets a reference to the given string and assigns it to the ZCustomNotes10 field.

func (*QuoteItemView) SetZCustomString1

func (o *QuoteItemView) SetZCustomString1(v string)

SetZCustomString1 gets a reference to the given string and assigns it to the ZCustomString1 field.

func (*QuoteItemView) SetZCustomString2

func (o *QuoteItemView) SetZCustomString2(v string)

SetZCustomString2 gets a reference to the given string and assigns it to the ZCustomString2 field.

func (*QuoteItemView) SetZCustomString3

func (o *QuoteItemView) SetZCustomString3(v string)

SetZCustomString3 gets a reference to the given string and assigns it to the ZCustomString3 field.

func (*QuoteItemView) SetZCustomString4

func (o *QuoteItemView) SetZCustomString4(v string)

SetZCustomString4 gets a reference to the given string and assigns it to the ZCustomString4 field.

func (*QuoteItemView) SetZCustomString5

func (o *QuoteItemView) SetZCustomString5(v string)

SetZCustomString5 gets a reference to the given string and assigns it to the ZCustomString5 field.

func (*QuoteItemView) SetZCustomString6

func (o *QuoteItemView) SetZCustomString6(v string)

SetZCustomString6 gets a reference to the given string and assigns it to the ZCustomString6 field.

func (*QuoteItemView) SetZCustomString7

func (o *QuoteItemView) SetZCustomString7(v string)

SetZCustomString7 gets a reference to the given string and assigns it to the ZCustomString7 field.

func (*QuoteItemView) SetZCustomString8

func (o *QuoteItemView) SetZCustomString8(v string)

SetZCustomString8 gets a reference to the given string and assigns it to the ZCustomString8 field.

func (*QuoteItemView) SetZCustomString9

func (o *QuoteItemView) SetZCustomString9(v string)

SetZCustomString9 gets a reference to the given string and assigns it to the ZCustomString9 field.

func (*QuoteItemView) SetZCustomString10

func (o *QuoteItemView) SetZCustomString10(v string)

SetZCustomString10 gets a reference to the given string and assigns it to the ZCustomString10 field.

func (*QuoteItemView) SetZCustomString11

func (o *QuoteItemView) SetZCustomString11(v string)

SetZCustomString11 gets a reference to the given string and assigns it to the ZCustomString11 field.

func (*QuoteItemView) SetZCustomString12

func (o *QuoteItemView) SetZCustomString12(v string)

SetZCustomString12 gets a reference to the given string and assigns it to the ZCustomString12 field.

func (*QuoteItemView) SetZCustomString13

func (o *QuoteItemView) SetZCustomString13(v string)

SetZCustomString13 gets a reference to the given string and assigns it to the ZCustomString13 field.

func (*QuoteItemView) SetZCustomString14

func (o *QuoteItemView) SetZCustomString14(v string)

SetZCustomString14 gets a reference to the given string and assigns it to the ZCustomString14 field.

func (*QuoteItemView) SetZCustomString15

func (o *QuoteItemView) SetZCustomString15(v string)

SetZCustomString15 gets a reference to the given string and assigns it to the ZCustomString15 field.

func (*QuoteItemView) SetZCustomString16

func (o *QuoteItemView) SetZCustomString16(v string)

SetZCustomString16 gets a reference to the given string and assigns it to the ZCustomString16 field.

func (*QuoteItemView) SetZCustomString17

func (o *QuoteItemView) SetZCustomString17(v string)

SetZCustomString17 gets a reference to the given string and assigns it to the ZCustomString17 field.

func (*QuoteItemView) SetZCustomString18

func (o *QuoteItemView) SetZCustomString18(v string)

SetZCustomString18 gets a reference to the given string and assigns it to the ZCustomString18 field.

func (*QuoteItemView) SetZCustomString19

func (o *QuoteItemView) SetZCustomString19(v string)

SetZCustomString19 gets a reference to the given string and assigns it to the ZCustomString19 field.

func (*QuoteItemView) SetZCustomString20

func (o *QuoteItemView) SetZCustomString20(v string)

SetZCustomString20 gets a reference to the given string and assigns it to the ZCustomString20 field.

func (*QuoteItemView) SetZCustomString21

func (o *QuoteItemView) SetZCustomString21(v string)

SetZCustomString21 gets a reference to the given string and assigns it to the ZCustomString21 field.

func (*QuoteItemView) SetZCustomString22

func (o *QuoteItemView) SetZCustomString22(v string)

SetZCustomString22 gets a reference to the given string and assigns it to the ZCustomString22 field.

func (*QuoteItemView) SetZCustomString23

func (o *QuoteItemView) SetZCustomString23(v string)

SetZCustomString23 gets a reference to the given string and assigns it to the ZCustomString23 field.

func (*QuoteItemView) SetZCustomString24

func (o *QuoteItemView) SetZCustomString24(v string)

SetZCustomString24 gets a reference to the given string and assigns it to the ZCustomString24 field.

func (*QuoteItemView) SetZCustomString25

func (o *QuoteItemView) SetZCustomString25(v string)

SetZCustomString25 gets a reference to the given string and assigns it to the ZCustomString25 field.

func (*QuoteItemView) SetZCustomText1

func (o *QuoteItemView) SetZCustomText1(v string)

SetZCustomText1 gets a reference to the given string and assigns it to the ZCustomText1 field.

func (QuoteItemView) ToMap

func (o QuoteItemView) ToMap() (map[string]interface{}, error)

func (*QuoteItemView) UnmarshalJSON

func (o *QuoteItemView) UnmarshalJSON(data []byte) (err error)

type QuoteItemsAPIService

type QuoteItemsAPIService service

QuoteItemsAPIService QuoteItemsAPI service

func (*QuoteItemsAPIService) DeleteQuoteItemByID

DeleteQuoteItemByID Method for DeleteQuoteItemByID

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiDeleteQuoteItemByIDRequest

func (*QuoteItemsAPIService) DeleteQuoteItemByIDExecute

func (a *QuoteItemsAPIService) DeleteQuoteItemByIDExecute(r ApiDeleteQuoteItemByIDRequest) (*http.Response, error)

Execute executes the request

func (*QuoteItemsAPIService) GetQuoteItemByID

GetQuoteItemByID Method for GetQuoteItemByID

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiGetQuoteItemByIDRequest

func (*QuoteItemsAPIService) GetQuoteItemByIDExecute

Execute executes the request

@return QuoteItemView

func (*QuoteItemsAPIService) GetQuoteItems

GetQuoteItems Method for GetQuoteItems

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetQuoteItemsRequest

func (*QuoteItemsAPIService) GetQuoteItemsExecute

Execute executes the request

@return []QuoteItemView

func (*QuoteItemsAPIService) PatchQuoteItemByID

PatchQuoteItemByID Method for PatchQuoteItemByID

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiPatchQuoteItemByIDRequest

func (*QuoteItemsAPIService) PatchQuoteItemByIDExecute

func (a *QuoteItemsAPIService) PatchQuoteItemByIDExecute(r ApiPatchQuoteItemByIDRequest) (*QuoteItemView, *http.Response, error)

Execute executes the request

@return QuoteItemView

func (*QuoteItemsAPIService) PostQuoteItem

PostQuoteItem Method for PostQuoteItem

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiPostQuoteItemRequest

func (*QuoteItemsAPIService) PostQuoteItemExecute

Execute executes the request

@return QuoteItemView

type QuoteItemsQueryModel

type QuoteItemsQueryModel struct {
	// Set true for results from deleted or archived quotes. Set false to omit records from deleted or archive quotes. Defaults to true.
	ShowAllVersions *bool `json:"showAllVersions,omitempty"`
	// Comma separated list of fields to return.
	IncludeFields *string `json:"includeFields,omitempty"`
	// Conditional retrieve statements.
	Conditions *string `json:"conditions,omitempty"`
	// Page of results to get. 1-index based.
	Page *int32 `json:"page,omitempty"`
	// Page size of results to get. Max size 1000, default 50.
	PageSize             *int32 `json:"pageSize,omitempty"`
	AdditionalProperties map[string]interface{}
}

QuoteItemsQueryModel struct for QuoteItemsQueryModel

func NewQuoteItemsQueryModel

func NewQuoteItemsQueryModel() *QuoteItemsQueryModel

NewQuoteItemsQueryModel instantiates a new QuoteItemsQueryModel object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewQuoteItemsQueryModelWithDefaults

func NewQuoteItemsQueryModelWithDefaults() *QuoteItemsQueryModel

NewQuoteItemsQueryModelWithDefaults instantiates a new QuoteItemsQueryModel object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*QuoteItemsQueryModel) GetConditions

func (o *QuoteItemsQueryModel) GetConditions() string

GetConditions returns the Conditions field value if set, zero value otherwise.

func (*QuoteItemsQueryModel) GetConditionsOk

func (o *QuoteItemsQueryModel) GetConditionsOk() (*string, bool)

GetConditionsOk returns a tuple with the Conditions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemsQueryModel) GetIncludeFields

func (o *QuoteItemsQueryModel) GetIncludeFields() string

GetIncludeFields returns the IncludeFields field value if set, zero value otherwise.

func (*QuoteItemsQueryModel) GetIncludeFieldsOk

func (o *QuoteItemsQueryModel) GetIncludeFieldsOk() (*string, bool)

GetIncludeFieldsOk returns a tuple with the IncludeFields field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemsQueryModel) GetPage

func (o *QuoteItemsQueryModel) GetPage() int32

GetPage returns the Page field value if set, zero value otherwise.

func (*QuoteItemsQueryModel) GetPageOk

func (o *QuoteItemsQueryModel) GetPageOk() (*int32, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemsQueryModel) GetPageSize

func (o *QuoteItemsQueryModel) GetPageSize() int32

GetPageSize returns the PageSize field value if set, zero value otherwise.

func (*QuoteItemsQueryModel) GetPageSizeOk

func (o *QuoteItemsQueryModel) GetPageSizeOk() (*int32, bool)

GetPageSizeOk returns a tuple with the PageSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemsQueryModel) GetShowAllVersions

func (o *QuoteItemsQueryModel) GetShowAllVersions() bool

GetShowAllVersions returns the ShowAllVersions field value if set, zero value otherwise.

func (*QuoteItemsQueryModel) GetShowAllVersionsOk

func (o *QuoteItemsQueryModel) GetShowAllVersionsOk() (*bool, bool)

GetShowAllVersionsOk returns a tuple with the ShowAllVersions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteItemsQueryModel) HasConditions

func (o *QuoteItemsQueryModel) HasConditions() bool

HasConditions returns a boolean if a field has been set.

func (*QuoteItemsQueryModel) HasIncludeFields

func (o *QuoteItemsQueryModel) HasIncludeFields() bool

HasIncludeFields returns a boolean if a field has been set.

func (*QuoteItemsQueryModel) HasPage

func (o *QuoteItemsQueryModel) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*QuoteItemsQueryModel) HasPageSize

func (o *QuoteItemsQueryModel) HasPageSize() bool

HasPageSize returns a boolean if a field has been set.

func (*QuoteItemsQueryModel) HasShowAllVersions

func (o *QuoteItemsQueryModel) HasShowAllVersions() bool

HasShowAllVersions returns a boolean if a field has been set.

func (QuoteItemsQueryModel) MarshalJSON

func (o QuoteItemsQueryModel) MarshalJSON() ([]byte, error)

func (*QuoteItemsQueryModel) SetConditions

func (o *QuoteItemsQueryModel) SetConditions(v string)

SetConditions gets a reference to the given string and assigns it to the Conditions field.

func (*QuoteItemsQueryModel) SetIncludeFields

func (o *QuoteItemsQueryModel) SetIncludeFields(v string)

SetIncludeFields gets a reference to the given string and assigns it to the IncludeFields field.

func (*QuoteItemsQueryModel) SetPage

func (o *QuoteItemsQueryModel) SetPage(v int32)

SetPage gets a reference to the given int32 and assigns it to the Page field.

func (*QuoteItemsQueryModel) SetPageSize

func (o *QuoteItemsQueryModel) SetPageSize(v int32)

SetPageSize gets a reference to the given int32 and assigns it to the PageSize field.

func (*QuoteItemsQueryModel) SetShowAllVersions

func (o *QuoteItemsQueryModel) SetShowAllVersions(v bool)

SetShowAllVersions gets a reference to the given bool and assigns it to the ShowAllVersions field.

func (QuoteItemsQueryModel) ToMap

func (o QuoteItemsQueryModel) ToMap() (map[string]interface{}, error)

func (*QuoteItemsQueryModel) UnmarshalJSON

func (o *QuoteItemsQueryModel) UnmarshalJSON(data []byte) (err error)

type QuoteQueryModel

type QuoteQueryModel struct {
	// Set true for results from deleted or archived quotes. Defaults to false.
	ShowAllVersions *bool `json:"showAllVersions,omitempty"`
	// Comma separated list of fields to return.
	IncludeFields *string `json:"includeFields,omitempty"`
	// Conditional retrieve statements.
	Conditions *string `json:"conditions,omitempty"`
	// Page of results to get. 1-index based.
	Page *int32 `json:"page,omitempty"`
	// Page size of results to get. Max size 1000, default 50.
	PageSize             *int32 `json:"pageSize,omitempty"`
	AdditionalProperties map[string]interface{}
}

QuoteQueryModel struct for QuoteQueryModel

func NewQuoteQueryModel

func NewQuoteQueryModel() *QuoteQueryModel

NewQuoteQueryModel instantiates a new QuoteQueryModel object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewQuoteQueryModelWithDefaults

func NewQuoteQueryModelWithDefaults() *QuoteQueryModel

NewQuoteQueryModelWithDefaults instantiates a new QuoteQueryModel object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*QuoteQueryModel) GetConditions

func (o *QuoteQueryModel) GetConditions() string

GetConditions returns the Conditions field value if set, zero value otherwise.

func (*QuoteQueryModel) GetConditionsOk

func (o *QuoteQueryModel) GetConditionsOk() (*string, bool)

GetConditionsOk returns a tuple with the Conditions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteQueryModel) GetIncludeFields

func (o *QuoteQueryModel) GetIncludeFields() string

GetIncludeFields returns the IncludeFields field value if set, zero value otherwise.

func (*QuoteQueryModel) GetIncludeFieldsOk

func (o *QuoteQueryModel) GetIncludeFieldsOk() (*string, bool)

GetIncludeFieldsOk returns a tuple with the IncludeFields field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteQueryModel) GetPage

func (o *QuoteQueryModel) GetPage() int32

GetPage returns the Page field value if set, zero value otherwise.

func (*QuoteQueryModel) GetPageOk

func (o *QuoteQueryModel) GetPageOk() (*int32, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteQueryModel) GetPageSize

func (o *QuoteQueryModel) GetPageSize() int32

GetPageSize returns the PageSize field value if set, zero value otherwise.

func (*QuoteQueryModel) GetPageSizeOk

func (o *QuoteQueryModel) GetPageSizeOk() (*int32, bool)

GetPageSizeOk returns a tuple with the PageSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteQueryModel) GetShowAllVersions

func (o *QuoteQueryModel) GetShowAllVersions() bool

GetShowAllVersions returns the ShowAllVersions field value if set, zero value otherwise.

func (*QuoteQueryModel) GetShowAllVersionsOk

func (o *QuoteQueryModel) GetShowAllVersionsOk() (*bool, bool)

GetShowAllVersionsOk returns a tuple with the ShowAllVersions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteQueryModel) HasConditions

func (o *QuoteQueryModel) HasConditions() bool

HasConditions returns a boolean if a field has been set.

func (*QuoteQueryModel) HasIncludeFields

func (o *QuoteQueryModel) HasIncludeFields() bool

HasIncludeFields returns a boolean if a field has been set.

func (*QuoteQueryModel) HasPage

func (o *QuoteQueryModel) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*QuoteQueryModel) HasPageSize

func (o *QuoteQueryModel) HasPageSize() bool

HasPageSize returns a boolean if a field has been set.

func (*QuoteQueryModel) HasShowAllVersions

func (o *QuoteQueryModel) HasShowAllVersions() bool

HasShowAllVersions returns a boolean if a field has been set.

func (QuoteQueryModel) MarshalJSON

func (o QuoteQueryModel) MarshalJSON() ([]byte, error)

func (*QuoteQueryModel) SetConditions

func (o *QuoteQueryModel) SetConditions(v string)

SetConditions gets a reference to the given string and assigns it to the Conditions field.

func (*QuoteQueryModel) SetIncludeFields

func (o *QuoteQueryModel) SetIncludeFields(v string)

SetIncludeFields gets a reference to the given string and assigns it to the IncludeFields field.

func (*QuoteQueryModel) SetPage

func (o *QuoteQueryModel) SetPage(v int32)

SetPage gets a reference to the given int32 and assigns it to the Page field.

func (*QuoteQueryModel) SetPageSize

func (o *QuoteQueryModel) SetPageSize(v int32)

SetPageSize gets a reference to the given int32 and assigns it to the PageSize field.

func (*QuoteQueryModel) SetShowAllVersions

func (o *QuoteQueryModel) SetShowAllVersions(v bool)

SetShowAllVersions gets a reference to the given bool and assigns it to the ShowAllVersions field.

func (QuoteQueryModel) ToMap

func (o QuoteQueryModel) ToMap() (map[string]interface{}, error)

func (*QuoteQueryModel) UnmarshalJSON

func (o *QuoteQueryModel) UnmarshalJSON(data []byte) (err error)

type QuoteTabView

type QuoteTabView struct {
	Id                                 *string        `json:"id,omitempty"`
	Name                               *string        `json:"name,omitempty"`
	ApprovalContentHash                *string        `json:"approvalContentHash,omitempty"`
	ApprovalOnChange                   *bool          `json:"approvalOnChange,omitempty"`
	Audio                              *string        `json:"audio,omitempty" validate:"regexp=^(?:[A-Za-z0-9+\\/]{4})*(?:[A-Za-z0-9+\\/]{2}==|[A-Za-z0-9+\\/]{3}=)?$"`
	CanAddItems                        *bool          `json:"canAddItems,omitempty"`
	CanChangePrice                     *bool          `json:"canChangePrice,omitempty"`
	CanChangeTabName                   *bool          `json:"canChangeTabName,omitempty"`
	CanDeleteItems                     *bool          `json:"canDeleteItems,omitempty"`
	CanDeleteTab                       *bool          `json:"canDeleteTab,omitempty"`
	ConfigId                           *string        `json:"configId,omitempty"`
	ConnectWiseIntegratorOverride      *string        `json:"connectWiseIntegratorOverride,omitempty"`
	ConnectWiseOpInclude               *bool          `json:"connectWiseOpInclude,omitempty"`
	ConnectWiseType                    *string        `json:"connectWiseType,omitempty"`
	ContractEndDate                    *time.Time     `json:"contractEndDate,omitempty"`
	ContractStartDate                  *time.Time     `json:"contractStartDate,omitempty"`
	Cost                               *float64       `json:"cost,omitempty"`
	CwForceTabForecast                 *bool          `json:"cwForceTabForecast,omitempty"`
	CwForecastId                       *int32         `json:"cwForecastId,omitempty"`
	DisableAutoEtilizeSourcing         *bool          `json:"disableAutoEtilizeSourcing,omitempty"`
	Discount                           *float64       `json:"discount,omitempty"`
	DiscountAmount                     *float64       `json:"discountAmount,omitempty"`
	DiscountAmountConverted            *float64       `json:"discountAmountConverted,omitempty"`
	DynamicGpProfileId                 *string        `json:"dynamicGpProfileId,omitempty"`
	ForceOpportunityItems              *bool          `json:"forceOpportunityItems,omitempty"`
	ForceZeroQuantity                  *bool          `json:"forceZeroQuantity,omitempty"`
	GoToProductSearchWhenTabIsEmpty    *bool          `json:"goToProductSearchWhenTabIsEmpty,omitempty"`
	GridFormat                         *string        `json:"gridFormat,omitempty"`
	GrossMargin                        *float64       `json:"grossMargin,omitempty"`
	GrossMarginAmount                  *float64       `json:"grossMarginAmount,omitempty"`
	GroupRunningCost                   *float64       `json:"groupRunningCost,omitempty"`
	GroupRunningOptionAmount           *float64       `json:"groupRunningOptionAmount,omitempty"`
	GroupRunningRecurringCost          *float64       `json:"groupRunningRecurringCost,omitempty"`
	GroupRunningRecurringOptionAmount  *float64       `json:"groupRunningRecurringOptionAmount,omitempty"`
	GroupRunningRecurringSubtotal      *float64       `json:"groupRunningRecurringSubtotal,omitempty"`
	GroupRunningRecurringTax           *float64       `json:"groupRunningRecurringTax,omitempty"`
	GroupRunningRecurringTotal         *float64       `json:"groupRunningRecurringTotal,omitempty"`
	GroupRunningSubtotal               *float64       `json:"groupRunningSubtotal,omitempty"`
	GroupRunningTax                    *float64       `json:"groupRunningTax,omitempty"`
	GroupRunningTotal                  *float64       `json:"groupRunningTotal,omitempty"`
	Gst                                *float64       `json:"gst,omitempty"`
	GstConverted                       *float64       `json:"gstConverted,omitempty"`
	HasLimitOnNewItems                 *bool          `json:"hasLimitOnNewItems,omitempty"`
	HideMfp                            *bool          `json:"hideMfp,omitempty"`
	HtmlNotes                          *string        `json:"htmlNotes,omitempty"`
	IdRecurringRevenue                 *string        `json:"idRecurringRevenue,omitempty"`
	IgnorePackageHeaderOnOpportunities *bool          `json:"ignorePackageHeaderOnOpportunities,omitempty"`
	InvoiceRouting                     *string        `json:"invoiceRouting,omitempty"`
	IsGroupQuantityMaster              *bool          `json:"isGroupQuantityMaster,omitempty"`
	IsHidden                           *bool          `json:"isHidden,omitempty"`
	IsOptional                         *bool          `json:"isOptional,omitempty"`
	IsPrinted                          *bool          `json:"isPrinted,omitempty"`
	IsProtectedTab                     *bool          `json:"isProtectedTab,omitempty"`
	IsShippingTab                      *bool          `json:"isShippingTab,omitempty"`
	IsSourcingExempt                   *bool          `json:"isSourcingExempt,omitempty"`
	IsTabTemplate                      *bool          `json:"isTabTemplate,omitempty"`
	IsTargetDiscount                   *bool          `json:"isTargetDiscount,omitempty"`
	IsTargetListDiscount               *bool          `json:"isTargetListDiscount,omitempty"`
	IsTargetMargin                     *bool          `json:"isTargetMargin,omitempty"`
	IsTargetMarkup                     *bool          `json:"isTargetMarkup,omitempty"`
	IsTaxable                          *bool          `json:"isTaxable,omitempty"`
	IsTotalsIncluded                   *bool          `json:"isTotalsIncluded,omitempty"`
	LayoutGroup                        *string        `json:"layoutGroup,omitempty"`
	LongDescription                    *string        `json:"longDescription,omitempty"`
	Markup                             *float64       `json:"markup,omitempty"`
	NetMargin                          *float64       `json:"netMargin,omitempty"`
	NetSuiteType                       *string        `json:"netSuiteType,omitempty"`
	OppConvertRouting                  *string        `json:"oppConvertRouting,omitempty"`
	OppRecurringAsAdjustment           *bool          `json:"oppRecurringAsAdjustment,omitempty"`
	OptionalAmount                     *float64       `json:"optionalAmount,omitempty"`
	OptionalAmountConverted            *float64       `json:"optionalAmountConverted,omitempty"`
	OptionalRecurring                  *float64       `json:"optionalRecurring,omitempty"`
	OptionalSubtotal                   *float64       `json:"optionalSubtotal,omitempty"`
	OptionalTax                        *float64       `json:"optionalTax,omitempty"`
	OrderPorterGroup                   *string        `json:"orderPorterGroup,omitempty"`
	OrderPorterRequired                *bool          `json:"orderPorterRequired,omitempty"`
	Owner                              *string        `json:"owner,omitempty"`
	PageBreak                          *bool          `json:"pageBreak,omitempty"`
	Periods                            *int32         `json:"periods,omitempty"`
	Price                              *float64       `json:"price,omitempty"`
	PrimarySourceGroup                 *string        `json:"primarySourceGroup,omitempty"`
	ProductSearchFormConfiguration     *string        `json:"productSearchFormConfiguration,omitempty"`
	ProductSearchPrefillMappingSet     *string        `json:"productSearchPrefillMappingSet,omitempty"`
	Pst                                *float64       `json:"pst,omitempty"`
	PstConverted                       *float64       `json:"pstConverted,omitempty"`
	QuickBooksType                     *string        `json:"quickBooksType,omitempty"`
	Quote                              *ReferenceLink `json:"quote,omitempty"`
	RecurringCost                      *float64       `json:"recurringCost,omitempty"`
	RecurringDiscount                  *float64       `json:"recurringDiscount,omitempty"`
	RecurringDiscountAmount            *float64       `json:"recurringDiscountAmount,omitempty"`
	RecurringGrossMargin               *float64       `json:"recurringGrossMargin,omitempty"`
	RecurringGrossMarginAmount         *float64       `json:"recurringGrossMarginAmount,omitempty"`
	RecurringGst                       *float64       `json:"recurringGst,omitempty"`
	RecurringIsTaxable                 *float64       `json:"recurringIsTaxable,omitempty"`
	RecurringLabel                     *string        `json:"recurringLabel,omitempty"`
	RecurringMarkup                    *float64       `json:"recurringMarkup,omitempty"`
	RecurringNetMargin                 *float64       `json:"recurringNetMargin,omitempty"`
	RecurringOptionalSubtotal          *float64       `json:"recurringOptionalSubtotal,omitempty"`
	RecurringOptionalTax               *float64       `json:"recurringOptionalTax,omitempty"`
	RecurringPst                       *float64       `json:"recurringPst,omitempty"`
	RecurringSubtotal                  *float64       `json:"recurringSubtotal,omitempty"`
	RecurringSuggestedDiscountAmount   *float64       `json:"recurringSuggestedDiscountAmount,omitempty"`
	RecurringSuggestedTotal            *float64       `json:"recurringSuggestedTotal,omitempty"`
	RecurringTargetPriceControlType    *int32         `json:"recurringTargetPriceControlType,omitempty"`
	RecurringTargetPriceControlValue   *float64       `json:"recurringTargetPriceControlValue,omitempty"`
	RecurringTax                       *float64       `json:"recurringTax,omitempty"`
	RecurringTotal                     *float64       `json:"recurringTotal,omitempty"`
	RtfNotes                           *string        `json:"rtfNotes,omitempty"`
	ShowLineItemQuickFilter            *bool          `json:"showLineItemQuickFilter,omitempty"`
	Subtotal                           *float64       `json:"subtotal,omitempty"`
	SubtotalConverted                  *float64       `json:"subtotalConverted,omitempty"`
	SuggestedDiscountAmount            *float64       `json:"suggestedDiscountAmount,omitempty"`
	SuggestedTotal                     *float64       `json:"suggestedTotal,omitempty"`
	TabColor                           *string        `json:"tabColor,omitempty"`
	TabDescription                     *string        `json:"tabDescription,omitempty"`
	TabGroup                           *string        `json:"tabGroup,omitempty"`
	TabIdentifier                      *string        `json:"tabIdentifier,omitempty"`
	TabNotes                           *string        `json:"tabNotes,omitempty"`
	TabNumber                          *int32         `json:"tabNumber,omitempty"`
	TabSheetHtml1                      *string        `json:"tabSheetHtml1,omitempty"`
	TabSheetHtml2                      *string        `json:"tabSheetHtml2,omitempty"`
	TabSheetHtml3                      *string        `json:"tabSheetHtml3,omitempty"`
	TabSheetHtml4                      *string        `json:"tabSheetHtml4,omitempty"`
	TabSheetHtml5                      *string        `json:"tabSheetHtml5,omitempty"`
	TabTotal                           *float64       `json:"tabTotal,omitempty"`
	TabTotalConverted                  *float64       `json:"tabTotalConverted,omitempty"`
	TargetDiscount                     *float64       `json:"targetDiscount,omitempty"`
	TargetMargin                       *float64       `json:"targetMargin,omitempty"`
	TargetMarkup                       *float64       `json:"targetMarkup,omitempty"`
	TargetSheet1                       *string        `json:"targetSheet1,omitempty"`
	TargetSheet2                       *string        `json:"targetSheet2,omitempty"`
	TargetSheet3                       *string        `json:"targetSheet3,omitempty"`
	TargetSheet4                       *string        `json:"targetSheet4,omitempty"`
	TargetSheet5                       *string        `json:"targetSheet5,omitempty"`
	Tax                                *float64       `json:"tax,omitempty"`
	TaxCode                            *string        `json:"taxCode,omitempty"`
	TaxConverted                       *float64       `json:"taxConverted,omitempty"`
	TaxRate                            *float64       `json:"taxRate,omitempty"`
	ZCustomTabBool1                    *bool          `json:"zCustomTabBool1,omitempty"`
	ZCustomTabBool10                   *bool          `json:"zCustomTabBool10,omitempty"`
	ZCustomTabBool2                    *bool          `json:"zCustomTabBool2,omitempty"`
	ZCustomTabBool3                    *bool          `json:"zCustomTabBool3,omitempty"`
	ZCustomTabBool4                    *bool          `json:"zCustomTabBool4,omitempty"`
	ZCustomTabBool5                    *bool          `json:"zCustomTabBool5,omitempty"`
	ZCustomTabBool6                    *bool          `json:"zCustomTabBool6,omitempty"`
	ZCustomTabBool7                    *bool          `json:"zCustomTabBool7,omitempty"`
	ZCustomTabBool8                    *bool          `json:"zCustomTabBool8,omitempty"`
	ZCustomTabBool9                    *bool          `json:"zCustomTabBool9,omitempty"`
	ZCustomTabDate1                    *time.Time     `json:"zCustomTabDate1,omitempty"`
	ZCustomTabDate2                    *time.Time     `json:"zCustomTabDate2,omitempty"`
	ZCustomTabDecimal1                 *float64       `json:"zCustomTabDecimal1,omitempty"`
	ZCustomTabDecimal10                *float64       `json:"zCustomTabDecimal10,omitempty"`
	ZCustomTabDecimal2                 *float64       `json:"zCustomTabDecimal2,omitempty"`
	ZCustomTabDecimal3                 *float64       `json:"zCustomTabDecimal3,omitempty"`
	ZCustomTabDecimal4                 *float64       `json:"zCustomTabDecimal4,omitempty"`
	ZCustomTabDecimal5                 *float64       `json:"zCustomTabDecimal5,omitempty"`
	ZCustomTabDecimal6                 *float64       `json:"zCustomTabDecimal6,omitempty"`
	ZCustomTabDecimal7                 *float64       `json:"zCustomTabDecimal7,omitempty"`
	ZCustomTabDecimal8                 *float64       `json:"zCustomTabDecimal8,omitempty"`
	ZCustomTabDecimal9                 *float64       `json:"zCustomTabDecimal9,omitempty"`
	ZCustomTabString1                  *string        `json:"zCustomTabString1,omitempty"`
	ZCustomTabString10                 *string        `json:"zCustomTabString10,omitempty"`
	ZCustomTabString11                 *string        `json:"zCustomTabString11,omitempty"`
	ZCustomTabString12                 *string        `json:"zCustomTabString12,omitempty"`
	ZCustomTabString13                 *string        `json:"zCustomTabString13,omitempty"`
	ZCustomTabString14                 *string        `json:"zCustomTabString14,omitempty"`
	ZCustomTabString15                 *string        `json:"zCustomTabString15,omitempty"`
	ZCustomTabString2                  *string        `json:"zCustomTabString2,omitempty"`
	ZCustomTabString3                  *string        `json:"zCustomTabString3,omitempty"`
	ZCustomTabString4                  *string        `json:"zCustomTabString4,omitempty"`
	ZCustomTabString5                  *string        `json:"zCustomTabString5,omitempty"`
	ZCustomTabString6                  *string        `json:"zCustomTabString6,omitempty"`
	ZCustomTabString7                  *string        `json:"zCustomTabString7,omitempty"`
	ZCustomTabString8                  *string        `json:"zCustomTabString8,omitempty"`
	ZCustomTabString9                  *string        `json:"zCustomTabString9,omitempty"`
	AdditionalProperties               map[string]interface{}
}

QuoteTabView struct for QuoteTabView

func NewQuoteTabView

func NewQuoteTabView() *QuoteTabView

NewQuoteTabView instantiates a new QuoteTabView object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewQuoteTabViewWithDefaults

func NewQuoteTabViewWithDefaults() *QuoteTabView

NewQuoteTabViewWithDefaults instantiates a new QuoteTabView object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*QuoteTabView) GetApprovalContentHash

func (o *QuoteTabView) GetApprovalContentHash() string

GetApprovalContentHash returns the ApprovalContentHash field value if set, zero value otherwise.

func (*QuoteTabView) GetApprovalContentHashOk

func (o *QuoteTabView) GetApprovalContentHashOk() (*string, bool)

GetApprovalContentHashOk returns a tuple with the ApprovalContentHash field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetApprovalOnChange

func (o *QuoteTabView) GetApprovalOnChange() bool

GetApprovalOnChange returns the ApprovalOnChange field value if set, zero value otherwise.

func (*QuoteTabView) GetApprovalOnChangeOk

func (o *QuoteTabView) GetApprovalOnChangeOk() (*bool, bool)

GetApprovalOnChangeOk returns a tuple with the ApprovalOnChange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetAudio

func (o *QuoteTabView) GetAudio() string

GetAudio returns the Audio field value if set, zero value otherwise.

func (*QuoteTabView) GetAudioOk

func (o *QuoteTabView) GetAudioOk() (*string, bool)

GetAudioOk returns a tuple with the Audio field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetCanAddItems

func (o *QuoteTabView) GetCanAddItems() bool

GetCanAddItems returns the CanAddItems field value if set, zero value otherwise.

func (*QuoteTabView) GetCanAddItemsOk

func (o *QuoteTabView) GetCanAddItemsOk() (*bool, bool)

GetCanAddItemsOk returns a tuple with the CanAddItems field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetCanChangePrice

func (o *QuoteTabView) GetCanChangePrice() bool

GetCanChangePrice returns the CanChangePrice field value if set, zero value otherwise.

func (*QuoteTabView) GetCanChangePriceOk

func (o *QuoteTabView) GetCanChangePriceOk() (*bool, bool)

GetCanChangePriceOk returns a tuple with the CanChangePrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetCanChangeTabName

func (o *QuoteTabView) GetCanChangeTabName() bool

GetCanChangeTabName returns the CanChangeTabName field value if set, zero value otherwise.

func (*QuoteTabView) GetCanChangeTabNameOk

func (o *QuoteTabView) GetCanChangeTabNameOk() (*bool, bool)

GetCanChangeTabNameOk returns a tuple with the CanChangeTabName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetCanDeleteItems

func (o *QuoteTabView) GetCanDeleteItems() bool

GetCanDeleteItems returns the CanDeleteItems field value if set, zero value otherwise.

func (*QuoteTabView) GetCanDeleteItemsOk

func (o *QuoteTabView) GetCanDeleteItemsOk() (*bool, bool)

GetCanDeleteItemsOk returns a tuple with the CanDeleteItems field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetCanDeleteTab

func (o *QuoteTabView) GetCanDeleteTab() bool

GetCanDeleteTab returns the CanDeleteTab field value if set, zero value otherwise.

func (*QuoteTabView) GetCanDeleteTabOk

func (o *QuoteTabView) GetCanDeleteTabOk() (*bool, bool)

GetCanDeleteTabOk returns a tuple with the CanDeleteTab field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetConfigId

func (o *QuoteTabView) GetConfigId() string

GetConfigId returns the ConfigId field value if set, zero value otherwise.

func (*QuoteTabView) GetConfigIdOk

func (o *QuoteTabView) GetConfigIdOk() (*string, bool)

GetConfigIdOk returns a tuple with the ConfigId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetConnectWiseIntegratorOverride

func (o *QuoteTabView) GetConnectWiseIntegratorOverride() string

GetConnectWiseIntegratorOverride returns the ConnectWiseIntegratorOverride field value if set, zero value otherwise.

func (*QuoteTabView) GetConnectWiseIntegratorOverrideOk

func (o *QuoteTabView) GetConnectWiseIntegratorOverrideOk() (*string, bool)

GetConnectWiseIntegratorOverrideOk returns a tuple with the ConnectWiseIntegratorOverride field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetConnectWiseOpInclude

func (o *QuoteTabView) GetConnectWiseOpInclude() bool

GetConnectWiseOpInclude returns the ConnectWiseOpInclude field value if set, zero value otherwise.

func (*QuoteTabView) GetConnectWiseOpIncludeOk

func (o *QuoteTabView) GetConnectWiseOpIncludeOk() (*bool, bool)

GetConnectWiseOpIncludeOk returns a tuple with the ConnectWiseOpInclude field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetConnectWiseType

func (o *QuoteTabView) GetConnectWiseType() string

GetConnectWiseType returns the ConnectWiseType field value if set, zero value otherwise.

func (*QuoteTabView) GetConnectWiseTypeOk

func (o *QuoteTabView) GetConnectWiseTypeOk() (*string, bool)

GetConnectWiseTypeOk returns a tuple with the ConnectWiseType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetContractEndDate

func (o *QuoteTabView) GetContractEndDate() time.Time

GetContractEndDate returns the ContractEndDate field value if set, zero value otherwise.

func (*QuoteTabView) GetContractEndDateOk

func (o *QuoteTabView) GetContractEndDateOk() (*time.Time, bool)

GetContractEndDateOk returns a tuple with the ContractEndDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetContractStartDate

func (o *QuoteTabView) GetContractStartDate() time.Time

GetContractStartDate returns the ContractStartDate field value if set, zero value otherwise.

func (*QuoteTabView) GetContractStartDateOk

func (o *QuoteTabView) GetContractStartDateOk() (*time.Time, bool)

GetContractStartDateOk returns a tuple with the ContractStartDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetCost

func (o *QuoteTabView) GetCost() float64

GetCost returns the Cost field value if set, zero value otherwise.

func (*QuoteTabView) GetCostOk

func (o *QuoteTabView) GetCostOk() (*float64, bool)

GetCostOk returns a tuple with the Cost field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetCwForceTabForecast

func (o *QuoteTabView) GetCwForceTabForecast() bool

GetCwForceTabForecast returns the CwForceTabForecast field value if set, zero value otherwise.

func (*QuoteTabView) GetCwForceTabForecastOk

func (o *QuoteTabView) GetCwForceTabForecastOk() (*bool, bool)

GetCwForceTabForecastOk returns a tuple with the CwForceTabForecast field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetCwForecastId

func (o *QuoteTabView) GetCwForecastId() int32

GetCwForecastId returns the CwForecastId field value if set, zero value otherwise.

func (*QuoteTabView) GetCwForecastIdOk

func (o *QuoteTabView) GetCwForecastIdOk() (*int32, bool)

GetCwForecastIdOk returns a tuple with the CwForecastId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetDisableAutoEtilizeSourcing

func (o *QuoteTabView) GetDisableAutoEtilizeSourcing() bool

GetDisableAutoEtilizeSourcing returns the DisableAutoEtilizeSourcing field value if set, zero value otherwise.

func (*QuoteTabView) GetDisableAutoEtilizeSourcingOk

func (o *QuoteTabView) GetDisableAutoEtilizeSourcingOk() (*bool, bool)

GetDisableAutoEtilizeSourcingOk returns a tuple with the DisableAutoEtilizeSourcing field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetDiscount

func (o *QuoteTabView) GetDiscount() float64

GetDiscount returns the Discount field value if set, zero value otherwise.

func (*QuoteTabView) GetDiscountAmount

func (o *QuoteTabView) GetDiscountAmount() float64

GetDiscountAmount returns the DiscountAmount field value if set, zero value otherwise.

func (*QuoteTabView) GetDiscountAmountConverted

func (o *QuoteTabView) GetDiscountAmountConverted() float64

GetDiscountAmountConverted returns the DiscountAmountConverted field value if set, zero value otherwise.

func (*QuoteTabView) GetDiscountAmountConvertedOk

func (o *QuoteTabView) GetDiscountAmountConvertedOk() (*float64, bool)

GetDiscountAmountConvertedOk returns a tuple with the DiscountAmountConverted field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetDiscountAmountOk

func (o *QuoteTabView) GetDiscountAmountOk() (*float64, bool)

GetDiscountAmountOk returns a tuple with the DiscountAmount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetDiscountOk

func (o *QuoteTabView) GetDiscountOk() (*float64, bool)

GetDiscountOk returns a tuple with the Discount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetDynamicGpProfileId

func (o *QuoteTabView) GetDynamicGpProfileId() string

GetDynamicGpProfileId returns the DynamicGpProfileId field value if set, zero value otherwise.

func (*QuoteTabView) GetDynamicGpProfileIdOk

func (o *QuoteTabView) GetDynamicGpProfileIdOk() (*string, bool)

GetDynamicGpProfileIdOk returns a tuple with the DynamicGpProfileId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetForceOpportunityItems

func (o *QuoteTabView) GetForceOpportunityItems() bool

GetForceOpportunityItems returns the ForceOpportunityItems field value if set, zero value otherwise.

func (*QuoteTabView) GetForceOpportunityItemsOk

func (o *QuoteTabView) GetForceOpportunityItemsOk() (*bool, bool)

GetForceOpportunityItemsOk returns a tuple with the ForceOpportunityItems field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetForceZeroQuantity

func (o *QuoteTabView) GetForceZeroQuantity() bool

GetForceZeroQuantity returns the ForceZeroQuantity field value if set, zero value otherwise.

func (*QuoteTabView) GetForceZeroQuantityOk

func (o *QuoteTabView) GetForceZeroQuantityOk() (*bool, bool)

GetForceZeroQuantityOk returns a tuple with the ForceZeroQuantity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetGoToProductSearchWhenTabIsEmpty

func (o *QuoteTabView) GetGoToProductSearchWhenTabIsEmpty() bool

GetGoToProductSearchWhenTabIsEmpty returns the GoToProductSearchWhenTabIsEmpty field value if set, zero value otherwise.

func (*QuoteTabView) GetGoToProductSearchWhenTabIsEmptyOk

func (o *QuoteTabView) GetGoToProductSearchWhenTabIsEmptyOk() (*bool, bool)

GetGoToProductSearchWhenTabIsEmptyOk returns a tuple with the GoToProductSearchWhenTabIsEmpty field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetGridFormat

func (o *QuoteTabView) GetGridFormat() string

GetGridFormat returns the GridFormat field value if set, zero value otherwise.

func (*QuoteTabView) GetGridFormatOk

func (o *QuoteTabView) GetGridFormatOk() (*string, bool)

GetGridFormatOk returns a tuple with the GridFormat field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetGrossMargin

func (o *QuoteTabView) GetGrossMargin() float64

GetGrossMargin returns the GrossMargin field value if set, zero value otherwise.

func (*QuoteTabView) GetGrossMarginAmount

func (o *QuoteTabView) GetGrossMarginAmount() float64

GetGrossMarginAmount returns the GrossMarginAmount field value if set, zero value otherwise.

func (*QuoteTabView) GetGrossMarginAmountOk

func (o *QuoteTabView) GetGrossMarginAmountOk() (*float64, bool)

GetGrossMarginAmountOk returns a tuple with the GrossMarginAmount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetGrossMarginOk

func (o *QuoteTabView) GetGrossMarginOk() (*float64, bool)

GetGrossMarginOk returns a tuple with the GrossMargin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetGroupRunningCost

func (o *QuoteTabView) GetGroupRunningCost() float64

GetGroupRunningCost returns the GroupRunningCost field value if set, zero value otherwise.

func (*QuoteTabView) GetGroupRunningCostOk

func (o *QuoteTabView) GetGroupRunningCostOk() (*float64, bool)

GetGroupRunningCostOk returns a tuple with the GroupRunningCost field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetGroupRunningOptionAmount

func (o *QuoteTabView) GetGroupRunningOptionAmount() float64

GetGroupRunningOptionAmount returns the GroupRunningOptionAmount field value if set, zero value otherwise.

func (*QuoteTabView) GetGroupRunningOptionAmountOk

func (o *QuoteTabView) GetGroupRunningOptionAmountOk() (*float64, bool)

GetGroupRunningOptionAmountOk returns a tuple with the GroupRunningOptionAmount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetGroupRunningRecurringCost

func (o *QuoteTabView) GetGroupRunningRecurringCost() float64

GetGroupRunningRecurringCost returns the GroupRunningRecurringCost field value if set, zero value otherwise.

func (*QuoteTabView) GetGroupRunningRecurringCostOk

func (o *QuoteTabView) GetGroupRunningRecurringCostOk() (*float64, bool)

GetGroupRunningRecurringCostOk returns a tuple with the GroupRunningRecurringCost field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetGroupRunningRecurringOptionAmount

func (o *QuoteTabView) GetGroupRunningRecurringOptionAmount() float64

GetGroupRunningRecurringOptionAmount returns the GroupRunningRecurringOptionAmount field value if set, zero value otherwise.

func (*QuoteTabView) GetGroupRunningRecurringOptionAmountOk

func (o *QuoteTabView) GetGroupRunningRecurringOptionAmountOk() (*float64, bool)

GetGroupRunningRecurringOptionAmountOk returns a tuple with the GroupRunningRecurringOptionAmount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetGroupRunningRecurringSubtotal

func (o *QuoteTabView) GetGroupRunningRecurringSubtotal() float64

GetGroupRunningRecurringSubtotal returns the GroupRunningRecurringSubtotal field value if set, zero value otherwise.

func (*QuoteTabView) GetGroupRunningRecurringSubtotalOk

func (o *QuoteTabView) GetGroupRunningRecurringSubtotalOk() (*float64, bool)

GetGroupRunningRecurringSubtotalOk returns a tuple with the GroupRunningRecurringSubtotal field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetGroupRunningRecurringTax

func (o *QuoteTabView) GetGroupRunningRecurringTax() float64

GetGroupRunningRecurringTax returns the GroupRunningRecurringTax field value if set, zero value otherwise.

func (*QuoteTabView) GetGroupRunningRecurringTaxOk

func (o *QuoteTabView) GetGroupRunningRecurringTaxOk() (*float64, bool)

GetGroupRunningRecurringTaxOk returns a tuple with the GroupRunningRecurringTax field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetGroupRunningRecurringTotal

func (o *QuoteTabView) GetGroupRunningRecurringTotal() float64

GetGroupRunningRecurringTotal returns the GroupRunningRecurringTotal field value if set, zero value otherwise.

func (*QuoteTabView) GetGroupRunningRecurringTotalOk

func (o *QuoteTabView) GetGroupRunningRecurringTotalOk() (*float64, bool)

GetGroupRunningRecurringTotalOk returns a tuple with the GroupRunningRecurringTotal field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetGroupRunningSubtotal

func (o *QuoteTabView) GetGroupRunningSubtotal() float64

GetGroupRunningSubtotal returns the GroupRunningSubtotal field value if set, zero value otherwise.

func (*QuoteTabView) GetGroupRunningSubtotalOk

func (o *QuoteTabView) GetGroupRunningSubtotalOk() (*float64, bool)

GetGroupRunningSubtotalOk returns a tuple with the GroupRunningSubtotal field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetGroupRunningTax

func (o *QuoteTabView) GetGroupRunningTax() float64

GetGroupRunningTax returns the GroupRunningTax field value if set, zero value otherwise.

func (*QuoteTabView) GetGroupRunningTaxOk

func (o *QuoteTabView) GetGroupRunningTaxOk() (*float64, bool)

GetGroupRunningTaxOk returns a tuple with the GroupRunningTax field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetGroupRunningTotal

func (o *QuoteTabView) GetGroupRunningTotal() float64

GetGroupRunningTotal returns the GroupRunningTotal field value if set, zero value otherwise.

func (*QuoteTabView) GetGroupRunningTotalOk

func (o *QuoteTabView) GetGroupRunningTotalOk() (*float64, bool)

GetGroupRunningTotalOk returns a tuple with the GroupRunningTotal field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetGst

func (o *QuoteTabView) GetGst() float64

GetGst returns the Gst field value if set, zero value otherwise.

func (*QuoteTabView) GetGstConverted

func (o *QuoteTabView) GetGstConverted() float64

GetGstConverted returns the GstConverted field value if set, zero value otherwise.

func (*QuoteTabView) GetGstConvertedOk

func (o *QuoteTabView) GetGstConvertedOk() (*float64, bool)

GetGstConvertedOk returns a tuple with the GstConverted field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetGstOk

func (o *QuoteTabView) GetGstOk() (*float64, bool)

GetGstOk returns a tuple with the Gst field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetHasLimitOnNewItems

func (o *QuoteTabView) GetHasLimitOnNewItems() bool

GetHasLimitOnNewItems returns the HasLimitOnNewItems field value if set, zero value otherwise.

func (*QuoteTabView) GetHasLimitOnNewItemsOk

func (o *QuoteTabView) GetHasLimitOnNewItemsOk() (*bool, bool)

GetHasLimitOnNewItemsOk returns a tuple with the HasLimitOnNewItems field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetHideMfp

func (o *QuoteTabView) GetHideMfp() bool

GetHideMfp returns the HideMfp field value if set, zero value otherwise.

func (*QuoteTabView) GetHideMfpOk

func (o *QuoteTabView) GetHideMfpOk() (*bool, bool)

GetHideMfpOk returns a tuple with the HideMfp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetHtmlNotes

func (o *QuoteTabView) GetHtmlNotes() string

GetHtmlNotes returns the HtmlNotes field value if set, zero value otherwise.

func (*QuoteTabView) GetHtmlNotesOk

func (o *QuoteTabView) GetHtmlNotesOk() (*string, bool)

GetHtmlNotesOk returns a tuple with the HtmlNotes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetId

func (o *QuoteTabView) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*QuoteTabView) GetIdOk

func (o *QuoteTabView) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetIdRecurringRevenue

func (o *QuoteTabView) GetIdRecurringRevenue() string

GetIdRecurringRevenue returns the IdRecurringRevenue field value if set, zero value otherwise.

func (*QuoteTabView) GetIdRecurringRevenueOk

func (o *QuoteTabView) GetIdRecurringRevenueOk() (*string, bool)

GetIdRecurringRevenueOk returns a tuple with the IdRecurringRevenue field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetIgnorePackageHeaderOnOpportunities

func (o *QuoteTabView) GetIgnorePackageHeaderOnOpportunities() bool

GetIgnorePackageHeaderOnOpportunities returns the IgnorePackageHeaderOnOpportunities field value if set, zero value otherwise.

func (*QuoteTabView) GetIgnorePackageHeaderOnOpportunitiesOk

func (o *QuoteTabView) GetIgnorePackageHeaderOnOpportunitiesOk() (*bool, bool)

GetIgnorePackageHeaderOnOpportunitiesOk returns a tuple with the IgnorePackageHeaderOnOpportunities field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetInvoiceRouting

func (o *QuoteTabView) GetInvoiceRouting() string

GetInvoiceRouting returns the InvoiceRouting field value if set, zero value otherwise.

func (*QuoteTabView) GetInvoiceRoutingOk

func (o *QuoteTabView) GetInvoiceRoutingOk() (*string, bool)

GetInvoiceRoutingOk returns a tuple with the InvoiceRouting field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetIsGroupQuantityMaster

func (o *QuoteTabView) GetIsGroupQuantityMaster() bool

GetIsGroupQuantityMaster returns the IsGroupQuantityMaster field value if set, zero value otherwise.

func (*QuoteTabView) GetIsGroupQuantityMasterOk

func (o *QuoteTabView) GetIsGroupQuantityMasterOk() (*bool, bool)

GetIsGroupQuantityMasterOk returns a tuple with the IsGroupQuantityMaster field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetIsHidden

func (o *QuoteTabView) GetIsHidden() bool

GetIsHidden returns the IsHidden field value if set, zero value otherwise.

func (*QuoteTabView) GetIsHiddenOk

func (o *QuoteTabView) GetIsHiddenOk() (*bool, bool)

GetIsHiddenOk returns a tuple with the IsHidden field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetIsOptional

func (o *QuoteTabView) GetIsOptional() bool

GetIsOptional returns the IsOptional field value if set, zero value otherwise.

func (*QuoteTabView) GetIsOptionalOk

func (o *QuoteTabView) GetIsOptionalOk() (*bool, bool)

GetIsOptionalOk returns a tuple with the IsOptional field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetIsPrinted

func (o *QuoteTabView) GetIsPrinted() bool

GetIsPrinted returns the IsPrinted field value if set, zero value otherwise.

func (*QuoteTabView) GetIsPrintedOk

func (o *QuoteTabView) GetIsPrintedOk() (*bool, bool)

GetIsPrintedOk returns a tuple with the IsPrinted field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetIsProtectedTab

func (o *QuoteTabView) GetIsProtectedTab() bool

GetIsProtectedTab returns the IsProtectedTab field value if set, zero value otherwise.

func (*QuoteTabView) GetIsProtectedTabOk

func (o *QuoteTabView) GetIsProtectedTabOk() (*bool, bool)

GetIsProtectedTabOk returns a tuple with the IsProtectedTab field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetIsShippingTab

func (o *QuoteTabView) GetIsShippingTab() bool

GetIsShippingTab returns the IsShippingTab field value if set, zero value otherwise.

func (*QuoteTabView) GetIsShippingTabOk

func (o *QuoteTabView) GetIsShippingTabOk() (*bool, bool)

GetIsShippingTabOk returns a tuple with the IsShippingTab field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetIsSourcingExempt

func (o *QuoteTabView) GetIsSourcingExempt() bool

GetIsSourcingExempt returns the IsSourcingExempt field value if set, zero value otherwise.

func (*QuoteTabView) GetIsSourcingExemptOk

func (o *QuoteTabView) GetIsSourcingExemptOk() (*bool, bool)

GetIsSourcingExemptOk returns a tuple with the IsSourcingExempt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetIsTabTemplate

func (o *QuoteTabView) GetIsTabTemplate() bool

GetIsTabTemplate returns the IsTabTemplate field value if set, zero value otherwise.

func (*QuoteTabView) GetIsTabTemplateOk

func (o *QuoteTabView) GetIsTabTemplateOk() (*bool, bool)

GetIsTabTemplateOk returns a tuple with the IsTabTemplate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetIsTargetDiscount

func (o *QuoteTabView) GetIsTargetDiscount() bool

GetIsTargetDiscount returns the IsTargetDiscount field value if set, zero value otherwise.

func (*QuoteTabView) GetIsTargetDiscountOk

func (o *QuoteTabView) GetIsTargetDiscountOk() (*bool, bool)

GetIsTargetDiscountOk returns a tuple with the IsTargetDiscount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetIsTargetListDiscount

func (o *QuoteTabView) GetIsTargetListDiscount() bool

GetIsTargetListDiscount returns the IsTargetListDiscount field value if set, zero value otherwise.

func (*QuoteTabView) GetIsTargetListDiscountOk

func (o *QuoteTabView) GetIsTargetListDiscountOk() (*bool, bool)

GetIsTargetListDiscountOk returns a tuple with the IsTargetListDiscount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetIsTargetMargin

func (o *QuoteTabView) GetIsTargetMargin() bool

GetIsTargetMargin returns the IsTargetMargin field value if set, zero value otherwise.

func (*QuoteTabView) GetIsTargetMarginOk

func (o *QuoteTabView) GetIsTargetMarginOk() (*bool, bool)

GetIsTargetMarginOk returns a tuple with the IsTargetMargin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetIsTargetMarkup

func (o *QuoteTabView) GetIsTargetMarkup() bool

GetIsTargetMarkup returns the IsTargetMarkup field value if set, zero value otherwise.

func (*QuoteTabView) GetIsTargetMarkupOk

func (o *QuoteTabView) GetIsTargetMarkupOk() (*bool, bool)

GetIsTargetMarkupOk returns a tuple with the IsTargetMarkup field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetIsTaxable

func (o *QuoteTabView) GetIsTaxable() bool

GetIsTaxable returns the IsTaxable field value if set, zero value otherwise.

func (*QuoteTabView) GetIsTaxableOk

func (o *QuoteTabView) GetIsTaxableOk() (*bool, bool)

GetIsTaxableOk returns a tuple with the IsTaxable field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetIsTotalsIncluded

func (o *QuoteTabView) GetIsTotalsIncluded() bool

GetIsTotalsIncluded returns the IsTotalsIncluded field value if set, zero value otherwise.

func (*QuoteTabView) GetIsTotalsIncludedOk

func (o *QuoteTabView) GetIsTotalsIncludedOk() (*bool, bool)

GetIsTotalsIncludedOk returns a tuple with the IsTotalsIncluded field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetLayoutGroup

func (o *QuoteTabView) GetLayoutGroup() string

GetLayoutGroup returns the LayoutGroup field value if set, zero value otherwise.

func (*QuoteTabView) GetLayoutGroupOk

func (o *QuoteTabView) GetLayoutGroupOk() (*string, bool)

GetLayoutGroupOk returns a tuple with the LayoutGroup field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetLongDescription

func (o *QuoteTabView) GetLongDescription() string

GetLongDescription returns the LongDescription field value if set, zero value otherwise.

func (*QuoteTabView) GetLongDescriptionOk

func (o *QuoteTabView) GetLongDescriptionOk() (*string, bool)

GetLongDescriptionOk returns a tuple with the LongDescription field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetMarkup

func (o *QuoteTabView) GetMarkup() float64

GetMarkup returns the Markup field value if set, zero value otherwise.

func (*QuoteTabView) GetMarkupOk

func (o *QuoteTabView) GetMarkupOk() (*float64, bool)

GetMarkupOk returns a tuple with the Markup field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetName

func (o *QuoteTabView) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*QuoteTabView) GetNameOk

func (o *QuoteTabView) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetNetMargin

func (o *QuoteTabView) GetNetMargin() float64

GetNetMargin returns the NetMargin field value if set, zero value otherwise.

func (*QuoteTabView) GetNetMarginOk

func (o *QuoteTabView) GetNetMarginOk() (*float64, bool)

GetNetMarginOk returns a tuple with the NetMargin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetNetSuiteType

func (o *QuoteTabView) GetNetSuiteType() string

GetNetSuiteType returns the NetSuiteType field value if set, zero value otherwise.

func (*QuoteTabView) GetNetSuiteTypeOk

func (o *QuoteTabView) GetNetSuiteTypeOk() (*string, bool)

GetNetSuiteTypeOk returns a tuple with the NetSuiteType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetOppConvertRouting

func (o *QuoteTabView) GetOppConvertRouting() string

GetOppConvertRouting returns the OppConvertRouting field value if set, zero value otherwise.

func (*QuoteTabView) GetOppConvertRoutingOk

func (o *QuoteTabView) GetOppConvertRoutingOk() (*string, bool)

GetOppConvertRoutingOk returns a tuple with the OppConvertRouting field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetOppRecurringAsAdjustment

func (o *QuoteTabView) GetOppRecurringAsAdjustment() bool

GetOppRecurringAsAdjustment returns the OppRecurringAsAdjustment field value if set, zero value otherwise.

func (*QuoteTabView) GetOppRecurringAsAdjustmentOk

func (o *QuoteTabView) GetOppRecurringAsAdjustmentOk() (*bool, bool)

GetOppRecurringAsAdjustmentOk returns a tuple with the OppRecurringAsAdjustment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetOptionalAmount

func (o *QuoteTabView) GetOptionalAmount() float64

GetOptionalAmount returns the OptionalAmount field value if set, zero value otherwise.

func (*QuoteTabView) GetOptionalAmountConverted

func (o *QuoteTabView) GetOptionalAmountConverted() float64

GetOptionalAmountConverted returns the OptionalAmountConverted field value if set, zero value otherwise.

func (*QuoteTabView) GetOptionalAmountConvertedOk

func (o *QuoteTabView) GetOptionalAmountConvertedOk() (*float64, bool)

GetOptionalAmountConvertedOk returns a tuple with the OptionalAmountConverted field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetOptionalAmountOk

func (o *QuoteTabView) GetOptionalAmountOk() (*float64, bool)

GetOptionalAmountOk returns a tuple with the OptionalAmount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetOptionalRecurring

func (o *QuoteTabView) GetOptionalRecurring() float64

GetOptionalRecurring returns the OptionalRecurring field value if set, zero value otherwise.

func (*QuoteTabView) GetOptionalRecurringOk

func (o *QuoteTabView) GetOptionalRecurringOk() (*float64, bool)

GetOptionalRecurringOk returns a tuple with the OptionalRecurring field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetOptionalSubtotal

func (o *QuoteTabView) GetOptionalSubtotal() float64

GetOptionalSubtotal returns the OptionalSubtotal field value if set, zero value otherwise.

func (*QuoteTabView) GetOptionalSubtotalOk

func (o *QuoteTabView) GetOptionalSubtotalOk() (*float64, bool)

GetOptionalSubtotalOk returns a tuple with the OptionalSubtotal field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetOptionalTax

func (o *QuoteTabView) GetOptionalTax() float64

GetOptionalTax returns the OptionalTax field value if set, zero value otherwise.

func (*QuoteTabView) GetOptionalTaxOk

func (o *QuoteTabView) GetOptionalTaxOk() (*float64, bool)

GetOptionalTaxOk returns a tuple with the OptionalTax field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetOrderPorterGroup

func (o *QuoteTabView) GetOrderPorterGroup() string

GetOrderPorterGroup returns the OrderPorterGroup field value if set, zero value otherwise.

func (*QuoteTabView) GetOrderPorterGroupOk

func (o *QuoteTabView) GetOrderPorterGroupOk() (*string, bool)

GetOrderPorterGroupOk returns a tuple with the OrderPorterGroup field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetOrderPorterRequired

func (o *QuoteTabView) GetOrderPorterRequired() bool

GetOrderPorterRequired returns the OrderPorterRequired field value if set, zero value otherwise.

func (*QuoteTabView) GetOrderPorterRequiredOk

func (o *QuoteTabView) GetOrderPorterRequiredOk() (*bool, bool)

GetOrderPorterRequiredOk returns a tuple with the OrderPorterRequired field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetOwner

func (o *QuoteTabView) GetOwner() string

GetOwner returns the Owner field value if set, zero value otherwise.

func (*QuoteTabView) GetOwnerOk

func (o *QuoteTabView) GetOwnerOk() (*string, bool)

GetOwnerOk returns a tuple with the Owner field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetPageBreak

func (o *QuoteTabView) GetPageBreak() bool

GetPageBreak returns the PageBreak field value if set, zero value otherwise.

func (*QuoteTabView) GetPageBreakOk

func (o *QuoteTabView) GetPageBreakOk() (*bool, bool)

GetPageBreakOk returns a tuple with the PageBreak field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetPeriods

func (o *QuoteTabView) GetPeriods() int32

GetPeriods returns the Periods field value if set, zero value otherwise.

func (*QuoteTabView) GetPeriodsOk

func (o *QuoteTabView) GetPeriodsOk() (*int32, bool)

GetPeriodsOk returns a tuple with the Periods field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetPrice

func (o *QuoteTabView) GetPrice() float64

GetPrice returns the Price field value if set, zero value otherwise.

func (*QuoteTabView) GetPriceOk

func (o *QuoteTabView) GetPriceOk() (*float64, bool)

GetPriceOk returns a tuple with the Price field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetPrimarySourceGroup

func (o *QuoteTabView) GetPrimarySourceGroup() string

GetPrimarySourceGroup returns the PrimarySourceGroup field value if set, zero value otherwise.

func (*QuoteTabView) GetPrimarySourceGroupOk

func (o *QuoteTabView) GetPrimarySourceGroupOk() (*string, bool)

GetPrimarySourceGroupOk returns a tuple with the PrimarySourceGroup field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetProductSearchFormConfiguration

func (o *QuoteTabView) GetProductSearchFormConfiguration() string

GetProductSearchFormConfiguration returns the ProductSearchFormConfiguration field value if set, zero value otherwise.

func (*QuoteTabView) GetProductSearchFormConfigurationOk

func (o *QuoteTabView) GetProductSearchFormConfigurationOk() (*string, bool)

GetProductSearchFormConfigurationOk returns a tuple with the ProductSearchFormConfiguration field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetProductSearchPrefillMappingSet

func (o *QuoteTabView) GetProductSearchPrefillMappingSet() string

GetProductSearchPrefillMappingSet returns the ProductSearchPrefillMappingSet field value if set, zero value otherwise.

func (*QuoteTabView) GetProductSearchPrefillMappingSetOk

func (o *QuoteTabView) GetProductSearchPrefillMappingSetOk() (*string, bool)

GetProductSearchPrefillMappingSetOk returns a tuple with the ProductSearchPrefillMappingSet field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetPst

func (o *QuoteTabView) GetPst() float64

GetPst returns the Pst field value if set, zero value otherwise.

func (*QuoteTabView) GetPstConverted

func (o *QuoteTabView) GetPstConverted() float64

GetPstConverted returns the PstConverted field value if set, zero value otherwise.

func (*QuoteTabView) GetPstConvertedOk

func (o *QuoteTabView) GetPstConvertedOk() (*float64, bool)

GetPstConvertedOk returns a tuple with the PstConverted field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetPstOk

func (o *QuoteTabView) GetPstOk() (*float64, bool)

GetPstOk returns a tuple with the Pst field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetQuickBooksType

func (o *QuoteTabView) GetQuickBooksType() string

GetQuickBooksType returns the QuickBooksType field value if set, zero value otherwise.

func (*QuoteTabView) GetQuickBooksTypeOk

func (o *QuoteTabView) GetQuickBooksTypeOk() (*string, bool)

GetQuickBooksTypeOk returns a tuple with the QuickBooksType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetQuote

func (o *QuoteTabView) GetQuote() ReferenceLink

GetQuote returns the Quote field value if set, zero value otherwise.

func (*QuoteTabView) GetQuoteOk

func (o *QuoteTabView) GetQuoteOk() (*ReferenceLink, bool)

GetQuoteOk returns a tuple with the Quote field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetRecurringCost

func (o *QuoteTabView) GetRecurringCost() float64

GetRecurringCost returns the RecurringCost field value if set, zero value otherwise.

func (*QuoteTabView) GetRecurringCostOk

func (o *QuoteTabView) GetRecurringCostOk() (*float64, bool)

GetRecurringCostOk returns a tuple with the RecurringCost field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetRecurringDiscount

func (o *QuoteTabView) GetRecurringDiscount() float64

GetRecurringDiscount returns the RecurringDiscount field value if set, zero value otherwise.

func (*QuoteTabView) GetRecurringDiscountAmount

func (o *QuoteTabView) GetRecurringDiscountAmount() float64

GetRecurringDiscountAmount returns the RecurringDiscountAmount field value if set, zero value otherwise.

func (*QuoteTabView) GetRecurringDiscountAmountOk

func (o *QuoteTabView) GetRecurringDiscountAmountOk() (*float64, bool)

GetRecurringDiscountAmountOk returns a tuple with the RecurringDiscountAmount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetRecurringDiscountOk

func (o *QuoteTabView) GetRecurringDiscountOk() (*float64, bool)

GetRecurringDiscountOk returns a tuple with the RecurringDiscount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetRecurringGrossMargin

func (o *QuoteTabView) GetRecurringGrossMargin() float64

GetRecurringGrossMargin returns the RecurringGrossMargin field value if set, zero value otherwise.

func (*QuoteTabView) GetRecurringGrossMarginAmount

func (o *QuoteTabView) GetRecurringGrossMarginAmount() float64

GetRecurringGrossMarginAmount returns the RecurringGrossMarginAmount field value if set, zero value otherwise.

func (*QuoteTabView) GetRecurringGrossMarginAmountOk

func (o *QuoteTabView) GetRecurringGrossMarginAmountOk() (*float64, bool)

GetRecurringGrossMarginAmountOk returns a tuple with the RecurringGrossMarginAmount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetRecurringGrossMarginOk

func (o *QuoteTabView) GetRecurringGrossMarginOk() (*float64, bool)

GetRecurringGrossMarginOk returns a tuple with the RecurringGrossMargin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetRecurringGst

func (o *QuoteTabView) GetRecurringGst() float64

GetRecurringGst returns the RecurringGst field value if set, zero value otherwise.

func (*QuoteTabView) GetRecurringGstOk

func (o *QuoteTabView) GetRecurringGstOk() (*float64, bool)

GetRecurringGstOk returns a tuple with the RecurringGst field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetRecurringIsTaxable

func (o *QuoteTabView) GetRecurringIsTaxable() float64

GetRecurringIsTaxable returns the RecurringIsTaxable field value if set, zero value otherwise.

func (*QuoteTabView) GetRecurringIsTaxableOk

func (o *QuoteTabView) GetRecurringIsTaxableOk() (*float64, bool)

GetRecurringIsTaxableOk returns a tuple with the RecurringIsTaxable field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetRecurringLabel

func (o *QuoteTabView) GetRecurringLabel() string

GetRecurringLabel returns the RecurringLabel field value if set, zero value otherwise.

func (*QuoteTabView) GetRecurringLabelOk

func (o *QuoteTabView) GetRecurringLabelOk() (*string, bool)

GetRecurringLabelOk returns a tuple with the RecurringLabel field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetRecurringMarkup

func (o *QuoteTabView) GetRecurringMarkup() float64

GetRecurringMarkup returns the RecurringMarkup field value if set, zero value otherwise.

func (*QuoteTabView) GetRecurringMarkupOk

func (o *QuoteTabView) GetRecurringMarkupOk() (*float64, bool)

GetRecurringMarkupOk returns a tuple with the RecurringMarkup field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetRecurringNetMargin

func (o *QuoteTabView) GetRecurringNetMargin() float64

GetRecurringNetMargin returns the RecurringNetMargin field value if set, zero value otherwise.

func (*QuoteTabView) GetRecurringNetMarginOk

func (o *QuoteTabView) GetRecurringNetMarginOk() (*float64, bool)

GetRecurringNetMarginOk returns a tuple with the RecurringNetMargin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetRecurringOptionalSubtotal

func (o *QuoteTabView) GetRecurringOptionalSubtotal() float64

GetRecurringOptionalSubtotal returns the RecurringOptionalSubtotal field value if set, zero value otherwise.

func (*QuoteTabView) GetRecurringOptionalSubtotalOk

func (o *QuoteTabView) GetRecurringOptionalSubtotalOk() (*float64, bool)

GetRecurringOptionalSubtotalOk returns a tuple with the RecurringOptionalSubtotal field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetRecurringOptionalTax

func (o *QuoteTabView) GetRecurringOptionalTax() float64

GetRecurringOptionalTax returns the RecurringOptionalTax field value if set, zero value otherwise.

func (*QuoteTabView) GetRecurringOptionalTaxOk

func (o *QuoteTabView) GetRecurringOptionalTaxOk() (*float64, bool)

GetRecurringOptionalTaxOk returns a tuple with the RecurringOptionalTax field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetRecurringPst

func (o *QuoteTabView) GetRecurringPst() float64

GetRecurringPst returns the RecurringPst field value if set, zero value otherwise.

func (*QuoteTabView) GetRecurringPstOk

func (o *QuoteTabView) GetRecurringPstOk() (*float64, bool)

GetRecurringPstOk returns a tuple with the RecurringPst field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetRecurringSubtotal

func (o *QuoteTabView) GetRecurringSubtotal() float64

GetRecurringSubtotal returns the RecurringSubtotal field value if set, zero value otherwise.

func (*QuoteTabView) GetRecurringSubtotalOk

func (o *QuoteTabView) GetRecurringSubtotalOk() (*float64, bool)

GetRecurringSubtotalOk returns a tuple with the RecurringSubtotal field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetRecurringSuggestedDiscountAmount

func (o *QuoteTabView) GetRecurringSuggestedDiscountAmount() float64

GetRecurringSuggestedDiscountAmount returns the RecurringSuggestedDiscountAmount field value if set, zero value otherwise.

func (*QuoteTabView) GetRecurringSuggestedDiscountAmountOk

func (o *QuoteTabView) GetRecurringSuggestedDiscountAmountOk() (*float64, bool)

GetRecurringSuggestedDiscountAmountOk returns a tuple with the RecurringSuggestedDiscountAmount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetRecurringSuggestedTotal

func (o *QuoteTabView) GetRecurringSuggestedTotal() float64

GetRecurringSuggestedTotal returns the RecurringSuggestedTotal field value if set, zero value otherwise.

func (*QuoteTabView) GetRecurringSuggestedTotalOk

func (o *QuoteTabView) GetRecurringSuggestedTotalOk() (*float64, bool)

GetRecurringSuggestedTotalOk returns a tuple with the RecurringSuggestedTotal field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetRecurringTargetPriceControlType

func (o *QuoteTabView) GetRecurringTargetPriceControlType() int32

GetRecurringTargetPriceControlType returns the RecurringTargetPriceControlType field value if set, zero value otherwise.

func (*QuoteTabView) GetRecurringTargetPriceControlTypeOk

func (o *QuoteTabView) GetRecurringTargetPriceControlTypeOk() (*int32, bool)

GetRecurringTargetPriceControlTypeOk returns a tuple with the RecurringTargetPriceControlType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetRecurringTargetPriceControlValue

func (o *QuoteTabView) GetRecurringTargetPriceControlValue() float64

GetRecurringTargetPriceControlValue returns the RecurringTargetPriceControlValue field value if set, zero value otherwise.

func (*QuoteTabView) GetRecurringTargetPriceControlValueOk

func (o *QuoteTabView) GetRecurringTargetPriceControlValueOk() (*float64, bool)

GetRecurringTargetPriceControlValueOk returns a tuple with the RecurringTargetPriceControlValue field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetRecurringTax

func (o *QuoteTabView) GetRecurringTax() float64

GetRecurringTax returns the RecurringTax field value if set, zero value otherwise.

func (*QuoteTabView) GetRecurringTaxOk

func (o *QuoteTabView) GetRecurringTaxOk() (*float64, bool)

GetRecurringTaxOk returns a tuple with the RecurringTax field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetRecurringTotal

func (o *QuoteTabView) GetRecurringTotal() float64

GetRecurringTotal returns the RecurringTotal field value if set, zero value otherwise.

func (*QuoteTabView) GetRecurringTotalOk

func (o *QuoteTabView) GetRecurringTotalOk() (*float64, bool)

GetRecurringTotalOk returns a tuple with the RecurringTotal field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetRtfNotes

func (o *QuoteTabView) GetRtfNotes() string

GetRtfNotes returns the RtfNotes field value if set, zero value otherwise.

func (*QuoteTabView) GetRtfNotesOk

func (o *QuoteTabView) GetRtfNotesOk() (*string, bool)

GetRtfNotesOk returns a tuple with the RtfNotes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetShowLineItemQuickFilter

func (o *QuoteTabView) GetShowLineItemQuickFilter() bool

GetShowLineItemQuickFilter returns the ShowLineItemQuickFilter field value if set, zero value otherwise.

func (*QuoteTabView) GetShowLineItemQuickFilterOk

func (o *QuoteTabView) GetShowLineItemQuickFilterOk() (*bool, bool)

GetShowLineItemQuickFilterOk returns a tuple with the ShowLineItemQuickFilter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetSubtotal

func (o *QuoteTabView) GetSubtotal() float64

GetSubtotal returns the Subtotal field value if set, zero value otherwise.

func (*QuoteTabView) GetSubtotalConverted

func (o *QuoteTabView) GetSubtotalConverted() float64

GetSubtotalConverted returns the SubtotalConverted field value if set, zero value otherwise.

func (*QuoteTabView) GetSubtotalConvertedOk

func (o *QuoteTabView) GetSubtotalConvertedOk() (*float64, bool)

GetSubtotalConvertedOk returns a tuple with the SubtotalConverted field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetSubtotalOk

func (o *QuoteTabView) GetSubtotalOk() (*float64, bool)

GetSubtotalOk returns a tuple with the Subtotal field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetSuggestedDiscountAmount

func (o *QuoteTabView) GetSuggestedDiscountAmount() float64

GetSuggestedDiscountAmount returns the SuggestedDiscountAmount field value if set, zero value otherwise.

func (*QuoteTabView) GetSuggestedDiscountAmountOk

func (o *QuoteTabView) GetSuggestedDiscountAmountOk() (*float64, bool)

GetSuggestedDiscountAmountOk returns a tuple with the SuggestedDiscountAmount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetSuggestedTotal

func (o *QuoteTabView) GetSuggestedTotal() float64

GetSuggestedTotal returns the SuggestedTotal field value if set, zero value otherwise.

func (*QuoteTabView) GetSuggestedTotalOk

func (o *QuoteTabView) GetSuggestedTotalOk() (*float64, bool)

GetSuggestedTotalOk returns a tuple with the SuggestedTotal field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetTabColor

func (o *QuoteTabView) GetTabColor() string

GetTabColor returns the TabColor field value if set, zero value otherwise.

func (*QuoteTabView) GetTabColorOk

func (o *QuoteTabView) GetTabColorOk() (*string, bool)

GetTabColorOk returns a tuple with the TabColor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetTabDescription

func (o *QuoteTabView) GetTabDescription() string

GetTabDescription returns the TabDescription field value if set, zero value otherwise.

func (*QuoteTabView) GetTabDescriptionOk

func (o *QuoteTabView) GetTabDescriptionOk() (*string, bool)

GetTabDescriptionOk returns a tuple with the TabDescription field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetTabGroup

func (o *QuoteTabView) GetTabGroup() string

GetTabGroup returns the TabGroup field value if set, zero value otherwise.

func (*QuoteTabView) GetTabGroupOk

func (o *QuoteTabView) GetTabGroupOk() (*string, bool)

GetTabGroupOk returns a tuple with the TabGroup field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetTabIdentifier

func (o *QuoteTabView) GetTabIdentifier() string

GetTabIdentifier returns the TabIdentifier field value if set, zero value otherwise.

func (*QuoteTabView) GetTabIdentifierOk

func (o *QuoteTabView) GetTabIdentifierOk() (*string, bool)

GetTabIdentifierOk returns a tuple with the TabIdentifier field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetTabNotes

func (o *QuoteTabView) GetTabNotes() string

GetTabNotes returns the TabNotes field value if set, zero value otherwise.

func (*QuoteTabView) GetTabNotesOk

func (o *QuoteTabView) GetTabNotesOk() (*string, bool)

GetTabNotesOk returns a tuple with the TabNotes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetTabNumber

func (o *QuoteTabView) GetTabNumber() int32

GetTabNumber returns the TabNumber field value if set, zero value otherwise.

func (*QuoteTabView) GetTabNumberOk

func (o *QuoteTabView) GetTabNumberOk() (*int32, bool)

GetTabNumberOk returns a tuple with the TabNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetTabSheetHtml1

func (o *QuoteTabView) GetTabSheetHtml1() string

GetTabSheetHtml1 returns the TabSheetHtml1 field value if set, zero value otherwise.

func (*QuoteTabView) GetTabSheetHtml1Ok

func (o *QuoteTabView) GetTabSheetHtml1Ok() (*string, bool)

GetTabSheetHtml1Ok returns a tuple with the TabSheetHtml1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetTabSheetHtml2

func (o *QuoteTabView) GetTabSheetHtml2() string

GetTabSheetHtml2 returns the TabSheetHtml2 field value if set, zero value otherwise.

func (*QuoteTabView) GetTabSheetHtml2Ok

func (o *QuoteTabView) GetTabSheetHtml2Ok() (*string, bool)

GetTabSheetHtml2Ok returns a tuple with the TabSheetHtml2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetTabSheetHtml3

func (o *QuoteTabView) GetTabSheetHtml3() string

GetTabSheetHtml3 returns the TabSheetHtml3 field value if set, zero value otherwise.

func (*QuoteTabView) GetTabSheetHtml3Ok

func (o *QuoteTabView) GetTabSheetHtml3Ok() (*string, bool)

GetTabSheetHtml3Ok returns a tuple with the TabSheetHtml3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetTabSheetHtml4

func (o *QuoteTabView) GetTabSheetHtml4() string

GetTabSheetHtml4 returns the TabSheetHtml4 field value if set, zero value otherwise.

func (*QuoteTabView) GetTabSheetHtml4Ok

func (o *QuoteTabView) GetTabSheetHtml4Ok() (*string, bool)

GetTabSheetHtml4Ok returns a tuple with the TabSheetHtml4 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetTabSheetHtml5

func (o *QuoteTabView) GetTabSheetHtml5() string

GetTabSheetHtml5 returns the TabSheetHtml5 field value if set, zero value otherwise.

func (*QuoteTabView) GetTabSheetHtml5Ok

func (o *QuoteTabView) GetTabSheetHtml5Ok() (*string, bool)

GetTabSheetHtml5Ok returns a tuple with the TabSheetHtml5 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetTabTotal

func (o *QuoteTabView) GetTabTotal() float64

GetTabTotal returns the TabTotal field value if set, zero value otherwise.

func (*QuoteTabView) GetTabTotalConverted

func (o *QuoteTabView) GetTabTotalConverted() float64

GetTabTotalConverted returns the TabTotalConverted field value if set, zero value otherwise.

func (*QuoteTabView) GetTabTotalConvertedOk

func (o *QuoteTabView) GetTabTotalConvertedOk() (*float64, bool)

GetTabTotalConvertedOk returns a tuple with the TabTotalConverted field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetTabTotalOk

func (o *QuoteTabView) GetTabTotalOk() (*float64, bool)

GetTabTotalOk returns a tuple with the TabTotal field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetTargetDiscount

func (o *QuoteTabView) GetTargetDiscount() float64

GetTargetDiscount returns the TargetDiscount field value if set, zero value otherwise.

func (*QuoteTabView) GetTargetDiscountOk

func (o *QuoteTabView) GetTargetDiscountOk() (*float64, bool)

GetTargetDiscountOk returns a tuple with the TargetDiscount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetTargetMargin

func (o *QuoteTabView) GetTargetMargin() float64

GetTargetMargin returns the TargetMargin field value if set, zero value otherwise.

func (*QuoteTabView) GetTargetMarginOk

func (o *QuoteTabView) GetTargetMarginOk() (*float64, bool)

GetTargetMarginOk returns a tuple with the TargetMargin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetTargetMarkup

func (o *QuoteTabView) GetTargetMarkup() float64

GetTargetMarkup returns the TargetMarkup field value if set, zero value otherwise.

func (*QuoteTabView) GetTargetMarkupOk

func (o *QuoteTabView) GetTargetMarkupOk() (*float64, bool)

GetTargetMarkupOk returns a tuple with the TargetMarkup field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetTargetSheet1

func (o *QuoteTabView) GetTargetSheet1() string

GetTargetSheet1 returns the TargetSheet1 field value if set, zero value otherwise.

func (*QuoteTabView) GetTargetSheet1Ok

func (o *QuoteTabView) GetTargetSheet1Ok() (*string, bool)

GetTargetSheet1Ok returns a tuple with the TargetSheet1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetTargetSheet2

func (o *QuoteTabView) GetTargetSheet2() string

GetTargetSheet2 returns the TargetSheet2 field value if set, zero value otherwise.

func (*QuoteTabView) GetTargetSheet2Ok

func (o *QuoteTabView) GetTargetSheet2Ok() (*string, bool)

GetTargetSheet2Ok returns a tuple with the TargetSheet2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetTargetSheet3

func (o *QuoteTabView) GetTargetSheet3() string

GetTargetSheet3 returns the TargetSheet3 field value if set, zero value otherwise.

func (*QuoteTabView) GetTargetSheet3Ok

func (o *QuoteTabView) GetTargetSheet3Ok() (*string, bool)

GetTargetSheet3Ok returns a tuple with the TargetSheet3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetTargetSheet4

func (o *QuoteTabView) GetTargetSheet4() string

GetTargetSheet4 returns the TargetSheet4 field value if set, zero value otherwise.

func (*QuoteTabView) GetTargetSheet4Ok

func (o *QuoteTabView) GetTargetSheet4Ok() (*string, bool)

GetTargetSheet4Ok returns a tuple with the TargetSheet4 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetTargetSheet5

func (o *QuoteTabView) GetTargetSheet5() string

GetTargetSheet5 returns the TargetSheet5 field value if set, zero value otherwise.

func (*QuoteTabView) GetTargetSheet5Ok

func (o *QuoteTabView) GetTargetSheet5Ok() (*string, bool)

GetTargetSheet5Ok returns a tuple with the TargetSheet5 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetTax

func (o *QuoteTabView) GetTax() float64

GetTax returns the Tax field value if set, zero value otherwise.

func (*QuoteTabView) GetTaxCode

func (o *QuoteTabView) GetTaxCode() string

GetTaxCode returns the TaxCode field value if set, zero value otherwise.

func (*QuoteTabView) GetTaxCodeOk

func (o *QuoteTabView) GetTaxCodeOk() (*string, bool)

GetTaxCodeOk returns a tuple with the TaxCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetTaxConverted

func (o *QuoteTabView) GetTaxConverted() float64

GetTaxConverted returns the TaxConverted field value if set, zero value otherwise.

func (*QuoteTabView) GetTaxConvertedOk

func (o *QuoteTabView) GetTaxConvertedOk() (*float64, bool)

GetTaxConvertedOk returns a tuple with the TaxConverted field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetTaxOk

func (o *QuoteTabView) GetTaxOk() (*float64, bool)

GetTaxOk returns a tuple with the Tax field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetTaxRate

func (o *QuoteTabView) GetTaxRate() float64

GetTaxRate returns the TaxRate field value if set, zero value otherwise.

func (*QuoteTabView) GetTaxRateOk

func (o *QuoteTabView) GetTaxRateOk() (*float64, bool)

GetTaxRateOk returns a tuple with the TaxRate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetZCustomTabBool1

func (o *QuoteTabView) GetZCustomTabBool1() bool

GetZCustomTabBool1 returns the ZCustomTabBool1 field value if set, zero value otherwise.

func (*QuoteTabView) GetZCustomTabBool1Ok

func (o *QuoteTabView) GetZCustomTabBool1Ok() (*bool, bool)

GetZCustomTabBool1Ok returns a tuple with the ZCustomTabBool1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetZCustomTabBool2

func (o *QuoteTabView) GetZCustomTabBool2() bool

GetZCustomTabBool2 returns the ZCustomTabBool2 field value if set, zero value otherwise.

func (*QuoteTabView) GetZCustomTabBool2Ok

func (o *QuoteTabView) GetZCustomTabBool2Ok() (*bool, bool)

GetZCustomTabBool2Ok returns a tuple with the ZCustomTabBool2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetZCustomTabBool3

func (o *QuoteTabView) GetZCustomTabBool3() bool

GetZCustomTabBool3 returns the ZCustomTabBool3 field value if set, zero value otherwise.

func (*QuoteTabView) GetZCustomTabBool3Ok

func (o *QuoteTabView) GetZCustomTabBool3Ok() (*bool, bool)

GetZCustomTabBool3Ok returns a tuple with the ZCustomTabBool3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetZCustomTabBool4

func (o *QuoteTabView) GetZCustomTabBool4() bool

GetZCustomTabBool4 returns the ZCustomTabBool4 field value if set, zero value otherwise.

func (*QuoteTabView) GetZCustomTabBool4Ok

func (o *QuoteTabView) GetZCustomTabBool4Ok() (*bool, bool)

GetZCustomTabBool4Ok returns a tuple with the ZCustomTabBool4 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetZCustomTabBool5

func (o *QuoteTabView) GetZCustomTabBool5() bool

GetZCustomTabBool5 returns the ZCustomTabBool5 field value if set, zero value otherwise.

func (*QuoteTabView) GetZCustomTabBool5Ok

func (o *QuoteTabView) GetZCustomTabBool5Ok() (*bool, bool)

GetZCustomTabBool5Ok returns a tuple with the ZCustomTabBool5 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetZCustomTabBool6

func (o *QuoteTabView) GetZCustomTabBool6() bool

GetZCustomTabBool6 returns the ZCustomTabBool6 field value if set, zero value otherwise.

func (*QuoteTabView) GetZCustomTabBool6Ok

func (o *QuoteTabView) GetZCustomTabBool6Ok() (*bool, bool)

GetZCustomTabBool6Ok returns a tuple with the ZCustomTabBool6 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetZCustomTabBool7

func (o *QuoteTabView) GetZCustomTabBool7() bool

GetZCustomTabBool7 returns the ZCustomTabBool7 field value if set, zero value otherwise.

func (*QuoteTabView) GetZCustomTabBool7Ok

func (o *QuoteTabView) GetZCustomTabBool7Ok() (*bool, bool)

GetZCustomTabBool7Ok returns a tuple with the ZCustomTabBool7 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetZCustomTabBool8

func (o *QuoteTabView) GetZCustomTabBool8() bool

GetZCustomTabBool8 returns the ZCustomTabBool8 field value if set, zero value otherwise.

func (*QuoteTabView) GetZCustomTabBool8Ok

func (o *QuoteTabView) GetZCustomTabBool8Ok() (*bool, bool)

GetZCustomTabBool8Ok returns a tuple with the ZCustomTabBool8 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetZCustomTabBool9

func (o *QuoteTabView) GetZCustomTabBool9() bool

GetZCustomTabBool9 returns the ZCustomTabBool9 field value if set, zero value otherwise.

func (*QuoteTabView) GetZCustomTabBool9Ok

func (o *QuoteTabView) GetZCustomTabBool9Ok() (*bool, bool)

GetZCustomTabBool9Ok returns a tuple with the ZCustomTabBool9 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetZCustomTabBool10

func (o *QuoteTabView) GetZCustomTabBool10() bool

GetZCustomTabBool10 returns the ZCustomTabBool10 field value if set, zero value otherwise.

func (*QuoteTabView) GetZCustomTabBool10Ok

func (o *QuoteTabView) GetZCustomTabBool10Ok() (*bool, bool)

GetZCustomTabBool10Ok returns a tuple with the ZCustomTabBool10 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetZCustomTabDate1

func (o *QuoteTabView) GetZCustomTabDate1() time.Time

GetZCustomTabDate1 returns the ZCustomTabDate1 field value if set, zero value otherwise.

func (*QuoteTabView) GetZCustomTabDate1Ok

func (o *QuoteTabView) GetZCustomTabDate1Ok() (*time.Time, bool)

GetZCustomTabDate1Ok returns a tuple with the ZCustomTabDate1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetZCustomTabDate2

func (o *QuoteTabView) GetZCustomTabDate2() time.Time

GetZCustomTabDate2 returns the ZCustomTabDate2 field value if set, zero value otherwise.

func (*QuoteTabView) GetZCustomTabDate2Ok

func (o *QuoteTabView) GetZCustomTabDate2Ok() (*time.Time, bool)

GetZCustomTabDate2Ok returns a tuple with the ZCustomTabDate2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetZCustomTabDecimal1

func (o *QuoteTabView) GetZCustomTabDecimal1() float64

GetZCustomTabDecimal1 returns the ZCustomTabDecimal1 field value if set, zero value otherwise.

func (*QuoteTabView) GetZCustomTabDecimal1Ok

func (o *QuoteTabView) GetZCustomTabDecimal1Ok() (*float64, bool)

GetZCustomTabDecimal1Ok returns a tuple with the ZCustomTabDecimal1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetZCustomTabDecimal2

func (o *QuoteTabView) GetZCustomTabDecimal2() float64

GetZCustomTabDecimal2 returns the ZCustomTabDecimal2 field value if set, zero value otherwise.

func (*QuoteTabView) GetZCustomTabDecimal2Ok

func (o *QuoteTabView) GetZCustomTabDecimal2Ok() (*float64, bool)

GetZCustomTabDecimal2Ok returns a tuple with the ZCustomTabDecimal2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetZCustomTabDecimal3

func (o *QuoteTabView) GetZCustomTabDecimal3() float64

GetZCustomTabDecimal3 returns the ZCustomTabDecimal3 field value if set, zero value otherwise.

func (*QuoteTabView) GetZCustomTabDecimal3Ok

func (o *QuoteTabView) GetZCustomTabDecimal3Ok() (*float64, bool)

GetZCustomTabDecimal3Ok returns a tuple with the ZCustomTabDecimal3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetZCustomTabDecimal4

func (o *QuoteTabView) GetZCustomTabDecimal4() float64

GetZCustomTabDecimal4 returns the ZCustomTabDecimal4 field value if set, zero value otherwise.

func (*QuoteTabView) GetZCustomTabDecimal4Ok

func (o *QuoteTabView) GetZCustomTabDecimal4Ok() (*float64, bool)

GetZCustomTabDecimal4Ok returns a tuple with the ZCustomTabDecimal4 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetZCustomTabDecimal5

func (o *QuoteTabView) GetZCustomTabDecimal5() float64

GetZCustomTabDecimal5 returns the ZCustomTabDecimal5 field value if set, zero value otherwise.

func (*QuoteTabView) GetZCustomTabDecimal5Ok

func (o *QuoteTabView) GetZCustomTabDecimal5Ok() (*float64, bool)

GetZCustomTabDecimal5Ok returns a tuple with the ZCustomTabDecimal5 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetZCustomTabDecimal6

func (o *QuoteTabView) GetZCustomTabDecimal6() float64

GetZCustomTabDecimal6 returns the ZCustomTabDecimal6 field value if set, zero value otherwise.

func (*QuoteTabView) GetZCustomTabDecimal6Ok

func (o *QuoteTabView) GetZCustomTabDecimal6Ok() (*float64, bool)

GetZCustomTabDecimal6Ok returns a tuple with the ZCustomTabDecimal6 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetZCustomTabDecimal7

func (o *QuoteTabView) GetZCustomTabDecimal7() float64

GetZCustomTabDecimal7 returns the ZCustomTabDecimal7 field value if set, zero value otherwise.

func (*QuoteTabView) GetZCustomTabDecimal7Ok

func (o *QuoteTabView) GetZCustomTabDecimal7Ok() (*float64, bool)

GetZCustomTabDecimal7Ok returns a tuple with the ZCustomTabDecimal7 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetZCustomTabDecimal8

func (o *QuoteTabView) GetZCustomTabDecimal8() float64

GetZCustomTabDecimal8 returns the ZCustomTabDecimal8 field value if set, zero value otherwise.

func (*QuoteTabView) GetZCustomTabDecimal8Ok

func (o *QuoteTabView) GetZCustomTabDecimal8Ok() (*float64, bool)

GetZCustomTabDecimal8Ok returns a tuple with the ZCustomTabDecimal8 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetZCustomTabDecimal9

func (o *QuoteTabView) GetZCustomTabDecimal9() float64

GetZCustomTabDecimal9 returns the ZCustomTabDecimal9 field value if set, zero value otherwise.

func (*QuoteTabView) GetZCustomTabDecimal9Ok

func (o *QuoteTabView) GetZCustomTabDecimal9Ok() (*float64, bool)

GetZCustomTabDecimal9Ok returns a tuple with the ZCustomTabDecimal9 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetZCustomTabDecimal10

func (o *QuoteTabView) GetZCustomTabDecimal10() float64

GetZCustomTabDecimal10 returns the ZCustomTabDecimal10 field value if set, zero value otherwise.

func (*QuoteTabView) GetZCustomTabDecimal10Ok

func (o *QuoteTabView) GetZCustomTabDecimal10Ok() (*float64, bool)

GetZCustomTabDecimal10Ok returns a tuple with the ZCustomTabDecimal10 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetZCustomTabString1

func (o *QuoteTabView) GetZCustomTabString1() string

GetZCustomTabString1 returns the ZCustomTabString1 field value if set, zero value otherwise.

func (*QuoteTabView) GetZCustomTabString1Ok

func (o *QuoteTabView) GetZCustomTabString1Ok() (*string, bool)

GetZCustomTabString1Ok returns a tuple with the ZCustomTabString1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetZCustomTabString2

func (o *QuoteTabView) GetZCustomTabString2() string

GetZCustomTabString2 returns the ZCustomTabString2 field value if set, zero value otherwise.

func (*QuoteTabView) GetZCustomTabString2Ok

func (o *QuoteTabView) GetZCustomTabString2Ok() (*string, bool)

GetZCustomTabString2Ok returns a tuple with the ZCustomTabString2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetZCustomTabString3

func (o *QuoteTabView) GetZCustomTabString3() string

GetZCustomTabString3 returns the ZCustomTabString3 field value if set, zero value otherwise.

func (*QuoteTabView) GetZCustomTabString3Ok

func (o *QuoteTabView) GetZCustomTabString3Ok() (*string, bool)

GetZCustomTabString3Ok returns a tuple with the ZCustomTabString3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetZCustomTabString4

func (o *QuoteTabView) GetZCustomTabString4() string

GetZCustomTabString4 returns the ZCustomTabString4 field value if set, zero value otherwise.

func (*QuoteTabView) GetZCustomTabString4Ok

func (o *QuoteTabView) GetZCustomTabString4Ok() (*string, bool)

GetZCustomTabString4Ok returns a tuple with the ZCustomTabString4 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetZCustomTabString5

func (o *QuoteTabView) GetZCustomTabString5() string

GetZCustomTabString5 returns the ZCustomTabString5 field value if set, zero value otherwise.

func (*QuoteTabView) GetZCustomTabString5Ok

func (o *QuoteTabView) GetZCustomTabString5Ok() (*string, bool)

GetZCustomTabString5Ok returns a tuple with the ZCustomTabString5 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetZCustomTabString6

func (o *QuoteTabView) GetZCustomTabString6() string

GetZCustomTabString6 returns the ZCustomTabString6 field value if set, zero value otherwise.

func (*QuoteTabView) GetZCustomTabString6Ok

func (o *QuoteTabView) GetZCustomTabString6Ok() (*string, bool)

GetZCustomTabString6Ok returns a tuple with the ZCustomTabString6 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetZCustomTabString7

func (o *QuoteTabView) GetZCustomTabString7() string

GetZCustomTabString7 returns the ZCustomTabString7 field value if set, zero value otherwise.

func (*QuoteTabView) GetZCustomTabString7Ok

func (o *QuoteTabView) GetZCustomTabString7Ok() (*string, bool)

GetZCustomTabString7Ok returns a tuple with the ZCustomTabString7 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetZCustomTabString8

func (o *QuoteTabView) GetZCustomTabString8() string

GetZCustomTabString8 returns the ZCustomTabString8 field value if set, zero value otherwise.

func (*QuoteTabView) GetZCustomTabString8Ok

func (o *QuoteTabView) GetZCustomTabString8Ok() (*string, bool)

GetZCustomTabString8Ok returns a tuple with the ZCustomTabString8 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetZCustomTabString9

func (o *QuoteTabView) GetZCustomTabString9() string

GetZCustomTabString9 returns the ZCustomTabString9 field value if set, zero value otherwise.

func (*QuoteTabView) GetZCustomTabString9Ok

func (o *QuoteTabView) GetZCustomTabString9Ok() (*string, bool)

GetZCustomTabString9Ok returns a tuple with the ZCustomTabString9 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetZCustomTabString10

func (o *QuoteTabView) GetZCustomTabString10() string

GetZCustomTabString10 returns the ZCustomTabString10 field value if set, zero value otherwise.

func (*QuoteTabView) GetZCustomTabString10Ok

func (o *QuoteTabView) GetZCustomTabString10Ok() (*string, bool)

GetZCustomTabString10Ok returns a tuple with the ZCustomTabString10 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetZCustomTabString11

func (o *QuoteTabView) GetZCustomTabString11() string

GetZCustomTabString11 returns the ZCustomTabString11 field value if set, zero value otherwise.

func (*QuoteTabView) GetZCustomTabString11Ok

func (o *QuoteTabView) GetZCustomTabString11Ok() (*string, bool)

GetZCustomTabString11Ok returns a tuple with the ZCustomTabString11 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetZCustomTabString12

func (o *QuoteTabView) GetZCustomTabString12() string

GetZCustomTabString12 returns the ZCustomTabString12 field value if set, zero value otherwise.

func (*QuoteTabView) GetZCustomTabString12Ok

func (o *QuoteTabView) GetZCustomTabString12Ok() (*string, bool)

GetZCustomTabString12Ok returns a tuple with the ZCustomTabString12 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetZCustomTabString13

func (o *QuoteTabView) GetZCustomTabString13() string

GetZCustomTabString13 returns the ZCustomTabString13 field value if set, zero value otherwise.

func (*QuoteTabView) GetZCustomTabString13Ok

func (o *QuoteTabView) GetZCustomTabString13Ok() (*string, bool)

GetZCustomTabString13Ok returns a tuple with the ZCustomTabString13 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetZCustomTabString14

func (o *QuoteTabView) GetZCustomTabString14() string

GetZCustomTabString14 returns the ZCustomTabString14 field value if set, zero value otherwise.

func (*QuoteTabView) GetZCustomTabString14Ok

func (o *QuoteTabView) GetZCustomTabString14Ok() (*string, bool)

GetZCustomTabString14Ok returns a tuple with the ZCustomTabString14 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) GetZCustomTabString15

func (o *QuoteTabView) GetZCustomTabString15() string

GetZCustomTabString15 returns the ZCustomTabString15 field value if set, zero value otherwise.

func (*QuoteTabView) GetZCustomTabString15Ok

func (o *QuoteTabView) GetZCustomTabString15Ok() (*string, bool)

GetZCustomTabString15Ok returns a tuple with the ZCustomTabString15 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabView) HasApprovalContentHash

func (o *QuoteTabView) HasApprovalContentHash() bool

HasApprovalContentHash returns a boolean if a field has been set.

func (*QuoteTabView) HasApprovalOnChange

func (o *QuoteTabView) HasApprovalOnChange() bool

HasApprovalOnChange returns a boolean if a field has been set.

func (*QuoteTabView) HasAudio

func (o *QuoteTabView) HasAudio() bool

HasAudio returns a boolean if a field has been set.

func (*QuoteTabView) HasCanAddItems

func (o *QuoteTabView) HasCanAddItems() bool

HasCanAddItems returns a boolean if a field has been set.

func (*QuoteTabView) HasCanChangePrice

func (o *QuoteTabView) HasCanChangePrice() bool

HasCanChangePrice returns a boolean if a field has been set.

func (*QuoteTabView) HasCanChangeTabName

func (o *QuoteTabView) HasCanChangeTabName() bool

HasCanChangeTabName returns a boolean if a field has been set.

func (*QuoteTabView) HasCanDeleteItems

func (o *QuoteTabView) HasCanDeleteItems() bool

HasCanDeleteItems returns a boolean if a field has been set.

func (*QuoteTabView) HasCanDeleteTab

func (o *QuoteTabView) HasCanDeleteTab() bool

HasCanDeleteTab returns a boolean if a field has been set.

func (*QuoteTabView) HasConfigId

func (o *QuoteTabView) HasConfigId() bool

HasConfigId returns a boolean if a field has been set.

func (*QuoteTabView) HasConnectWiseIntegratorOverride

func (o *QuoteTabView) HasConnectWiseIntegratorOverride() bool

HasConnectWiseIntegratorOverride returns a boolean if a field has been set.

func (*QuoteTabView) HasConnectWiseOpInclude

func (o *QuoteTabView) HasConnectWiseOpInclude() bool

HasConnectWiseOpInclude returns a boolean if a field has been set.

func (*QuoteTabView) HasConnectWiseType

func (o *QuoteTabView) HasConnectWiseType() bool

HasConnectWiseType returns a boolean if a field has been set.

func (*QuoteTabView) HasContractEndDate

func (o *QuoteTabView) HasContractEndDate() bool

HasContractEndDate returns a boolean if a field has been set.

func (*QuoteTabView) HasContractStartDate

func (o *QuoteTabView) HasContractStartDate() bool

HasContractStartDate returns a boolean if a field has been set.

func (*QuoteTabView) HasCost

func (o *QuoteTabView) HasCost() bool

HasCost returns a boolean if a field has been set.

func (*QuoteTabView) HasCwForceTabForecast

func (o *QuoteTabView) HasCwForceTabForecast() bool

HasCwForceTabForecast returns a boolean if a field has been set.

func (*QuoteTabView) HasCwForecastId

func (o *QuoteTabView) HasCwForecastId() bool

HasCwForecastId returns a boolean if a field has been set.

func (*QuoteTabView) HasDisableAutoEtilizeSourcing

func (o *QuoteTabView) HasDisableAutoEtilizeSourcing() bool

HasDisableAutoEtilizeSourcing returns a boolean if a field has been set.

func (*QuoteTabView) HasDiscount

func (o *QuoteTabView) HasDiscount() bool

HasDiscount returns a boolean if a field has been set.

func (*QuoteTabView) HasDiscountAmount

func (o *QuoteTabView) HasDiscountAmount() bool

HasDiscountAmount returns a boolean if a field has been set.

func (*QuoteTabView) HasDiscountAmountConverted

func (o *QuoteTabView) HasDiscountAmountConverted() bool

HasDiscountAmountConverted returns a boolean if a field has been set.

func (*QuoteTabView) HasDynamicGpProfileId

func (o *QuoteTabView) HasDynamicGpProfileId() bool

HasDynamicGpProfileId returns a boolean if a field has been set.

func (*QuoteTabView) HasForceOpportunityItems

func (o *QuoteTabView) HasForceOpportunityItems() bool

HasForceOpportunityItems returns a boolean if a field has been set.

func (*QuoteTabView) HasForceZeroQuantity

func (o *QuoteTabView) HasForceZeroQuantity() bool

HasForceZeroQuantity returns a boolean if a field has been set.

func (*QuoteTabView) HasGoToProductSearchWhenTabIsEmpty

func (o *QuoteTabView) HasGoToProductSearchWhenTabIsEmpty() bool

HasGoToProductSearchWhenTabIsEmpty returns a boolean if a field has been set.

func (*QuoteTabView) HasGridFormat

func (o *QuoteTabView) HasGridFormat() bool

HasGridFormat returns a boolean if a field has been set.

func (*QuoteTabView) HasGrossMargin

func (o *QuoteTabView) HasGrossMargin() bool

HasGrossMargin returns a boolean if a field has been set.

func (*QuoteTabView) HasGrossMarginAmount

func (o *QuoteTabView) HasGrossMarginAmount() bool

HasGrossMarginAmount returns a boolean if a field has been set.

func (*QuoteTabView) HasGroupRunningCost

func (o *QuoteTabView) HasGroupRunningCost() bool

HasGroupRunningCost returns a boolean if a field has been set.

func (*QuoteTabView) HasGroupRunningOptionAmount

func (o *QuoteTabView) HasGroupRunningOptionAmount() bool

HasGroupRunningOptionAmount returns a boolean if a field has been set.

func (*QuoteTabView) HasGroupRunningRecurringCost

func (o *QuoteTabView) HasGroupRunningRecurringCost() bool

HasGroupRunningRecurringCost returns a boolean if a field has been set.

func (*QuoteTabView) HasGroupRunningRecurringOptionAmount

func (o *QuoteTabView) HasGroupRunningRecurringOptionAmount() bool

HasGroupRunningRecurringOptionAmount returns a boolean if a field has been set.

func (*QuoteTabView) HasGroupRunningRecurringSubtotal

func (o *QuoteTabView) HasGroupRunningRecurringSubtotal() bool

HasGroupRunningRecurringSubtotal returns a boolean if a field has been set.

func (*QuoteTabView) HasGroupRunningRecurringTax

func (o *QuoteTabView) HasGroupRunningRecurringTax() bool

HasGroupRunningRecurringTax returns a boolean if a field has been set.

func (*QuoteTabView) HasGroupRunningRecurringTotal

func (o *QuoteTabView) HasGroupRunningRecurringTotal() bool

HasGroupRunningRecurringTotal returns a boolean if a field has been set.

func (*QuoteTabView) HasGroupRunningSubtotal

func (o *QuoteTabView) HasGroupRunningSubtotal() bool

HasGroupRunningSubtotal returns a boolean if a field has been set.

func (*QuoteTabView) HasGroupRunningTax

func (o *QuoteTabView) HasGroupRunningTax() bool

HasGroupRunningTax returns a boolean if a field has been set.

func (*QuoteTabView) HasGroupRunningTotal

func (o *QuoteTabView) HasGroupRunningTotal() bool

HasGroupRunningTotal returns a boolean if a field has been set.

func (*QuoteTabView) HasGst

func (o *QuoteTabView) HasGst() bool

HasGst returns a boolean if a field has been set.

func (*QuoteTabView) HasGstConverted

func (o *QuoteTabView) HasGstConverted() bool

HasGstConverted returns a boolean if a field has been set.

func (*QuoteTabView) HasHasLimitOnNewItems

func (o *QuoteTabView) HasHasLimitOnNewItems() bool

HasHasLimitOnNewItems returns a boolean if a field has been set.

func (*QuoteTabView) HasHideMfp

func (o *QuoteTabView) HasHideMfp() bool

HasHideMfp returns a boolean if a field has been set.

func (*QuoteTabView) HasHtmlNotes

func (o *QuoteTabView) HasHtmlNotes() bool

HasHtmlNotes returns a boolean if a field has been set.

func (*QuoteTabView) HasId

func (o *QuoteTabView) HasId() bool

HasId returns a boolean if a field has been set.

func (*QuoteTabView) HasIdRecurringRevenue

func (o *QuoteTabView) HasIdRecurringRevenue() bool

HasIdRecurringRevenue returns a boolean if a field has been set.

func (*QuoteTabView) HasIgnorePackageHeaderOnOpportunities

func (o *QuoteTabView) HasIgnorePackageHeaderOnOpportunities() bool

HasIgnorePackageHeaderOnOpportunities returns a boolean if a field has been set.

func (*QuoteTabView) HasInvoiceRouting

func (o *QuoteTabView) HasInvoiceRouting() bool

HasInvoiceRouting returns a boolean if a field has been set.

func (*QuoteTabView) HasIsGroupQuantityMaster

func (o *QuoteTabView) HasIsGroupQuantityMaster() bool

HasIsGroupQuantityMaster returns a boolean if a field has been set.

func (*QuoteTabView) HasIsHidden

func (o *QuoteTabView) HasIsHidden() bool

HasIsHidden returns a boolean if a field has been set.

func (*QuoteTabView) HasIsOptional

func (o *QuoteTabView) HasIsOptional() bool

HasIsOptional returns a boolean if a field has been set.

func (*QuoteTabView) HasIsPrinted

func (o *QuoteTabView) HasIsPrinted() bool

HasIsPrinted returns a boolean if a field has been set.

func (*QuoteTabView) HasIsProtectedTab

func (o *QuoteTabView) HasIsProtectedTab() bool

HasIsProtectedTab returns a boolean if a field has been set.

func (*QuoteTabView) HasIsShippingTab

func (o *QuoteTabView) HasIsShippingTab() bool

HasIsShippingTab returns a boolean if a field has been set.

func (*QuoteTabView) HasIsSourcingExempt

func (o *QuoteTabView) HasIsSourcingExempt() bool

HasIsSourcingExempt returns a boolean if a field has been set.

func (*QuoteTabView) HasIsTabTemplate

func (o *QuoteTabView) HasIsTabTemplate() bool

HasIsTabTemplate returns a boolean if a field has been set.

func (*QuoteTabView) HasIsTargetDiscount

func (o *QuoteTabView) HasIsTargetDiscount() bool

HasIsTargetDiscount returns a boolean if a field has been set.

func (*QuoteTabView) HasIsTargetListDiscount

func (o *QuoteTabView) HasIsTargetListDiscount() bool

HasIsTargetListDiscount returns a boolean if a field has been set.

func (*QuoteTabView) HasIsTargetMargin

func (o *QuoteTabView) HasIsTargetMargin() bool

HasIsTargetMargin returns a boolean if a field has been set.

func (*QuoteTabView) HasIsTargetMarkup

func (o *QuoteTabView) HasIsTargetMarkup() bool

HasIsTargetMarkup returns a boolean if a field has been set.

func (*QuoteTabView) HasIsTaxable

func (o *QuoteTabView) HasIsTaxable() bool

HasIsTaxable returns a boolean if a field has been set.

func (*QuoteTabView) HasIsTotalsIncluded

func (o *QuoteTabView) HasIsTotalsIncluded() bool

HasIsTotalsIncluded returns a boolean if a field has been set.

func (*QuoteTabView) HasLayoutGroup

func (o *QuoteTabView) HasLayoutGroup() bool

HasLayoutGroup returns a boolean if a field has been set.

func (*QuoteTabView) HasLongDescription

func (o *QuoteTabView) HasLongDescription() bool

HasLongDescription returns a boolean if a field has been set.

func (*QuoteTabView) HasMarkup

func (o *QuoteTabView) HasMarkup() bool

HasMarkup returns a boolean if a field has been set.

func (*QuoteTabView) HasName

func (o *QuoteTabView) HasName() bool

HasName returns a boolean if a field has been set.

func (*QuoteTabView) HasNetMargin

func (o *QuoteTabView) HasNetMargin() bool

HasNetMargin returns a boolean if a field has been set.

func (*QuoteTabView) HasNetSuiteType

func (o *QuoteTabView) HasNetSuiteType() bool

HasNetSuiteType returns a boolean if a field has been set.

func (*QuoteTabView) HasOppConvertRouting

func (o *QuoteTabView) HasOppConvertRouting() bool

HasOppConvertRouting returns a boolean if a field has been set.

func (*QuoteTabView) HasOppRecurringAsAdjustment

func (o *QuoteTabView) HasOppRecurringAsAdjustment() bool

HasOppRecurringAsAdjustment returns a boolean if a field has been set.

func (*QuoteTabView) HasOptionalAmount

func (o *QuoteTabView) HasOptionalAmount() bool

HasOptionalAmount returns a boolean if a field has been set.

func (*QuoteTabView) HasOptionalAmountConverted

func (o *QuoteTabView) HasOptionalAmountConverted() bool

HasOptionalAmountConverted returns a boolean if a field has been set.

func (*QuoteTabView) HasOptionalRecurring

func (o *QuoteTabView) HasOptionalRecurring() bool

HasOptionalRecurring returns a boolean if a field has been set.

func (*QuoteTabView) HasOptionalSubtotal

func (o *QuoteTabView) HasOptionalSubtotal() bool

HasOptionalSubtotal returns a boolean if a field has been set.

func (*QuoteTabView) HasOptionalTax

func (o *QuoteTabView) HasOptionalTax() bool

HasOptionalTax returns a boolean if a field has been set.

func (*QuoteTabView) HasOrderPorterGroup

func (o *QuoteTabView) HasOrderPorterGroup() bool

HasOrderPorterGroup returns a boolean if a field has been set.

func (*QuoteTabView) HasOrderPorterRequired

func (o *QuoteTabView) HasOrderPorterRequired() bool

HasOrderPorterRequired returns a boolean if a field has been set.

func (*QuoteTabView) HasOwner

func (o *QuoteTabView) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (*QuoteTabView) HasPageBreak

func (o *QuoteTabView) HasPageBreak() bool

HasPageBreak returns a boolean if a field has been set.

func (*QuoteTabView) HasPeriods

func (o *QuoteTabView) HasPeriods() bool

HasPeriods returns a boolean if a field has been set.

func (*QuoteTabView) HasPrice

func (o *QuoteTabView) HasPrice() bool

HasPrice returns a boolean if a field has been set.

func (*QuoteTabView) HasPrimarySourceGroup

func (o *QuoteTabView) HasPrimarySourceGroup() bool

HasPrimarySourceGroup returns a boolean if a field has been set.

func (*QuoteTabView) HasProductSearchFormConfiguration

func (o *QuoteTabView) HasProductSearchFormConfiguration() bool

HasProductSearchFormConfiguration returns a boolean if a field has been set.

func (*QuoteTabView) HasProductSearchPrefillMappingSet

func (o *QuoteTabView) HasProductSearchPrefillMappingSet() bool

HasProductSearchPrefillMappingSet returns a boolean if a field has been set.

func (*QuoteTabView) HasPst

func (o *QuoteTabView) HasPst() bool

HasPst returns a boolean if a field has been set.

func (*QuoteTabView) HasPstConverted

func (o *QuoteTabView) HasPstConverted() bool

HasPstConverted returns a boolean if a field has been set.

func (*QuoteTabView) HasQuickBooksType

func (o *QuoteTabView) HasQuickBooksType() bool

HasQuickBooksType returns a boolean if a field has been set.

func (*QuoteTabView) HasQuote

func (o *QuoteTabView) HasQuote() bool

HasQuote returns a boolean if a field has been set.

func (*QuoteTabView) HasRecurringCost

func (o *QuoteTabView) HasRecurringCost() bool

HasRecurringCost returns a boolean if a field has been set.

func (*QuoteTabView) HasRecurringDiscount

func (o *QuoteTabView) HasRecurringDiscount() bool

HasRecurringDiscount returns a boolean if a field has been set.

func (*QuoteTabView) HasRecurringDiscountAmount

func (o *QuoteTabView) HasRecurringDiscountAmount() bool

HasRecurringDiscountAmount returns a boolean if a field has been set.

func (*QuoteTabView) HasRecurringGrossMargin

func (o *QuoteTabView) HasRecurringGrossMargin() bool

HasRecurringGrossMargin returns a boolean if a field has been set.

func (*QuoteTabView) HasRecurringGrossMarginAmount

func (o *QuoteTabView) HasRecurringGrossMarginAmount() bool

HasRecurringGrossMarginAmount returns a boolean if a field has been set.

func (*QuoteTabView) HasRecurringGst

func (o *QuoteTabView) HasRecurringGst() bool

HasRecurringGst returns a boolean if a field has been set.

func (*QuoteTabView) HasRecurringIsTaxable

func (o *QuoteTabView) HasRecurringIsTaxable() bool

HasRecurringIsTaxable returns a boolean if a field has been set.

func (*QuoteTabView) HasRecurringLabel

func (o *QuoteTabView) HasRecurringLabel() bool

HasRecurringLabel returns a boolean if a field has been set.

func (*QuoteTabView) HasRecurringMarkup

func (o *QuoteTabView) HasRecurringMarkup() bool

HasRecurringMarkup returns a boolean if a field has been set.

func (*QuoteTabView) HasRecurringNetMargin

func (o *QuoteTabView) HasRecurringNetMargin() bool

HasRecurringNetMargin returns a boolean if a field has been set.

func (*QuoteTabView) HasRecurringOptionalSubtotal

func (o *QuoteTabView) HasRecurringOptionalSubtotal() bool

HasRecurringOptionalSubtotal returns a boolean if a field has been set.

func (*QuoteTabView) HasRecurringOptionalTax

func (o *QuoteTabView) HasRecurringOptionalTax() bool

HasRecurringOptionalTax returns a boolean if a field has been set.

func (*QuoteTabView) HasRecurringPst

func (o *QuoteTabView) HasRecurringPst() bool

HasRecurringPst returns a boolean if a field has been set.

func (*QuoteTabView) HasRecurringSubtotal

func (o *QuoteTabView) HasRecurringSubtotal() bool

HasRecurringSubtotal returns a boolean if a field has been set.

func (*QuoteTabView) HasRecurringSuggestedDiscountAmount

func (o *QuoteTabView) HasRecurringSuggestedDiscountAmount() bool

HasRecurringSuggestedDiscountAmount returns a boolean if a field has been set.

func (*QuoteTabView) HasRecurringSuggestedTotal

func (o *QuoteTabView) HasRecurringSuggestedTotal() bool

HasRecurringSuggestedTotal returns a boolean if a field has been set.

func (*QuoteTabView) HasRecurringTargetPriceControlType

func (o *QuoteTabView) HasRecurringTargetPriceControlType() bool

HasRecurringTargetPriceControlType returns a boolean if a field has been set.

func (*QuoteTabView) HasRecurringTargetPriceControlValue

func (o *QuoteTabView) HasRecurringTargetPriceControlValue() bool

HasRecurringTargetPriceControlValue returns a boolean if a field has been set.

func (*QuoteTabView) HasRecurringTax

func (o *QuoteTabView) HasRecurringTax() bool

HasRecurringTax returns a boolean if a field has been set.

func (*QuoteTabView) HasRecurringTotal

func (o *QuoteTabView) HasRecurringTotal() bool

HasRecurringTotal returns a boolean if a field has been set.

func (*QuoteTabView) HasRtfNotes

func (o *QuoteTabView) HasRtfNotes() bool

HasRtfNotes returns a boolean if a field has been set.

func (*QuoteTabView) HasShowLineItemQuickFilter

func (o *QuoteTabView) HasShowLineItemQuickFilter() bool

HasShowLineItemQuickFilter returns a boolean if a field has been set.

func (*QuoteTabView) HasSubtotal

func (o *QuoteTabView) HasSubtotal() bool

HasSubtotal returns a boolean if a field has been set.

func (*QuoteTabView) HasSubtotalConverted

func (o *QuoteTabView) HasSubtotalConverted() bool

HasSubtotalConverted returns a boolean if a field has been set.

func (*QuoteTabView) HasSuggestedDiscountAmount

func (o *QuoteTabView) HasSuggestedDiscountAmount() bool

HasSuggestedDiscountAmount returns a boolean if a field has been set.

func (*QuoteTabView) HasSuggestedTotal

func (o *QuoteTabView) HasSuggestedTotal() bool

HasSuggestedTotal returns a boolean if a field has been set.

func (*QuoteTabView) HasTabColor

func (o *QuoteTabView) HasTabColor() bool

HasTabColor returns a boolean if a field has been set.

func (*QuoteTabView) HasTabDescription

func (o *QuoteTabView) HasTabDescription() bool

HasTabDescription returns a boolean if a field has been set.

func (*QuoteTabView) HasTabGroup

func (o *QuoteTabView) HasTabGroup() bool

HasTabGroup returns a boolean if a field has been set.

func (*QuoteTabView) HasTabIdentifier

func (o *QuoteTabView) HasTabIdentifier() bool

HasTabIdentifier returns a boolean if a field has been set.

func (*QuoteTabView) HasTabNotes

func (o *QuoteTabView) HasTabNotes() bool

HasTabNotes returns a boolean if a field has been set.

func (*QuoteTabView) HasTabNumber

func (o *QuoteTabView) HasTabNumber() bool

HasTabNumber returns a boolean if a field has been set.

func (*QuoteTabView) HasTabSheetHtml1

func (o *QuoteTabView) HasTabSheetHtml1() bool

HasTabSheetHtml1 returns a boolean if a field has been set.

func (*QuoteTabView) HasTabSheetHtml2

func (o *QuoteTabView) HasTabSheetHtml2() bool

HasTabSheetHtml2 returns a boolean if a field has been set.

func (*QuoteTabView) HasTabSheetHtml3

func (o *QuoteTabView) HasTabSheetHtml3() bool

HasTabSheetHtml3 returns a boolean if a field has been set.

func (*QuoteTabView) HasTabSheetHtml4

func (o *QuoteTabView) HasTabSheetHtml4() bool

HasTabSheetHtml4 returns a boolean if a field has been set.

func (*QuoteTabView) HasTabSheetHtml5

func (o *QuoteTabView) HasTabSheetHtml5() bool

HasTabSheetHtml5 returns a boolean if a field has been set.

func (*QuoteTabView) HasTabTotal

func (o *QuoteTabView) HasTabTotal() bool

HasTabTotal returns a boolean if a field has been set.

func (*QuoteTabView) HasTabTotalConverted

func (o *QuoteTabView) HasTabTotalConverted() bool

HasTabTotalConverted returns a boolean if a field has been set.

func (*QuoteTabView) HasTargetDiscount

func (o *QuoteTabView) HasTargetDiscount() bool

HasTargetDiscount returns a boolean if a field has been set.

func (*QuoteTabView) HasTargetMargin

func (o *QuoteTabView) HasTargetMargin() bool

HasTargetMargin returns a boolean if a field has been set.

func (*QuoteTabView) HasTargetMarkup

func (o *QuoteTabView) HasTargetMarkup() bool

HasTargetMarkup returns a boolean if a field has been set.

func (*QuoteTabView) HasTargetSheet1

func (o *QuoteTabView) HasTargetSheet1() bool

HasTargetSheet1 returns a boolean if a field has been set.

func (*QuoteTabView) HasTargetSheet2

func (o *QuoteTabView) HasTargetSheet2() bool

HasTargetSheet2 returns a boolean if a field has been set.

func (*QuoteTabView) HasTargetSheet3

func (o *QuoteTabView) HasTargetSheet3() bool

HasTargetSheet3 returns a boolean if a field has been set.

func (*QuoteTabView) HasTargetSheet4

func (o *QuoteTabView) HasTargetSheet4() bool

HasTargetSheet4 returns a boolean if a field has been set.

func (*QuoteTabView) HasTargetSheet5

func (o *QuoteTabView) HasTargetSheet5() bool

HasTargetSheet5 returns a boolean if a field has been set.

func (*QuoteTabView) HasTax

func (o *QuoteTabView) HasTax() bool

HasTax returns a boolean if a field has been set.

func (*QuoteTabView) HasTaxCode

func (o *QuoteTabView) HasTaxCode() bool

HasTaxCode returns a boolean if a field has been set.

func (*QuoteTabView) HasTaxConverted

func (o *QuoteTabView) HasTaxConverted() bool

HasTaxConverted returns a boolean if a field has been set.

func (*QuoteTabView) HasTaxRate

func (o *QuoteTabView) HasTaxRate() bool

HasTaxRate returns a boolean if a field has been set.

func (*QuoteTabView) HasZCustomTabBool1

func (o *QuoteTabView) HasZCustomTabBool1() bool

HasZCustomTabBool1 returns a boolean if a field has been set.

func (*QuoteTabView) HasZCustomTabBool2

func (o *QuoteTabView) HasZCustomTabBool2() bool

HasZCustomTabBool2 returns a boolean if a field has been set.

func (*QuoteTabView) HasZCustomTabBool3

func (o *QuoteTabView) HasZCustomTabBool3() bool

HasZCustomTabBool3 returns a boolean if a field has been set.

func (*QuoteTabView) HasZCustomTabBool4

func (o *QuoteTabView) HasZCustomTabBool4() bool

HasZCustomTabBool4 returns a boolean if a field has been set.

func (*QuoteTabView) HasZCustomTabBool5

func (o *QuoteTabView) HasZCustomTabBool5() bool

HasZCustomTabBool5 returns a boolean if a field has been set.

func (*QuoteTabView) HasZCustomTabBool6

func (o *QuoteTabView) HasZCustomTabBool6() bool

HasZCustomTabBool6 returns a boolean if a field has been set.

func (*QuoteTabView) HasZCustomTabBool7

func (o *QuoteTabView) HasZCustomTabBool7() bool

HasZCustomTabBool7 returns a boolean if a field has been set.

func (*QuoteTabView) HasZCustomTabBool8

func (o *QuoteTabView) HasZCustomTabBool8() bool

HasZCustomTabBool8 returns a boolean if a field has been set.

func (*QuoteTabView) HasZCustomTabBool9

func (o *QuoteTabView) HasZCustomTabBool9() bool

HasZCustomTabBool9 returns a boolean if a field has been set.

func (*QuoteTabView) HasZCustomTabBool10

func (o *QuoteTabView) HasZCustomTabBool10() bool

HasZCustomTabBool10 returns a boolean if a field has been set.

func (*QuoteTabView) HasZCustomTabDate1

func (o *QuoteTabView) HasZCustomTabDate1() bool

HasZCustomTabDate1 returns a boolean if a field has been set.

func (*QuoteTabView) HasZCustomTabDate2

func (o *QuoteTabView) HasZCustomTabDate2() bool

HasZCustomTabDate2 returns a boolean if a field has been set.

func (*QuoteTabView) HasZCustomTabDecimal1

func (o *QuoteTabView) HasZCustomTabDecimal1() bool

HasZCustomTabDecimal1 returns a boolean if a field has been set.

func (*QuoteTabView) HasZCustomTabDecimal2

func (o *QuoteTabView) HasZCustomTabDecimal2() bool

HasZCustomTabDecimal2 returns a boolean if a field has been set.

func (*QuoteTabView) HasZCustomTabDecimal3

func (o *QuoteTabView) HasZCustomTabDecimal3() bool

HasZCustomTabDecimal3 returns a boolean if a field has been set.

func (*QuoteTabView) HasZCustomTabDecimal4

func (o *QuoteTabView) HasZCustomTabDecimal4() bool

HasZCustomTabDecimal4 returns a boolean if a field has been set.

func (*QuoteTabView) HasZCustomTabDecimal5

func (o *QuoteTabView) HasZCustomTabDecimal5() bool

HasZCustomTabDecimal5 returns a boolean if a field has been set.

func (*QuoteTabView) HasZCustomTabDecimal6

func (o *QuoteTabView) HasZCustomTabDecimal6() bool

HasZCustomTabDecimal6 returns a boolean if a field has been set.

func (*QuoteTabView) HasZCustomTabDecimal7

func (o *QuoteTabView) HasZCustomTabDecimal7() bool

HasZCustomTabDecimal7 returns a boolean if a field has been set.

func (*QuoteTabView) HasZCustomTabDecimal8

func (o *QuoteTabView) HasZCustomTabDecimal8() bool

HasZCustomTabDecimal8 returns a boolean if a field has been set.

func (*QuoteTabView) HasZCustomTabDecimal9

func (o *QuoteTabView) HasZCustomTabDecimal9() bool

HasZCustomTabDecimal9 returns a boolean if a field has been set.

func (*QuoteTabView) HasZCustomTabDecimal10

func (o *QuoteTabView) HasZCustomTabDecimal10() bool

HasZCustomTabDecimal10 returns a boolean if a field has been set.

func (*QuoteTabView) HasZCustomTabString1

func (o *QuoteTabView) HasZCustomTabString1() bool

HasZCustomTabString1 returns a boolean if a field has been set.

func (*QuoteTabView) HasZCustomTabString2

func (o *QuoteTabView) HasZCustomTabString2() bool

HasZCustomTabString2 returns a boolean if a field has been set.

func (*QuoteTabView) HasZCustomTabString3

func (o *QuoteTabView) HasZCustomTabString3() bool

HasZCustomTabString3 returns a boolean if a field has been set.

func (*QuoteTabView) HasZCustomTabString4

func (o *QuoteTabView) HasZCustomTabString4() bool

HasZCustomTabString4 returns a boolean if a field has been set.

func (*QuoteTabView) HasZCustomTabString5

func (o *QuoteTabView) HasZCustomTabString5() bool

HasZCustomTabString5 returns a boolean if a field has been set.

func (*QuoteTabView) HasZCustomTabString6

func (o *QuoteTabView) HasZCustomTabString6() bool

HasZCustomTabString6 returns a boolean if a field has been set.

func (*QuoteTabView) HasZCustomTabString7

func (o *QuoteTabView) HasZCustomTabString7() bool

HasZCustomTabString7 returns a boolean if a field has been set.

func (*QuoteTabView) HasZCustomTabString8

func (o *QuoteTabView) HasZCustomTabString8() bool

HasZCustomTabString8 returns a boolean if a field has been set.

func (*QuoteTabView) HasZCustomTabString9

func (o *QuoteTabView) HasZCustomTabString9() bool

HasZCustomTabString9 returns a boolean if a field has been set.

func (*QuoteTabView) HasZCustomTabString10

func (o *QuoteTabView) HasZCustomTabString10() bool

HasZCustomTabString10 returns a boolean if a field has been set.

func (*QuoteTabView) HasZCustomTabString11

func (o *QuoteTabView) HasZCustomTabString11() bool

HasZCustomTabString11 returns a boolean if a field has been set.

func (*QuoteTabView) HasZCustomTabString12

func (o *QuoteTabView) HasZCustomTabString12() bool

HasZCustomTabString12 returns a boolean if a field has been set.

func (*QuoteTabView) HasZCustomTabString13

func (o *QuoteTabView) HasZCustomTabString13() bool

HasZCustomTabString13 returns a boolean if a field has been set.

func (*QuoteTabView) HasZCustomTabString14

func (o *QuoteTabView) HasZCustomTabString14() bool

HasZCustomTabString14 returns a boolean if a field has been set.

func (*QuoteTabView) HasZCustomTabString15

func (o *QuoteTabView) HasZCustomTabString15() bool

HasZCustomTabString15 returns a boolean if a field has been set.

func (QuoteTabView) MarshalJSON

func (o QuoteTabView) MarshalJSON() ([]byte, error)

func (*QuoteTabView) SetApprovalContentHash

func (o *QuoteTabView) SetApprovalContentHash(v string)

SetApprovalContentHash gets a reference to the given string and assigns it to the ApprovalContentHash field.

func (*QuoteTabView) SetApprovalOnChange

func (o *QuoteTabView) SetApprovalOnChange(v bool)

SetApprovalOnChange gets a reference to the given bool and assigns it to the ApprovalOnChange field.

func (*QuoteTabView) SetAudio

func (o *QuoteTabView) SetAudio(v string)

SetAudio gets a reference to the given string and assigns it to the Audio field.

func (*QuoteTabView) SetCanAddItems

func (o *QuoteTabView) SetCanAddItems(v bool)

SetCanAddItems gets a reference to the given bool and assigns it to the CanAddItems field.

func (*QuoteTabView) SetCanChangePrice

func (o *QuoteTabView) SetCanChangePrice(v bool)

SetCanChangePrice gets a reference to the given bool and assigns it to the CanChangePrice field.

func (*QuoteTabView) SetCanChangeTabName

func (o *QuoteTabView) SetCanChangeTabName(v bool)

SetCanChangeTabName gets a reference to the given bool and assigns it to the CanChangeTabName field.

func (*QuoteTabView) SetCanDeleteItems

func (o *QuoteTabView) SetCanDeleteItems(v bool)

SetCanDeleteItems gets a reference to the given bool and assigns it to the CanDeleteItems field.

func (*QuoteTabView) SetCanDeleteTab

func (o *QuoteTabView) SetCanDeleteTab(v bool)

SetCanDeleteTab gets a reference to the given bool and assigns it to the CanDeleteTab field.

func (*QuoteTabView) SetConfigId

func (o *QuoteTabView) SetConfigId(v string)

SetConfigId gets a reference to the given string and assigns it to the ConfigId field.

func (*QuoteTabView) SetConnectWiseIntegratorOverride

func (o *QuoteTabView) SetConnectWiseIntegratorOverride(v string)

SetConnectWiseIntegratorOverride gets a reference to the given string and assigns it to the ConnectWiseIntegratorOverride field.

func (*QuoteTabView) SetConnectWiseOpInclude

func (o *QuoteTabView) SetConnectWiseOpInclude(v bool)

SetConnectWiseOpInclude gets a reference to the given bool and assigns it to the ConnectWiseOpInclude field.

func (*QuoteTabView) SetConnectWiseType

func (o *QuoteTabView) SetConnectWiseType(v string)

SetConnectWiseType gets a reference to the given string and assigns it to the ConnectWiseType field.

func (*QuoteTabView) SetContractEndDate

func (o *QuoteTabView) SetContractEndDate(v time.Time)

SetContractEndDate gets a reference to the given time.Time and assigns it to the ContractEndDate field.

func (*QuoteTabView) SetContractStartDate

func (o *QuoteTabView) SetContractStartDate(v time.Time)

SetContractStartDate gets a reference to the given time.Time and assigns it to the ContractStartDate field.

func (*QuoteTabView) SetCost

func (o *QuoteTabView) SetCost(v float64)

SetCost gets a reference to the given float64 and assigns it to the Cost field.

func (*QuoteTabView) SetCwForceTabForecast

func (o *QuoteTabView) SetCwForceTabForecast(v bool)

SetCwForceTabForecast gets a reference to the given bool and assigns it to the CwForceTabForecast field.

func (*QuoteTabView) SetCwForecastId

func (o *QuoteTabView) SetCwForecastId(v int32)

SetCwForecastId gets a reference to the given int32 and assigns it to the CwForecastId field.

func (*QuoteTabView) SetDisableAutoEtilizeSourcing

func (o *QuoteTabView) SetDisableAutoEtilizeSourcing(v bool)

SetDisableAutoEtilizeSourcing gets a reference to the given bool and assigns it to the DisableAutoEtilizeSourcing field.

func (*QuoteTabView) SetDiscount

func (o *QuoteTabView) SetDiscount(v float64)

SetDiscount gets a reference to the given float64 and assigns it to the Discount field.

func (*QuoteTabView) SetDiscountAmount

func (o *QuoteTabView) SetDiscountAmount(v float64)

SetDiscountAmount gets a reference to the given float64 and assigns it to the DiscountAmount field.

func (*QuoteTabView) SetDiscountAmountConverted

func (o *QuoteTabView) SetDiscountAmountConverted(v float64)

SetDiscountAmountConverted gets a reference to the given float64 and assigns it to the DiscountAmountConverted field.

func (*QuoteTabView) SetDynamicGpProfileId

func (o *QuoteTabView) SetDynamicGpProfileId(v string)

SetDynamicGpProfileId gets a reference to the given string and assigns it to the DynamicGpProfileId field.

func (*QuoteTabView) SetForceOpportunityItems

func (o *QuoteTabView) SetForceOpportunityItems(v bool)

SetForceOpportunityItems gets a reference to the given bool and assigns it to the ForceOpportunityItems field.

func (*QuoteTabView) SetForceZeroQuantity

func (o *QuoteTabView) SetForceZeroQuantity(v bool)

SetForceZeroQuantity gets a reference to the given bool and assigns it to the ForceZeroQuantity field.

func (*QuoteTabView) SetGoToProductSearchWhenTabIsEmpty

func (o *QuoteTabView) SetGoToProductSearchWhenTabIsEmpty(v bool)

SetGoToProductSearchWhenTabIsEmpty gets a reference to the given bool and assigns it to the GoToProductSearchWhenTabIsEmpty field.

func (*QuoteTabView) SetGridFormat

func (o *QuoteTabView) SetGridFormat(v string)

SetGridFormat gets a reference to the given string and assigns it to the GridFormat field.

func (*QuoteTabView) SetGrossMargin

func (o *QuoteTabView) SetGrossMargin(v float64)

SetGrossMargin gets a reference to the given float64 and assigns it to the GrossMargin field.

func (*QuoteTabView) SetGrossMarginAmount

func (o *QuoteTabView) SetGrossMarginAmount(v float64)

SetGrossMarginAmount gets a reference to the given float64 and assigns it to the GrossMarginAmount field.

func (*QuoteTabView) SetGroupRunningCost

func (o *QuoteTabView) SetGroupRunningCost(v float64)

SetGroupRunningCost gets a reference to the given float64 and assigns it to the GroupRunningCost field.

func (*QuoteTabView) SetGroupRunningOptionAmount

func (o *QuoteTabView) SetGroupRunningOptionAmount(v float64)

SetGroupRunningOptionAmount gets a reference to the given float64 and assigns it to the GroupRunningOptionAmount field.

func (*QuoteTabView) SetGroupRunningRecurringCost

func (o *QuoteTabView) SetGroupRunningRecurringCost(v float64)

SetGroupRunningRecurringCost gets a reference to the given float64 and assigns it to the GroupRunningRecurringCost field.

func (*QuoteTabView) SetGroupRunningRecurringOptionAmount

func (o *QuoteTabView) SetGroupRunningRecurringOptionAmount(v float64)

SetGroupRunningRecurringOptionAmount gets a reference to the given float64 and assigns it to the GroupRunningRecurringOptionAmount field.

func (*QuoteTabView) SetGroupRunningRecurringSubtotal

func (o *QuoteTabView) SetGroupRunningRecurringSubtotal(v float64)

SetGroupRunningRecurringSubtotal gets a reference to the given float64 and assigns it to the GroupRunningRecurringSubtotal field.

func (*QuoteTabView) SetGroupRunningRecurringTax

func (o *QuoteTabView) SetGroupRunningRecurringTax(v float64)

SetGroupRunningRecurringTax gets a reference to the given float64 and assigns it to the GroupRunningRecurringTax field.

func (*QuoteTabView) SetGroupRunningRecurringTotal

func (o *QuoteTabView) SetGroupRunningRecurringTotal(v float64)

SetGroupRunningRecurringTotal gets a reference to the given float64 and assigns it to the GroupRunningRecurringTotal field.

func (*QuoteTabView) SetGroupRunningSubtotal

func (o *QuoteTabView) SetGroupRunningSubtotal(v float64)

SetGroupRunningSubtotal gets a reference to the given float64 and assigns it to the GroupRunningSubtotal field.

func (*QuoteTabView) SetGroupRunningTax

func (o *QuoteTabView) SetGroupRunningTax(v float64)

SetGroupRunningTax gets a reference to the given float64 and assigns it to the GroupRunningTax field.

func (*QuoteTabView) SetGroupRunningTotal

func (o *QuoteTabView) SetGroupRunningTotal(v float64)

SetGroupRunningTotal gets a reference to the given float64 and assigns it to the GroupRunningTotal field.

func (*QuoteTabView) SetGst

func (o *QuoteTabView) SetGst(v float64)

SetGst gets a reference to the given float64 and assigns it to the Gst field.

func (*QuoteTabView) SetGstConverted

func (o *QuoteTabView) SetGstConverted(v float64)

SetGstConverted gets a reference to the given float64 and assigns it to the GstConverted field.

func (*QuoteTabView) SetHasLimitOnNewItems

func (o *QuoteTabView) SetHasLimitOnNewItems(v bool)

SetHasLimitOnNewItems gets a reference to the given bool and assigns it to the HasLimitOnNewItems field.

func (*QuoteTabView) SetHideMfp

func (o *QuoteTabView) SetHideMfp(v bool)

SetHideMfp gets a reference to the given bool and assigns it to the HideMfp field.

func (*QuoteTabView) SetHtmlNotes

func (o *QuoteTabView) SetHtmlNotes(v string)

SetHtmlNotes gets a reference to the given string and assigns it to the HtmlNotes field.

func (*QuoteTabView) SetId

func (o *QuoteTabView) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*QuoteTabView) SetIdRecurringRevenue

func (o *QuoteTabView) SetIdRecurringRevenue(v string)

SetIdRecurringRevenue gets a reference to the given string and assigns it to the IdRecurringRevenue field.

func (*QuoteTabView) SetIgnorePackageHeaderOnOpportunities

func (o *QuoteTabView) SetIgnorePackageHeaderOnOpportunities(v bool)

SetIgnorePackageHeaderOnOpportunities gets a reference to the given bool and assigns it to the IgnorePackageHeaderOnOpportunities field.

func (*QuoteTabView) SetInvoiceRouting

func (o *QuoteTabView) SetInvoiceRouting(v string)

SetInvoiceRouting gets a reference to the given string and assigns it to the InvoiceRouting field.

func (*QuoteTabView) SetIsGroupQuantityMaster

func (o *QuoteTabView) SetIsGroupQuantityMaster(v bool)

SetIsGroupQuantityMaster gets a reference to the given bool and assigns it to the IsGroupQuantityMaster field.

func (*QuoteTabView) SetIsHidden

func (o *QuoteTabView) SetIsHidden(v bool)

SetIsHidden gets a reference to the given bool and assigns it to the IsHidden field.

func (*QuoteTabView) SetIsOptional

func (o *QuoteTabView) SetIsOptional(v bool)

SetIsOptional gets a reference to the given bool and assigns it to the IsOptional field.

func (*QuoteTabView) SetIsPrinted

func (o *QuoteTabView) SetIsPrinted(v bool)

SetIsPrinted gets a reference to the given bool and assigns it to the IsPrinted field.

func (*QuoteTabView) SetIsProtectedTab

func (o *QuoteTabView) SetIsProtectedTab(v bool)

SetIsProtectedTab gets a reference to the given bool and assigns it to the IsProtectedTab field.

func (*QuoteTabView) SetIsShippingTab

func (o *QuoteTabView) SetIsShippingTab(v bool)

SetIsShippingTab gets a reference to the given bool and assigns it to the IsShippingTab field.

func (*QuoteTabView) SetIsSourcingExempt

func (o *QuoteTabView) SetIsSourcingExempt(v bool)

SetIsSourcingExempt gets a reference to the given bool and assigns it to the IsSourcingExempt field.

func (*QuoteTabView) SetIsTabTemplate

func (o *QuoteTabView) SetIsTabTemplate(v bool)

SetIsTabTemplate gets a reference to the given bool and assigns it to the IsTabTemplate field.

func (*QuoteTabView) SetIsTargetDiscount

func (o *QuoteTabView) SetIsTargetDiscount(v bool)

SetIsTargetDiscount gets a reference to the given bool and assigns it to the IsTargetDiscount field.

func (*QuoteTabView) SetIsTargetListDiscount

func (o *QuoteTabView) SetIsTargetListDiscount(v bool)

SetIsTargetListDiscount gets a reference to the given bool and assigns it to the IsTargetListDiscount field.

func (*QuoteTabView) SetIsTargetMargin

func (o *QuoteTabView) SetIsTargetMargin(v bool)

SetIsTargetMargin gets a reference to the given bool and assigns it to the IsTargetMargin field.

func (*QuoteTabView) SetIsTargetMarkup

func (o *QuoteTabView) SetIsTargetMarkup(v bool)

SetIsTargetMarkup gets a reference to the given bool and assigns it to the IsTargetMarkup field.

func (*QuoteTabView) SetIsTaxable

func (o *QuoteTabView) SetIsTaxable(v bool)

SetIsTaxable gets a reference to the given bool and assigns it to the IsTaxable field.

func (*QuoteTabView) SetIsTotalsIncluded

func (o *QuoteTabView) SetIsTotalsIncluded(v bool)

SetIsTotalsIncluded gets a reference to the given bool and assigns it to the IsTotalsIncluded field.

func (*QuoteTabView) SetLayoutGroup

func (o *QuoteTabView) SetLayoutGroup(v string)

SetLayoutGroup gets a reference to the given string and assigns it to the LayoutGroup field.

func (*QuoteTabView) SetLongDescription

func (o *QuoteTabView) SetLongDescription(v string)

SetLongDescription gets a reference to the given string and assigns it to the LongDescription field.

func (*QuoteTabView) SetMarkup

func (o *QuoteTabView) SetMarkup(v float64)

SetMarkup gets a reference to the given float64 and assigns it to the Markup field.

func (*QuoteTabView) SetName

func (o *QuoteTabView) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*QuoteTabView) SetNetMargin

func (o *QuoteTabView) SetNetMargin(v float64)

SetNetMargin gets a reference to the given float64 and assigns it to the NetMargin field.

func (*QuoteTabView) SetNetSuiteType

func (o *QuoteTabView) SetNetSuiteType(v string)

SetNetSuiteType gets a reference to the given string and assigns it to the NetSuiteType field.

func (*QuoteTabView) SetOppConvertRouting

func (o *QuoteTabView) SetOppConvertRouting(v string)

SetOppConvertRouting gets a reference to the given string and assigns it to the OppConvertRouting field.

func (*QuoteTabView) SetOppRecurringAsAdjustment

func (o *QuoteTabView) SetOppRecurringAsAdjustment(v bool)

SetOppRecurringAsAdjustment gets a reference to the given bool and assigns it to the OppRecurringAsAdjustment field.

func (*QuoteTabView) SetOptionalAmount

func (o *QuoteTabView) SetOptionalAmount(v float64)

SetOptionalAmount gets a reference to the given float64 and assigns it to the OptionalAmount field.

func (*QuoteTabView) SetOptionalAmountConverted

func (o *QuoteTabView) SetOptionalAmountConverted(v float64)

SetOptionalAmountConverted gets a reference to the given float64 and assigns it to the OptionalAmountConverted field.

func (*QuoteTabView) SetOptionalRecurring

func (o *QuoteTabView) SetOptionalRecurring(v float64)

SetOptionalRecurring gets a reference to the given float64 and assigns it to the OptionalRecurring field.

func (*QuoteTabView) SetOptionalSubtotal

func (o *QuoteTabView) SetOptionalSubtotal(v float64)

SetOptionalSubtotal gets a reference to the given float64 and assigns it to the OptionalSubtotal field.

func (*QuoteTabView) SetOptionalTax

func (o *QuoteTabView) SetOptionalTax(v float64)

SetOptionalTax gets a reference to the given float64 and assigns it to the OptionalTax field.

func (*QuoteTabView) SetOrderPorterGroup

func (o *QuoteTabView) SetOrderPorterGroup(v string)

SetOrderPorterGroup gets a reference to the given string and assigns it to the OrderPorterGroup field.

func (*QuoteTabView) SetOrderPorterRequired

func (o *QuoteTabView) SetOrderPorterRequired(v bool)

SetOrderPorterRequired gets a reference to the given bool and assigns it to the OrderPorterRequired field.

func (*QuoteTabView) SetOwner

func (o *QuoteTabView) SetOwner(v string)

SetOwner gets a reference to the given string and assigns it to the Owner field.

func (*QuoteTabView) SetPageBreak

func (o *QuoteTabView) SetPageBreak(v bool)

SetPageBreak gets a reference to the given bool and assigns it to the PageBreak field.

func (*QuoteTabView) SetPeriods

func (o *QuoteTabView) SetPeriods(v int32)

SetPeriods gets a reference to the given int32 and assigns it to the Periods field.

func (*QuoteTabView) SetPrice

func (o *QuoteTabView) SetPrice(v float64)

SetPrice gets a reference to the given float64 and assigns it to the Price field.

func (*QuoteTabView) SetPrimarySourceGroup

func (o *QuoteTabView) SetPrimarySourceGroup(v string)

SetPrimarySourceGroup gets a reference to the given string and assigns it to the PrimarySourceGroup field.

func (*QuoteTabView) SetProductSearchFormConfiguration

func (o *QuoteTabView) SetProductSearchFormConfiguration(v string)

SetProductSearchFormConfiguration gets a reference to the given string and assigns it to the ProductSearchFormConfiguration field.

func (*QuoteTabView) SetProductSearchPrefillMappingSet

func (o *QuoteTabView) SetProductSearchPrefillMappingSet(v string)

SetProductSearchPrefillMappingSet gets a reference to the given string and assigns it to the ProductSearchPrefillMappingSet field.

func (*QuoteTabView) SetPst

func (o *QuoteTabView) SetPst(v float64)

SetPst gets a reference to the given float64 and assigns it to the Pst field.

func (*QuoteTabView) SetPstConverted

func (o *QuoteTabView) SetPstConverted(v float64)

SetPstConverted gets a reference to the given float64 and assigns it to the PstConverted field.

func (*QuoteTabView) SetQuickBooksType

func (o *QuoteTabView) SetQuickBooksType(v string)

SetQuickBooksType gets a reference to the given string and assigns it to the QuickBooksType field.

func (*QuoteTabView) SetQuote

func (o *QuoteTabView) SetQuote(v ReferenceLink)

SetQuote gets a reference to the given ReferenceLink and assigns it to the Quote field.

func (*QuoteTabView) SetRecurringCost

func (o *QuoteTabView) SetRecurringCost(v float64)

SetRecurringCost gets a reference to the given float64 and assigns it to the RecurringCost field.

func (*QuoteTabView) SetRecurringDiscount

func (o *QuoteTabView) SetRecurringDiscount(v float64)

SetRecurringDiscount gets a reference to the given float64 and assigns it to the RecurringDiscount field.

func (*QuoteTabView) SetRecurringDiscountAmount

func (o *QuoteTabView) SetRecurringDiscountAmount(v float64)

SetRecurringDiscountAmount gets a reference to the given float64 and assigns it to the RecurringDiscountAmount field.

func (*QuoteTabView) SetRecurringGrossMargin

func (o *QuoteTabView) SetRecurringGrossMargin(v float64)

SetRecurringGrossMargin gets a reference to the given float64 and assigns it to the RecurringGrossMargin field.

func (*QuoteTabView) SetRecurringGrossMarginAmount

func (o *QuoteTabView) SetRecurringGrossMarginAmount(v float64)

SetRecurringGrossMarginAmount gets a reference to the given float64 and assigns it to the RecurringGrossMarginAmount field.

func (*QuoteTabView) SetRecurringGst

func (o *QuoteTabView) SetRecurringGst(v float64)

SetRecurringGst gets a reference to the given float64 and assigns it to the RecurringGst field.

func (*QuoteTabView) SetRecurringIsTaxable

func (o *QuoteTabView) SetRecurringIsTaxable(v float64)

SetRecurringIsTaxable gets a reference to the given float64 and assigns it to the RecurringIsTaxable field.

func (*QuoteTabView) SetRecurringLabel

func (o *QuoteTabView) SetRecurringLabel(v string)

SetRecurringLabel gets a reference to the given string and assigns it to the RecurringLabel field.

func (*QuoteTabView) SetRecurringMarkup

func (o *QuoteTabView) SetRecurringMarkup(v float64)

SetRecurringMarkup gets a reference to the given float64 and assigns it to the RecurringMarkup field.

func (*QuoteTabView) SetRecurringNetMargin

func (o *QuoteTabView) SetRecurringNetMargin(v float64)

SetRecurringNetMargin gets a reference to the given float64 and assigns it to the RecurringNetMargin field.

func (*QuoteTabView) SetRecurringOptionalSubtotal

func (o *QuoteTabView) SetRecurringOptionalSubtotal(v float64)

SetRecurringOptionalSubtotal gets a reference to the given float64 and assigns it to the RecurringOptionalSubtotal field.

func (*QuoteTabView) SetRecurringOptionalTax

func (o *QuoteTabView) SetRecurringOptionalTax(v float64)

SetRecurringOptionalTax gets a reference to the given float64 and assigns it to the RecurringOptionalTax field.

func (*QuoteTabView) SetRecurringPst

func (o *QuoteTabView) SetRecurringPst(v float64)

SetRecurringPst gets a reference to the given float64 and assigns it to the RecurringPst field.

func (*QuoteTabView) SetRecurringSubtotal

func (o *QuoteTabView) SetRecurringSubtotal(v float64)

SetRecurringSubtotal gets a reference to the given float64 and assigns it to the RecurringSubtotal field.

func (*QuoteTabView) SetRecurringSuggestedDiscountAmount

func (o *QuoteTabView) SetRecurringSuggestedDiscountAmount(v float64)

SetRecurringSuggestedDiscountAmount gets a reference to the given float64 and assigns it to the RecurringSuggestedDiscountAmount field.

func (*QuoteTabView) SetRecurringSuggestedTotal

func (o *QuoteTabView) SetRecurringSuggestedTotal(v float64)

SetRecurringSuggestedTotal gets a reference to the given float64 and assigns it to the RecurringSuggestedTotal field.

func (*QuoteTabView) SetRecurringTargetPriceControlType

func (o *QuoteTabView) SetRecurringTargetPriceControlType(v int32)

SetRecurringTargetPriceControlType gets a reference to the given int32 and assigns it to the RecurringTargetPriceControlType field.

func (*QuoteTabView) SetRecurringTargetPriceControlValue

func (o *QuoteTabView) SetRecurringTargetPriceControlValue(v float64)

SetRecurringTargetPriceControlValue gets a reference to the given float64 and assigns it to the RecurringTargetPriceControlValue field.

func (*QuoteTabView) SetRecurringTax

func (o *QuoteTabView) SetRecurringTax(v float64)

SetRecurringTax gets a reference to the given float64 and assigns it to the RecurringTax field.

func (*QuoteTabView) SetRecurringTotal

func (o *QuoteTabView) SetRecurringTotal(v float64)

SetRecurringTotal gets a reference to the given float64 and assigns it to the RecurringTotal field.

func (*QuoteTabView) SetRtfNotes

func (o *QuoteTabView) SetRtfNotes(v string)

SetRtfNotes gets a reference to the given string and assigns it to the RtfNotes field.

func (*QuoteTabView) SetShowLineItemQuickFilter

func (o *QuoteTabView) SetShowLineItemQuickFilter(v bool)

SetShowLineItemQuickFilter gets a reference to the given bool and assigns it to the ShowLineItemQuickFilter field.

func (*QuoteTabView) SetSubtotal

func (o *QuoteTabView) SetSubtotal(v float64)

SetSubtotal gets a reference to the given float64 and assigns it to the Subtotal field.

func (*QuoteTabView) SetSubtotalConverted

func (o *QuoteTabView) SetSubtotalConverted(v float64)

SetSubtotalConverted gets a reference to the given float64 and assigns it to the SubtotalConverted field.

func (*QuoteTabView) SetSuggestedDiscountAmount

func (o *QuoteTabView) SetSuggestedDiscountAmount(v float64)

SetSuggestedDiscountAmount gets a reference to the given float64 and assigns it to the SuggestedDiscountAmount field.

func (*QuoteTabView) SetSuggestedTotal

func (o *QuoteTabView) SetSuggestedTotal(v float64)

SetSuggestedTotal gets a reference to the given float64 and assigns it to the SuggestedTotal field.

func (*QuoteTabView) SetTabColor

func (o *QuoteTabView) SetTabColor(v string)

SetTabColor gets a reference to the given string and assigns it to the TabColor field.

func (*QuoteTabView) SetTabDescription

func (o *QuoteTabView) SetTabDescription(v string)

SetTabDescription gets a reference to the given string and assigns it to the TabDescription field.

func (*QuoteTabView) SetTabGroup

func (o *QuoteTabView) SetTabGroup(v string)

SetTabGroup gets a reference to the given string and assigns it to the TabGroup field.

func (*QuoteTabView) SetTabIdentifier

func (o *QuoteTabView) SetTabIdentifier(v string)

SetTabIdentifier gets a reference to the given string and assigns it to the TabIdentifier field.

func (*QuoteTabView) SetTabNotes

func (o *QuoteTabView) SetTabNotes(v string)

SetTabNotes gets a reference to the given string and assigns it to the TabNotes field.

func (*QuoteTabView) SetTabNumber

func (o *QuoteTabView) SetTabNumber(v int32)

SetTabNumber gets a reference to the given int32 and assigns it to the TabNumber field.

func (*QuoteTabView) SetTabSheetHtml1

func (o *QuoteTabView) SetTabSheetHtml1(v string)

SetTabSheetHtml1 gets a reference to the given string and assigns it to the TabSheetHtml1 field.

func (*QuoteTabView) SetTabSheetHtml2

func (o *QuoteTabView) SetTabSheetHtml2(v string)

SetTabSheetHtml2 gets a reference to the given string and assigns it to the TabSheetHtml2 field.

func (*QuoteTabView) SetTabSheetHtml3

func (o *QuoteTabView) SetTabSheetHtml3(v string)

SetTabSheetHtml3 gets a reference to the given string and assigns it to the TabSheetHtml3 field.

func (*QuoteTabView) SetTabSheetHtml4

func (o *QuoteTabView) SetTabSheetHtml4(v string)

SetTabSheetHtml4 gets a reference to the given string and assigns it to the TabSheetHtml4 field.

func (*QuoteTabView) SetTabSheetHtml5

func (o *QuoteTabView) SetTabSheetHtml5(v string)

SetTabSheetHtml5 gets a reference to the given string and assigns it to the TabSheetHtml5 field.

func (*QuoteTabView) SetTabTotal

func (o *QuoteTabView) SetTabTotal(v float64)

SetTabTotal gets a reference to the given float64 and assigns it to the TabTotal field.

func (*QuoteTabView) SetTabTotalConverted

func (o *QuoteTabView) SetTabTotalConverted(v float64)

SetTabTotalConverted gets a reference to the given float64 and assigns it to the TabTotalConverted field.

func (*QuoteTabView) SetTargetDiscount

func (o *QuoteTabView) SetTargetDiscount(v float64)

SetTargetDiscount gets a reference to the given float64 and assigns it to the TargetDiscount field.

func (*QuoteTabView) SetTargetMargin

func (o *QuoteTabView) SetTargetMargin(v float64)

SetTargetMargin gets a reference to the given float64 and assigns it to the TargetMargin field.

func (*QuoteTabView) SetTargetMarkup

func (o *QuoteTabView) SetTargetMarkup(v float64)

SetTargetMarkup gets a reference to the given float64 and assigns it to the TargetMarkup field.

func (*QuoteTabView) SetTargetSheet1

func (o *QuoteTabView) SetTargetSheet1(v string)

SetTargetSheet1 gets a reference to the given string and assigns it to the TargetSheet1 field.

func (*QuoteTabView) SetTargetSheet2

func (o *QuoteTabView) SetTargetSheet2(v string)

SetTargetSheet2 gets a reference to the given string and assigns it to the TargetSheet2 field.

func (*QuoteTabView) SetTargetSheet3

func (o *QuoteTabView) SetTargetSheet3(v string)

SetTargetSheet3 gets a reference to the given string and assigns it to the TargetSheet3 field.

func (*QuoteTabView) SetTargetSheet4

func (o *QuoteTabView) SetTargetSheet4(v string)

SetTargetSheet4 gets a reference to the given string and assigns it to the TargetSheet4 field.

func (*QuoteTabView) SetTargetSheet5

func (o *QuoteTabView) SetTargetSheet5(v string)

SetTargetSheet5 gets a reference to the given string and assigns it to the TargetSheet5 field.

func (*QuoteTabView) SetTax

func (o *QuoteTabView) SetTax(v float64)

SetTax gets a reference to the given float64 and assigns it to the Tax field.

func (*QuoteTabView) SetTaxCode

func (o *QuoteTabView) SetTaxCode(v string)

SetTaxCode gets a reference to the given string and assigns it to the TaxCode field.

func (*QuoteTabView) SetTaxConverted

func (o *QuoteTabView) SetTaxConverted(v float64)

SetTaxConverted gets a reference to the given float64 and assigns it to the TaxConverted field.

func (*QuoteTabView) SetTaxRate

func (o *QuoteTabView) SetTaxRate(v float64)

SetTaxRate gets a reference to the given float64 and assigns it to the TaxRate field.

func (*QuoteTabView) SetZCustomTabBool1

func (o *QuoteTabView) SetZCustomTabBool1(v bool)

SetZCustomTabBool1 gets a reference to the given bool and assigns it to the ZCustomTabBool1 field.

func (*QuoteTabView) SetZCustomTabBool2

func (o *QuoteTabView) SetZCustomTabBool2(v bool)

SetZCustomTabBool2 gets a reference to the given bool and assigns it to the ZCustomTabBool2 field.

func (*QuoteTabView) SetZCustomTabBool3

func (o *QuoteTabView) SetZCustomTabBool3(v bool)

SetZCustomTabBool3 gets a reference to the given bool and assigns it to the ZCustomTabBool3 field.

func (*QuoteTabView) SetZCustomTabBool4

func (o *QuoteTabView) SetZCustomTabBool4(v bool)

SetZCustomTabBool4 gets a reference to the given bool and assigns it to the ZCustomTabBool4 field.

func (*QuoteTabView) SetZCustomTabBool5

func (o *QuoteTabView) SetZCustomTabBool5(v bool)

SetZCustomTabBool5 gets a reference to the given bool and assigns it to the ZCustomTabBool5 field.

func (*QuoteTabView) SetZCustomTabBool6

func (o *QuoteTabView) SetZCustomTabBool6(v bool)

SetZCustomTabBool6 gets a reference to the given bool and assigns it to the ZCustomTabBool6 field.

func (*QuoteTabView) SetZCustomTabBool7

func (o *QuoteTabView) SetZCustomTabBool7(v bool)

SetZCustomTabBool7 gets a reference to the given bool and assigns it to the ZCustomTabBool7 field.

func (*QuoteTabView) SetZCustomTabBool8

func (o *QuoteTabView) SetZCustomTabBool8(v bool)

SetZCustomTabBool8 gets a reference to the given bool and assigns it to the ZCustomTabBool8 field.

func (*QuoteTabView) SetZCustomTabBool9

func (o *QuoteTabView) SetZCustomTabBool9(v bool)

SetZCustomTabBool9 gets a reference to the given bool and assigns it to the ZCustomTabBool9 field.

func (*QuoteTabView) SetZCustomTabBool10

func (o *QuoteTabView) SetZCustomTabBool10(v bool)

SetZCustomTabBool10 gets a reference to the given bool and assigns it to the ZCustomTabBool10 field.

func (*QuoteTabView) SetZCustomTabDate1

func (o *QuoteTabView) SetZCustomTabDate1(v time.Time)

SetZCustomTabDate1 gets a reference to the given time.Time and assigns it to the ZCustomTabDate1 field.

func (*QuoteTabView) SetZCustomTabDate2

func (o *QuoteTabView) SetZCustomTabDate2(v time.Time)

SetZCustomTabDate2 gets a reference to the given time.Time and assigns it to the ZCustomTabDate2 field.

func (*QuoteTabView) SetZCustomTabDecimal1

func (o *QuoteTabView) SetZCustomTabDecimal1(v float64)

SetZCustomTabDecimal1 gets a reference to the given float64 and assigns it to the ZCustomTabDecimal1 field.

func (*QuoteTabView) SetZCustomTabDecimal2

func (o *QuoteTabView) SetZCustomTabDecimal2(v float64)

SetZCustomTabDecimal2 gets a reference to the given float64 and assigns it to the ZCustomTabDecimal2 field.

func (*QuoteTabView) SetZCustomTabDecimal3

func (o *QuoteTabView) SetZCustomTabDecimal3(v float64)

SetZCustomTabDecimal3 gets a reference to the given float64 and assigns it to the ZCustomTabDecimal3 field.

func (*QuoteTabView) SetZCustomTabDecimal4

func (o *QuoteTabView) SetZCustomTabDecimal4(v float64)

SetZCustomTabDecimal4 gets a reference to the given float64 and assigns it to the ZCustomTabDecimal4 field.

func (*QuoteTabView) SetZCustomTabDecimal5

func (o *QuoteTabView) SetZCustomTabDecimal5(v float64)

SetZCustomTabDecimal5 gets a reference to the given float64 and assigns it to the ZCustomTabDecimal5 field.

func (*QuoteTabView) SetZCustomTabDecimal6

func (o *QuoteTabView) SetZCustomTabDecimal6(v float64)

SetZCustomTabDecimal6 gets a reference to the given float64 and assigns it to the ZCustomTabDecimal6 field.

func (*QuoteTabView) SetZCustomTabDecimal7

func (o *QuoteTabView) SetZCustomTabDecimal7(v float64)

SetZCustomTabDecimal7 gets a reference to the given float64 and assigns it to the ZCustomTabDecimal7 field.

func (*QuoteTabView) SetZCustomTabDecimal8

func (o *QuoteTabView) SetZCustomTabDecimal8(v float64)

SetZCustomTabDecimal8 gets a reference to the given float64 and assigns it to the ZCustomTabDecimal8 field.

func (*QuoteTabView) SetZCustomTabDecimal9

func (o *QuoteTabView) SetZCustomTabDecimal9(v float64)

SetZCustomTabDecimal9 gets a reference to the given float64 and assigns it to the ZCustomTabDecimal9 field.

func (*QuoteTabView) SetZCustomTabDecimal10

func (o *QuoteTabView) SetZCustomTabDecimal10(v float64)

SetZCustomTabDecimal10 gets a reference to the given float64 and assigns it to the ZCustomTabDecimal10 field.

func (*QuoteTabView) SetZCustomTabString1

func (o *QuoteTabView) SetZCustomTabString1(v string)

SetZCustomTabString1 gets a reference to the given string and assigns it to the ZCustomTabString1 field.

func (*QuoteTabView) SetZCustomTabString2

func (o *QuoteTabView) SetZCustomTabString2(v string)

SetZCustomTabString2 gets a reference to the given string and assigns it to the ZCustomTabString2 field.

func (*QuoteTabView) SetZCustomTabString3

func (o *QuoteTabView) SetZCustomTabString3(v string)

SetZCustomTabString3 gets a reference to the given string and assigns it to the ZCustomTabString3 field.

func (*QuoteTabView) SetZCustomTabString4

func (o *QuoteTabView) SetZCustomTabString4(v string)

SetZCustomTabString4 gets a reference to the given string and assigns it to the ZCustomTabString4 field.

func (*QuoteTabView) SetZCustomTabString5

func (o *QuoteTabView) SetZCustomTabString5(v string)

SetZCustomTabString5 gets a reference to the given string and assigns it to the ZCustomTabString5 field.

func (*QuoteTabView) SetZCustomTabString6

func (o *QuoteTabView) SetZCustomTabString6(v string)

SetZCustomTabString6 gets a reference to the given string and assigns it to the ZCustomTabString6 field.

func (*QuoteTabView) SetZCustomTabString7

func (o *QuoteTabView) SetZCustomTabString7(v string)

SetZCustomTabString7 gets a reference to the given string and assigns it to the ZCustomTabString7 field.

func (*QuoteTabView) SetZCustomTabString8

func (o *QuoteTabView) SetZCustomTabString8(v string)

SetZCustomTabString8 gets a reference to the given string and assigns it to the ZCustomTabString8 field.

func (*QuoteTabView) SetZCustomTabString9

func (o *QuoteTabView) SetZCustomTabString9(v string)

SetZCustomTabString9 gets a reference to the given string and assigns it to the ZCustomTabString9 field.

func (*QuoteTabView) SetZCustomTabString10

func (o *QuoteTabView) SetZCustomTabString10(v string)

SetZCustomTabString10 gets a reference to the given string and assigns it to the ZCustomTabString10 field.

func (*QuoteTabView) SetZCustomTabString11

func (o *QuoteTabView) SetZCustomTabString11(v string)

SetZCustomTabString11 gets a reference to the given string and assigns it to the ZCustomTabString11 field.

func (*QuoteTabView) SetZCustomTabString12

func (o *QuoteTabView) SetZCustomTabString12(v string)

SetZCustomTabString12 gets a reference to the given string and assigns it to the ZCustomTabString12 field.

func (*QuoteTabView) SetZCustomTabString13

func (o *QuoteTabView) SetZCustomTabString13(v string)

SetZCustomTabString13 gets a reference to the given string and assigns it to the ZCustomTabString13 field.

func (*QuoteTabView) SetZCustomTabString14

func (o *QuoteTabView) SetZCustomTabString14(v string)

SetZCustomTabString14 gets a reference to the given string and assigns it to the ZCustomTabString14 field.

func (*QuoteTabView) SetZCustomTabString15

func (o *QuoteTabView) SetZCustomTabString15(v string)

SetZCustomTabString15 gets a reference to the given string and assigns it to the ZCustomTabString15 field.

func (QuoteTabView) ToMap

func (o QuoteTabView) ToMap() (map[string]interface{}, error)

func (*QuoteTabView) UnmarshalJSON

func (o *QuoteTabView) UnmarshalJSON(data []byte) (err error)

type QuoteTabsAPIService

type QuoteTabsAPIService service

QuoteTabsAPIService QuoteTabsAPI service

func (*QuoteTabsAPIService) GetQuoteItemsByTabId

func (a *QuoteTabsAPIService) GetQuoteItemsByTabId(ctx context.Context, id string) ApiGetQuoteItemsByTabIdRequest

GetQuoteItemsByTabId Method for GetQuoteItemsByTabId

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiGetQuoteItemsByTabIdRequest

func (*QuoteTabsAPIService) GetQuoteItemsByTabIdExecute

func (a *QuoteTabsAPIService) GetQuoteItemsByTabIdExecute(r ApiGetQuoteItemsByTabIdRequest) ([]QuoteItemView, *http.Response, error)

Execute executes the request

@return []QuoteItemView

func (*QuoteTabsAPIService) GetQuoteTabs

GetQuoteTabs Method for GetQuoteTabs

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetQuoteTabsRequest

func (*QuoteTabsAPIService) GetQuoteTabsExecute

func (a *QuoteTabsAPIService) GetQuoteTabsExecute(r ApiGetQuoteTabsRequest) ([]QuoteTabView, *http.Response, error)

Execute executes the request

@return []QuoteTabView

type QuoteTabsQueryModel

type QuoteTabsQueryModel struct {
	// Set true for results from deleted or archived quotes. Set false to omit records from deleted or archive quotes. Defaults to true.
	ShowAllVersions *bool `json:"showAllVersions,omitempty"`
	// Comma separated list of fields to return.
	IncludeFields *string `json:"includeFields,omitempty"`
	// Conditional retrieve statements.
	Conditions *string `json:"conditions,omitempty"`
	// Page of results to get. 1-index based.
	Page *int32 `json:"page,omitempty"`
	// Page size of results to get. Max size 1000, default 50.
	PageSize             *int32 `json:"pageSize,omitempty"`
	AdditionalProperties map[string]interface{}
}

QuoteTabsQueryModel struct for QuoteTabsQueryModel

func NewQuoteTabsQueryModel

func NewQuoteTabsQueryModel() *QuoteTabsQueryModel

NewQuoteTabsQueryModel instantiates a new QuoteTabsQueryModel object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewQuoteTabsQueryModelWithDefaults

func NewQuoteTabsQueryModelWithDefaults() *QuoteTabsQueryModel

NewQuoteTabsQueryModelWithDefaults instantiates a new QuoteTabsQueryModel object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*QuoteTabsQueryModel) GetConditions

func (o *QuoteTabsQueryModel) GetConditions() string

GetConditions returns the Conditions field value if set, zero value otherwise.

func (*QuoteTabsQueryModel) GetConditionsOk

func (o *QuoteTabsQueryModel) GetConditionsOk() (*string, bool)

GetConditionsOk returns a tuple with the Conditions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabsQueryModel) GetIncludeFields

func (o *QuoteTabsQueryModel) GetIncludeFields() string

GetIncludeFields returns the IncludeFields field value if set, zero value otherwise.

func (*QuoteTabsQueryModel) GetIncludeFieldsOk

func (o *QuoteTabsQueryModel) GetIncludeFieldsOk() (*string, bool)

GetIncludeFieldsOk returns a tuple with the IncludeFields field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabsQueryModel) GetPage

func (o *QuoteTabsQueryModel) GetPage() int32

GetPage returns the Page field value if set, zero value otherwise.

func (*QuoteTabsQueryModel) GetPageOk

func (o *QuoteTabsQueryModel) GetPageOk() (*int32, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabsQueryModel) GetPageSize

func (o *QuoteTabsQueryModel) GetPageSize() int32

GetPageSize returns the PageSize field value if set, zero value otherwise.

func (*QuoteTabsQueryModel) GetPageSizeOk

func (o *QuoteTabsQueryModel) GetPageSizeOk() (*int32, bool)

GetPageSizeOk returns a tuple with the PageSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabsQueryModel) GetShowAllVersions

func (o *QuoteTabsQueryModel) GetShowAllVersions() bool

GetShowAllVersions returns the ShowAllVersions field value if set, zero value otherwise.

func (*QuoteTabsQueryModel) GetShowAllVersionsOk

func (o *QuoteTabsQueryModel) GetShowAllVersionsOk() (*bool, bool)

GetShowAllVersionsOk returns a tuple with the ShowAllVersions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTabsQueryModel) HasConditions

func (o *QuoteTabsQueryModel) HasConditions() bool

HasConditions returns a boolean if a field has been set.

func (*QuoteTabsQueryModel) HasIncludeFields

func (o *QuoteTabsQueryModel) HasIncludeFields() bool

HasIncludeFields returns a boolean if a field has been set.

func (*QuoteTabsQueryModel) HasPage

func (o *QuoteTabsQueryModel) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*QuoteTabsQueryModel) HasPageSize

func (o *QuoteTabsQueryModel) HasPageSize() bool

HasPageSize returns a boolean if a field has been set.

func (*QuoteTabsQueryModel) HasShowAllVersions

func (o *QuoteTabsQueryModel) HasShowAllVersions() bool

HasShowAllVersions returns a boolean if a field has been set.

func (QuoteTabsQueryModel) MarshalJSON

func (o QuoteTabsQueryModel) MarshalJSON() ([]byte, error)

func (*QuoteTabsQueryModel) SetConditions

func (o *QuoteTabsQueryModel) SetConditions(v string)

SetConditions gets a reference to the given string and assigns it to the Conditions field.

func (*QuoteTabsQueryModel) SetIncludeFields

func (o *QuoteTabsQueryModel) SetIncludeFields(v string)

SetIncludeFields gets a reference to the given string and assigns it to the IncludeFields field.

func (*QuoteTabsQueryModel) SetPage

func (o *QuoteTabsQueryModel) SetPage(v int32)

SetPage gets a reference to the given int32 and assigns it to the Page field.

func (*QuoteTabsQueryModel) SetPageSize

func (o *QuoteTabsQueryModel) SetPageSize(v int32)

SetPageSize gets a reference to the given int32 and assigns it to the PageSize field.

func (*QuoteTabsQueryModel) SetShowAllVersions

func (o *QuoteTabsQueryModel) SetShowAllVersions(v bool)

SetShowAllVersions gets a reference to the given bool and assigns it to the ShowAllVersions field.

func (QuoteTabsQueryModel) ToMap

func (o QuoteTabsQueryModel) ToMap() (map[string]interface{}, error)

func (*QuoteTabsQueryModel) UnmarshalJSON

func (o *QuoteTabsQueryModel) UnmarshalJSON(data []byte) (err error)

type QuoteTermView

type QuoteTermView struct {
	// This field is Read Only.
	Id *string `json:"id,omitempty"`
	// This field is Read Only.
	IdQuote         *string  `json:"idQuote,omitempty"`
	Periods         *float64 `json:"periods,omitempty"`
	InterestRate    *float64 `json:"interestRate,omitempty"`
	DownPayment     *float64 `json:"downPayment,omitempty"`
	DiscountAmount  *float64 `json:"discountAmount,omitempty"`
	DiscountPercent *float64 `json:"discountPercent,omitempty"`
	// This field is Read Only.
	TotalAmount *float64 `json:"totalAmount,omitempty"`
	// This field is Read Only.
	Principal *float64 `json:"principal,omitempty"`
	// This field is Read Only.
	PeriodPaymentAmount      *float64 `json:"periodPaymentAmount,omitempty"`
	PeriodInterval           *string  `json:"periodInterval,omitempty"`
	IsSelected               *bool    `json:"isSelected,omitempty"`
	RecurringDiscountAmount  *float64 `json:"recurringDiscountAmount,omitempty"`
	RecurringDiscountPercent *float64 `json:"recurringDiscountPercent,omitempty"`
	// This field is Read Only.
	RecurringTotalAmount *float64 `json:"recurringTotalAmount,omitempty"`
	FinancingGroup       *string  `json:"financingGroup,omitempty"`
	Name                 *string  `json:"name,omitempty"`
	Description          *string  `json:"description,omitempty"`
	// This field is Read Only.
	RecurringBeforeDiscount      *float64 `json:"recurringBeforeDiscount,omitempty"`
	TabGroup                     *string  `json:"tabGroup,omitempty"`
	GroupSort                    *float64 `json:"groupSort,omitempty"`
	NameSort                     *float64 `json:"nameSort,omitempty"`
	TabName                      *string  `json:"tabName,omitempty"`
	TotalAmountOverride          *float64 `json:"totalAmountOverride,omitempty"`
	RecurringTotalAmountOverride *float64 `json:"recurringTotalAmountOverride,omitempty"`
	IdRecurringRevenue           *string  `json:"idRecurringRevenue,omitempty"`
	RecurringPeriods             *float64 `json:"recurringPeriods,omitempty"`
	// This field is Read Only.
	RecurringTotalAggregated    *float64   `json:"recurringTotalAggregated,omitempty"`
	SubscriptionName            *string    `json:"subscriptionName,omitempty"`
	IsAutomaticallyBillable     *bool      `json:"isAutomaticallyBillable,omitempty"`
	OverrideStartDate           *time.Time `json:"overrideStartDate,omitempty"`
	StartDateMode               *string    `json:"startDateMode,omitempty"`
	AuthorizeNetIntervalUnit    *string    `json:"authorizeNetIntervalUnit,omitempty"`
	AuthorizeNetIntervalLength  *int32     `json:"authorizeNetIntervalLength,omitempty"`
	AuthorizeNetTotalOccurances *int32     `json:"authorizeNetTotalOccurances,omitempty"`
	IntervalToStart             *int32     `json:"intervalToStart,omitempty"`
	OppRecurringAsAdjustment    *bool      `json:"oppRecurringAsAdjustment,omitempty"`
	SpreadOneTime               *bool      `json:"spreadOneTime,omitempty"`
	IsPrinted                   *bool      `json:"isPrinted,omitempty"`
	// This field is Read Only.
	RecurringRevenueLabel  *string  `json:"recurringRevenueLabel,omitempty"`
	TabExcludeFilter       *string  `json:"tabExcludeFilter,omitempty"`
	TabIncludeFilter       *string  `json:"tabIncludeFilter,omitempty"`
	IsRoundedPayments      *bool    `json:"isRoundedPayments,omitempty"`
	ObeyStandardTabFilters *bool    `json:"obeyStandardTabFilters,omitempty"`
	LeasingName            *string  `json:"leasingName,omitempty"`
	LeasingRate            *float64 `json:"leasingRate,omitempty"`
	LeasingRateOverride    *float64 `json:"leasingRateOverride,omitempty"`
	IsLease                *bool    `json:"isLease,omitempty"`
	LeaseMonthlyAmount     *float64 `json:"leaseMonthlyAmount,omitempty"`
	LeaseDownPayment       *float64 `json:"leaseDownPayment,omitempty"`
	IdLeasingRates         *string  `json:"idLeasingRates,omitempty"`
	LeaseSource            *string  `json:"leaseSource,omitempty"`
	LeaseType              *string  `json:"leaseType,omitempty"`
	LeaseTypeDescription   *string  `json:"leaseTypeDescription,omitempty"`
	LeaseRateCardNumber    *string  `json:"leaseRateCardNumber,omitempty"`
	ForceIncludeInForecast *bool    `json:"forceIncludeInForecast,omitempty"`
	ForceExcludeInForecast *bool    `json:"forceExcludeInForecast,omitempty"`
	// This field is Read Only.
	Cost *float64 `json:"cost,omitempty"`
	// This field is Read Only.
	RecurringCost             *float64 `json:"recurringCost,omitempty"`
	AgreementType             *string  `json:"agreementType,omitempty"`
	AgreementStartDateDefault *string  `json:"agreementStartDateDefault,omitempty"`
	AdditionalProperties      map[string]interface{}
}

QuoteTermView struct for QuoteTermView

func NewQuoteTermView

func NewQuoteTermView() *QuoteTermView

NewQuoteTermView instantiates a new QuoteTermView object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewQuoteTermViewWithDefaults

func NewQuoteTermViewWithDefaults() *QuoteTermView

NewQuoteTermViewWithDefaults instantiates a new QuoteTermView object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*QuoteTermView) GetAgreementStartDateDefault

func (o *QuoteTermView) GetAgreementStartDateDefault() string

GetAgreementStartDateDefault returns the AgreementStartDateDefault field value if set, zero value otherwise.

func (*QuoteTermView) GetAgreementStartDateDefaultOk

func (o *QuoteTermView) GetAgreementStartDateDefaultOk() (*string, bool)

GetAgreementStartDateDefaultOk returns a tuple with the AgreementStartDateDefault field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetAgreementType

func (o *QuoteTermView) GetAgreementType() string

GetAgreementType returns the AgreementType field value if set, zero value otherwise.

func (*QuoteTermView) GetAgreementTypeOk

func (o *QuoteTermView) GetAgreementTypeOk() (*string, bool)

GetAgreementTypeOk returns a tuple with the AgreementType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetAuthorizeNetIntervalLength

func (o *QuoteTermView) GetAuthorizeNetIntervalLength() int32

GetAuthorizeNetIntervalLength returns the AuthorizeNetIntervalLength field value if set, zero value otherwise.

func (*QuoteTermView) GetAuthorizeNetIntervalLengthOk

func (o *QuoteTermView) GetAuthorizeNetIntervalLengthOk() (*int32, bool)

GetAuthorizeNetIntervalLengthOk returns a tuple with the AuthorizeNetIntervalLength field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetAuthorizeNetIntervalUnit

func (o *QuoteTermView) GetAuthorizeNetIntervalUnit() string

GetAuthorizeNetIntervalUnit returns the AuthorizeNetIntervalUnit field value if set, zero value otherwise.

func (*QuoteTermView) GetAuthorizeNetIntervalUnitOk

func (o *QuoteTermView) GetAuthorizeNetIntervalUnitOk() (*string, bool)

GetAuthorizeNetIntervalUnitOk returns a tuple with the AuthorizeNetIntervalUnit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetAuthorizeNetTotalOccurances

func (o *QuoteTermView) GetAuthorizeNetTotalOccurances() int32

GetAuthorizeNetTotalOccurances returns the AuthorizeNetTotalOccurances field value if set, zero value otherwise.

func (*QuoteTermView) GetAuthorizeNetTotalOccurancesOk

func (o *QuoteTermView) GetAuthorizeNetTotalOccurancesOk() (*int32, bool)

GetAuthorizeNetTotalOccurancesOk returns a tuple with the AuthorizeNetTotalOccurances field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetCost

func (o *QuoteTermView) GetCost() float64

GetCost returns the Cost field value if set, zero value otherwise.

func (*QuoteTermView) GetCostOk

func (o *QuoteTermView) GetCostOk() (*float64, bool)

GetCostOk returns a tuple with the Cost field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetDescription

func (o *QuoteTermView) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*QuoteTermView) GetDescriptionOk

func (o *QuoteTermView) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetDiscountAmount

func (o *QuoteTermView) GetDiscountAmount() float64

GetDiscountAmount returns the DiscountAmount field value if set, zero value otherwise.

func (*QuoteTermView) GetDiscountAmountOk

func (o *QuoteTermView) GetDiscountAmountOk() (*float64, bool)

GetDiscountAmountOk returns a tuple with the DiscountAmount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetDiscountPercent

func (o *QuoteTermView) GetDiscountPercent() float64

GetDiscountPercent returns the DiscountPercent field value if set, zero value otherwise.

func (*QuoteTermView) GetDiscountPercentOk

func (o *QuoteTermView) GetDiscountPercentOk() (*float64, bool)

GetDiscountPercentOk returns a tuple with the DiscountPercent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetDownPayment

func (o *QuoteTermView) GetDownPayment() float64

GetDownPayment returns the DownPayment field value if set, zero value otherwise.

func (*QuoteTermView) GetDownPaymentOk

func (o *QuoteTermView) GetDownPaymentOk() (*float64, bool)

GetDownPaymentOk returns a tuple with the DownPayment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetFinancingGroup

func (o *QuoteTermView) GetFinancingGroup() string

GetFinancingGroup returns the FinancingGroup field value if set, zero value otherwise.

func (*QuoteTermView) GetFinancingGroupOk

func (o *QuoteTermView) GetFinancingGroupOk() (*string, bool)

GetFinancingGroupOk returns a tuple with the FinancingGroup field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetForceExcludeInForecast

func (o *QuoteTermView) GetForceExcludeInForecast() bool

GetForceExcludeInForecast returns the ForceExcludeInForecast field value if set, zero value otherwise.

func (*QuoteTermView) GetForceExcludeInForecastOk

func (o *QuoteTermView) GetForceExcludeInForecastOk() (*bool, bool)

GetForceExcludeInForecastOk returns a tuple with the ForceExcludeInForecast field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetForceIncludeInForecast

func (o *QuoteTermView) GetForceIncludeInForecast() bool

GetForceIncludeInForecast returns the ForceIncludeInForecast field value if set, zero value otherwise.

func (*QuoteTermView) GetForceIncludeInForecastOk

func (o *QuoteTermView) GetForceIncludeInForecastOk() (*bool, bool)

GetForceIncludeInForecastOk returns a tuple with the ForceIncludeInForecast field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetGroupSort

func (o *QuoteTermView) GetGroupSort() float64

GetGroupSort returns the GroupSort field value if set, zero value otherwise.

func (*QuoteTermView) GetGroupSortOk

func (o *QuoteTermView) GetGroupSortOk() (*float64, bool)

GetGroupSortOk returns a tuple with the GroupSort field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetId

func (o *QuoteTermView) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*QuoteTermView) GetIdLeasingRates

func (o *QuoteTermView) GetIdLeasingRates() string

GetIdLeasingRates returns the IdLeasingRates field value if set, zero value otherwise.

func (*QuoteTermView) GetIdLeasingRatesOk

func (o *QuoteTermView) GetIdLeasingRatesOk() (*string, bool)

GetIdLeasingRatesOk returns a tuple with the IdLeasingRates field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetIdOk

func (o *QuoteTermView) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetIdQuote

func (o *QuoteTermView) GetIdQuote() string

GetIdQuote returns the IdQuote field value if set, zero value otherwise.

func (*QuoteTermView) GetIdQuoteOk

func (o *QuoteTermView) GetIdQuoteOk() (*string, bool)

GetIdQuoteOk returns a tuple with the IdQuote field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetIdRecurringRevenue

func (o *QuoteTermView) GetIdRecurringRevenue() string

GetIdRecurringRevenue returns the IdRecurringRevenue field value if set, zero value otherwise.

func (*QuoteTermView) GetIdRecurringRevenueOk

func (o *QuoteTermView) GetIdRecurringRevenueOk() (*string, bool)

GetIdRecurringRevenueOk returns a tuple with the IdRecurringRevenue field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetInterestRate

func (o *QuoteTermView) GetInterestRate() float64

GetInterestRate returns the InterestRate field value if set, zero value otherwise.

func (*QuoteTermView) GetInterestRateOk

func (o *QuoteTermView) GetInterestRateOk() (*float64, bool)

GetInterestRateOk returns a tuple with the InterestRate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetIntervalToStart

func (o *QuoteTermView) GetIntervalToStart() int32

GetIntervalToStart returns the IntervalToStart field value if set, zero value otherwise.

func (*QuoteTermView) GetIntervalToStartOk

func (o *QuoteTermView) GetIntervalToStartOk() (*int32, bool)

GetIntervalToStartOk returns a tuple with the IntervalToStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetIsAutomaticallyBillable

func (o *QuoteTermView) GetIsAutomaticallyBillable() bool

GetIsAutomaticallyBillable returns the IsAutomaticallyBillable field value if set, zero value otherwise.

func (*QuoteTermView) GetIsAutomaticallyBillableOk

func (o *QuoteTermView) GetIsAutomaticallyBillableOk() (*bool, bool)

GetIsAutomaticallyBillableOk returns a tuple with the IsAutomaticallyBillable field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetIsLease

func (o *QuoteTermView) GetIsLease() bool

GetIsLease returns the IsLease field value if set, zero value otherwise.

func (*QuoteTermView) GetIsLeaseOk

func (o *QuoteTermView) GetIsLeaseOk() (*bool, bool)

GetIsLeaseOk returns a tuple with the IsLease field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetIsPrinted

func (o *QuoteTermView) GetIsPrinted() bool

GetIsPrinted returns the IsPrinted field value if set, zero value otherwise.

func (*QuoteTermView) GetIsPrintedOk

func (o *QuoteTermView) GetIsPrintedOk() (*bool, bool)

GetIsPrintedOk returns a tuple with the IsPrinted field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetIsRoundedPayments

func (o *QuoteTermView) GetIsRoundedPayments() bool

GetIsRoundedPayments returns the IsRoundedPayments field value if set, zero value otherwise.

func (*QuoteTermView) GetIsRoundedPaymentsOk

func (o *QuoteTermView) GetIsRoundedPaymentsOk() (*bool, bool)

GetIsRoundedPaymentsOk returns a tuple with the IsRoundedPayments field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetIsSelected

func (o *QuoteTermView) GetIsSelected() bool

GetIsSelected returns the IsSelected field value if set, zero value otherwise.

func (*QuoteTermView) GetIsSelectedOk

func (o *QuoteTermView) GetIsSelectedOk() (*bool, bool)

GetIsSelectedOk returns a tuple with the IsSelected field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetLeaseDownPayment

func (o *QuoteTermView) GetLeaseDownPayment() float64

GetLeaseDownPayment returns the LeaseDownPayment field value if set, zero value otherwise.

func (*QuoteTermView) GetLeaseDownPaymentOk

func (o *QuoteTermView) GetLeaseDownPaymentOk() (*float64, bool)

GetLeaseDownPaymentOk returns a tuple with the LeaseDownPayment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetLeaseMonthlyAmount

func (o *QuoteTermView) GetLeaseMonthlyAmount() float64

GetLeaseMonthlyAmount returns the LeaseMonthlyAmount field value if set, zero value otherwise.

func (*QuoteTermView) GetLeaseMonthlyAmountOk

func (o *QuoteTermView) GetLeaseMonthlyAmountOk() (*float64, bool)

GetLeaseMonthlyAmountOk returns a tuple with the LeaseMonthlyAmount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetLeaseRateCardNumber

func (o *QuoteTermView) GetLeaseRateCardNumber() string

GetLeaseRateCardNumber returns the LeaseRateCardNumber field value if set, zero value otherwise.

func (*QuoteTermView) GetLeaseRateCardNumberOk

func (o *QuoteTermView) GetLeaseRateCardNumberOk() (*string, bool)

GetLeaseRateCardNumberOk returns a tuple with the LeaseRateCardNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetLeaseSource

func (o *QuoteTermView) GetLeaseSource() string

GetLeaseSource returns the LeaseSource field value if set, zero value otherwise.

func (*QuoteTermView) GetLeaseSourceOk

func (o *QuoteTermView) GetLeaseSourceOk() (*string, bool)

GetLeaseSourceOk returns a tuple with the LeaseSource field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetLeaseType

func (o *QuoteTermView) GetLeaseType() string

GetLeaseType returns the LeaseType field value if set, zero value otherwise.

func (*QuoteTermView) GetLeaseTypeDescription

func (o *QuoteTermView) GetLeaseTypeDescription() string

GetLeaseTypeDescription returns the LeaseTypeDescription field value if set, zero value otherwise.

func (*QuoteTermView) GetLeaseTypeDescriptionOk

func (o *QuoteTermView) GetLeaseTypeDescriptionOk() (*string, bool)

GetLeaseTypeDescriptionOk returns a tuple with the LeaseTypeDescription field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetLeaseTypeOk

func (o *QuoteTermView) GetLeaseTypeOk() (*string, bool)

GetLeaseTypeOk returns a tuple with the LeaseType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetLeasingName

func (o *QuoteTermView) GetLeasingName() string

GetLeasingName returns the LeasingName field value if set, zero value otherwise.

func (*QuoteTermView) GetLeasingNameOk

func (o *QuoteTermView) GetLeasingNameOk() (*string, bool)

GetLeasingNameOk returns a tuple with the LeasingName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetLeasingRate

func (o *QuoteTermView) GetLeasingRate() float64

GetLeasingRate returns the LeasingRate field value if set, zero value otherwise.

func (*QuoteTermView) GetLeasingRateOk

func (o *QuoteTermView) GetLeasingRateOk() (*float64, bool)

GetLeasingRateOk returns a tuple with the LeasingRate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetLeasingRateOverride

func (o *QuoteTermView) GetLeasingRateOverride() float64

GetLeasingRateOverride returns the LeasingRateOverride field value if set, zero value otherwise.

func (*QuoteTermView) GetLeasingRateOverrideOk

func (o *QuoteTermView) GetLeasingRateOverrideOk() (*float64, bool)

GetLeasingRateOverrideOk returns a tuple with the LeasingRateOverride field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetName

func (o *QuoteTermView) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*QuoteTermView) GetNameOk

func (o *QuoteTermView) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetNameSort

func (o *QuoteTermView) GetNameSort() float64

GetNameSort returns the NameSort field value if set, zero value otherwise.

func (*QuoteTermView) GetNameSortOk

func (o *QuoteTermView) GetNameSortOk() (*float64, bool)

GetNameSortOk returns a tuple with the NameSort field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetObeyStandardTabFilters

func (o *QuoteTermView) GetObeyStandardTabFilters() bool

GetObeyStandardTabFilters returns the ObeyStandardTabFilters field value if set, zero value otherwise.

func (*QuoteTermView) GetObeyStandardTabFiltersOk

func (o *QuoteTermView) GetObeyStandardTabFiltersOk() (*bool, bool)

GetObeyStandardTabFiltersOk returns a tuple with the ObeyStandardTabFilters field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetOppRecurringAsAdjustment

func (o *QuoteTermView) GetOppRecurringAsAdjustment() bool

GetOppRecurringAsAdjustment returns the OppRecurringAsAdjustment field value if set, zero value otherwise.

func (*QuoteTermView) GetOppRecurringAsAdjustmentOk

func (o *QuoteTermView) GetOppRecurringAsAdjustmentOk() (*bool, bool)

GetOppRecurringAsAdjustmentOk returns a tuple with the OppRecurringAsAdjustment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetOverrideStartDate

func (o *QuoteTermView) GetOverrideStartDate() time.Time

GetOverrideStartDate returns the OverrideStartDate field value if set, zero value otherwise.

func (*QuoteTermView) GetOverrideStartDateOk

func (o *QuoteTermView) GetOverrideStartDateOk() (*time.Time, bool)

GetOverrideStartDateOk returns a tuple with the OverrideStartDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetPeriodInterval

func (o *QuoteTermView) GetPeriodInterval() string

GetPeriodInterval returns the PeriodInterval field value if set, zero value otherwise.

func (*QuoteTermView) GetPeriodIntervalOk

func (o *QuoteTermView) GetPeriodIntervalOk() (*string, bool)

GetPeriodIntervalOk returns a tuple with the PeriodInterval field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetPeriodPaymentAmount

func (o *QuoteTermView) GetPeriodPaymentAmount() float64

GetPeriodPaymentAmount returns the PeriodPaymentAmount field value if set, zero value otherwise.

func (*QuoteTermView) GetPeriodPaymentAmountOk

func (o *QuoteTermView) GetPeriodPaymentAmountOk() (*float64, bool)

GetPeriodPaymentAmountOk returns a tuple with the PeriodPaymentAmount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetPeriods

func (o *QuoteTermView) GetPeriods() float64

GetPeriods returns the Periods field value if set, zero value otherwise.

func (*QuoteTermView) GetPeriodsOk

func (o *QuoteTermView) GetPeriodsOk() (*float64, bool)

GetPeriodsOk returns a tuple with the Periods field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetPrincipal

func (o *QuoteTermView) GetPrincipal() float64

GetPrincipal returns the Principal field value if set, zero value otherwise.

func (*QuoteTermView) GetPrincipalOk

func (o *QuoteTermView) GetPrincipalOk() (*float64, bool)

GetPrincipalOk returns a tuple with the Principal field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetRecurringBeforeDiscount

func (o *QuoteTermView) GetRecurringBeforeDiscount() float64

GetRecurringBeforeDiscount returns the RecurringBeforeDiscount field value if set, zero value otherwise.

func (*QuoteTermView) GetRecurringBeforeDiscountOk

func (o *QuoteTermView) GetRecurringBeforeDiscountOk() (*float64, bool)

GetRecurringBeforeDiscountOk returns a tuple with the RecurringBeforeDiscount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetRecurringCost

func (o *QuoteTermView) GetRecurringCost() float64

GetRecurringCost returns the RecurringCost field value if set, zero value otherwise.

func (*QuoteTermView) GetRecurringCostOk

func (o *QuoteTermView) GetRecurringCostOk() (*float64, bool)

GetRecurringCostOk returns a tuple with the RecurringCost field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetRecurringDiscountAmount

func (o *QuoteTermView) GetRecurringDiscountAmount() float64

GetRecurringDiscountAmount returns the RecurringDiscountAmount field value if set, zero value otherwise.

func (*QuoteTermView) GetRecurringDiscountAmountOk

func (o *QuoteTermView) GetRecurringDiscountAmountOk() (*float64, bool)

GetRecurringDiscountAmountOk returns a tuple with the RecurringDiscountAmount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetRecurringDiscountPercent

func (o *QuoteTermView) GetRecurringDiscountPercent() float64

GetRecurringDiscountPercent returns the RecurringDiscountPercent field value if set, zero value otherwise.

func (*QuoteTermView) GetRecurringDiscountPercentOk

func (o *QuoteTermView) GetRecurringDiscountPercentOk() (*float64, bool)

GetRecurringDiscountPercentOk returns a tuple with the RecurringDiscountPercent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetRecurringPeriods

func (o *QuoteTermView) GetRecurringPeriods() float64

GetRecurringPeriods returns the RecurringPeriods field value if set, zero value otherwise.

func (*QuoteTermView) GetRecurringPeriodsOk

func (o *QuoteTermView) GetRecurringPeriodsOk() (*float64, bool)

GetRecurringPeriodsOk returns a tuple with the RecurringPeriods field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetRecurringRevenueLabel

func (o *QuoteTermView) GetRecurringRevenueLabel() string

GetRecurringRevenueLabel returns the RecurringRevenueLabel field value if set, zero value otherwise.

func (*QuoteTermView) GetRecurringRevenueLabelOk

func (o *QuoteTermView) GetRecurringRevenueLabelOk() (*string, bool)

GetRecurringRevenueLabelOk returns a tuple with the RecurringRevenueLabel field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetRecurringTotalAggregated

func (o *QuoteTermView) GetRecurringTotalAggregated() float64

GetRecurringTotalAggregated returns the RecurringTotalAggregated field value if set, zero value otherwise.

func (*QuoteTermView) GetRecurringTotalAggregatedOk

func (o *QuoteTermView) GetRecurringTotalAggregatedOk() (*float64, bool)

GetRecurringTotalAggregatedOk returns a tuple with the RecurringTotalAggregated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetRecurringTotalAmount

func (o *QuoteTermView) GetRecurringTotalAmount() float64

GetRecurringTotalAmount returns the RecurringTotalAmount field value if set, zero value otherwise.

func (*QuoteTermView) GetRecurringTotalAmountOk

func (o *QuoteTermView) GetRecurringTotalAmountOk() (*float64, bool)

GetRecurringTotalAmountOk returns a tuple with the RecurringTotalAmount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetRecurringTotalAmountOverride

func (o *QuoteTermView) GetRecurringTotalAmountOverride() float64

GetRecurringTotalAmountOverride returns the RecurringTotalAmountOverride field value if set, zero value otherwise.

func (*QuoteTermView) GetRecurringTotalAmountOverrideOk

func (o *QuoteTermView) GetRecurringTotalAmountOverrideOk() (*float64, bool)

GetRecurringTotalAmountOverrideOk returns a tuple with the RecurringTotalAmountOverride field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetSpreadOneTime

func (o *QuoteTermView) GetSpreadOneTime() bool

GetSpreadOneTime returns the SpreadOneTime field value if set, zero value otherwise.

func (*QuoteTermView) GetSpreadOneTimeOk

func (o *QuoteTermView) GetSpreadOneTimeOk() (*bool, bool)

GetSpreadOneTimeOk returns a tuple with the SpreadOneTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetStartDateMode

func (o *QuoteTermView) GetStartDateMode() string

GetStartDateMode returns the StartDateMode field value if set, zero value otherwise.

func (*QuoteTermView) GetStartDateModeOk

func (o *QuoteTermView) GetStartDateModeOk() (*string, bool)

GetStartDateModeOk returns a tuple with the StartDateMode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetSubscriptionName

func (o *QuoteTermView) GetSubscriptionName() string

GetSubscriptionName returns the SubscriptionName field value if set, zero value otherwise.

func (*QuoteTermView) GetSubscriptionNameOk

func (o *QuoteTermView) GetSubscriptionNameOk() (*string, bool)

GetSubscriptionNameOk returns a tuple with the SubscriptionName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetTabExcludeFilter

func (o *QuoteTermView) GetTabExcludeFilter() string

GetTabExcludeFilter returns the TabExcludeFilter field value if set, zero value otherwise.

func (*QuoteTermView) GetTabExcludeFilterOk

func (o *QuoteTermView) GetTabExcludeFilterOk() (*string, bool)

GetTabExcludeFilterOk returns a tuple with the TabExcludeFilter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetTabGroup

func (o *QuoteTermView) GetTabGroup() string

GetTabGroup returns the TabGroup field value if set, zero value otherwise.

func (*QuoteTermView) GetTabGroupOk

func (o *QuoteTermView) GetTabGroupOk() (*string, bool)

GetTabGroupOk returns a tuple with the TabGroup field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetTabIncludeFilter

func (o *QuoteTermView) GetTabIncludeFilter() string

GetTabIncludeFilter returns the TabIncludeFilter field value if set, zero value otherwise.

func (*QuoteTermView) GetTabIncludeFilterOk

func (o *QuoteTermView) GetTabIncludeFilterOk() (*string, bool)

GetTabIncludeFilterOk returns a tuple with the TabIncludeFilter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetTabName

func (o *QuoteTermView) GetTabName() string

GetTabName returns the TabName field value if set, zero value otherwise.

func (*QuoteTermView) GetTabNameOk

func (o *QuoteTermView) GetTabNameOk() (*string, bool)

GetTabNameOk returns a tuple with the TabName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetTotalAmount

func (o *QuoteTermView) GetTotalAmount() float64

GetTotalAmount returns the TotalAmount field value if set, zero value otherwise.

func (*QuoteTermView) GetTotalAmountOk

func (o *QuoteTermView) GetTotalAmountOk() (*float64, bool)

GetTotalAmountOk returns a tuple with the TotalAmount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) GetTotalAmountOverride

func (o *QuoteTermView) GetTotalAmountOverride() float64

GetTotalAmountOverride returns the TotalAmountOverride field value if set, zero value otherwise.

func (*QuoteTermView) GetTotalAmountOverrideOk

func (o *QuoteTermView) GetTotalAmountOverrideOk() (*float64, bool)

GetTotalAmountOverrideOk returns a tuple with the TotalAmountOverride field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermView) HasAgreementStartDateDefault

func (o *QuoteTermView) HasAgreementStartDateDefault() bool

HasAgreementStartDateDefault returns a boolean if a field has been set.

func (*QuoteTermView) HasAgreementType

func (o *QuoteTermView) HasAgreementType() bool

HasAgreementType returns a boolean if a field has been set.

func (*QuoteTermView) HasAuthorizeNetIntervalLength

func (o *QuoteTermView) HasAuthorizeNetIntervalLength() bool

HasAuthorizeNetIntervalLength returns a boolean if a field has been set.

func (*QuoteTermView) HasAuthorizeNetIntervalUnit

func (o *QuoteTermView) HasAuthorizeNetIntervalUnit() bool

HasAuthorizeNetIntervalUnit returns a boolean if a field has been set.

func (*QuoteTermView) HasAuthorizeNetTotalOccurances

func (o *QuoteTermView) HasAuthorizeNetTotalOccurances() bool

HasAuthorizeNetTotalOccurances returns a boolean if a field has been set.

func (*QuoteTermView) HasCost

func (o *QuoteTermView) HasCost() bool

HasCost returns a boolean if a field has been set.

func (*QuoteTermView) HasDescription

func (o *QuoteTermView) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*QuoteTermView) HasDiscountAmount

func (o *QuoteTermView) HasDiscountAmount() bool

HasDiscountAmount returns a boolean if a field has been set.

func (*QuoteTermView) HasDiscountPercent

func (o *QuoteTermView) HasDiscountPercent() bool

HasDiscountPercent returns a boolean if a field has been set.

func (*QuoteTermView) HasDownPayment

func (o *QuoteTermView) HasDownPayment() bool

HasDownPayment returns a boolean if a field has been set.

func (*QuoteTermView) HasFinancingGroup

func (o *QuoteTermView) HasFinancingGroup() bool

HasFinancingGroup returns a boolean if a field has been set.

func (*QuoteTermView) HasForceExcludeInForecast

func (o *QuoteTermView) HasForceExcludeInForecast() bool

HasForceExcludeInForecast returns a boolean if a field has been set.

func (*QuoteTermView) HasForceIncludeInForecast

func (o *QuoteTermView) HasForceIncludeInForecast() bool

HasForceIncludeInForecast returns a boolean if a field has been set.

func (*QuoteTermView) HasGroupSort

func (o *QuoteTermView) HasGroupSort() bool

HasGroupSort returns a boolean if a field has been set.

func (*QuoteTermView) HasId

func (o *QuoteTermView) HasId() bool

HasId returns a boolean if a field has been set.

func (*QuoteTermView) HasIdLeasingRates

func (o *QuoteTermView) HasIdLeasingRates() bool

HasIdLeasingRates returns a boolean if a field has been set.

func (*QuoteTermView) HasIdQuote

func (o *QuoteTermView) HasIdQuote() bool

HasIdQuote returns a boolean if a field has been set.

func (*QuoteTermView) HasIdRecurringRevenue

func (o *QuoteTermView) HasIdRecurringRevenue() bool

HasIdRecurringRevenue returns a boolean if a field has been set.

func (*QuoteTermView) HasInterestRate

func (o *QuoteTermView) HasInterestRate() bool

HasInterestRate returns a boolean if a field has been set.

func (*QuoteTermView) HasIntervalToStart

func (o *QuoteTermView) HasIntervalToStart() bool

HasIntervalToStart returns a boolean if a field has been set.

func (*QuoteTermView) HasIsAutomaticallyBillable

func (o *QuoteTermView) HasIsAutomaticallyBillable() bool

HasIsAutomaticallyBillable returns a boolean if a field has been set.

func (*QuoteTermView) HasIsLease

func (o *QuoteTermView) HasIsLease() bool

HasIsLease returns a boolean if a field has been set.

func (*QuoteTermView) HasIsPrinted

func (o *QuoteTermView) HasIsPrinted() bool

HasIsPrinted returns a boolean if a field has been set.

func (*QuoteTermView) HasIsRoundedPayments

func (o *QuoteTermView) HasIsRoundedPayments() bool

HasIsRoundedPayments returns a boolean if a field has been set.

func (*QuoteTermView) HasIsSelected

func (o *QuoteTermView) HasIsSelected() bool

HasIsSelected returns a boolean if a field has been set.

func (*QuoteTermView) HasLeaseDownPayment

func (o *QuoteTermView) HasLeaseDownPayment() bool

HasLeaseDownPayment returns a boolean if a field has been set.

func (*QuoteTermView) HasLeaseMonthlyAmount

func (o *QuoteTermView) HasLeaseMonthlyAmount() bool

HasLeaseMonthlyAmount returns a boolean if a field has been set.

func (*QuoteTermView) HasLeaseRateCardNumber

func (o *QuoteTermView) HasLeaseRateCardNumber() bool

HasLeaseRateCardNumber returns a boolean if a field has been set.

func (*QuoteTermView) HasLeaseSource

func (o *QuoteTermView) HasLeaseSource() bool

HasLeaseSource returns a boolean if a field has been set.

func (*QuoteTermView) HasLeaseType

func (o *QuoteTermView) HasLeaseType() bool

HasLeaseType returns a boolean if a field has been set.

func (*QuoteTermView) HasLeaseTypeDescription

func (o *QuoteTermView) HasLeaseTypeDescription() bool

HasLeaseTypeDescription returns a boolean if a field has been set.

func (*QuoteTermView) HasLeasingName

func (o *QuoteTermView) HasLeasingName() bool

HasLeasingName returns a boolean if a field has been set.

func (*QuoteTermView) HasLeasingRate

func (o *QuoteTermView) HasLeasingRate() bool

HasLeasingRate returns a boolean if a field has been set.

func (*QuoteTermView) HasLeasingRateOverride

func (o *QuoteTermView) HasLeasingRateOverride() bool

HasLeasingRateOverride returns a boolean if a field has been set.

func (*QuoteTermView) HasName

func (o *QuoteTermView) HasName() bool

HasName returns a boolean if a field has been set.

func (*QuoteTermView) HasNameSort

func (o *QuoteTermView) HasNameSort() bool

HasNameSort returns a boolean if a field has been set.

func (*QuoteTermView) HasObeyStandardTabFilters

func (o *QuoteTermView) HasObeyStandardTabFilters() bool

HasObeyStandardTabFilters returns a boolean if a field has been set.

func (*QuoteTermView) HasOppRecurringAsAdjustment

func (o *QuoteTermView) HasOppRecurringAsAdjustment() bool

HasOppRecurringAsAdjustment returns a boolean if a field has been set.

func (*QuoteTermView) HasOverrideStartDate

func (o *QuoteTermView) HasOverrideStartDate() bool

HasOverrideStartDate returns a boolean if a field has been set.

func (*QuoteTermView) HasPeriodInterval

func (o *QuoteTermView) HasPeriodInterval() bool

HasPeriodInterval returns a boolean if a field has been set.

func (*QuoteTermView) HasPeriodPaymentAmount

func (o *QuoteTermView) HasPeriodPaymentAmount() bool

HasPeriodPaymentAmount returns a boolean if a field has been set.

func (*QuoteTermView) HasPeriods

func (o *QuoteTermView) HasPeriods() bool

HasPeriods returns a boolean if a field has been set.

func (*QuoteTermView) HasPrincipal

func (o *QuoteTermView) HasPrincipal() bool

HasPrincipal returns a boolean if a field has been set.

func (*QuoteTermView) HasRecurringBeforeDiscount

func (o *QuoteTermView) HasRecurringBeforeDiscount() bool

HasRecurringBeforeDiscount returns a boolean if a field has been set.

func (*QuoteTermView) HasRecurringCost

func (o *QuoteTermView) HasRecurringCost() bool

HasRecurringCost returns a boolean if a field has been set.

func (*QuoteTermView) HasRecurringDiscountAmount

func (o *QuoteTermView) HasRecurringDiscountAmount() bool

HasRecurringDiscountAmount returns a boolean if a field has been set.

func (*QuoteTermView) HasRecurringDiscountPercent

func (o *QuoteTermView) HasRecurringDiscountPercent() bool

HasRecurringDiscountPercent returns a boolean if a field has been set.

func (*QuoteTermView) HasRecurringPeriods

func (o *QuoteTermView) HasRecurringPeriods() bool

HasRecurringPeriods returns a boolean if a field has been set.

func (*QuoteTermView) HasRecurringRevenueLabel

func (o *QuoteTermView) HasRecurringRevenueLabel() bool

HasRecurringRevenueLabel returns a boolean if a field has been set.

func (*QuoteTermView) HasRecurringTotalAggregated

func (o *QuoteTermView) HasRecurringTotalAggregated() bool

HasRecurringTotalAggregated returns a boolean if a field has been set.

func (*QuoteTermView) HasRecurringTotalAmount

func (o *QuoteTermView) HasRecurringTotalAmount() bool

HasRecurringTotalAmount returns a boolean if a field has been set.

func (*QuoteTermView) HasRecurringTotalAmountOverride

func (o *QuoteTermView) HasRecurringTotalAmountOverride() bool

HasRecurringTotalAmountOverride returns a boolean if a field has been set.

func (*QuoteTermView) HasSpreadOneTime

func (o *QuoteTermView) HasSpreadOneTime() bool

HasSpreadOneTime returns a boolean if a field has been set.

func (*QuoteTermView) HasStartDateMode

func (o *QuoteTermView) HasStartDateMode() bool

HasStartDateMode returns a boolean if a field has been set.

func (*QuoteTermView) HasSubscriptionName

func (o *QuoteTermView) HasSubscriptionName() bool

HasSubscriptionName returns a boolean if a field has been set.

func (*QuoteTermView) HasTabExcludeFilter

func (o *QuoteTermView) HasTabExcludeFilter() bool

HasTabExcludeFilter returns a boolean if a field has been set.

func (*QuoteTermView) HasTabGroup

func (o *QuoteTermView) HasTabGroup() bool

HasTabGroup returns a boolean if a field has been set.

func (*QuoteTermView) HasTabIncludeFilter

func (o *QuoteTermView) HasTabIncludeFilter() bool

HasTabIncludeFilter returns a boolean if a field has been set.

func (*QuoteTermView) HasTabName

func (o *QuoteTermView) HasTabName() bool

HasTabName returns a boolean if a field has been set.

func (*QuoteTermView) HasTotalAmount

func (o *QuoteTermView) HasTotalAmount() bool

HasTotalAmount returns a boolean if a field has been set.

func (*QuoteTermView) HasTotalAmountOverride

func (o *QuoteTermView) HasTotalAmountOverride() bool

HasTotalAmountOverride returns a boolean if a field has been set.

func (QuoteTermView) MarshalJSON

func (o QuoteTermView) MarshalJSON() ([]byte, error)

func (*QuoteTermView) SetAgreementStartDateDefault

func (o *QuoteTermView) SetAgreementStartDateDefault(v string)

SetAgreementStartDateDefault gets a reference to the given string and assigns it to the AgreementStartDateDefault field.

func (*QuoteTermView) SetAgreementType

func (o *QuoteTermView) SetAgreementType(v string)

SetAgreementType gets a reference to the given string and assigns it to the AgreementType field.

func (*QuoteTermView) SetAuthorizeNetIntervalLength

func (o *QuoteTermView) SetAuthorizeNetIntervalLength(v int32)

SetAuthorizeNetIntervalLength gets a reference to the given int32 and assigns it to the AuthorizeNetIntervalLength field.

func (*QuoteTermView) SetAuthorizeNetIntervalUnit

func (o *QuoteTermView) SetAuthorizeNetIntervalUnit(v string)

SetAuthorizeNetIntervalUnit gets a reference to the given string and assigns it to the AuthorizeNetIntervalUnit field.

func (*QuoteTermView) SetAuthorizeNetTotalOccurances

func (o *QuoteTermView) SetAuthorizeNetTotalOccurances(v int32)

SetAuthorizeNetTotalOccurances gets a reference to the given int32 and assigns it to the AuthorizeNetTotalOccurances field.

func (*QuoteTermView) SetCost

func (o *QuoteTermView) SetCost(v float64)

SetCost gets a reference to the given float64 and assigns it to the Cost field.

func (*QuoteTermView) SetDescription

func (o *QuoteTermView) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*QuoteTermView) SetDiscountAmount

func (o *QuoteTermView) SetDiscountAmount(v float64)

SetDiscountAmount gets a reference to the given float64 and assigns it to the DiscountAmount field.

func (*QuoteTermView) SetDiscountPercent

func (o *QuoteTermView) SetDiscountPercent(v float64)

SetDiscountPercent gets a reference to the given float64 and assigns it to the DiscountPercent field.

func (*QuoteTermView) SetDownPayment

func (o *QuoteTermView) SetDownPayment(v float64)

SetDownPayment gets a reference to the given float64 and assigns it to the DownPayment field.

func (*QuoteTermView) SetFinancingGroup

func (o *QuoteTermView) SetFinancingGroup(v string)

SetFinancingGroup gets a reference to the given string and assigns it to the FinancingGroup field.

func (*QuoteTermView) SetForceExcludeInForecast

func (o *QuoteTermView) SetForceExcludeInForecast(v bool)

SetForceExcludeInForecast gets a reference to the given bool and assigns it to the ForceExcludeInForecast field.

func (*QuoteTermView) SetForceIncludeInForecast

func (o *QuoteTermView) SetForceIncludeInForecast(v bool)

SetForceIncludeInForecast gets a reference to the given bool and assigns it to the ForceIncludeInForecast field.

func (*QuoteTermView) SetGroupSort

func (o *QuoteTermView) SetGroupSort(v float64)

SetGroupSort gets a reference to the given float64 and assigns it to the GroupSort field.

func (*QuoteTermView) SetId

func (o *QuoteTermView) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*QuoteTermView) SetIdLeasingRates

func (o *QuoteTermView) SetIdLeasingRates(v string)

SetIdLeasingRates gets a reference to the given string and assigns it to the IdLeasingRates field.

func (*QuoteTermView) SetIdQuote

func (o *QuoteTermView) SetIdQuote(v string)

SetIdQuote gets a reference to the given string and assigns it to the IdQuote field.

func (*QuoteTermView) SetIdRecurringRevenue

func (o *QuoteTermView) SetIdRecurringRevenue(v string)

SetIdRecurringRevenue gets a reference to the given string and assigns it to the IdRecurringRevenue field.

func (*QuoteTermView) SetInterestRate

func (o *QuoteTermView) SetInterestRate(v float64)

SetInterestRate gets a reference to the given float64 and assigns it to the InterestRate field.

func (*QuoteTermView) SetIntervalToStart

func (o *QuoteTermView) SetIntervalToStart(v int32)

SetIntervalToStart gets a reference to the given int32 and assigns it to the IntervalToStart field.

func (*QuoteTermView) SetIsAutomaticallyBillable

func (o *QuoteTermView) SetIsAutomaticallyBillable(v bool)

SetIsAutomaticallyBillable gets a reference to the given bool and assigns it to the IsAutomaticallyBillable field.

func (*QuoteTermView) SetIsLease

func (o *QuoteTermView) SetIsLease(v bool)

SetIsLease gets a reference to the given bool and assigns it to the IsLease field.

func (*QuoteTermView) SetIsPrinted

func (o *QuoteTermView) SetIsPrinted(v bool)

SetIsPrinted gets a reference to the given bool and assigns it to the IsPrinted field.

func (*QuoteTermView) SetIsRoundedPayments

func (o *QuoteTermView) SetIsRoundedPayments(v bool)

SetIsRoundedPayments gets a reference to the given bool and assigns it to the IsRoundedPayments field.

func (*QuoteTermView) SetIsSelected

func (o *QuoteTermView) SetIsSelected(v bool)

SetIsSelected gets a reference to the given bool and assigns it to the IsSelected field.

func (*QuoteTermView) SetLeaseDownPayment

func (o *QuoteTermView) SetLeaseDownPayment(v float64)

SetLeaseDownPayment gets a reference to the given float64 and assigns it to the LeaseDownPayment field.

func (*QuoteTermView) SetLeaseMonthlyAmount

func (o *QuoteTermView) SetLeaseMonthlyAmount(v float64)

SetLeaseMonthlyAmount gets a reference to the given float64 and assigns it to the LeaseMonthlyAmount field.

func (*QuoteTermView) SetLeaseRateCardNumber

func (o *QuoteTermView) SetLeaseRateCardNumber(v string)

SetLeaseRateCardNumber gets a reference to the given string and assigns it to the LeaseRateCardNumber field.

func (*QuoteTermView) SetLeaseSource

func (o *QuoteTermView) SetLeaseSource(v string)

SetLeaseSource gets a reference to the given string and assigns it to the LeaseSource field.

func (*QuoteTermView) SetLeaseType

func (o *QuoteTermView) SetLeaseType(v string)

SetLeaseType gets a reference to the given string and assigns it to the LeaseType field.

func (*QuoteTermView) SetLeaseTypeDescription

func (o *QuoteTermView) SetLeaseTypeDescription(v string)

SetLeaseTypeDescription gets a reference to the given string and assigns it to the LeaseTypeDescription field.

func (*QuoteTermView) SetLeasingName

func (o *QuoteTermView) SetLeasingName(v string)

SetLeasingName gets a reference to the given string and assigns it to the LeasingName field.

func (*QuoteTermView) SetLeasingRate

func (o *QuoteTermView) SetLeasingRate(v float64)

SetLeasingRate gets a reference to the given float64 and assigns it to the LeasingRate field.

func (*QuoteTermView) SetLeasingRateOverride

func (o *QuoteTermView) SetLeasingRateOverride(v float64)

SetLeasingRateOverride gets a reference to the given float64 and assigns it to the LeasingRateOverride field.

func (*QuoteTermView) SetName

func (o *QuoteTermView) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*QuoteTermView) SetNameSort

func (o *QuoteTermView) SetNameSort(v float64)

SetNameSort gets a reference to the given float64 and assigns it to the NameSort field.

func (*QuoteTermView) SetObeyStandardTabFilters

func (o *QuoteTermView) SetObeyStandardTabFilters(v bool)

SetObeyStandardTabFilters gets a reference to the given bool and assigns it to the ObeyStandardTabFilters field.

func (*QuoteTermView) SetOppRecurringAsAdjustment

func (o *QuoteTermView) SetOppRecurringAsAdjustment(v bool)

SetOppRecurringAsAdjustment gets a reference to the given bool and assigns it to the OppRecurringAsAdjustment field.

func (*QuoteTermView) SetOverrideStartDate

func (o *QuoteTermView) SetOverrideStartDate(v time.Time)

SetOverrideStartDate gets a reference to the given time.Time and assigns it to the OverrideStartDate field.

func (*QuoteTermView) SetPeriodInterval

func (o *QuoteTermView) SetPeriodInterval(v string)

SetPeriodInterval gets a reference to the given string and assigns it to the PeriodInterval field.

func (*QuoteTermView) SetPeriodPaymentAmount

func (o *QuoteTermView) SetPeriodPaymentAmount(v float64)

SetPeriodPaymentAmount gets a reference to the given float64 and assigns it to the PeriodPaymentAmount field.

func (*QuoteTermView) SetPeriods

func (o *QuoteTermView) SetPeriods(v float64)

SetPeriods gets a reference to the given float64 and assigns it to the Periods field.

func (*QuoteTermView) SetPrincipal

func (o *QuoteTermView) SetPrincipal(v float64)

SetPrincipal gets a reference to the given float64 and assigns it to the Principal field.

func (*QuoteTermView) SetRecurringBeforeDiscount

func (o *QuoteTermView) SetRecurringBeforeDiscount(v float64)

SetRecurringBeforeDiscount gets a reference to the given float64 and assigns it to the RecurringBeforeDiscount field.

func (*QuoteTermView) SetRecurringCost

func (o *QuoteTermView) SetRecurringCost(v float64)

SetRecurringCost gets a reference to the given float64 and assigns it to the RecurringCost field.

func (*QuoteTermView) SetRecurringDiscountAmount

func (o *QuoteTermView) SetRecurringDiscountAmount(v float64)

SetRecurringDiscountAmount gets a reference to the given float64 and assigns it to the RecurringDiscountAmount field.

func (*QuoteTermView) SetRecurringDiscountPercent

func (o *QuoteTermView) SetRecurringDiscountPercent(v float64)

SetRecurringDiscountPercent gets a reference to the given float64 and assigns it to the RecurringDiscountPercent field.

func (*QuoteTermView) SetRecurringPeriods

func (o *QuoteTermView) SetRecurringPeriods(v float64)

SetRecurringPeriods gets a reference to the given float64 and assigns it to the RecurringPeriods field.

func (*QuoteTermView) SetRecurringRevenueLabel

func (o *QuoteTermView) SetRecurringRevenueLabel(v string)

SetRecurringRevenueLabel gets a reference to the given string and assigns it to the RecurringRevenueLabel field.

func (*QuoteTermView) SetRecurringTotalAggregated

func (o *QuoteTermView) SetRecurringTotalAggregated(v float64)

SetRecurringTotalAggregated gets a reference to the given float64 and assigns it to the RecurringTotalAggregated field.

func (*QuoteTermView) SetRecurringTotalAmount

func (o *QuoteTermView) SetRecurringTotalAmount(v float64)

SetRecurringTotalAmount gets a reference to the given float64 and assigns it to the RecurringTotalAmount field.

func (*QuoteTermView) SetRecurringTotalAmountOverride

func (o *QuoteTermView) SetRecurringTotalAmountOverride(v float64)

SetRecurringTotalAmountOverride gets a reference to the given float64 and assigns it to the RecurringTotalAmountOverride field.

func (*QuoteTermView) SetSpreadOneTime

func (o *QuoteTermView) SetSpreadOneTime(v bool)

SetSpreadOneTime gets a reference to the given bool and assigns it to the SpreadOneTime field.

func (*QuoteTermView) SetStartDateMode

func (o *QuoteTermView) SetStartDateMode(v string)

SetStartDateMode gets a reference to the given string and assigns it to the StartDateMode field.

func (*QuoteTermView) SetSubscriptionName

func (o *QuoteTermView) SetSubscriptionName(v string)

SetSubscriptionName gets a reference to the given string and assigns it to the SubscriptionName field.

func (*QuoteTermView) SetTabExcludeFilter

func (o *QuoteTermView) SetTabExcludeFilter(v string)

SetTabExcludeFilter gets a reference to the given string and assigns it to the TabExcludeFilter field.

func (*QuoteTermView) SetTabGroup

func (o *QuoteTermView) SetTabGroup(v string)

SetTabGroup gets a reference to the given string and assigns it to the TabGroup field.

func (*QuoteTermView) SetTabIncludeFilter

func (o *QuoteTermView) SetTabIncludeFilter(v string)

SetTabIncludeFilter gets a reference to the given string and assigns it to the TabIncludeFilter field.

func (*QuoteTermView) SetTabName

func (o *QuoteTermView) SetTabName(v string)

SetTabName gets a reference to the given string and assigns it to the TabName field.

func (*QuoteTermView) SetTotalAmount

func (o *QuoteTermView) SetTotalAmount(v float64)

SetTotalAmount gets a reference to the given float64 and assigns it to the TotalAmount field.

func (*QuoteTermView) SetTotalAmountOverride

func (o *QuoteTermView) SetTotalAmountOverride(v float64)

SetTotalAmountOverride gets a reference to the given float64 and assigns it to the TotalAmountOverride field.

func (QuoteTermView) ToMap

func (o QuoteTermView) ToMap() (map[string]interface{}, error)

func (*QuoteTermView) UnmarshalJSON

func (o *QuoteTermView) UnmarshalJSON(data []byte) (err error)

type QuoteTermsAPIService

type QuoteTermsAPIService service

QuoteTermsAPIService QuoteTermsAPI service

func (*QuoteTermsAPIService) AddQuoteTerm

func (a *QuoteTermsAPIService) AddQuoteTerm(ctx context.Context, quoteId string) ApiAddQuoteTermRequest

AddQuoteTerm Method for AddQuoteTerm

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param quoteId
@return ApiAddQuoteTermRequest

func (*QuoteTermsAPIService) AddQuoteTermExecute

Execute executes the request

@return QuoteTermView

func (*QuoteTermsAPIService) DeleteQuoteTerm

func (a *QuoteTermsAPIService) DeleteQuoteTerm(ctx context.Context, quoteId string, id string) ApiDeleteQuoteTermRequest

DeleteQuoteTerm Method for DeleteQuoteTerm

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param quoteId
@param id
@return ApiDeleteQuoteTermRequest

func (*QuoteTermsAPIService) DeleteQuoteTermExecute

func (a *QuoteTermsAPIService) DeleteQuoteTermExecute(r ApiDeleteQuoteTermRequest) (*http.Response, error)

Execute executes the request

func (*QuoteTermsAPIService) GetQuoteTerms

func (a *QuoteTermsAPIService) GetQuoteTerms(ctx context.Context, quoteId string) ApiGetQuoteTermsRequest

GetQuoteTerms Method for GetQuoteTerms

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param quoteId
@return ApiGetQuoteTermsRequest

func (*QuoteTermsAPIService) GetQuoteTermsExecute

Execute executes the request

@return []QuoteTermView

func (*QuoteTermsAPIService) UpdateQuoteTerm

func (a *QuoteTermsAPIService) UpdateQuoteTerm(ctx context.Context, quoteId string, id string) ApiUpdateQuoteTermRequest

UpdateQuoteTerm Method for UpdateQuoteTerm

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param quoteId
@param id
@return ApiUpdateQuoteTermRequest

func (*QuoteTermsAPIService) UpdateQuoteTermExecute

Execute executes the request

@return QuoteTermView

type QuoteTermsQueryModel

type QuoteTermsQueryModel struct {
	// Comma separated list of fields to return.
	IncludeFields *string `json:"includeFields,omitempty"`
	// Conditional retrieve statements.
	Conditions *string `json:"conditions,omitempty"`
	// Page of results to get. 1-index based.
	Page *int32 `json:"page,omitempty"`
	// Page size of results to get. Max size 1000, default 50.
	PageSize             *int32 `json:"pageSize,omitempty"`
	AdditionalProperties map[string]interface{}
}

QuoteTermsQueryModel struct for QuoteTermsQueryModel

func NewQuoteTermsQueryModel

func NewQuoteTermsQueryModel() *QuoteTermsQueryModel

NewQuoteTermsQueryModel instantiates a new QuoteTermsQueryModel object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewQuoteTermsQueryModelWithDefaults

func NewQuoteTermsQueryModelWithDefaults() *QuoteTermsQueryModel

NewQuoteTermsQueryModelWithDefaults instantiates a new QuoteTermsQueryModel object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*QuoteTermsQueryModel) GetConditions

func (o *QuoteTermsQueryModel) GetConditions() string

GetConditions returns the Conditions field value if set, zero value otherwise.

func (*QuoteTermsQueryModel) GetConditionsOk

func (o *QuoteTermsQueryModel) GetConditionsOk() (*string, bool)

GetConditionsOk returns a tuple with the Conditions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermsQueryModel) GetIncludeFields

func (o *QuoteTermsQueryModel) GetIncludeFields() string

GetIncludeFields returns the IncludeFields field value if set, zero value otherwise.

func (*QuoteTermsQueryModel) GetIncludeFieldsOk

func (o *QuoteTermsQueryModel) GetIncludeFieldsOk() (*string, bool)

GetIncludeFieldsOk returns a tuple with the IncludeFields field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermsQueryModel) GetPage

func (o *QuoteTermsQueryModel) GetPage() int32

GetPage returns the Page field value if set, zero value otherwise.

func (*QuoteTermsQueryModel) GetPageOk

func (o *QuoteTermsQueryModel) GetPageOk() (*int32, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermsQueryModel) GetPageSize

func (o *QuoteTermsQueryModel) GetPageSize() int32

GetPageSize returns the PageSize field value if set, zero value otherwise.

func (*QuoteTermsQueryModel) GetPageSizeOk

func (o *QuoteTermsQueryModel) GetPageSizeOk() (*int32, bool)

GetPageSizeOk returns a tuple with the PageSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteTermsQueryModel) HasConditions

func (o *QuoteTermsQueryModel) HasConditions() bool

HasConditions returns a boolean if a field has been set.

func (*QuoteTermsQueryModel) HasIncludeFields

func (o *QuoteTermsQueryModel) HasIncludeFields() bool

HasIncludeFields returns a boolean if a field has been set.

func (*QuoteTermsQueryModel) HasPage

func (o *QuoteTermsQueryModel) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*QuoteTermsQueryModel) HasPageSize

func (o *QuoteTermsQueryModel) HasPageSize() bool

HasPageSize returns a boolean if a field has been set.

func (QuoteTermsQueryModel) MarshalJSON

func (o QuoteTermsQueryModel) MarshalJSON() ([]byte, error)

func (*QuoteTermsQueryModel) SetConditions

func (o *QuoteTermsQueryModel) SetConditions(v string)

SetConditions gets a reference to the given string and assigns it to the Conditions field.

func (*QuoteTermsQueryModel) SetIncludeFields

func (o *QuoteTermsQueryModel) SetIncludeFields(v string)

SetIncludeFields gets a reference to the given string and assigns it to the IncludeFields field.

func (*QuoteTermsQueryModel) SetPage

func (o *QuoteTermsQueryModel) SetPage(v int32)

SetPage gets a reference to the given int32 and assigns it to the Page field.

func (*QuoteTermsQueryModel) SetPageSize

func (o *QuoteTermsQueryModel) SetPageSize(v int32)

SetPageSize gets a reference to the given int32 and assigns it to the PageSize field.

func (QuoteTermsQueryModel) ToMap

func (o QuoteTermsQueryModel) ToMap() (map[string]interface{}, error)

func (*QuoteTermsQueryModel) UnmarshalJSON

func (o *QuoteTermsQueryModel) UnmarshalJSON(data []byte) (err error)

type QuoteView

type QuoteView struct {
	Name                                *string        `json:"name,omitempty"`
	QuoteNumber                         *int32         `json:"quoteNumber,omitempty"`
	QuoteVersion                        *int32         `json:"quoteVersion,omitempty"`
	Id                                  *string        `json:"id,omitempty"`
	AccountName                         *string        `json:"accountName,omitempty"`
	ApprovalAmount                      *float64       `json:"approvalAmount,omitempty"`
	ApprovalComment                     *string        `json:"approvalComment,omitempty"`
	ApprovalMargin                      *float64       `json:"approvalMargin,omitempty"`
	ApprovalMode                        *string        `json:"approvalMode,omitempty"`
	ApprovalQuoteForm                   *string        `json:"approvalQuoteForm,omitempty"`
	ApprovalReason                      *string        `json:"approvalReason,omitempty"`
	ApprovalStatus                      *string        `json:"approvalStatus,omitempty"`
	ApprovedByUser                      *string        `json:"approvedByUser,omitempty"`
	ApprovedDate                        *time.Time     `json:"approvedDate,omitempty"`
	BaseCurrency                        *string        `json:"baseCurrency,omitempty"`
	CrmOpGroup                          *string        `json:"crmOpGroup,omitempty"`
	ContactName                         *string        `json:"contactName,omitempty"`
	ContractEndDate                     *time.Time     `json:"contractEndDate,omitempty"`
	ContractStartDate                   *time.Time     `json:"contractStartDate,omitempty"`
	CostChangesCount                    *int32         `json:"costChangesCount,omitempty"`
	CreateDate                          *time.Time     `json:"createDate,omitempty"`
	CreateNotes                         *string        `json:"createNotes,omitempty"`
	CustomerSignatureCapture            *ReferenceLink `json:"customerSignatureCapture,omitempty"`
	SalesForceDefaultOppType            *string        `json:"salesForceDefaultOppType,omitempty"`
	SalesForceDefaultPriceList          *string        `json:"salesForceDefaultPriceList,omitempty"`
	SalesForceDefaultRecurringTermType  *string        `json:"salesForceDefaultRecurringTermType,omitempty"`
	DefaultReportList                   *string        `json:"defaultReportList,omitempty"`
	DefaultSuccessListProfile           *string        `json:"defaultSuccessListProfile,omitempty"`
	DefaultTermPeriods                  *int32         `json:"defaultTermPeriods,omitempty"`
	DefaultVideoList                    *string        `json:"defaultVideoList,omitempty"`
	DeliveredDate                       *time.Time     `json:"deliveredDate,omitempty"`
	DiscountAmount                      *float64       `json:"discountAmount,omitempty"`
	ExpectedCloseDate                   *time.Time     `json:"expectedCloseDate,omitempty"`
	ExpirationDate                      *time.Time     `json:"expirationDate,omitempty"`
	ExternalReferenceQuoteDemandId      *string        `json:"externalReferenceQuoteDemandId,omitempty"`
	GreatAmericaDefaultRateCard         *string        `json:"greatAmericaDefaultRateCard,omitempty"`
	GrossMargin                         *float64       `json:"grossMargin,omitempty"`
	GrossMarginAmount                   *float64       `json:"grossMarginAmount,omitempty"`
	Gst                                 *float64       `json:"gst,omitempty"`
	GstConverted                        *float64       `json:"gstConverted,omitempty"`
	HtmlAgreement                       *string        `json:"htmlAgreement,omitempty"`
	HtmlNotes1                          *string        `json:"htmlNotes1,omitempty"`
	HtmlNotes2                          *string        `json:"htmlNotes2,omitempty"`
	CrmOpportunityId                    *string        `json:"crmOpportunityId,omitempty"`
	Customer                            *ReferenceLink `json:"customer,omitempty"`
	SourceCampaignId                    *string        `json:"sourceCampaignId,omitempty"`
	IncludeZeroSuggestedInDiscount      *bool          `json:"includeZeroSuggestedInDiscount,omitempty"`
	InsideRep                           *string        `json:"insideRep,omitempty"`
	InvoicePostDate                     *time.Time     `json:"invoicePostDate,omitempty"`
	InvoicePostStatus                   *string        `json:"invoicePostStatus,omitempty"`
	InvoicePostUser                     *string        `json:"invoicePostUser,omitempty"`
	IsAccepted                          *bool          `json:"isAccepted,omitempty"`
	IsArchive                           *bool          `json:"isArchive,omitempty"`
	IsLost                              *bool          `json:"isLost,omitempty"`
	IsManagerApproved                   *bool          `json:"isManagerApproved,omitempty"`
	IsQuoteDemand                       *bool          `json:"isQuoteDemand,omitempty"`
	IsSent                              *bool          `json:"isSent,omitempty"`
	IsTaxCalculated                     *bool          `json:"isTaxCalculated,omitempty"`
	OrderPorterHasFirstVisitOccurred    *bool          `json:"orderPorterHasFirstVisitOccurred,omitempty"`
	OrderPorterIsUploaded               *bool          `json:"orderPorterIsUploaded,omitempty"`
	IsRequestQuote                      *bool          `json:"isRequestQuote,omitempty"`
	IsRequestTemplate                   *bool          `json:"isRequestTemplate,omitempty"`
	Keywords                            *string        `json:"keywords,omitempty"`
	LocationId                          *string        `json:"locationId,omitempty"`
	LongDescription                     *string        `json:"longDescription,omitempty"`
	LostReason                          *string        `json:"lostReason,omitempty"`
	Markup                              *float64       `json:"markup,omitempty"`
	MasterAgreement                     *string        `json:"masterAgreement,omitempty"`
	MasterAgreementNumber               *string        `json:"masterAgreementNumber,omitempty"`
	ModifyDate                          *time.Time     `json:"modifyDate,omitempty"`
	NetMargin                           *float64       `json:"netMargin,omitempty"`
	NetSuiteSubsidiary                  *string        `json:"netSuiteSubsidiary,omitempty"`
	OptionalAmount                      *float64       `json:"optionalAmount,omitempty"`
	OptionalAmountConverted             *float64       `json:"optionalAmountConverted,omitempty"`
	OrderPorterSignedDate               *time.Time     `json:"orderPorterSignedDate,omitempty"`
	IsOrderPorterApproved               *bool          `json:"isOrderPorterApproved,omitempty"`
	OrderPorterDownPaymentMinimum       *float64       `json:"orderPorterDownPaymentMinimum,omitempty"`
	OrderPorterDownPaymentPercent       *float64       `json:"orderPorterDownPaymentPercent,omitempty"`
	OrderPorterEmailSignature           *string        `json:"orderPorterEmailSignature,omitempty"`
	ShowOrderPorterESign                *bool          `json:"showOrderPorterESign,omitempty"`
	OrderPorterFilteredIp               *string        `json:"orderPorterFilteredIp,omitempty"`
	OrderPorterFirstVisitDate           *time.Time     `json:"orderPorterFirstVisitDate,omitempty"`
	OrderPorterFullPaymentAllowed       *bool          `json:"orderPorterFullPaymentAllowed,omitempty"`
	OrderPorterGroup                    *string        `json:"orderPorterGroup,omitempty"`
	OrderPorterInitialsSig              *string        `json:"orderPorterInitialsSig,omitempty"`
	OrderPorterPasscode                 *string        `json:"orderPorterPasscode,omitempty"`
	OrderPorterPaymentMode              *string        `json:"orderPorterPaymentMode,omitempty"`
	OrderPorterPreviewPicture           *ReferenceLink `json:"orderPorterPreviewPicture,omitempty"`
	OrderPorterShowImage                *bool          `json:"orderPorterShowImage,omitempty"`
	OrderPorterShowItemOptionalCheckbox *bool          `json:"orderPorterShowItemOptionalCheckbox,omitempty"`
	OrderPorterShowLineDetails          *bool          `json:"orderPorterShowLineDetails,omitempty"`
	OrderPorterShowQuantity             *bool          `json:"orderPorterShowQuantity,omitempty"`
	OrderPorterShowSignature            *bool          `json:"orderPorterShowSignature,omitempty"`
	OrderPorterShowTabOptionalCheckbox  *bool          `json:"orderPorterShowTabOptionalCheckbox,omitempty"`
	OrderPorterSignedIp                 *string        `json:"orderPorterSignedIp,omitempty"`
	OrderPorterTemplate                 *string        `json:"orderPorterTemplate,omitempty"`
	OrderPorterTheme                    *string        `json:"orderPorterTheme,omitempty"`
	OrderPorterVisits                   *int32         `json:"orderPorterVisits,omitempty"`
	OriginalQuoteId                     *string        `json:"originalQuoteId,omitempty"`
	OverrideRate                        *float64       `json:"overrideRate,omitempty"`
	PrimaryRep                          *string        `json:"primaryRep,omitempty"`
	PrintPackageHeaderPrice             *bool          `json:"printPackageHeaderPrice,omitempty"`
	PrintPackageItemPrice               *bool          `json:"printPackageItemPrice,omitempty"`
	ShowPackageHeader                   *bool          `json:"showPackageHeader,omitempty"`
	ShowPackageItems                    *bool          `json:"showPackageItems,omitempty"`
	PeerReviewDocument                  *string        `json:"peerReviewDocument,omitempty"`
	PeerReviewStatus                    *string        `json:"peerReviewStatus,omitempty"`
	Picture                             *ReferenceLink `json:"picture,omitempty"`
	Probability                         *float64       `json:"probability,omitempty"`
	PromiseDate                         *time.Time     `json:"promiseDate,omitempty"`
	PromiseDateChangesCount             *int32         `json:"promiseDateChangesCount,omitempty"`
	Pst                                 *float64       `json:"pst,omitempty"`
	PstConverted                        *float64       `json:"pstConverted,omitempty"`
	PublishNumber                       *int32         `json:"publishNumber,omitempty"`
	PurchaseOrderNumber                 *string        `json:"purchaseOrderNumber,omitempty"`
	QuickbooksTemplate                  *string        `json:"quickbooksTemplate,omitempty"`
	QuoteCost                           *float64       `json:"quoteCost,omitempty"`
	QuoteCreator                        *string        `json:"quoteCreator,omitempty"`
	QuoteNotes                          *string        `json:"quoteNotes,omitempty"`
	QuotePreface                        *string        `json:"quotePreface,omitempty"`
	QuoteTotal                          *float64       `json:"quoteTotal,omitempty"`
	QuoteType                           *string        `json:"quoteType,omitempty"`
	QuoteStatus                         *string        `json:"quoteStatus,omitempty"`
	RecurringCost                       *float64       `json:"recurringCost,omitempty"`
	RecurringDiscountAmount             *float64       `json:"recurringDiscountAmount,omitempty"`
	RecurringGst                        *float64       `json:"recurringGst,omitempty"`
	RecurringOptionalAmount             *float64       `json:"recurringOptionalAmount,omitempty"`
	RecurringPst                        *float64       `json:"recurringPst,omitempty"`
	RecurringSubtotal                   *float64       `json:"recurringSubtotal,omitempty"`
	RecurringSuggestedDiscountAmount    *float64       `json:"recurringSuggestedDiscountAmount,omitempty"`
	RecurringSuggestedTotal             *float64       `json:"recurringSuggestedTotal,omitempty"`
	RecurringTax                        *float64       `json:"recurringTax,omitempty"`
	RecurringTotal                      *float64       `json:"recurringTotal,omitempty"`
	RequestDate                         *time.Time     `json:"requestDate,omitempty"`
	RequestId                           *string        `json:"requestId,omitempty"`
	RequestedBy                         *string        `json:"requestedBy,omitempty"`
	RequiresApproval                    *bool          `json:"requiresApproval,omitempty"`
	RequiresNameChange                  *bool          `json:"requiresNameChange,omitempty"`
	ForceManagerApprovalScript          *bool          `json:"forceManagerApprovalScript,omitempty"`
	SelectedTermsTotal                  *float64       `json:"selectedTermsTotal,omitempty"`
	ShippingSubtotal                    *float64       `json:"shippingSubtotal,omitempty"`
	ShippingTax                         *float64       `json:"shippingTax,omitempty"`
	ShortDescription                    *string        `json:"shortDescription,omitempty"`
	Subtotal                            *float64       `json:"subtotal,omitempty"`
	SubtotalConverted                   *float64       `json:"subtotalConverted,omitempty"`
	IsSuccessListDisabled               *bool          `json:"isSuccessListDisabled,omitempty"`
	SuggestedDiscountAmount             *float64       `json:"suggestedDiscountAmount,omitempty"`
	SuggestedTotal                      *float64       `json:"suggestedTotal,omitempty"`
	TargetDate                          *time.Time     `json:"targetDate,omitempty"`
	Tax                                 *float64       `json:"tax,omitempty"`
	TaxCode                             *string        `json:"taxCode,omitempty"`
	TaxRate                             *float64       `json:"taxRate,omitempty"`
	TermsAndConditions                  *string        `json:"termsAndConditions,omitempty"`
	VersionComment                      *string        `json:"versionComment,omitempty"`
	AutoTaskQuoteNumber                 *string        `json:"autoTaskQuoteNumber,omitempty"`
	WinForm                             *string        `json:"winForm,omitempty"`
	WonOrLostDate                       *time.Time     `json:"wonOrLostDate,omitempty"`
	ZCustomQuoteBool1                   *bool          `json:"zCustomQuoteBool1,omitempty"`
	ZCustomQuoteBool10                  *bool          `json:"zCustomQuoteBool10,omitempty"`
	ZCustomQuoteBool2                   *bool          `json:"zCustomQuoteBool2,omitempty"`
	ZCustomQuoteBool3                   *bool          `json:"zCustomQuoteBool3,omitempty"`
	ZCustomQuoteBool4                   *bool          `json:"zCustomQuoteBool4,omitempty"`
	ZCustomQuoteBool5                   *bool          `json:"zCustomQuoteBool5,omitempty"`
	ZCustomQuoteBool6                   *bool          `json:"zCustomQuoteBool6,omitempty"`
	ZCustomQuoteBool7                   *bool          `json:"zCustomQuoteBool7,omitempty"`
	ZCustomQuoteBool8                   *bool          `json:"zCustomQuoteBool8,omitempty"`
	ZCustomQuoteBool9                   *bool          `json:"zCustomQuoteBool9,omitempty"`
	ZCustomQuoteDate1                   *time.Time     `json:"zCustomQuoteDate1,omitempty"`
	ZCustomQuoteDate2                   *time.Time     `json:"zCustomQuoteDate2,omitempty"`
	ZCustomQuoteDecimal1                *float64       `json:"zCustomQuoteDecimal1,omitempty"`
	ZCustomQuoteDecimal10               *float64       `json:"zCustomQuoteDecimal10,omitempty"`
	ZCustomQuoteDecimal11               *float64       `json:"zCustomQuoteDecimal11,omitempty"`
	ZCustomQuoteDecimal12               *float64       `json:"zCustomQuoteDecimal12,omitempty"`
	ZCustomQuoteDecimal13               *float64       `json:"zCustomQuoteDecimal13,omitempty"`
	ZCustomQuoteDecimal14               *float64       `json:"zCustomQuoteDecimal14,omitempty"`
	ZCustomQuoteDecimal15               *float64       `json:"zCustomQuoteDecimal15,omitempty"`
	ZCustomQuoteDecimal16               *float64       `json:"zCustomQuoteDecimal16,omitempty"`
	ZCustomQuoteDecimal17               *float64       `json:"zCustomQuoteDecimal17,omitempty"`
	ZCustomQuoteDecimal18               *float64       `json:"zCustomQuoteDecimal18,omitempty"`
	ZCustomQuoteDecimal19               *float64       `json:"zCustomQuoteDecimal19,omitempty"`
	ZCustomQuoteDecimal2                *float64       `json:"zCustomQuoteDecimal2,omitempty"`
	ZCustomQuoteDecimal20               *float64       `json:"zCustomQuoteDecimal20,omitempty"`
	ZCustomQuoteDecimal3                *float64       `json:"zCustomQuoteDecimal3,omitempty"`
	ZCustomQuoteDecimal4                *float64       `json:"zCustomQuoteDecimal4,omitempty"`
	ZCustomQuoteDecimal5                *float64       `json:"zCustomQuoteDecimal5,omitempty"`
	ZCustomQuoteDecimal6                *float64       `json:"zCustomQuoteDecimal6,omitempty"`
	ZCustomQuoteDecimal7                *float64       `json:"zCustomQuoteDecimal7,omitempty"`
	ZCustomQuoteDecimal8                *float64       `json:"zCustomQuoteDecimal8,omitempty"`
	ZCustomQuoteDecimal9                *float64       `json:"zCustomQuoteDecimal9,omitempty"`
	ZCustomQuoteString1                 *string        `json:"zCustomQuoteString1,omitempty"`
	ZCustomQuoteString10                *string        `json:"zCustomQuoteString10,omitempty"`
	ZCustomQuoteString11                *string        `json:"zCustomQuoteString11,omitempty"`
	ZCustomQuoteString12                *string        `json:"zCustomQuoteString12,omitempty"`
	ZCustomQuoteString13                *string        `json:"zCustomQuoteString13,omitempty"`
	ZCustomQuoteString14                *string        `json:"zCustomQuoteString14,omitempty"`
	ZCustomQuoteString15                *string        `json:"zCustomQuoteString15,omitempty"`
	ZCustomQuoteString2                 *string        `json:"zCustomQuoteString2,omitempty"`
	ZCustomQuoteString3                 *string        `json:"zCustomQuoteString3,omitempty"`
	ZCustomQuoteString4                 *string        `json:"zCustomQuoteString4,omitempty"`
	ZCustomQuoteString5                 *string        `json:"zCustomQuoteString5,omitempty"`
	ZCustomQuoteString6                 *string        `json:"zCustomQuoteString6,omitempty"`
	ZCustomQuoteString7                 *string        `json:"zCustomQuoteString7,omitempty"`
	ZCustomQuoteString8                 *string        `json:"zCustomQuoteString8,omitempty"`
	ZCustomQuoteString9                 *string        `json:"zCustomQuoteString9,omitempty"`
	AdditionalProperties                map[string]interface{}
}

QuoteView struct for QuoteView

func NewQuoteView

func NewQuoteView() *QuoteView

NewQuoteView instantiates a new QuoteView object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewQuoteViewWithDefaults

func NewQuoteViewWithDefaults() *QuoteView

NewQuoteViewWithDefaults instantiates a new QuoteView object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*QuoteView) GetAccountName

func (o *QuoteView) GetAccountName() string

GetAccountName returns the AccountName field value if set, zero value otherwise.

func (*QuoteView) GetAccountNameOk

func (o *QuoteView) GetAccountNameOk() (*string, bool)

GetAccountNameOk returns a tuple with the AccountName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetApprovalAmount

func (o *QuoteView) GetApprovalAmount() float64

GetApprovalAmount returns the ApprovalAmount field value if set, zero value otherwise.

func (*QuoteView) GetApprovalAmountOk

func (o *QuoteView) GetApprovalAmountOk() (*float64, bool)

GetApprovalAmountOk returns a tuple with the ApprovalAmount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetApprovalComment

func (o *QuoteView) GetApprovalComment() string

GetApprovalComment returns the ApprovalComment field value if set, zero value otherwise.

func (*QuoteView) GetApprovalCommentOk

func (o *QuoteView) GetApprovalCommentOk() (*string, bool)

GetApprovalCommentOk returns a tuple with the ApprovalComment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetApprovalMargin

func (o *QuoteView) GetApprovalMargin() float64

GetApprovalMargin returns the ApprovalMargin field value if set, zero value otherwise.

func (*QuoteView) GetApprovalMarginOk

func (o *QuoteView) GetApprovalMarginOk() (*float64, bool)

GetApprovalMarginOk returns a tuple with the ApprovalMargin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetApprovalMode

func (o *QuoteView) GetApprovalMode() string

GetApprovalMode returns the ApprovalMode field value if set, zero value otherwise.

func (*QuoteView) GetApprovalModeOk

func (o *QuoteView) GetApprovalModeOk() (*string, bool)

GetApprovalModeOk returns a tuple with the ApprovalMode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetApprovalQuoteForm

func (o *QuoteView) GetApprovalQuoteForm() string

GetApprovalQuoteForm returns the ApprovalQuoteForm field value if set, zero value otherwise.

func (*QuoteView) GetApprovalQuoteFormOk

func (o *QuoteView) GetApprovalQuoteFormOk() (*string, bool)

GetApprovalQuoteFormOk returns a tuple with the ApprovalQuoteForm field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetApprovalReason

func (o *QuoteView) GetApprovalReason() string

GetApprovalReason returns the ApprovalReason field value if set, zero value otherwise.

func (*QuoteView) GetApprovalReasonOk

func (o *QuoteView) GetApprovalReasonOk() (*string, bool)

GetApprovalReasonOk returns a tuple with the ApprovalReason field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetApprovalStatus

func (o *QuoteView) GetApprovalStatus() string

GetApprovalStatus returns the ApprovalStatus field value if set, zero value otherwise.

func (*QuoteView) GetApprovalStatusOk

func (o *QuoteView) GetApprovalStatusOk() (*string, bool)

GetApprovalStatusOk returns a tuple with the ApprovalStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetApprovedByUser

func (o *QuoteView) GetApprovedByUser() string

GetApprovedByUser returns the ApprovedByUser field value if set, zero value otherwise.

func (*QuoteView) GetApprovedByUserOk

func (o *QuoteView) GetApprovedByUserOk() (*string, bool)

GetApprovedByUserOk returns a tuple with the ApprovedByUser field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetApprovedDate

func (o *QuoteView) GetApprovedDate() time.Time

GetApprovedDate returns the ApprovedDate field value if set, zero value otherwise.

func (*QuoteView) GetApprovedDateOk

func (o *QuoteView) GetApprovedDateOk() (*time.Time, bool)

GetApprovedDateOk returns a tuple with the ApprovedDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetAutoTaskQuoteNumber

func (o *QuoteView) GetAutoTaskQuoteNumber() string

GetAutoTaskQuoteNumber returns the AutoTaskQuoteNumber field value if set, zero value otherwise.

func (*QuoteView) GetAutoTaskQuoteNumberOk

func (o *QuoteView) GetAutoTaskQuoteNumberOk() (*string, bool)

GetAutoTaskQuoteNumberOk returns a tuple with the AutoTaskQuoteNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetBaseCurrency

func (o *QuoteView) GetBaseCurrency() string

GetBaseCurrency returns the BaseCurrency field value if set, zero value otherwise.

func (*QuoteView) GetBaseCurrencyOk

func (o *QuoteView) GetBaseCurrencyOk() (*string, bool)

GetBaseCurrencyOk returns a tuple with the BaseCurrency field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetContactName

func (o *QuoteView) GetContactName() string

GetContactName returns the ContactName field value if set, zero value otherwise.

func (*QuoteView) GetContactNameOk

func (o *QuoteView) GetContactNameOk() (*string, bool)

GetContactNameOk returns a tuple with the ContactName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetContractEndDate

func (o *QuoteView) GetContractEndDate() time.Time

GetContractEndDate returns the ContractEndDate field value if set, zero value otherwise.

func (*QuoteView) GetContractEndDateOk

func (o *QuoteView) GetContractEndDateOk() (*time.Time, bool)

GetContractEndDateOk returns a tuple with the ContractEndDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetContractStartDate

func (o *QuoteView) GetContractStartDate() time.Time

GetContractStartDate returns the ContractStartDate field value if set, zero value otherwise.

func (*QuoteView) GetContractStartDateOk

func (o *QuoteView) GetContractStartDateOk() (*time.Time, bool)

GetContractStartDateOk returns a tuple with the ContractStartDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetCostChangesCount

func (o *QuoteView) GetCostChangesCount() int32

GetCostChangesCount returns the CostChangesCount field value if set, zero value otherwise.

func (*QuoteView) GetCostChangesCountOk

func (o *QuoteView) GetCostChangesCountOk() (*int32, bool)

GetCostChangesCountOk returns a tuple with the CostChangesCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetCreateDate

func (o *QuoteView) GetCreateDate() time.Time

GetCreateDate returns the CreateDate field value if set, zero value otherwise.

func (*QuoteView) GetCreateDateOk

func (o *QuoteView) GetCreateDateOk() (*time.Time, bool)

GetCreateDateOk returns a tuple with the CreateDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetCreateNotes

func (o *QuoteView) GetCreateNotes() string

GetCreateNotes returns the CreateNotes field value if set, zero value otherwise.

func (*QuoteView) GetCreateNotesOk

func (o *QuoteView) GetCreateNotesOk() (*string, bool)

GetCreateNotesOk returns a tuple with the CreateNotes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetCrmOpGroup

func (o *QuoteView) GetCrmOpGroup() string

GetCrmOpGroup returns the CrmOpGroup field value if set, zero value otherwise.

func (*QuoteView) GetCrmOpGroupOk

func (o *QuoteView) GetCrmOpGroupOk() (*string, bool)

GetCrmOpGroupOk returns a tuple with the CrmOpGroup field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetCrmOpportunityId

func (o *QuoteView) GetCrmOpportunityId() string

GetCrmOpportunityId returns the CrmOpportunityId field value if set, zero value otherwise.

func (*QuoteView) GetCrmOpportunityIdOk

func (o *QuoteView) GetCrmOpportunityIdOk() (*string, bool)

GetCrmOpportunityIdOk returns a tuple with the CrmOpportunityId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetCustomer

func (o *QuoteView) GetCustomer() ReferenceLink

GetCustomer returns the Customer field value if set, zero value otherwise.

func (*QuoteView) GetCustomerOk

func (o *QuoteView) GetCustomerOk() (*ReferenceLink, bool)

GetCustomerOk returns a tuple with the Customer field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetCustomerSignatureCapture

func (o *QuoteView) GetCustomerSignatureCapture() ReferenceLink

GetCustomerSignatureCapture returns the CustomerSignatureCapture field value if set, zero value otherwise.

func (*QuoteView) GetCustomerSignatureCaptureOk

func (o *QuoteView) GetCustomerSignatureCaptureOk() (*ReferenceLink, bool)

GetCustomerSignatureCaptureOk returns a tuple with the CustomerSignatureCapture field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetDefaultReportList

func (o *QuoteView) GetDefaultReportList() string

GetDefaultReportList returns the DefaultReportList field value if set, zero value otherwise.

func (*QuoteView) GetDefaultReportListOk

func (o *QuoteView) GetDefaultReportListOk() (*string, bool)

GetDefaultReportListOk returns a tuple with the DefaultReportList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetDefaultSuccessListProfile

func (o *QuoteView) GetDefaultSuccessListProfile() string

GetDefaultSuccessListProfile returns the DefaultSuccessListProfile field value if set, zero value otherwise.

func (*QuoteView) GetDefaultSuccessListProfileOk

func (o *QuoteView) GetDefaultSuccessListProfileOk() (*string, bool)

GetDefaultSuccessListProfileOk returns a tuple with the DefaultSuccessListProfile field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetDefaultTermPeriods

func (o *QuoteView) GetDefaultTermPeriods() int32

GetDefaultTermPeriods returns the DefaultTermPeriods field value if set, zero value otherwise.

func (*QuoteView) GetDefaultTermPeriodsOk

func (o *QuoteView) GetDefaultTermPeriodsOk() (*int32, bool)

GetDefaultTermPeriodsOk returns a tuple with the DefaultTermPeriods field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetDefaultVideoList

func (o *QuoteView) GetDefaultVideoList() string

GetDefaultVideoList returns the DefaultVideoList field value if set, zero value otherwise.

func (*QuoteView) GetDefaultVideoListOk

func (o *QuoteView) GetDefaultVideoListOk() (*string, bool)

GetDefaultVideoListOk returns a tuple with the DefaultVideoList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetDeliveredDate

func (o *QuoteView) GetDeliveredDate() time.Time

GetDeliveredDate returns the DeliveredDate field value if set, zero value otherwise.

func (*QuoteView) GetDeliveredDateOk

func (o *QuoteView) GetDeliveredDateOk() (*time.Time, bool)

GetDeliveredDateOk returns a tuple with the DeliveredDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetDiscountAmount

func (o *QuoteView) GetDiscountAmount() float64

GetDiscountAmount returns the DiscountAmount field value if set, zero value otherwise.

func (*QuoteView) GetDiscountAmountOk

func (o *QuoteView) GetDiscountAmountOk() (*float64, bool)

GetDiscountAmountOk returns a tuple with the DiscountAmount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetExpectedCloseDate

func (o *QuoteView) GetExpectedCloseDate() time.Time

GetExpectedCloseDate returns the ExpectedCloseDate field value if set, zero value otherwise.

func (*QuoteView) GetExpectedCloseDateOk

func (o *QuoteView) GetExpectedCloseDateOk() (*time.Time, bool)

GetExpectedCloseDateOk returns a tuple with the ExpectedCloseDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetExpirationDate

func (o *QuoteView) GetExpirationDate() time.Time

GetExpirationDate returns the ExpirationDate field value if set, zero value otherwise.

func (*QuoteView) GetExpirationDateOk

func (o *QuoteView) GetExpirationDateOk() (*time.Time, bool)

GetExpirationDateOk returns a tuple with the ExpirationDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetExternalReferenceQuoteDemandId

func (o *QuoteView) GetExternalReferenceQuoteDemandId() string

GetExternalReferenceQuoteDemandId returns the ExternalReferenceQuoteDemandId field value if set, zero value otherwise.

func (*QuoteView) GetExternalReferenceQuoteDemandIdOk

func (o *QuoteView) GetExternalReferenceQuoteDemandIdOk() (*string, bool)

GetExternalReferenceQuoteDemandIdOk returns a tuple with the ExternalReferenceQuoteDemandId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetForceManagerApprovalScript

func (o *QuoteView) GetForceManagerApprovalScript() bool

GetForceManagerApprovalScript returns the ForceManagerApprovalScript field value if set, zero value otherwise.

func (*QuoteView) GetForceManagerApprovalScriptOk

func (o *QuoteView) GetForceManagerApprovalScriptOk() (*bool, bool)

GetForceManagerApprovalScriptOk returns a tuple with the ForceManagerApprovalScript field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetGreatAmericaDefaultRateCard

func (o *QuoteView) GetGreatAmericaDefaultRateCard() string

GetGreatAmericaDefaultRateCard returns the GreatAmericaDefaultRateCard field value if set, zero value otherwise.

func (*QuoteView) GetGreatAmericaDefaultRateCardOk

func (o *QuoteView) GetGreatAmericaDefaultRateCardOk() (*string, bool)

GetGreatAmericaDefaultRateCardOk returns a tuple with the GreatAmericaDefaultRateCard field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetGrossMargin

func (o *QuoteView) GetGrossMargin() float64

GetGrossMargin returns the GrossMargin field value if set, zero value otherwise.

func (*QuoteView) GetGrossMarginAmount

func (o *QuoteView) GetGrossMarginAmount() float64

GetGrossMarginAmount returns the GrossMarginAmount field value if set, zero value otherwise.

func (*QuoteView) GetGrossMarginAmountOk

func (o *QuoteView) GetGrossMarginAmountOk() (*float64, bool)

GetGrossMarginAmountOk returns a tuple with the GrossMarginAmount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetGrossMarginOk

func (o *QuoteView) GetGrossMarginOk() (*float64, bool)

GetGrossMarginOk returns a tuple with the GrossMargin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetGst

func (o *QuoteView) GetGst() float64

GetGst returns the Gst field value if set, zero value otherwise.

func (*QuoteView) GetGstConverted

func (o *QuoteView) GetGstConverted() float64

GetGstConverted returns the GstConverted field value if set, zero value otherwise.

func (*QuoteView) GetGstConvertedOk

func (o *QuoteView) GetGstConvertedOk() (*float64, bool)

GetGstConvertedOk returns a tuple with the GstConverted field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetGstOk

func (o *QuoteView) GetGstOk() (*float64, bool)

GetGstOk returns a tuple with the Gst field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetHtmlAgreement

func (o *QuoteView) GetHtmlAgreement() string

GetHtmlAgreement returns the HtmlAgreement field value if set, zero value otherwise.

func (*QuoteView) GetHtmlAgreementOk

func (o *QuoteView) GetHtmlAgreementOk() (*string, bool)

GetHtmlAgreementOk returns a tuple with the HtmlAgreement field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetHtmlNotes1

func (o *QuoteView) GetHtmlNotes1() string

GetHtmlNotes1 returns the HtmlNotes1 field value if set, zero value otherwise.

func (*QuoteView) GetHtmlNotes1Ok

func (o *QuoteView) GetHtmlNotes1Ok() (*string, bool)

GetHtmlNotes1Ok returns a tuple with the HtmlNotes1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetHtmlNotes2

func (o *QuoteView) GetHtmlNotes2() string

GetHtmlNotes2 returns the HtmlNotes2 field value if set, zero value otherwise.

func (*QuoteView) GetHtmlNotes2Ok

func (o *QuoteView) GetHtmlNotes2Ok() (*string, bool)

GetHtmlNotes2Ok returns a tuple with the HtmlNotes2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetId

func (o *QuoteView) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*QuoteView) GetIdOk

func (o *QuoteView) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetIncludeZeroSuggestedInDiscount

func (o *QuoteView) GetIncludeZeroSuggestedInDiscount() bool

GetIncludeZeroSuggestedInDiscount returns the IncludeZeroSuggestedInDiscount field value if set, zero value otherwise.

func (*QuoteView) GetIncludeZeroSuggestedInDiscountOk

func (o *QuoteView) GetIncludeZeroSuggestedInDiscountOk() (*bool, bool)

GetIncludeZeroSuggestedInDiscountOk returns a tuple with the IncludeZeroSuggestedInDiscount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetInsideRep

func (o *QuoteView) GetInsideRep() string

GetInsideRep returns the InsideRep field value if set, zero value otherwise.

func (*QuoteView) GetInsideRepOk

func (o *QuoteView) GetInsideRepOk() (*string, bool)

GetInsideRepOk returns a tuple with the InsideRep field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetInvoicePostDate

func (o *QuoteView) GetInvoicePostDate() time.Time

GetInvoicePostDate returns the InvoicePostDate field value if set, zero value otherwise.

func (*QuoteView) GetInvoicePostDateOk

func (o *QuoteView) GetInvoicePostDateOk() (*time.Time, bool)

GetInvoicePostDateOk returns a tuple with the InvoicePostDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetInvoicePostStatus

func (o *QuoteView) GetInvoicePostStatus() string

GetInvoicePostStatus returns the InvoicePostStatus field value if set, zero value otherwise.

func (*QuoteView) GetInvoicePostStatusOk

func (o *QuoteView) GetInvoicePostStatusOk() (*string, bool)

GetInvoicePostStatusOk returns a tuple with the InvoicePostStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetInvoicePostUser

func (o *QuoteView) GetInvoicePostUser() string

GetInvoicePostUser returns the InvoicePostUser field value if set, zero value otherwise.

func (*QuoteView) GetInvoicePostUserOk

func (o *QuoteView) GetInvoicePostUserOk() (*string, bool)

GetInvoicePostUserOk returns a tuple with the InvoicePostUser field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetIsAccepted

func (o *QuoteView) GetIsAccepted() bool

GetIsAccepted returns the IsAccepted field value if set, zero value otherwise.

func (*QuoteView) GetIsAcceptedOk

func (o *QuoteView) GetIsAcceptedOk() (*bool, bool)

GetIsAcceptedOk returns a tuple with the IsAccepted field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetIsArchive

func (o *QuoteView) GetIsArchive() bool

GetIsArchive returns the IsArchive field value if set, zero value otherwise.

func (*QuoteView) GetIsArchiveOk

func (o *QuoteView) GetIsArchiveOk() (*bool, bool)

GetIsArchiveOk returns a tuple with the IsArchive field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetIsLost

func (o *QuoteView) GetIsLost() bool

GetIsLost returns the IsLost field value if set, zero value otherwise.

func (*QuoteView) GetIsLostOk

func (o *QuoteView) GetIsLostOk() (*bool, bool)

GetIsLostOk returns a tuple with the IsLost field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetIsManagerApproved

func (o *QuoteView) GetIsManagerApproved() bool

GetIsManagerApproved returns the IsManagerApproved field value if set, zero value otherwise.

func (*QuoteView) GetIsManagerApprovedOk

func (o *QuoteView) GetIsManagerApprovedOk() (*bool, bool)

GetIsManagerApprovedOk returns a tuple with the IsManagerApproved field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetIsOrderPorterApproved

func (o *QuoteView) GetIsOrderPorterApproved() bool

GetIsOrderPorterApproved returns the IsOrderPorterApproved field value if set, zero value otherwise.

func (*QuoteView) GetIsOrderPorterApprovedOk

func (o *QuoteView) GetIsOrderPorterApprovedOk() (*bool, bool)

GetIsOrderPorterApprovedOk returns a tuple with the IsOrderPorterApproved field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetIsQuoteDemand

func (o *QuoteView) GetIsQuoteDemand() bool

GetIsQuoteDemand returns the IsQuoteDemand field value if set, zero value otherwise.

func (*QuoteView) GetIsQuoteDemandOk

func (o *QuoteView) GetIsQuoteDemandOk() (*bool, bool)

GetIsQuoteDemandOk returns a tuple with the IsQuoteDemand field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetIsRequestQuote

func (o *QuoteView) GetIsRequestQuote() bool

GetIsRequestQuote returns the IsRequestQuote field value if set, zero value otherwise.

func (*QuoteView) GetIsRequestQuoteOk

func (o *QuoteView) GetIsRequestQuoteOk() (*bool, bool)

GetIsRequestQuoteOk returns a tuple with the IsRequestQuote field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetIsRequestTemplate

func (o *QuoteView) GetIsRequestTemplate() bool

GetIsRequestTemplate returns the IsRequestTemplate field value if set, zero value otherwise.

func (*QuoteView) GetIsRequestTemplateOk

func (o *QuoteView) GetIsRequestTemplateOk() (*bool, bool)

GetIsRequestTemplateOk returns a tuple with the IsRequestTemplate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetIsSent

func (o *QuoteView) GetIsSent() bool

GetIsSent returns the IsSent field value if set, zero value otherwise.

func (*QuoteView) GetIsSentOk

func (o *QuoteView) GetIsSentOk() (*bool, bool)

GetIsSentOk returns a tuple with the IsSent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetIsSuccessListDisabled

func (o *QuoteView) GetIsSuccessListDisabled() bool

GetIsSuccessListDisabled returns the IsSuccessListDisabled field value if set, zero value otherwise.

func (*QuoteView) GetIsSuccessListDisabledOk

func (o *QuoteView) GetIsSuccessListDisabledOk() (*bool, bool)

GetIsSuccessListDisabledOk returns a tuple with the IsSuccessListDisabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetIsTaxCalculated

func (o *QuoteView) GetIsTaxCalculated() bool

GetIsTaxCalculated returns the IsTaxCalculated field value if set, zero value otherwise.

func (*QuoteView) GetIsTaxCalculatedOk

func (o *QuoteView) GetIsTaxCalculatedOk() (*bool, bool)

GetIsTaxCalculatedOk returns a tuple with the IsTaxCalculated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetKeywords

func (o *QuoteView) GetKeywords() string

GetKeywords returns the Keywords field value if set, zero value otherwise.

func (*QuoteView) GetKeywordsOk

func (o *QuoteView) GetKeywordsOk() (*string, bool)

GetKeywordsOk returns a tuple with the Keywords field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetLocationId

func (o *QuoteView) GetLocationId() string

GetLocationId returns the LocationId field value if set, zero value otherwise.

func (*QuoteView) GetLocationIdOk

func (o *QuoteView) GetLocationIdOk() (*string, bool)

GetLocationIdOk returns a tuple with the LocationId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetLongDescription

func (o *QuoteView) GetLongDescription() string

GetLongDescription returns the LongDescription field value if set, zero value otherwise.

func (*QuoteView) GetLongDescriptionOk

func (o *QuoteView) GetLongDescriptionOk() (*string, bool)

GetLongDescriptionOk returns a tuple with the LongDescription field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetLostReason

func (o *QuoteView) GetLostReason() string

GetLostReason returns the LostReason field value if set, zero value otherwise.

func (*QuoteView) GetLostReasonOk

func (o *QuoteView) GetLostReasonOk() (*string, bool)

GetLostReasonOk returns a tuple with the LostReason field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetMarkup

func (o *QuoteView) GetMarkup() float64

GetMarkup returns the Markup field value if set, zero value otherwise.

func (*QuoteView) GetMarkupOk

func (o *QuoteView) GetMarkupOk() (*float64, bool)

GetMarkupOk returns a tuple with the Markup field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetMasterAgreement

func (o *QuoteView) GetMasterAgreement() string

GetMasterAgreement returns the MasterAgreement field value if set, zero value otherwise.

func (*QuoteView) GetMasterAgreementNumber

func (o *QuoteView) GetMasterAgreementNumber() string

GetMasterAgreementNumber returns the MasterAgreementNumber field value if set, zero value otherwise.

func (*QuoteView) GetMasterAgreementNumberOk

func (o *QuoteView) GetMasterAgreementNumberOk() (*string, bool)

GetMasterAgreementNumberOk returns a tuple with the MasterAgreementNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetMasterAgreementOk

func (o *QuoteView) GetMasterAgreementOk() (*string, bool)

GetMasterAgreementOk returns a tuple with the MasterAgreement field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetModifyDate

func (o *QuoteView) GetModifyDate() time.Time

GetModifyDate returns the ModifyDate field value if set, zero value otherwise.

func (*QuoteView) GetModifyDateOk

func (o *QuoteView) GetModifyDateOk() (*time.Time, bool)

GetModifyDateOk returns a tuple with the ModifyDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetName

func (o *QuoteView) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*QuoteView) GetNameOk

func (o *QuoteView) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetNetMargin

func (o *QuoteView) GetNetMargin() float64

GetNetMargin returns the NetMargin field value if set, zero value otherwise.

func (*QuoteView) GetNetMarginOk

func (o *QuoteView) GetNetMarginOk() (*float64, bool)

GetNetMarginOk returns a tuple with the NetMargin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetNetSuiteSubsidiary

func (o *QuoteView) GetNetSuiteSubsidiary() string

GetNetSuiteSubsidiary returns the NetSuiteSubsidiary field value if set, zero value otherwise.

func (*QuoteView) GetNetSuiteSubsidiaryOk

func (o *QuoteView) GetNetSuiteSubsidiaryOk() (*string, bool)

GetNetSuiteSubsidiaryOk returns a tuple with the NetSuiteSubsidiary field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetOptionalAmount

func (o *QuoteView) GetOptionalAmount() float64

GetOptionalAmount returns the OptionalAmount field value if set, zero value otherwise.

func (*QuoteView) GetOptionalAmountConverted

func (o *QuoteView) GetOptionalAmountConverted() float64

GetOptionalAmountConverted returns the OptionalAmountConverted field value if set, zero value otherwise.

func (*QuoteView) GetOptionalAmountConvertedOk

func (o *QuoteView) GetOptionalAmountConvertedOk() (*float64, bool)

GetOptionalAmountConvertedOk returns a tuple with the OptionalAmountConverted field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetOptionalAmountOk

func (o *QuoteView) GetOptionalAmountOk() (*float64, bool)

GetOptionalAmountOk returns a tuple with the OptionalAmount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetOrderPorterDownPaymentMinimum

func (o *QuoteView) GetOrderPorterDownPaymentMinimum() float64

GetOrderPorterDownPaymentMinimum returns the OrderPorterDownPaymentMinimum field value if set, zero value otherwise.

func (*QuoteView) GetOrderPorterDownPaymentMinimumOk

func (o *QuoteView) GetOrderPorterDownPaymentMinimumOk() (*float64, bool)

GetOrderPorterDownPaymentMinimumOk returns a tuple with the OrderPorterDownPaymentMinimum field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetOrderPorterDownPaymentPercent

func (o *QuoteView) GetOrderPorterDownPaymentPercent() float64

GetOrderPorterDownPaymentPercent returns the OrderPorterDownPaymentPercent field value if set, zero value otherwise.

func (*QuoteView) GetOrderPorterDownPaymentPercentOk

func (o *QuoteView) GetOrderPorterDownPaymentPercentOk() (*float64, bool)

GetOrderPorterDownPaymentPercentOk returns a tuple with the OrderPorterDownPaymentPercent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetOrderPorterEmailSignature

func (o *QuoteView) GetOrderPorterEmailSignature() string

GetOrderPorterEmailSignature returns the OrderPorterEmailSignature field value if set, zero value otherwise.

func (*QuoteView) GetOrderPorterEmailSignatureOk

func (o *QuoteView) GetOrderPorterEmailSignatureOk() (*string, bool)

GetOrderPorterEmailSignatureOk returns a tuple with the OrderPorterEmailSignature field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetOrderPorterFilteredIp

func (o *QuoteView) GetOrderPorterFilteredIp() string

GetOrderPorterFilteredIp returns the OrderPorterFilteredIp field value if set, zero value otherwise.

func (*QuoteView) GetOrderPorterFilteredIpOk

func (o *QuoteView) GetOrderPorterFilteredIpOk() (*string, bool)

GetOrderPorterFilteredIpOk returns a tuple with the OrderPorterFilteredIp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetOrderPorterFirstVisitDate

func (o *QuoteView) GetOrderPorterFirstVisitDate() time.Time

GetOrderPorterFirstVisitDate returns the OrderPorterFirstVisitDate field value if set, zero value otherwise.

func (*QuoteView) GetOrderPorterFirstVisitDateOk

func (o *QuoteView) GetOrderPorterFirstVisitDateOk() (*time.Time, bool)

GetOrderPorterFirstVisitDateOk returns a tuple with the OrderPorterFirstVisitDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetOrderPorterFullPaymentAllowed

func (o *QuoteView) GetOrderPorterFullPaymentAllowed() bool

GetOrderPorterFullPaymentAllowed returns the OrderPorterFullPaymentAllowed field value if set, zero value otherwise.

func (*QuoteView) GetOrderPorterFullPaymentAllowedOk

func (o *QuoteView) GetOrderPorterFullPaymentAllowedOk() (*bool, bool)

GetOrderPorterFullPaymentAllowedOk returns a tuple with the OrderPorterFullPaymentAllowed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetOrderPorterGroup

func (o *QuoteView) GetOrderPorterGroup() string

GetOrderPorterGroup returns the OrderPorterGroup field value if set, zero value otherwise.

func (*QuoteView) GetOrderPorterGroupOk

func (o *QuoteView) GetOrderPorterGroupOk() (*string, bool)

GetOrderPorterGroupOk returns a tuple with the OrderPorterGroup field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetOrderPorterHasFirstVisitOccurred

func (o *QuoteView) GetOrderPorterHasFirstVisitOccurred() bool

GetOrderPorterHasFirstVisitOccurred returns the OrderPorterHasFirstVisitOccurred field value if set, zero value otherwise.

func (*QuoteView) GetOrderPorterHasFirstVisitOccurredOk

func (o *QuoteView) GetOrderPorterHasFirstVisitOccurredOk() (*bool, bool)

GetOrderPorterHasFirstVisitOccurredOk returns a tuple with the OrderPorterHasFirstVisitOccurred field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetOrderPorterInitialsSig

func (o *QuoteView) GetOrderPorterInitialsSig() string

GetOrderPorterInitialsSig returns the OrderPorterInitialsSig field value if set, zero value otherwise.

func (*QuoteView) GetOrderPorterInitialsSigOk

func (o *QuoteView) GetOrderPorterInitialsSigOk() (*string, bool)

GetOrderPorterInitialsSigOk returns a tuple with the OrderPorterInitialsSig field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetOrderPorterIsUploaded

func (o *QuoteView) GetOrderPorterIsUploaded() bool

GetOrderPorterIsUploaded returns the OrderPorterIsUploaded field value if set, zero value otherwise.

func (*QuoteView) GetOrderPorterIsUploadedOk

func (o *QuoteView) GetOrderPorterIsUploadedOk() (*bool, bool)

GetOrderPorterIsUploadedOk returns a tuple with the OrderPorterIsUploaded field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetOrderPorterPasscode

func (o *QuoteView) GetOrderPorterPasscode() string

GetOrderPorterPasscode returns the OrderPorterPasscode field value if set, zero value otherwise.

func (*QuoteView) GetOrderPorterPasscodeOk

func (o *QuoteView) GetOrderPorterPasscodeOk() (*string, bool)

GetOrderPorterPasscodeOk returns a tuple with the OrderPorterPasscode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetOrderPorterPaymentMode

func (o *QuoteView) GetOrderPorterPaymentMode() string

GetOrderPorterPaymentMode returns the OrderPorterPaymentMode field value if set, zero value otherwise.

func (*QuoteView) GetOrderPorterPaymentModeOk

func (o *QuoteView) GetOrderPorterPaymentModeOk() (*string, bool)

GetOrderPorterPaymentModeOk returns a tuple with the OrderPorterPaymentMode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetOrderPorterPreviewPicture

func (o *QuoteView) GetOrderPorterPreviewPicture() ReferenceLink

GetOrderPorterPreviewPicture returns the OrderPorterPreviewPicture field value if set, zero value otherwise.

func (*QuoteView) GetOrderPorterPreviewPictureOk

func (o *QuoteView) GetOrderPorterPreviewPictureOk() (*ReferenceLink, bool)

GetOrderPorterPreviewPictureOk returns a tuple with the OrderPorterPreviewPicture field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetOrderPorterShowImage

func (o *QuoteView) GetOrderPorterShowImage() bool

GetOrderPorterShowImage returns the OrderPorterShowImage field value if set, zero value otherwise.

func (*QuoteView) GetOrderPorterShowImageOk

func (o *QuoteView) GetOrderPorterShowImageOk() (*bool, bool)

GetOrderPorterShowImageOk returns a tuple with the OrderPorterShowImage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetOrderPorterShowItemOptionalCheckbox

func (o *QuoteView) GetOrderPorterShowItemOptionalCheckbox() bool

GetOrderPorterShowItemOptionalCheckbox returns the OrderPorterShowItemOptionalCheckbox field value if set, zero value otherwise.

func (*QuoteView) GetOrderPorterShowItemOptionalCheckboxOk

func (o *QuoteView) GetOrderPorterShowItemOptionalCheckboxOk() (*bool, bool)

GetOrderPorterShowItemOptionalCheckboxOk returns a tuple with the OrderPorterShowItemOptionalCheckbox field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetOrderPorterShowLineDetails

func (o *QuoteView) GetOrderPorterShowLineDetails() bool

GetOrderPorterShowLineDetails returns the OrderPorterShowLineDetails field value if set, zero value otherwise.

func (*QuoteView) GetOrderPorterShowLineDetailsOk

func (o *QuoteView) GetOrderPorterShowLineDetailsOk() (*bool, bool)

GetOrderPorterShowLineDetailsOk returns a tuple with the OrderPorterShowLineDetails field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetOrderPorterShowQuantity

func (o *QuoteView) GetOrderPorterShowQuantity() bool

GetOrderPorterShowQuantity returns the OrderPorterShowQuantity field value if set, zero value otherwise.

func (*QuoteView) GetOrderPorterShowQuantityOk

func (o *QuoteView) GetOrderPorterShowQuantityOk() (*bool, bool)

GetOrderPorterShowQuantityOk returns a tuple with the OrderPorterShowQuantity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetOrderPorterShowSignature

func (o *QuoteView) GetOrderPorterShowSignature() bool

GetOrderPorterShowSignature returns the OrderPorterShowSignature field value if set, zero value otherwise.

func (*QuoteView) GetOrderPorterShowSignatureOk

func (o *QuoteView) GetOrderPorterShowSignatureOk() (*bool, bool)

GetOrderPorterShowSignatureOk returns a tuple with the OrderPorterShowSignature field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetOrderPorterShowTabOptionalCheckbox

func (o *QuoteView) GetOrderPorterShowTabOptionalCheckbox() bool

GetOrderPorterShowTabOptionalCheckbox returns the OrderPorterShowTabOptionalCheckbox field value if set, zero value otherwise.

func (*QuoteView) GetOrderPorterShowTabOptionalCheckboxOk

func (o *QuoteView) GetOrderPorterShowTabOptionalCheckboxOk() (*bool, bool)

GetOrderPorterShowTabOptionalCheckboxOk returns a tuple with the OrderPorterShowTabOptionalCheckbox field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetOrderPorterSignedDate

func (o *QuoteView) GetOrderPorterSignedDate() time.Time

GetOrderPorterSignedDate returns the OrderPorterSignedDate field value if set, zero value otherwise.

func (*QuoteView) GetOrderPorterSignedDateOk

func (o *QuoteView) GetOrderPorterSignedDateOk() (*time.Time, bool)

GetOrderPorterSignedDateOk returns a tuple with the OrderPorterSignedDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetOrderPorterSignedIp

func (o *QuoteView) GetOrderPorterSignedIp() string

GetOrderPorterSignedIp returns the OrderPorterSignedIp field value if set, zero value otherwise.

func (*QuoteView) GetOrderPorterSignedIpOk

func (o *QuoteView) GetOrderPorterSignedIpOk() (*string, bool)

GetOrderPorterSignedIpOk returns a tuple with the OrderPorterSignedIp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetOrderPorterTemplate

func (o *QuoteView) GetOrderPorterTemplate() string

GetOrderPorterTemplate returns the OrderPorterTemplate field value if set, zero value otherwise.

func (*QuoteView) GetOrderPorterTemplateOk

func (o *QuoteView) GetOrderPorterTemplateOk() (*string, bool)

GetOrderPorterTemplateOk returns a tuple with the OrderPorterTemplate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetOrderPorterTheme

func (o *QuoteView) GetOrderPorterTheme() string

GetOrderPorterTheme returns the OrderPorterTheme field value if set, zero value otherwise.

func (*QuoteView) GetOrderPorterThemeOk

func (o *QuoteView) GetOrderPorterThemeOk() (*string, bool)

GetOrderPorterThemeOk returns a tuple with the OrderPorterTheme field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetOrderPorterVisits

func (o *QuoteView) GetOrderPorterVisits() int32

GetOrderPorterVisits returns the OrderPorterVisits field value if set, zero value otherwise.

func (*QuoteView) GetOrderPorterVisitsOk

func (o *QuoteView) GetOrderPorterVisitsOk() (*int32, bool)

GetOrderPorterVisitsOk returns a tuple with the OrderPorterVisits field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetOriginalQuoteId

func (o *QuoteView) GetOriginalQuoteId() string

GetOriginalQuoteId returns the OriginalQuoteId field value if set, zero value otherwise.

func (*QuoteView) GetOriginalQuoteIdOk

func (o *QuoteView) GetOriginalQuoteIdOk() (*string, bool)

GetOriginalQuoteIdOk returns a tuple with the OriginalQuoteId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetOverrideRate

func (o *QuoteView) GetOverrideRate() float64

GetOverrideRate returns the OverrideRate field value if set, zero value otherwise.

func (*QuoteView) GetOverrideRateOk

func (o *QuoteView) GetOverrideRateOk() (*float64, bool)

GetOverrideRateOk returns a tuple with the OverrideRate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetPeerReviewDocument

func (o *QuoteView) GetPeerReviewDocument() string

GetPeerReviewDocument returns the PeerReviewDocument field value if set, zero value otherwise.

func (*QuoteView) GetPeerReviewDocumentOk

func (o *QuoteView) GetPeerReviewDocumentOk() (*string, bool)

GetPeerReviewDocumentOk returns a tuple with the PeerReviewDocument field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetPeerReviewStatus

func (o *QuoteView) GetPeerReviewStatus() string

GetPeerReviewStatus returns the PeerReviewStatus field value if set, zero value otherwise.

func (*QuoteView) GetPeerReviewStatusOk

func (o *QuoteView) GetPeerReviewStatusOk() (*string, bool)

GetPeerReviewStatusOk returns a tuple with the PeerReviewStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetPicture

func (o *QuoteView) GetPicture() ReferenceLink

GetPicture returns the Picture field value if set, zero value otherwise.

func (*QuoteView) GetPictureOk

func (o *QuoteView) GetPictureOk() (*ReferenceLink, bool)

GetPictureOk returns a tuple with the Picture field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetPrimaryRep

func (o *QuoteView) GetPrimaryRep() string

GetPrimaryRep returns the PrimaryRep field value if set, zero value otherwise.

func (*QuoteView) GetPrimaryRepOk

func (o *QuoteView) GetPrimaryRepOk() (*string, bool)

GetPrimaryRepOk returns a tuple with the PrimaryRep field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetPrintPackageHeaderPrice

func (o *QuoteView) GetPrintPackageHeaderPrice() bool

GetPrintPackageHeaderPrice returns the PrintPackageHeaderPrice field value if set, zero value otherwise.

func (*QuoteView) GetPrintPackageHeaderPriceOk

func (o *QuoteView) GetPrintPackageHeaderPriceOk() (*bool, bool)

GetPrintPackageHeaderPriceOk returns a tuple with the PrintPackageHeaderPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetPrintPackageItemPrice

func (o *QuoteView) GetPrintPackageItemPrice() bool

GetPrintPackageItemPrice returns the PrintPackageItemPrice field value if set, zero value otherwise.

func (*QuoteView) GetPrintPackageItemPriceOk

func (o *QuoteView) GetPrintPackageItemPriceOk() (*bool, bool)

GetPrintPackageItemPriceOk returns a tuple with the PrintPackageItemPrice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetProbability

func (o *QuoteView) GetProbability() float64

GetProbability returns the Probability field value if set, zero value otherwise.

func (*QuoteView) GetProbabilityOk

func (o *QuoteView) GetProbabilityOk() (*float64, bool)

GetProbabilityOk returns a tuple with the Probability field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetPromiseDate

func (o *QuoteView) GetPromiseDate() time.Time

GetPromiseDate returns the PromiseDate field value if set, zero value otherwise.

func (*QuoteView) GetPromiseDateChangesCount

func (o *QuoteView) GetPromiseDateChangesCount() int32

GetPromiseDateChangesCount returns the PromiseDateChangesCount field value if set, zero value otherwise.

func (*QuoteView) GetPromiseDateChangesCountOk

func (o *QuoteView) GetPromiseDateChangesCountOk() (*int32, bool)

GetPromiseDateChangesCountOk returns a tuple with the PromiseDateChangesCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetPromiseDateOk

func (o *QuoteView) GetPromiseDateOk() (*time.Time, bool)

GetPromiseDateOk returns a tuple with the PromiseDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetPst

func (o *QuoteView) GetPst() float64

GetPst returns the Pst field value if set, zero value otherwise.

func (*QuoteView) GetPstConverted

func (o *QuoteView) GetPstConverted() float64

GetPstConverted returns the PstConverted field value if set, zero value otherwise.

func (*QuoteView) GetPstConvertedOk

func (o *QuoteView) GetPstConvertedOk() (*float64, bool)

GetPstConvertedOk returns a tuple with the PstConverted field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetPstOk

func (o *QuoteView) GetPstOk() (*float64, bool)

GetPstOk returns a tuple with the Pst field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetPublishNumber

func (o *QuoteView) GetPublishNumber() int32

GetPublishNumber returns the PublishNumber field value if set, zero value otherwise.

func (*QuoteView) GetPublishNumberOk

func (o *QuoteView) GetPublishNumberOk() (*int32, bool)

GetPublishNumberOk returns a tuple with the PublishNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetPurchaseOrderNumber

func (o *QuoteView) GetPurchaseOrderNumber() string

GetPurchaseOrderNumber returns the PurchaseOrderNumber field value if set, zero value otherwise.

func (*QuoteView) GetPurchaseOrderNumberOk

func (o *QuoteView) GetPurchaseOrderNumberOk() (*string, bool)

GetPurchaseOrderNumberOk returns a tuple with the PurchaseOrderNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetQuickbooksTemplate

func (o *QuoteView) GetQuickbooksTemplate() string

GetQuickbooksTemplate returns the QuickbooksTemplate field value if set, zero value otherwise.

func (*QuoteView) GetQuickbooksTemplateOk

func (o *QuoteView) GetQuickbooksTemplateOk() (*string, bool)

GetQuickbooksTemplateOk returns a tuple with the QuickbooksTemplate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetQuoteCost

func (o *QuoteView) GetQuoteCost() float64

GetQuoteCost returns the QuoteCost field value if set, zero value otherwise.

func (*QuoteView) GetQuoteCostOk

func (o *QuoteView) GetQuoteCostOk() (*float64, bool)

GetQuoteCostOk returns a tuple with the QuoteCost field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetQuoteCreator

func (o *QuoteView) GetQuoteCreator() string

GetQuoteCreator returns the QuoteCreator field value if set, zero value otherwise.

func (*QuoteView) GetQuoteCreatorOk

func (o *QuoteView) GetQuoteCreatorOk() (*string, bool)

GetQuoteCreatorOk returns a tuple with the QuoteCreator field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetQuoteNotes

func (o *QuoteView) GetQuoteNotes() string

GetQuoteNotes returns the QuoteNotes field value if set, zero value otherwise.

func (*QuoteView) GetQuoteNotesOk

func (o *QuoteView) GetQuoteNotesOk() (*string, bool)

GetQuoteNotesOk returns a tuple with the QuoteNotes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetQuoteNumber

func (o *QuoteView) GetQuoteNumber() int32

GetQuoteNumber returns the QuoteNumber field value if set, zero value otherwise.

func (*QuoteView) GetQuoteNumberOk

func (o *QuoteView) GetQuoteNumberOk() (*int32, bool)

GetQuoteNumberOk returns a tuple with the QuoteNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetQuotePreface

func (o *QuoteView) GetQuotePreface() string

GetQuotePreface returns the QuotePreface field value if set, zero value otherwise.

func (*QuoteView) GetQuotePrefaceOk

func (o *QuoteView) GetQuotePrefaceOk() (*string, bool)

GetQuotePrefaceOk returns a tuple with the QuotePreface field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetQuoteStatus

func (o *QuoteView) GetQuoteStatus() string

GetQuoteStatus returns the QuoteStatus field value if set, zero value otherwise.

func (*QuoteView) GetQuoteStatusOk

func (o *QuoteView) GetQuoteStatusOk() (*string, bool)

GetQuoteStatusOk returns a tuple with the QuoteStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetQuoteTotal

func (o *QuoteView) GetQuoteTotal() float64

GetQuoteTotal returns the QuoteTotal field value if set, zero value otherwise.

func (*QuoteView) GetQuoteTotalOk

func (o *QuoteView) GetQuoteTotalOk() (*float64, bool)

GetQuoteTotalOk returns a tuple with the QuoteTotal field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetQuoteType

func (o *QuoteView) GetQuoteType() string

GetQuoteType returns the QuoteType field value if set, zero value otherwise.

func (*QuoteView) GetQuoteTypeOk

func (o *QuoteView) GetQuoteTypeOk() (*string, bool)

GetQuoteTypeOk returns a tuple with the QuoteType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetQuoteVersion

func (o *QuoteView) GetQuoteVersion() int32

GetQuoteVersion returns the QuoteVersion field value if set, zero value otherwise.

func (*QuoteView) GetQuoteVersionOk

func (o *QuoteView) GetQuoteVersionOk() (*int32, bool)

GetQuoteVersionOk returns a tuple with the QuoteVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetRecurringCost

func (o *QuoteView) GetRecurringCost() float64

GetRecurringCost returns the RecurringCost field value if set, zero value otherwise.

func (*QuoteView) GetRecurringCostOk

func (o *QuoteView) GetRecurringCostOk() (*float64, bool)

GetRecurringCostOk returns a tuple with the RecurringCost field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetRecurringDiscountAmount

func (o *QuoteView) GetRecurringDiscountAmount() float64

GetRecurringDiscountAmount returns the RecurringDiscountAmount field value if set, zero value otherwise.

func (*QuoteView) GetRecurringDiscountAmountOk

func (o *QuoteView) GetRecurringDiscountAmountOk() (*float64, bool)

GetRecurringDiscountAmountOk returns a tuple with the RecurringDiscountAmount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetRecurringGst

func (o *QuoteView) GetRecurringGst() float64

GetRecurringGst returns the RecurringGst field value if set, zero value otherwise.

func (*QuoteView) GetRecurringGstOk

func (o *QuoteView) GetRecurringGstOk() (*float64, bool)

GetRecurringGstOk returns a tuple with the RecurringGst field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetRecurringOptionalAmount

func (o *QuoteView) GetRecurringOptionalAmount() float64

GetRecurringOptionalAmount returns the RecurringOptionalAmount field value if set, zero value otherwise.

func (*QuoteView) GetRecurringOptionalAmountOk

func (o *QuoteView) GetRecurringOptionalAmountOk() (*float64, bool)

GetRecurringOptionalAmountOk returns a tuple with the RecurringOptionalAmount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetRecurringPst

func (o *QuoteView) GetRecurringPst() float64

GetRecurringPst returns the RecurringPst field value if set, zero value otherwise.

func (*QuoteView) GetRecurringPstOk

func (o *QuoteView) GetRecurringPstOk() (*float64, bool)

GetRecurringPstOk returns a tuple with the RecurringPst field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetRecurringSubtotal

func (o *QuoteView) GetRecurringSubtotal() float64

GetRecurringSubtotal returns the RecurringSubtotal field value if set, zero value otherwise.

func (*QuoteView) GetRecurringSubtotalOk

func (o *QuoteView) GetRecurringSubtotalOk() (*float64, bool)

GetRecurringSubtotalOk returns a tuple with the RecurringSubtotal field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetRecurringSuggestedDiscountAmount

func (o *QuoteView) GetRecurringSuggestedDiscountAmount() float64

GetRecurringSuggestedDiscountAmount returns the RecurringSuggestedDiscountAmount field value if set, zero value otherwise.

func (*QuoteView) GetRecurringSuggestedDiscountAmountOk

func (o *QuoteView) GetRecurringSuggestedDiscountAmountOk() (*float64, bool)

GetRecurringSuggestedDiscountAmountOk returns a tuple with the RecurringSuggestedDiscountAmount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetRecurringSuggestedTotal

func (o *QuoteView) GetRecurringSuggestedTotal() float64

GetRecurringSuggestedTotal returns the RecurringSuggestedTotal field value if set, zero value otherwise.

func (*QuoteView) GetRecurringSuggestedTotalOk

func (o *QuoteView) GetRecurringSuggestedTotalOk() (*float64, bool)

GetRecurringSuggestedTotalOk returns a tuple with the RecurringSuggestedTotal field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetRecurringTax

func (o *QuoteView) GetRecurringTax() float64

GetRecurringTax returns the RecurringTax field value if set, zero value otherwise.

func (*QuoteView) GetRecurringTaxOk

func (o *QuoteView) GetRecurringTaxOk() (*float64, bool)

GetRecurringTaxOk returns a tuple with the RecurringTax field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetRecurringTotal

func (o *QuoteView) GetRecurringTotal() float64

GetRecurringTotal returns the RecurringTotal field value if set, zero value otherwise.

func (*QuoteView) GetRecurringTotalOk

func (o *QuoteView) GetRecurringTotalOk() (*float64, bool)

GetRecurringTotalOk returns a tuple with the RecurringTotal field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetRequestDate

func (o *QuoteView) GetRequestDate() time.Time

GetRequestDate returns the RequestDate field value if set, zero value otherwise.

func (*QuoteView) GetRequestDateOk

func (o *QuoteView) GetRequestDateOk() (*time.Time, bool)

GetRequestDateOk returns a tuple with the RequestDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetRequestId

func (o *QuoteView) GetRequestId() string

GetRequestId returns the RequestId field value if set, zero value otherwise.

func (*QuoteView) GetRequestIdOk

func (o *QuoteView) GetRequestIdOk() (*string, bool)

GetRequestIdOk returns a tuple with the RequestId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetRequestedBy

func (o *QuoteView) GetRequestedBy() string

GetRequestedBy returns the RequestedBy field value if set, zero value otherwise.

func (*QuoteView) GetRequestedByOk

func (o *QuoteView) GetRequestedByOk() (*string, bool)

GetRequestedByOk returns a tuple with the RequestedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetRequiresApproval

func (o *QuoteView) GetRequiresApproval() bool

GetRequiresApproval returns the RequiresApproval field value if set, zero value otherwise.

func (*QuoteView) GetRequiresApprovalOk

func (o *QuoteView) GetRequiresApprovalOk() (*bool, bool)

GetRequiresApprovalOk returns a tuple with the RequiresApproval field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetRequiresNameChange

func (o *QuoteView) GetRequiresNameChange() bool

GetRequiresNameChange returns the RequiresNameChange field value if set, zero value otherwise.

func (*QuoteView) GetRequiresNameChangeOk

func (o *QuoteView) GetRequiresNameChangeOk() (*bool, bool)

GetRequiresNameChangeOk returns a tuple with the RequiresNameChange field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetSalesForceDefaultOppType

func (o *QuoteView) GetSalesForceDefaultOppType() string

GetSalesForceDefaultOppType returns the SalesForceDefaultOppType field value if set, zero value otherwise.

func (*QuoteView) GetSalesForceDefaultOppTypeOk

func (o *QuoteView) GetSalesForceDefaultOppTypeOk() (*string, bool)

GetSalesForceDefaultOppTypeOk returns a tuple with the SalesForceDefaultOppType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetSalesForceDefaultPriceList

func (o *QuoteView) GetSalesForceDefaultPriceList() string

GetSalesForceDefaultPriceList returns the SalesForceDefaultPriceList field value if set, zero value otherwise.

func (*QuoteView) GetSalesForceDefaultPriceListOk

func (o *QuoteView) GetSalesForceDefaultPriceListOk() (*string, bool)

GetSalesForceDefaultPriceListOk returns a tuple with the SalesForceDefaultPriceList field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetSalesForceDefaultRecurringTermType

func (o *QuoteView) GetSalesForceDefaultRecurringTermType() string

GetSalesForceDefaultRecurringTermType returns the SalesForceDefaultRecurringTermType field value if set, zero value otherwise.

func (*QuoteView) GetSalesForceDefaultRecurringTermTypeOk

func (o *QuoteView) GetSalesForceDefaultRecurringTermTypeOk() (*string, bool)

GetSalesForceDefaultRecurringTermTypeOk returns a tuple with the SalesForceDefaultRecurringTermType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetSelectedTermsTotal

func (o *QuoteView) GetSelectedTermsTotal() float64

GetSelectedTermsTotal returns the SelectedTermsTotal field value if set, zero value otherwise.

func (*QuoteView) GetSelectedTermsTotalOk

func (o *QuoteView) GetSelectedTermsTotalOk() (*float64, bool)

GetSelectedTermsTotalOk returns a tuple with the SelectedTermsTotal field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetShippingSubtotal

func (o *QuoteView) GetShippingSubtotal() float64

GetShippingSubtotal returns the ShippingSubtotal field value if set, zero value otherwise.

func (*QuoteView) GetShippingSubtotalOk

func (o *QuoteView) GetShippingSubtotalOk() (*float64, bool)

GetShippingSubtotalOk returns a tuple with the ShippingSubtotal field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetShippingTax

func (o *QuoteView) GetShippingTax() float64

GetShippingTax returns the ShippingTax field value if set, zero value otherwise.

func (*QuoteView) GetShippingTaxOk

func (o *QuoteView) GetShippingTaxOk() (*float64, bool)

GetShippingTaxOk returns a tuple with the ShippingTax field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetShortDescription

func (o *QuoteView) GetShortDescription() string

GetShortDescription returns the ShortDescription field value if set, zero value otherwise.

func (*QuoteView) GetShortDescriptionOk

func (o *QuoteView) GetShortDescriptionOk() (*string, bool)

GetShortDescriptionOk returns a tuple with the ShortDescription field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetShowOrderPorterESign

func (o *QuoteView) GetShowOrderPorterESign() bool

GetShowOrderPorterESign returns the ShowOrderPorterESign field value if set, zero value otherwise.

func (*QuoteView) GetShowOrderPorterESignOk

func (o *QuoteView) GetShowOrderPorterESignOk() (*bool, bool)

GetShowOrderPorterESignOk returns a tuple with the ShowOrderPorterESign field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetShowPackageHeader

func (o *QuoteView) GetShowPackageHeader() bool

GetShowPackageHeader returns the ShowPackageHeader field value if set, zero value otherwise.

func (*QuoteView) GetShowPackageHeaderOk

func (o *QuoteView) GetShowPackageHeaderOk() (*bool, bool)

GetShowPackageHeaderOk returns a tuple with the ShowPackageHeader field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetShowPackageItems

func (o *QuoteView) GetShowPackageItems() bool

GetShowPackageItems returns the ShowPackageItems field value if set, zero value otherwise.

func (*QuoteView) GetShowPackageItemsOk

func (o *QuoteView) GetShowPackageItemsOk() (*bool, bool)

GetShowPackageItemsOk returns a tuple with the ShowPackageItems field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetSourceCampaignId

func (o *QuoteView) GetSourceCampaignId() string

GetSourceCampaignId returns the SourceCampaignId field value if set, zero value otherwise.

func (*QuoteView) GetSourceCampaignIdOk

func (o *QuoteView) GetSourceCampaignIdOk() (*string, bool)

GetSourceCampaignIdOk returns a tuple with the SourceCampaignId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetSubtotal

func (o *QuoteView) GetSubtotal() float64

GetSubtotal returns the Subtotal field value if set, zero value otherwise.

func (*QuoteView) GetSubtotalConverted

func (o *QuoteView) GetSubtotalConverted() float64

GetSubtotalConverted returns the SubtotalConverted field value if set, zero value otherwise.

func (*QuoteView) GetSubtotalConvertedOk

func (o *QuoteView) GetSubtotalConvertedOk() (*float64, bool)

GetSubtotalConvertedOk returns a tuple with the SubtotalConverted field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetSubtotalOk

func (o *QuoteView) GetSubtotalOk() (*float64, bool)

GetSubtotalOk returns a tuple with the Subtotal field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetSuggestedDiscountAmount

func (o *QuoteView) GetSuggestedDiscountAmount() float64

GetSuggestedDiscountAmount returns the SuggestedDiscountAmount field value if set, zero value otherwise.

func (*QuoteView) GetSuggestedDiscountAmountOk

func (o *QuoteView) GetSuggestedDiscountAmountOk() (*float64, bool)

GetSuggestedDiscountAmountOk returns a tuple with the SuggestedDiscountAmount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetSuggestedTotal

func (o *QuoteView) GetSuggestedTotal() float64

GetSuggestedTotal returns the SuggestedTotal field value if set, zero value otherwise.

func (*QuoteView) GetSuggestedTotalOk

func (o *QuoteView) GetSuggestedTotalOk() (*float64, bool)

GetSuggestedTotalOk returns a tuple with the SuggestedTotal field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetTargetDate

func (o *QuoteView) GetTargetDate() time.Time

GetTargetDate returns the TargetDate field value if set, zero value otherwise.

func (*QuoteView) GetTargetDateOk

func (o *QuoteView) GetTargetDateOk() (*time.Time, bool)

GetTargetDateOk returns a tuple with the TargetDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetTax

func (o *QuoteView) GetTax() float64

GetTax returns the Tax field value if set, zero value otherwise.

func (*QuoteView) GetTaxCode

func (o *QuoteView) GetTaxCode() string

GetTaxCode returns the TaxCode field value if set, zero value otherwise.

func (*QuoteView) GetTaxCodeOk

func (o *QuoteView) GetTaxCodeOk() (*string, bool)

GetTaxCodeOk returns a tuple with the TaxCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetTaxOk

func (o *QuoteView) GetTaxOk() (*float64, bool)

GetTaxOk returns a tuple with the Tax field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetTaxRate

func (o *QuoteView) GetTaxRate() float64

GetTaxRate returns the TaxRate field value if set, zero value otherwise.

func (*QuoteView) GetTaxRateOk

func (o *QuoteView) GetTaxRateOk() (*float64, bool)

GetTaxRateOk returns a tuple with the TaxRate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetTermsAndConditions

func (o *QuoteView) GetTermsAndConditions() string

GetTermsAndConditions returns the TermsAndConditions field value if set, zero value otherwise.

func (*QuoteView) GetTermsAndConditionsOk

func (o *QuoteView) GetTermsAndConditionsOk() (*string, bool)

GetTermsAndConditionsOk returns a tuple with the TermsAndConditions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetVersionComment

func (o *QuoteView) GetVersionComment() string

GetVersionComment returns the VersionComment field value if set, zero value otherwise.

func (*QuoteView) GetVersionCommentOk

func (o *QuoteView) GetVersionCommentOk() (*string, bool)

GetVersionCommentOk returns a tuple with the VersionComment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetWinForm

func (o *QuoteView) GetWinForm() string

GetWinForm returns the WinForm field value if set, zero value otherwise.

func (*QuoteView) GetWinFormOk

func (o *QuoteView) GetWinFormOk() (*string, bool)

GetWinFormOk returns a tuple with the WinForm field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetWonOrLostDate

func (o *QuoteView) GetWonOrLostDate() time.Time

GetWonOrLostDate returns the WonOrLostDate field value if set, zero value otherwise.

func (*QuoteView) GetWonOrLostDateOk

func (o *QuoteView) GetWonOrLostDateOk() (*time.Time, bool)

GetWonOrLostDateOk returns a tuple with the WonOrLostDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetZCustomQuoteBool1

func (o *QuoteView) GetZCustomQuoteBool1() bool

GetZCustomQuoteBool1 returns the ZCustomQuoteBool1 field value if set, zero value otherwise.

func (*QuoteView) GetZCustomQuoteBool1Ok

func (o *QuoteView) GetZCustomQuoteBool1Ok() (*bool, bool)

GetZCustomQuoteBool1Ok returns a tuple with the ZCustomQuoteBool1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetZCustomQuoteBool2

func (o *QuoteView) GetZCustomQuoteBool2() bool

GetZCustomQuoteBool2 returns the ZCustomQuoteBool2 field value if set, zero value otherwise.

func (*QuoteView) GetZCustomQuoteBool2Ok

func (o *QuoteView) GetZCustomQuoteBool2Ok() (*bool, bool)

GetZCustomQuoteBool2Ok returns a tuple with the ZCustomQuoteBool2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetZCustomQuoteBool3

func (o *QuoteView) GetZCustomQuoteBool3() bool

GetZCustomQuoteBool3 returns the ZCustomQuoteBool3 field value if set, zero value otherwise.

func (*QuoteView) GetZCustomQuoteBool3Ok

func (o *QuoteView) GetZCustomQuoteBool3Ok() (*bool, bool)

GetZCustomQuoteBool3Ok returns a tuple with the ZCustomQuoteBool3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetZCustomQuoteBool4

func (o *QuoteView) GetZCustomQuoteBool4() bool

GetZCustomQuoteBool4 returns the ZCustomQuoteBool4 field value if set, zero value otherwise.

func (*QuoteView) GetZCustomQuoteBool4Ok

func (o *QuoteView) GetZCustomQuoteBool4Ok() (*bool, bool)

GetZCustomQuoteBool4Ok returns a tuple with the ZCustomQuoteBool4 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetZCustomQuoteBool5

func (o *QuoteView) GetZCustomQuoteBool5() bool

GetZCustomQuoteBool5 returns the ZCustomQuoteBool5 field value if set, zero value otherwise.

func (*QuoteView) GetZCustomQuoteBool5Ok

func (o *QuoteView) GetZCustomQuoteBool5Ok() (*bool, bool)

GetZCustomQuoteBool5Ok returns a tuple with the ZCustomQuoteBool5 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetZCustomQuoteBool6

func (o *QuoteView) GetZCustomQuoteBool6() bool

GetZCustomQuoteBool6 returns the ZCustomQuoteBool6 field value if set, zero value otherwise.

func (*QuoteView) GetZCustomQuoteBool6Ok

func (o *QuoteView) GetZCustomQuoteBool6Ok() (*bool, bool)

GetZCustomQuoteBool6Ok returns a tuple with the ZCustomQuoteBool6 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetZCustomQuoteBool7

func (o *QuoteView) GetZCustomQuoteBool7() bool

GetZCustomQuoteBool7 returns the ZCustomQuoteBool7 field value if set, zero value otherwise.

func (*QuoteView) GetZCustomQuoteBool7Ok

func (o *QuoteView) GetZCustomQuoteBool7Ok() (*bool, bool)

GetZCustomQuoteBool7Ok returns a tuple with the ZCustomQuoteBool7 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetZCustomQuoteBool8

func (o *QuoteView) GetZCustomQuoteBool8() bool

GetZCustomQuoteBool8 returns the ZCustomQuoteBool8 field value if set, zero value otherwise.

func (*QuoteView) GetZCustomQuoteBool8Ok

func (o *QuoteView) GetZCustomQuoteBool8Ok() (*bool, bool)

GetZCustomQuoteBool8Ok returns a tuple with the ZCustomQuoteBool8 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetZCustomQuoteBool9

func (o *QuoteView) GetZCustomQuoteBool9() bool

GetZCustomQuoteBool9 returns the ZCustomQuoteBool9 field value if set, zero value otherwise.

func (*QuoteView) GetZCustomQuoteBool9Ok

func (o *QuoteView) GetZCustomQuoteBool9Ok() (*bool, bool)

GetZCustomQuoteBool9Ok returns a tuple with the ZCustomQuoteBool9 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetZCustomQuoteBool10

func (o *QuoteView) GetZCustomQuoteBool10() bool

GetZCustomQuoteBool10 returns the ZCustomQuoteBool10 field value if set, zero value otherwise.

func (*QuoteView) GetZCustomQuoteBool10Ok

func (o *QuoteView) GetZCustomQuoteBool10Ok() (*bool, bool)

GetZCustomQuoteBool10Ok returns a tuple with the ZCustomQuoteBool10 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetZCustomQuoteDate1

func (o *QuoteView) GetZCustomQuoteDate1() time.Time

GetZCustomQuoteDate1 returns the ZCustomQuoteDate1 field value if set, zero value otherwise.

func (*QuoteView) GetZCustomQuoteDate1Ok

func (o *QuoteView) GetZCustomQuoteDate1Ok() (*time.Time, bool)

GetZCustomQuoteDate1Ok returns a tuple with the ZCustomQuoteDate1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetZCustomQuoteDate2

func (o *QuoteView) GetZCustomQuoteDate2() time.Time

GetZCustomQuoteDate2 returns the ZCustomQuoteDate2 field value if set, zero value otherwise.

func (*QuoteView) GetZCustomQuoteDate2Ok

func (o *QuoteView) GetZCustomQuoteDate2Ok() (*time.Time, bool)

GetZCustomQuoteDate2Ok returns a tuple with the ZCustomQuoteDate2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetZCustomQuoteDecimal1

func (o *QuoteView) GetZCustomQuoteDecimal1() float64

GetZCustomQuoteDecimal1 returns the ZCustomQuoteDecimal1 field value if set, zero value otherwise.

func (*QuoteView) GetZCustomQuoteDecimal1Ok

func (o *QuoteView) GetZCustomQuoteDecimal1Ok() (*float64, bool)

GetZCustomQuoteDecimal1Ok returns a tuple with the ZCustomQuoteDecimal1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetZCustomQuoteDecimal2

func (o *QuoteView) GetZCustomQuoteDecimal2() float64

GetZCustomQuoteDecimal2 returns the ZCustomQuoteDecimal2 field value if set, zero value otherwise.

func (*QuoteView) GetZCustomQuoteDecimal2Ok

func (o *QuoteView) GetZCustomQuoteDecimal2Ok() (*float64, bool)

GetZCustomQuoteDecimal2Ok returns a tuple with the ZCustomQuoteDecimal2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetZCustomQuoteDecimal3

func (o *QuoteView) GetZCustomQuoteDecimal3() float64

GetZCustomQuoteDecimal3 returns the ZCustomQuoteDecimal3 field value if set, zero value otherwise.

func (*QuoteView) GetZCustomQuoteDecimal3Ok

func (o *QuoteView) GetZCustomQuoteDecimal3Ok() (*float64, bool)

GetZCustomQuoteDecimal3Ok returns a tuple with the ZCustomQuoteDecimal3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetZCustomQuoteDecimal4

func (o *QuoteView) GetZCustomQuoteDecimal4() float64

GetZCustomQuoteDecimal4 returns the ZCustomQuoteDecimal4 field value if set, zero value otherwise.

func (*QuoteView) GetZCustomQuoteDecimal4Ok

func (o *QuoteView) GetZCustomQuoteDecimal4Ok() (*float64, bool)

GetZCustomQuoteDecimal4Ok returns a tuple with the ZCustomQuoteDecimal4 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetZCustomQuoteDecimal5

func (o *QuoteView) GetZCustomQuoteDecimal5() float64

GetZCustomQuoteDecimal5 returns the ZCustomQuoteDecimal5 field value if set, zero value otherwise.

func (*QuoteView) GetZCustomQuoteDecimal5Ok

func (o *QuoteView) GetZCustomQuoteDecimal5Ok() (*float64, bool)

GetZCustomQuoteDecimal5Ok returns a tuple with the ZCustomQuoteDecimal5 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetZCustomQuoteDecimal6

func (o *QuoteView) GetZCustomQuoteDecimal6() float64

GetZCustomQuoteDecimal6 returns the ZCustomQuoteDecimal6 field value if set, zero value otherwise.

func (*QuoteView) GetZCustomQuoteDecimal6Ok

func (o *QuoteView) GetZCustomQuoteDecimal6Ok() (*float64, bool)

GetZCustomQuoteDecimal6Ok returns a tuple with the ZCustomQuoteDecimal6 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetZCustomQuoteDecimal7

func (o *QuoteView) GetZCustomQuoteDecimal7() float64

GetZCustomQuoteDecimal7 returns the ZCustomQuoteDecimal7 field value if set, zero value otherwise.

func (*QuoteView) GetZCustomQuoteDecimal7Ok

func (o *QuoteView) GetZCustomQuoteDecimal7Ok() (*float64, bool)

GetZCustomQuoteDecimal7Ok returns a tuple with the ZCustomQuoteDecimal7 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetZCustomQuoteDecimal8

func (o *QuoteView) GetZCustomQuoteDecimal8() float64

GetZCustomQuoteDecimal8 returns the ZCustomQuoteDecimal8 field value if set, zero value otherwise.

func (*QuoteView) GetZCustomQuoteDecimal8Ok

func (o *QuoteView) GetZCustomQuoteDecimal8Ok() (*float64, bool)

GetZCustomQuoteDecimal8Ok returns a tuple with the ZCustomQuoteDecimal8 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetZCustomQuoteDecimal9

func (o *QuoteView) GetZCustomQuoteDecimal9() float64

GetZCustomQuoteDecimal9 returns the ZCustomQuoteDecimal9 field value if set, zero value otherwise.

func (*QuoteView) GetZCustomQuoteDecimal9Ok

func (o *QuoteView) GetZCustomQuoteDecimal9Ok() (*float64, bool)

GetZCustomQuoteDecimal9Ok returns a tuple with the ZCustomQuoteDecimal9 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetZCustomQuoteDecimal10

func (o *QuoteView) GetZCustomQuoteDecimal10() float64

GetZCustomQuoteDecimal10 returns the ZCustomQuoteDecimal10 field value if set, zero value otherwise.

func (*QuoteView) GetZCustomQuoteDecimal10Ok

func (o *QuoteView) GetZCustomQuoteDecimal10Ok() (*float64, bool)

GetZCustomQuoteDecimal10Ok returns a tuple with the ZCustomQuoteDecimal10 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetZCustomQuoteDecimal11

func (o *QuoteView) GetZCustomQuoteDecimal11() float64

GetZCustomQuoteDecimal11 returns the ZCustomQuoteDecimal11 field value if set, zero value otherwise.

func (*QuoteView) GetZCustomQuoteDecimal11Ok

func (o *QuoteView) GetZCustomQuoteDecimal11Ok() (*float64, bool)

GetZCustomQuoteDecimal11Ok returns a tuple with the ZCustomQuoteDecimal11 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetZCustomQuoteDecimal12

func (o *QuoteView) GetZCustomQuoteDecimal12() float64

GetZCustomQuoteDecimal12 returns the ZCustomQuoteDecimal12 field value if set, zero value otherwise.

func (*QuoteView) GetZCustomQuoteDecimal12Ok

func (o *QuoteView) GetZCustomQuoteDecimal12Ok() (*float64, bool)

GetZCustomQuoteDecimal12Ok returns a tuple with the ZCustomQuoteDecimal12 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetZCustomQuoteDecimal13

func (o *QuoteView) GetZCustomQuoteDecimal13() float64

GetZCustomQuoteDecimal13 returns the ZCustomQuoteDecimal13 field value if set, zero value otherwise.

func (*QuoteView) GetZCustomQuoteDecimal13Ok

func (o *QuoteView) GetZCustomQuoteDecimal13Ok() (*float64, bool)

GetZCustomQuoteDecimal13Ok returns a tuple with the ZCustomQuoteDecimal13 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetZCustomQuoteDecimal14

func (o *QuoteView) GetZCustomQuoteDecimal14() float64

GetZCustomQuoteDecimal14 returns the ZCustomQuoteDecimal14 field value if set, zero value otherwise.

func (*QuoteView) GetZCustomQuoteDecimal14Ok

func (o *QuoteView) GetZCustomQuoteDecimal14Ok() (*float64, bool)

GetZCustomQuoteDecimal14Ok returns a tuple with the ZCustomQuoteDecimal14 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetZCustomQuoteDecimal15

func (o *QuoteView) GetZCustomQuoteDecimal15() float64

GetZCustomQuoteDecimal15 returns the ZCustomQuoteDecimal15 field value if set, zero value otherwise.

func (*QuoteView) GetZCustomQuoteDecimal15Ok

func (o *QuoteView) GetZCustomQuoteDecimal15Ok() (*float64, bool)

GetZCustomQuoteDecimal15Ok returns a tuple with the ZCustomQuoteDecimal15 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetZCustomQuoteDecimal16

func (o *QuoteView) GetZCustomQuoteDecimal16() float64

GetZCustomQuoteDecimal16 returns the ZCustomQuoteDecimal16 field value if set, zero value otherwise.

func (*QuoteView) GetZCustomQuoteDecimal16Ok

func (o *QuoteView) GetZCustomQuoteDecimal16Ok() (*float64, bool)

GetZCustomQuoteDecimal16Ok returns a tuple with the ZCustomQuoteDecimal16 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetZCustomQuoteDecimal17

func (o *QuoteView) GetZCustomQuoteDecimal17() float64

GetZCustomQuoteDecimal17 returns the ZCustomQuoteDecimal17 field value if set, zero value otherwise.

func (*QuoteView) GetZCustomQuoteDecimal17Ok

func (o *QuoteView) GetZCustomQuoteDecimal17Ok() (*float64, bool)

GetZCustomQuoteDecimal17Ok returns a tuple with the ZCustomQuoteDecimal17 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetZCustomQuoteDecimal18

func (o *QuoteView) GetZCustomQuoteDecimal18() float64

GetZCustomQuoteDecimal18 returns the ZCustomQuoteDecimal18 field value if set, zero value otherwise.

func (*QuoteView) GetZCustomQuoteDecimal18Ok

func (o *QuoteView) GetZCustomQuoteDecimal18Ok() (*float64, bool)

GetZCustomQuoteDecimal18Ok returns a tuple with the ZCustomQuoteDecimal18 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetZCustomQuoteDecimal19

func (o *QuoteView) GetZCustomQuoteDecimal19() float64

GetZCustomQuoteDecimal19 returns the ZCustomQuoteDecimal19 field value if set, zero value otherwise.

func (*QuoteView) GetZCustomQuoteDecimal19Ok

func (o *QuoteView) GetZCustomQuoteDecimal19Ok() (*float64, bool)

GetZCustomQuoteDecimal19Ok returns a tuple with the ZCustomQuoteDecimal19 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetZCustomQuoteDecimal20

func (o *QuoteView) GetZCustomQuoteDecimal20() float64

GetZCustomQuoteDecimal20 returns the ZCustomQuoteDecimal20 field value if set, zero value otherwise.

func (*QuoteView) GetZCustomQuoteDecimal20Ok

func (o *QuoteView) GetZCustomQuoteDecimal20Ok() (*float64, bool)

GetZCustomQuoteDecimal20Ok returns a tuple with the ZCustomQuoteDecimal20 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetZCustomQuoteString1

func (o *QuoteView) GetZCustomQuoteString1() string

GetZCustomQuoteString1 returns the ZCustomQuoteString1 field value if set, zero value otherwise.

func (*QuoteView) GetZCustomQuoteString1Ok

func (o *QuoteView) GetZCustomQuoteString1Ok() (*string, bool)

GetZCustomQuoteString1Ok returns a tuple with the ZCustomQuoteString1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetZCustomQuoteString2

func (o *QuoteView) GetZCustomQuoteString2() string

GetZCustomQuoteString2 returns the ZCustomQuoteString2 field value if set, zero value otherwise.

func (*QuoteView) GetZCustomQuoteString2Ok

func (o *QuoteView) GetZCustomQuoteString2Ok() (*string, bool)

GetZCustomQuoteString2Ok returns a tuple with the ZCustomQuoteString2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetZCustomQuoteString3

func (o *QuoteView) GetZCustomQuoteString3() string

GetZCustomQuoteString3 returns the ZCustomQuoteString3 field value if set, zero value otherwise.

func (*QuoteView) GetZCustomQuoteString3Ok

func (o *QuoteView) GetZCustomQuoteString3Ok() (*string, bool)

GetZCustomQuoteString3Ok returns a tuple with the ZCustomQuoteString3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetZCustomQuoteString4

func (o *QuoteView) GetZCustomQuoteString4() string

GetZCustomQuoteString4 returns the ZCustomQuoteString4 field value if set, zero value otherwise.

func (*QuoteView) GetZCustomQuoteString4Ok

func (o *QuoteView) GetZCustomQuoteString4Ok() (*string, bool)

GetZCustomQuoteString4Ok returns a tuple with the ZCustomQuoteString4 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetZCustomQuoteString5

func (o *QuoteView) GetZCustomQuoteString5() string

GetZCustomQuoteString5 returns the ZCustomQuoteString5 field value if set, zero value otherwise.

func (*QuoteView) GetZCustomQuoteString5Ok

func (o *QuoteView) GetZCustomQuoteString5Ok() (*string, bool)

GetZCustomQuoteString5Ok returns a tuple with the ZCustomQuoteString5 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetZCustomQuoteString6

func (o *QuoteView) GetZCustomQuoteString6() string

GetZCustomQuoteString6 returns the ZCustomQuoteString6 field value if set, zero value otherwise.

func (*QuoteView) GetZCustomQuoteString6Ok

func (o *QuoteView) GetZCustomQuoteString6Ok() (*string, bool)

GetZCustomQuoteString6Ok returns a tuple with the ZCustomQuoteString6 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetZCustomQuoteString7

func (o *QuoteView) GetZCustomQuoteString7() string

GetZCustomQuoteString7 returns the ZCustomQuoteString7 field value if set, zero value otherwise.

func (*QuoteView) GetZCustomQuoteString7Ok

func (o *QuoteView) GetZCustomQuoteString7Ok() (*string, bool)

GetZCustomQuoteString7Ok returns a tuple with the ZCustomQuoteString7 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetZCustomQuoteString8

func (o *QuoteView) GetZCustomQuoteString8() string

GetZCustomQuoteString8 returns the ZCustomQuoteString8 field value if set, zero value otherwise.

func (*QuoteView) GetZCustomQuoteString8Ok

func (o *QuoteView) GetZCustomQuoteString8Ok() (*string, bool)

GetZCustomQuoteString8Ok returns a tuple with the ZCustomQuoteString8 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetZCustomQuoteString9

func (o *QuoteView) GetZCustomQuoteString9() string

GetZCustomQuoteString9 returns the ZCustomQuoteString9 field value if set, zero value otherwise.

func (*QuoteView) GetZCustomQuoteString9Ok

func (o *QuoteView) GetZCustomQuoteString9Ok() (*string, bool)

GetZCustomQuoteString9Ok returns a tuple with the ZCustomQuoteString9 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetZCustomQuoteString10

func (o *QuoteView) GetZCustomQuoteString10() string

GetZCustomQuoteString10 returns the ZCustomQuoteString10 field value if set, zero value otherwise.

func (*QuoteView) GetZCustomQuoteString10Ok

func (o *QuoteView) GetZCustomQuoteString10Ok() (*string, bool)

GetZCustomQuoteString10Ok returns a tuple with the ZCustomQuoteString10 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetZCustomQuoteString11

func (o *QuoteView) GetZCustomQuoteString11() string

GetZCustomQuoteString11 returns the ZCustomQuoteString11 field value if set, zero value otherwise.

func (*QuoteView) GetZCustomQuoteString11Ok

func (o *QuoteView) GetZCustomQuoteString11Ok() (*string, bool)

GetZCustomQuoteString11Ok returns a tuple with the ZCustomQuoteString11 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetZCustomQuoteString12

func (o *QuoteView) GetZCustomQuoteString12() string

GetZCustomQuoteString12 returns the ZCustomQuoteString12 field value if set, zero value otherwise.

func (*QuoteView) GetZCustomQuoteString12Ok

func (o *QuoteView) GetZCustomQuoteString12Ok() (*string, bool)

GetZCustomQuoteString12Ok returns a tuple with the ZCustomQuoteString12 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetZCustomQuoteString13

func (o *QuoteView) GetZCustomQuoteString13() string

GetZCustomQuoteString13 returns the ZCustomQuoteString13 field value if set, zero value otherwise.

func (*QuoteView) GetZCustomQuoteString13Ok

func (o *QuoteView) GetZCustomQuoteString13Ok() (*string, bool)

GetZCustomQuoteString13Ok returns a tuple with the ZCustomQuoteString13 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetZCustomQuoteString14

func (o *QuoteView) GetZCustomQuoteString14() string

GetZCustomQuoteString14 returns the ZCustomQuoteString14 field value if set, zero value otherwise.

func (*QuoteView) GetZCustomQuoteString14Ok

func (o *QuoteView) GetZCustomQuoteString14Ok() (*string, bool)

GetZCustomQuoteString14Ok returns a tuple with the ZCustomQuoteString14 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) GetZCustomQuoteString15

func (o *QuoteView) GetZCustomQuoteString15() string

GetZCustomQuoteString15 returns the ZCustomQuoteString15 field value if set, zero value otherwise.

func (*QuoteView) GetZCustomQuoteString15Ok

func (o *QuoteView) GetZCustomQuoteString15Ok() (*string, bool)

GetZCustomQuoteString15Ok returns a tuple with the ZCustomQuoteString15 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*QuoteView) HasAccountName

func (o *QuoteView) HasAccountName() bool

HasAccountName returns a boolean if a field has been set.

func (*QuoteView) HasApprovalAmount

func (o *QuoteView) HasApprovalAmount() bool

HasApprovalAmount returns a boolean if a field has been set.

func (*QuoteView) HasApprovalComment

func (o *QuoteView) HasApprovalComment() bool

HasApprovalComment returns a boolean if a field has been set.

func (*QuoteView) HasApprovalMargin

func (o *QuoteView) HasApprovalMargin() bool

HasApprovalMargin returns a boolean if a field has been set.

func (*QuoteView) HasApprovalMode

func (o *QuoteView) HasApprovalMode() bool

HasApprovalMode returns a boolean if a field has been set.

func (*QuoteView) HasApprovalQuoteForm

func (o *QuoteView) HasApprovalQuoteForm() bool

HasApprovalQuoteForm returns a boolean if a field has been set.

func (*QuoteView) HasApprovalReason

func (o *QuoteView) HasApprovalReason() bool

HasApprovalReason returns a boolean if a field has been set.

func (*QuoteView) HasApprovalStatus

func (o *QuoteView) HasApprovalStatus() bool

HasApprovalStatus returns a boolean if a field has been set.

func (*QuoteView) HasApprovedByUser

func (o *QuoteView) HasApprovedByUser() bool

HasApprovedByUser returns a boolean if a field has been set.

func (*QuoteView) HasApprovedDate

func (o *QuoteView) HasApprovedDate() bool

HasApprovedDate returns a boolean if a field has been set.

func (*QuoteView) HasAutoTaskQuoteNumber

func (o *QuoteView) HasAutoTaskQuoteNumber() bool

HasAutoTaskQuoteNumber returns a boolean if a field has been set.

func (*QuoteView) HasBaseCurrency

func (o *QuoteView) HasBaseCurrency() bool

HasBaseCurrency returns a boolean if a field has been set.

func (*QuoteView) HasContactName

func (o *QuoteView) HasContactName() bool

HasContactName returns a boolean if a field has been set.

func (*QuoteView) HasContractEndDate

func (o *QuoteView) HasContractEndDate() bool

HasContractEndDate returns a boolean if a field has been set.

func (*QuoteView) HasContractStartDate

func (o *QuoteView) HasContractStartDate() bool

HasContractStartDate returns a boolean if a field has been set.

func (*QuoteView) HasCostChangesCount

func (o *QuoteView) HasCostChangesCount() bool

HasCostChangesCount returns a boolean if a field has been set.

func (*QuoteView) HasCreateDate

func (o *QuoteView) HasCreateDate() bool

HasCreateDate returns a boolean if a field has been set.

func (*QuoteView) HasCreateNotes

func (o *QuoteView) HasCreateNotes() bool

HasCreateNotes returns a boolean if a field has been set.

func (*QuoteView) HasCrmOpGroup

func (o *QuoteView) HasCrmOpGroup() bool

HasCrmOpGroup returns a boolean if a field has been set.

func (*QuoteView) HasCrmOpportunityId

func (o *QuoteView) HasCrmOpportunityId() bool

HasCrmOpportunityId returns a boolean if a field has been set.

func (*QuoteView) HasCustomer

func (o *QuoteView) HasCustomer() bool

HasCustomer returns a boolean if a field has been set.

func (*QuoteView) HasCustomerSignatureCapture

func (o *QuoteView) HasCustomerSignatureCapture() bool

HasCustomerSignatureCapture returns a boolean if a field has been set.

func (*QuoteView) HasDefaultReportList

func (o *QuoteView) HasDefaultReportList() bool

HasDefaultReportList returns a boolean if a field has been set.

func (*QuoteView) HasDefaultSuccessListProfile

func (o *QuoteView) HasDefaultSuccessListProfile() bool

HasDefaultSuccessListProfile returns a boolean if a field has been set.

func (*QuoteView) HasDefaultTermPeriods

func (o *QuoteView) HasDefaultTermPeriods() bool

HasDefaultTermPeriods returns a boolean if a field has been set.

func (*QuoteView) HasDefaultVideoList

func (o *QuoteView) HasDefaultVideoList() bool

HasDefaultVideoList returns a boolean if a field has been set.

func (*QuoteView) HasDeliveredDate

func (o *QuoteView) HasDeliveredDate() bool

HasDeliveredDate returns a boolean if a field has been set.

func (*QuoteView) HasDiscountAmount

func (o *QuoteView) HasDiscountAmount() bool

HasDiscountAmount returns a boolean if a field has been set.

func (*QuoteView) HasExpectedCloseDate

func (o *QuoteView) HasExpectedCloseDate() bool

HasExpectedCloseDate returns a boolean if a field has been set.

func (*QuoteView) HasExpirationDate

func (o *QuoteView) HasExpirationDate() bool

HasExpirationDate returns a boolean if a field has been set.

func (*QuoteView) HasExternalReferenceQuoteDemandId

func (o *QuoteView) HasExternalReferenceQuoteDemandId() bool

HasExternalReferenceQuoteDemandId returns a boolean if a field has been set.

func (*QuoteView) HasForceManagerApprovalScript

func (o *QuoteView) HasForceManagerApprovalScript() bool

HasForceManagerApprovalScript returns a boolean if a field has been set.

func (*QuoteView) HasGreatAmericaDefaultRateCard

func (o *QuoteView) HasGreatAmericaDefaultRateCard() bool

HasGreatAmericaDefaultRateCard returns a boolean if a field has been set.

func (*QuoteView) HasGrossMargin

func (o *QuoteView) HasGrossMargin() bool

HasGrossMargin returns a boolean if a field has been set.

func (*QuoteView) HasGrossMarginAmount

func (o *QuoteView) HasGrossMarginAmount() bool

HasGrossMarginAmount returns a boolean if a field has been set.

func (*QuoteView) HasGst

func (o *QuoteView) HasGst() bool

HasGst returns a boolean if a field has been set.

func (*QuoteView) HasGstConverted

func (o *QuoteView) HasGstConverted() bool

HasGstConverted returns a boolean if a field has been set.

func (*QuoteView) HasHtmlAgreement

func (o *QuoteView) HasHtmlAgreement() bool

HasHtmlAgreement returns a boolean if a field has been set.

func (*QuoteView) HasHtmlNotes1

func (o *QuoteView) HasHtmlNotes1() bool

HasHtmlNotes1 returns a boolean if a field has been set.

func (*QuoteView) HasHtmlNotes2

func (o *QuoteView) HasHtmlNotes2() bool

HasHtmlNotes2 returns a boolean if a field has been set.

func (*QuoteView) HasId

func (o *QuoteView) HasId() bool

HasId returns a boolean if a field has been set.

func (*QuoteView) HasIncludeZeroSuggestedInDiscount

func (o *QuoteView) HasIncludeZeroSuggestedInDiscount() bool

HasIncludeZeroSuggestedInDiscount returns a boolean if a field has been set.

func (*QuoteView) HasInsideRep

func (o *QuoteView) HasInsideRep() bool

HasInsideRep returns a boolean if a field has been set.

func (*QuoteView) HasInvoicePostDate

func (o *QuoteView) HasInvoicePostDate() bool

HasInvoicePostDate returns a boolean if a field has been set.

func (*QuoteView) HasInvoicePostStatus

func (o *QuoteView) HasInvoicePostStatus() bool

HasInvoicePostStatus returns a boolean if a field has been set.

func (*QuoteView) HasInvoicePostUser

func (o *QuoteView) HasInvoicePostUser() bool

HasInvoicePostUser returns a boolean if a field has been set.

func (*QuoteView) HasIsAccepted

func (o *QuoteView) HasIsAccepted() bool

HasIsAccepted returns a boolean if a field has been set.

func (*QuoteView) HasIsArchive

func (o *QuoteView) HasIsArchive() bool

HasIsArchive returns a boolean if a field has been set.

func (*QuoteView) HasIsLost

func (o *QuoteView) HasIsLost() bool

HasIsLost returns a boolean if a field has been set.

func (*QuoteView) HasIsManagerApproved

func (o *QuoteView) HasIsManagerApproved() bool

HasIsManagerApproved returns a boolean if a field has been set.

func (*QuoteView) HasIsOrderPorterApproved

func (o *QuoteView) HasIsOrderPorterApproved() bool

HasIsOrderPorterApproved returns a boolean if a field has been set.

func (*QuoteView) HasIsQuoteDemand

func (o *QuoteView) HasIsQuoteDemand() bool

HasIsQuoteDemand returns a boolean if a field has been set.

func (*QuoteView) HasIsRequestQuote

func (o *QuoteView) HasIsRequestQuote() bool

HasIsRequestQuote returns a boolean if a field has been set.

func (*QuoteView) HasIsRequestTemplate

func (o *QuoteView) HasIsRequestTemplate() bool

HasIsRequestTemplate returns a boolean if a field has been set.

func (*QuoteView) HasIsSent

func (o *QuoteView) HasIsSent() bool

HasIsSent returns a boolean if a field has been set.

func (*QuoteView) HasIsSuccessListDisabled

func (o *QuoteView) HasIsSuccessListDisabled() bool

HasIsSuccessListDisabled returns a boolean if a field has been set.

func (*QuoteView) HasIsTaxCalculated

func (o *QuoteView) HasIsTaxCalculated() bool

HasIsTaxCalculated returns a boolean if a field has been set.

func (*QuoteView) HasKeywords

func (o *QuoteView) HasKeywords() bool

HasKeywords returns a boolean if a field has been set.

func (*QuoteView) HasLocationId

func (o *QuoteView) HasLocationId() bool

HasLocationId returns a boolean if a field has been set.

func (*QuoteView) HasLongDescription

func (o *QuoteView) HasLongDescription() bool

HasLongDescription returns a boolean if a field has been set.

func (*QuoteView) HasLostReason

func (o *QuoteView) HasLostReason() bool

HasLostReason returns a boolean if a field has been set.

func (*QuoteView) HasMarkup

func (o *QuoteView) HasMarkup() bool

HasMarkup returns a boolean if a field has been set.

func (*QuoteView) HasMasterAgreement

func (o *QuoteView) HasMasterAgreement() bool

HasMasterAgreement returns a boolean if a field has been set.

func (*QuoteView) HasMasterAgreementNumber

func (o *QuoteView) HasMasterAgreementNumber() bool

HasMasterAgreementNumber returns a boolean if a field has been set.

func (*QuoteView) HasModifyDate

func (o *QuoteView) HasModifyDate() bool

HasModifyDate returns a boolean if a field has been set.

func (*QuoteView) HasName

func (o *QuoteView) HasName() bool

HasName returns a boolean if a field has been set.

func (*QuoteView) HasNetMargin

func (o *QuoteView) HasNetMargin() bool

HasNetMargin returns a boolean if a field has been set.

func (*QuoteView) HasNetSuiteSubsidiary

func (o *QuoteView) HasNetSuiteSubsidiary() bool

HasNetSuiteSubsidiary returns a boolean if a field has been set.

func (*QuoteView) HasOptionalAmount

func (o *QuoteView) HasOptionalAmount() bool

HasOptionalAmount returns a boolean if a field has been set.

func (*QuoteView) HasOptionalAmountConverted

func (o *QuoteView) HasOptionalAmountConverted() bool

HasOptionalAmountConverted returns a boolean if a field has been set.

func (*QuoteView) HasOrderPorterDownPaymentMinimum

func (o *QuoteView) HasOrderPorterDownPaymentMinimum() bool

HasOrderPorterDownPaymentMinimum returns a boolean if a field has been set.

func (*QuoteView) HasOrderPorterDownPaymentPercent

func (o *QuoteView) HasOrderPorterDownPaymentPercent() bool

HasOrderPorterDownPaymentPercent returns a boolean if a field has been set.

func (*QuoteView) HasOrderPorterEmailSignature

func (o *QuoteView) HasOrderPorterEmailSignature() bool

HasOrderPorterEmailSignature returns a boolean if a field has been set.

func (*QuoteView) HasOrderPorterFilteredIp

func (o *QuoteView) HasOrderPorterFilteredIp() bool

HasOrderPorterFilteredIp returns a boolean if a field has been set.

func (*QuoteView) HasOrderPorterFirstVisitDate

func (o *QuoteView) HasOrderPorterFirstVisitDate() bool

HasOrderPorterFirstVisitDate returns a boolean if a field has been set.

func (*QuoteView) HasOrderPorterFullPaymentAllowed

func (o *QuoteView) HasOrderPorterFullPaymentAllowed() bool

HasOrderPorterFullPaymentAllowed returns a boolean if a field has been set.

func (*QuoteView) HasOrderPorterGroup

func (o *QuoteView) HasOrderPorterGroup() bool

HasOrderPorterGroup returns a boolean if a field has been set.

func (*QuoteView) HasOrderPorterHasFirstVisitOccurred

func (o *QuoteView) HasOrderPorterHasFirstVisitOccurred() bool

HasOrderPorterHasFirstVisitOccurred returns a boolean if a field has been set.

func (*QuoteView) HasOrderPorterInitialsSig

func (o *QuoteView) HasOrderPorterInitialsSig() bool

HasOrderPorterInitialsSig returns a boolean if a field has been set.

func (*QuoteView) HasOrderPorterIsUploaded

func (o *QuoteView) HasOrderPorterIsUploaded() bool

HasOrderPorterIsUploaded returns a boolean if a field has been set.

func (*QuoteView) HasOrderPorterPasscode

func (o *QuoteView) HasOrderPorterPasscode() bool

HasOrderPorterPasscode returns a boolean if a field has been set.

func (*QuoteView) HasOrderPorterPaymentMode

func (o *QuoteView) HasOrderPorterPaymentMode() bool

HasOrderPorterPaymentMode returns a boolean if a field has been set.

func (*QuoteView) HasOrderPorterPreviewPicture

func (o *QuoteView) HasOrderPorterPreviewPicture() bool

HasOrderPorterPreviewPicture returns a boolean if a field has been set.

func (*QuoteView) HasOrderPorterShowImage

func (o *QuoteView) HasOrderPorterShowImage() bool

HasOrderPorterShowImage returns a boolean if a field has been set.

func (*QuoteView) HasOrderPorterShowItemOptionalCheckbox

func (o *QuoteView) HasOrderPorterShowItemOptionalCheckbox() bool

HasOrderPorterShowItemOptionalCheckbox returns a boolean if a field has been set.

func (*QuoteView) HasOrderPorterShowLineDetails

func (o *QuoteView) HasOrderPorterShowLineDetails() bool

HasOrderPorterShowLineDetails returns a boolean if a field has been set.

func (*QuoteView) HasOrderPorterShowQuantity

func (o *QuoteView) HasOrderPorterShowQuantity() bool

HasOrderPorterShowQuantity returns a boolean if a field has been set.

func (*QuoteView) HasOrderPorterShowSignature

func (o *QuoteView) HasOrderPorterShowSignature() bool

HasOrderPorterShowSignature returns a boolean if a field has been set.

func (*QuoteView) HasOrderPorterShowTabOptionalCheckbox

func (o *QuoteView) HasOrderPorterShowTabOptionalCheckbox() bool

HasOrderPorterShowTabOptionalCheckbox returns a boolean if a field has been set.

func (*QuoteView) HasOrderPorterSignedDate

func (o *QuoteView) HasOrderPorterSignedDate() bool

HasOrderPorterSignedDate returns a boolean if a field has been set.

func (*QuoteView) HasOrderPorterSignedIp

func (o *QuoteView) HasOrderPorterSignedIp() bool

HasOrderPorterSignedIp returns a boolean if a field has been set.

func (*QuoteView) HasOrderPorterTemplate

func (o *QuoteView) HasOrderPorterTemplate() bool

HasOrderPorterTemplate returns a boolean if a field has been set.

func (*QuoteView) HasOrderPorterTheme

func (o *QuoteView) HasOrderPorterTheme() bool

HasOrderPorterTheme returns a boolean if a field has been set.

func (*QuoteView) HasOrderPorterVisits

func (o *QuoteView) HasOrderPorterVisits() bool

HasOrderPorterVisits returns a boolean if a field has been set.

func (*QuoteView) HasOriginalQuoteId

func (o *QuoteView) HasOriginalQuoteId() bool

HasOriginalQuoteId returns a boolean if a field has been set.

func (*QuoteView) HasOverrideRate

func (o *QuoteView) HasOverrideRate() bool

HasOverrideRate returns a boolean if a field has been set.

func (*QuoteView) HasPeerReviewDocument

func (o *QuoteView) HasPeerReviewDocument() bool

HasPeerReviewDocument returns a boolean if a field has been set.

func (*QuoteView) HasPeerReviewStatus

func (o *QuoteView) HasPeerReviewStatus() bool

HasPeerReviewStatus returns a boolean if a field has been set.

func (*QuoteView) HasPicture

func (o *QuoteView) HasPicture() bool

HasPicture returns a boolean if a field has been set.

func (*QuoteView) HasPrimaryRep

func (o *QuoteView) HasPrimaryRep() bool

HasPrimaryRep returns a boolean if a field has been set.

func (*QuoteView) HasPrintPackageHeaderPrice

func (o *QuoteView) HasPrintPackageHeaderPrice() bool

HasPrintPackageHeaderPrice returns a boolean if a field has been set.

func (*QuoteView) HasPrintPackageItemPrice

func (o *QuoteView) HasPrintPackageItemPrice() bool

HasPrintPackageItemPrice returns a boolean if a field has been set.

func (*QuoteView) HasProbability

func (o *QuoteView) HasProbability() bool

HasProbability returns a boolean if a field has been set.

func (*QuoteView) HasPromiseDate

func (o *QuoteView) HasPromiseDate() bool

HasPromiseDate returns a boolean if a field has been set.

func (*QuoteView) HasPromiseDateChangesCount

func (o *QuoteView) HasPromiseDateChangesCount() bool

HasPromiseDateChangesCount returns a boolean if a field has been set.

func (*QuoteView) HasPst

func (o *QuoteView) HasPst() bool

HasPst returns a boolean if a field has been set.

func (*QuoteView) HasPstConverted

func (o *QuoteView) HasPstConverted() bool

HasPstConverted returns a boolean if a field has been set.

func (*QuoteView) HasPublishNumber

func (o *QuoteView) HasPublishNumber() bool

HasPublishNumber returns a boolean if a field has been set.

func (*QuoteView) HasPurchaseOrderNumber

func (o *QuoteView) HasPurchaseOrderNumber() bool

HasPurchaseOrderNumber returns a boolean if a field has been set.

func (*QuoteView) HasQuickbooksTemplate

func (o *QuoteView) HasQuickbooksTemplate() bool

HasQuickbooksTemplate returns a boolean if a field has been set.

func (*QuoteView) HasQuoteCost

func (o *QuoteView) HasQuoteCost() bool

HasQuoteCost returns a boolean if a field has been set.

func (*QuoteView) HasQuoteCreator

func (o *QuoteView) HasQuoteCreator() bool

HasQuoteCreator returns a boolean if a field has been set.

func (*QuoteView) HasQuoteNotes

func (o *QuoteView) HasQuoteNotes() bool

HasQuoteNotes returns a boolean if a field has been set.

func (*QuoteView) HasQuoteNumber

func (o *QuoteView) HasQuoteNumber() bool

HasQuoteNumber returns a boolean if a field has been set.

func (*QuoteView) HasQuotePreface

func (o *QuoteView) HasQuotePreface() bool

HasQuotePreface returns a boolean if a field has been set.

func (*QuoteView) HasQuoteStatus

func (o *QuoteView) HasQuoteStatus() bool

HasQuoteStatus returns a boolean if a field has been set.

func (*QuoteView) HasQuoteTotal

func (o *QuoteView) HasQuoteTotal() bool

HasQuoteTotal returns a boolean if a field has been set.

func (*QuoteView) HasQuoteType

func (o *QuoteView) HasQuoteType() bool

HasQuoteType returns a boolean if a field has been set.

func (*QuoteView) HasQuoteVersion

func (o *QuoteView) HasQuoteVersion() bool

HasQuoteVersion returns a boolean if a field has been set.

func (*QuoteView) HasRecurringCost

func (o *QuoteView) HasRecurringCost() bool

HasRecurringCost returns a boolean if a field has been set.

func (*QuoteView) HasRecurringDiscountAmount

func (o *QuoteView) HasRecurringDiscountAmount() bool

HasRecurringDiscountAmount returns a boolean if a field has been set.

func (*QuoteView) HasRecurringGst

func (o *QuoteView) HasRecurringGst() bool

HasRecurringGst returns a boolean if a field has been set.

func (*QuoteView) HasRecurringOptionalAmount

func (o *QuoteView) HasRecurringOptionalAmount() bool

HasRecurringOptionalAmount returns a boolean if a field has been set.

func (*QuoteView) HasRecurringPst

func (o *QuoteView) HasRecurringPst() bool

HasRecurringPst returns a boolean if a field has been set.

func (*QuoteView) HasRecurringSubtotal

func (o *QuoteView) HasRecurringSubtotal() bool

HasRecurringSubtotal returns a boolean if a field has been set.

func (*QuoteView) HasRecurringSuggestedDiscountAmount

func (o *QuoteView) HasRecurringSuggestedDiscountAmount() bool

HasRecurringSuggestedDiscountAmount returns a boolean if a field has been set.

func (*QuoteView) HasRecurringSuggestedTotal

func (o *QuoteView) HasRecurringSuggestedTotal() bool

HasRecurringSuggestedTotal returns a boolean if a field has been set.

func (*QuoteView) HasRecurringTax

func (o *QuoteView) HasRecurringTax() bool

HasRecurringTax returns a boolean if a field has been set.

func (*QuoteView) HasRecurringTotal

func (o *QuoteView) HasRecurringTotal() bool

HasRecurringTotal returns a boolean if a field has been set.

func (*QuoteView) HasRequestDate

func (o *QuoteView) HasRequestDate() bool

HasRequestDate returns a boolean if a field has been set.

func (*QuoteView) HasRequestId

func (o *QuoteView) HasRequestId() bool

HasRequestId returns a boolean if a field has been set.

func (*QuoteView) HasRequestedBy

func (o *QuoteView) HasRequestedBy() bool

HasRequestedBy returns a boolean if a field has been set.

func (*QuoteView) HasRequiresApproval

func (o *QuoteView) HasRequiresApproval() bool

HasRequiresApproval returns a boolean if a field has been set.

func (*QuoteView) HasRequiresNameChange

func (o *QuoteView) HasRequiresNameChange() bool

HasRequiresNameChange returns a boolean if a field has been set.

func (*QuoteView) HasSalesForceDefaultOppType

func (o *QuoteView) HasSalesForceDefaultOppType() bool

HasSalesForceDefaultOppType returns a boolean if a field has been set.

func (*QuoteView) HasSalesForceDefaultPriceList

func (o *QuoteView) HasSalesForceDefaultPriceList() bool

HasSalesForceDefaultPriceList returns a boolean if a field has been set.

func (*QuoteView) HasSalesForceDefaultRecurringTermType

func (o *QuoteView) HasSalesForceDefaultRecurringTermType() bool

HasSalesForceDefaultRecurringTermType returns a boolean if a field has been set.

func (*QuoteView) HasSelectedTermsTotal

func (o *QuoteView) HasSelectedTermsTotal() bool

HasSelectedTermsTotal returns a boolean if a field has been set.

func (*QuoteView) HasShippingSubtotal

func (o *QuoteView) HasShippingSubtotal() bool

HasShippingSubtotal returns a boolean if a field has been set.

func (*QuoteView) HasShippingTax

func (o *QuoteView) HasShippingTax() bool

HasShippingTax returns a boolean if a field has been set.

func (*QuoteView) HasShortDescription

func (o *QuoteView) HasShortDescription() bool

HasShortDescription returns a boolean if a field has been set.

func (*QuoteView) HasShowOrderPorterESign

func (o *QuoteView) HasShowOrderPorterESign() bool

HasShowOrderPorterESign returns a boolean if a field has been set.

func (*QuoteView) HasShowPackageHeader

func (o *QuoteView) HasShowPackageHeader() bool

HasShowPackageHeader returns a boolean if a field has been set.

func (*QuoteView) HasShowPackageItems

func (o *QuoteView) HasShowPackageItems() bool

HasShowPackageItems returns a boolean if a field has been set.

func (*QuoteView) HasSourceCampaignId

func (o *QuoteView) HasSourceCampaignId() bool

HasSourceCampaignId returns a boolean if a field has been set.

func (*QuoteView) HasSubtotal

func (o *QuoteView) HasSubtotal() bool

HasSubtotal returns a boolean if a field has been set.

func (*QuoteView) HasSubtotalConverted

func (o *QuoteView) HasSubtotalConverted() bool

HasSubtotalConverted returns a boolean if a field has been set.

func (*QuoteView) HasSuggestedDiscountAmount

func (o *QuoteView) HasSuggestedDiscountAmount() bool

HasSuggestedDiscountAmount returns a boolean if a field has been set.

func (*QuoteView) HasSuggestedTotal

func (o *QuoteView) HasSuggestedTotal() bool

HasSuggestedTotal returns a boolean if a field has been set.

func (*QuoteView) HasTargetDate

func (o *QuoteView) HasTargetDate() bool

HasTargetDate returns a boolean if a field has been set.

func (*QuoteView) HasTax

func (o *QuoteView) HasTax() bool

HasTax returns a boolean if a field has been set.

func (*QuoteView) HasTaxCode

func (o *QuoteView) HasTaxCode() bool

HasTaxCode returns a boolean if a field has been set.

func (*QuoteView) HasTaxRate

func (o *QuoteView) HasTaxRate() bool

HasTaxRate returns a boolean if a field has been set.

func (*QuoteView) HasTermsAndConditions

func (o *QuoteView) HasTermsAndConditions() bool

HasTermsAndConditions returns a boolean if a field has been set.

func (*QuoteView) HasVersionComment

func (o *QuoteView) HasVersionComment() bool

HasVersionComment returns a boolean if a field has been set.

func (*QuoteView) HasWinForm

func (o *QuoteView) HasWinForm() bool

HasWinForm returns a boolean if a field has been set.

func (*QuoteView) HasWonOrLostDate

func (o *QuoteView) HasWonOrLostDate() bool

HasWonOrLostDate returns a boolean if a field has been set.

func (*QuoteView) HasZCustomQuoteBool1

func (o *QuoteView) HasZCustomQuoteBool1() bool

HasZCustomQuoteBool1 returns a boolean if a field has been set.

func (*QuoteView) HasZCustomQuoteBool2

func (o *QuoteView) HasZCustomQuoteBool2() bool

HasZCustomQuoteBool2 returns a boolean if a field has been set.

func (*QuoteView) HasZCustomQuoteBool3

func (o *QuoteView) HasZCustomQuoteBool3() bool

HasZCustomQuoteBool3 returns a boolean if a field has been set.

func (*QuoteView) HasZCustomQuoteBool4

func (o *QuoteView) HasZCustomQuoteBool4() bool

HasZCustomQuoteBool4 returns a boolean if a field has been set.

func (*QuoteView) HasZCustomQuoteBool5

func (o *QuoteView) HasZCustomQuoteBool5() bool

HasZCustomQuoteBool5 returns a boolean if a field has been set.

func (*QuoteView) HasZCustomQuoteBool6

func (o *QuoteView) HasZCustomQuoteBool6() bool

HasZCustomQuoteBool6 returns a boolean if a field has been set.

func (*QuoteView) HasZCustomQuoteBool7

func (o *QuoteView) HasZCustomQuoteBool7() bool

HasZCustomQuoteBool7 returns a boolean if a field has been set.

func (*QuoteView) HasZCustomQuoteBool8

func (o *QuoteView) HasZCustomQuoteBool8() bool

HasZCustomQuoteBool8 returns a boolean if a field has been set.

func (*QuoteView) HasZCustomQuoteBool9

func (o *QuoteView) HasZCustomQuoteBool9() bool

HasZCustomQuoteBool9 returns a boolean if a field has been set.

func (*QuoteView) HasZCustomQuoteBool10

func (o *QuoteView) HasZCustomQuoteBool10() bool

HasZCustomQuoteBool10 returns a boolean if a field has been set.

func (*QuoteView) HasZCustomQuoteDate1

func (o *QuoteView) HasZCustomQuoteDate1() bool

HasZCustomQuoteDate1 returns a boolean if a field has been set.

func (*QuoteView) HasZCustomQuoteDate2

func (o *QuoteView) HasZCustomQuoteDate2() bool

HasZCustomQuoteDate2 returns a boolean if a field has been set.

func (*QuoteView) HasZCustomQuoteDecimal1

func (o *QuoteView) HasZCustomQuoteDecimal1() bool

HasZCustomQuoteDecimal1 returns a boolean if a field has been set.

func (*QuoteView) HasZCustomQuoteDecimal2

func (o *QuoteView) HasZCustomQuoteDecimal2() bool

HasZCustomQuoteDecimal2 returns a boolean if a field has been set.

func (*QuoteView) HasZCustomQuoteDecimal3

func (o *QuoteView) HasZCustomQuoteDecimal3() bool

HasZCustomQuoteDecimal3 returns a boolean if a field has been set.

func (*QuoteView) HasZCustomQuoteDecimal4

func (o *QuoteView) HasZCustomQuoteDecimal4() bool

HasZCustomQuoteDecimal4 returns a boolean if a field has been set.

func (*QuoteView) HasZCustomQuoteDecimal5

func (o *QuoteView) HasZCustomQuoteDecimal5() bool

HasZCustomQuoteDecimal5 returns a boolean if a field has been set.

func (*QuoteView) HasZCustomQuoteDecimal6

func (o *QuoteView) HasZCustomQuoteDecimal6() bool

HasZCustomQuoteDecimal6 returns a boolean if a field has been set.

func (*QuoteView) HasZCustomQuoteDecimal7

func (o *QuoteView) HasZCustomQuoteDecimal7() bool

HasZCustomQuoteDecimal7 returns a boolean if a field has been set.

func (*QuoteView) HasZCustomQuoteDecimal8

func (o *QuoteView) HasZCustomQuoteDecimal8() bool

HasZCustomQuoteDecimal8 returns a boolean if a field has been set.

func (*QuoteView) HasZCustomQuoteDecimal9

func (o *QuoteView) HasZCustomQuoteDecimal9() bool

HasZCustomQuoteDecimal9 returns a boolean if a field has been set.

func (*QuoteView) HasZCustomQuoteDecimal10

func (o *QuoteView) HasZCustomQuoteDecimal10() bool

HasZCustomQuoteDecimal10 returns a boolean if a field has been set.

func (*QuoteView) HasZCustomQuoteDecimal11

func (o *QuoteView) HasZCustomQuoteDecimal11() bool

HasZCustomQuoteDecimal11 returns a boolean if a field has been set.

func (*QuoteView) HasZCustomQuoteDecimal12

func (o *QuoteView) HasZCustomQuoteDecimal12() bool

HasZCustomQuoteDecimal12 returns a boolean if a field has been set.

func (*QuoteView) HasZCustomQuoteDecimal13

func (o *QuoteView) HasZCustomQuoteDecimal13() bool

HasZCustomQuoteDecimal13 returns a boolean if a field has been set.

func (*QuoteView) HasZCustomQuoteDecimal14

func (o *QuoteView) HasZCustomQuoteDecimal14() bool

HasZCustomQuoteDecimal14 returns a boolean if a field has been set.

func (*QuoteView) HasZCustomQuoteDecimal15

func (o *QuoteView) HasZCustomQuoteDecimal15() bool

HasZCustomQuoteDecimal15 returns a boolean if a field has been set.

func (*QuoteView) HasZCustomQuoteDecimal16

func (o *QuoteView) HasZCustomQuoteDecimal16() bool

HasZCustomQuoteDecimal16 returns a boolean if a field has been set.

func (*QuoteView) HasZCustomQuoteDecimal17

func (o *QuoteView) HasZCustomQuoteDecimal17() bool

HasZCustomQuoteDecimal17 returns a boolean if a field has been set.

func (*QuoteView) HasZCustomQuoteDecimal18

func (o *QuoteView) HasZCustomQuoteDecimal18() bool

HasZCustomQuoteDecimal18 returns a boolean if a field has been set.

func (*QuoteView) HasZCustomQuoteDecimal19

func (o *QuoteView) HasZCustomQuoteDecimal19() bool

HasZCustomQuoteDecimal19 returns a boolean if a field has been set.

func (*QuoteView) HasZCustomQuoteDecimal20

func (o *QuoteView) HasZCustomQuoteDecimal20() bool

HasZCustomQuoteDecimal20 returns a boolean if a field has been set.

func (*QuoteView) HasZCustomQuoteString1

func (o *QuoteView) HasZCustomQuoteString1() bool

HasZCustomQuoteString1 returns a boolean if a field has been set.

func (*QuoteView) HasZCustomQuoteString2

func (o *QuoteView) HasZCustomQuoteString2() bool

HasZCustomQuoteString2 returns a boolean if a field has been set.

func (*QuoteView) HasZCustomQuoteString3

func (o *QuoteView) HasZCustomQuoteString3() bool

HasZCustomQuoteString3 returns a boolean if a field has been set.

func (*QuoteView) HasZCustomQuoteString4

func (o *QuoteView) HasZCustomQuoteString4() bool

HasZCustomQuoteString4 returns a boolean if a field has been set.

func (*QuoteView) HasZCustomQuoteString5

func (o *QuoteView) HasZCustomQuoteString5() bool

HasZCustomQuoteString5 returns a boolean if a field has been set.

func (*QuoteView) HasZCustomQuoteString6

func (o *QuoteView) HasZCustomQuoteString6() bool

HasZCustomQuoteString6 returns a boolean if a field has been set.

func (*QuoteView) HasZCustomQuoteString7

func (o *QuoteView) HasZCustomQuoteString7() bool

HasZCustomQuoteString7 returns a boolean if a field has been set.

func (*QuoteView) HasZCustomQuoteString8

func (o *QuoteView) HasZCustomQuoteString8() bool

HasZCustomQuoteString8 returns a boolean if a field has been set.

func (*QuoteView) HasZCustomQuoteString9

func (o *QuoteView) HasZCustomQuoteString9() bool

HasZCustomQuoteString9 returns a boolean if a field has been set.

func (*QuoteView) HasZCustomQuoteString10

func (o *QuoteView) HasZCustomQuoteString10() bool

HasZCustomQuoteString10 returns a boolean if a field has been set.

func (*QuoteView) HasZCustomQuoteString11

func (o *QuoteView) HasZCustomQuoteString11() bool

HasZCustomQuoteString11 returns a boolean if a field has been set.

func (*QuoteView) HasZCustomQuoteString12

func (o *QuoteView) HasZCustomQuoteString12() bool

HasZCustomQuoteString12 returns a boolean if a field has been set.

func (*QuoteView) HasZCustomQuoteString13

func (o *QuoteView) HasZCustomQuoteString13() bool

HasZCustomQuoteString13 returns a boolean if a field has been set.

func (*QuoteView) HasZCustomQuoteString14

func (o *QuoteView) HasZCustomQuoteString14() bool

HasZCustomQuoteString14 returns a boolean if a field has been set.

func (*QuoteView) HasZCustomQuoteString15

func (o *QuoteView) HasZCustomQuoteString15() bool

HasZCustomQuoteString15 returns a boolean if a field has been set.

func (QuoteView) MarshalJSON

func (o QuoteView) MarshalJSON() ([]byte, error)

func (*QuoteView) SetAccountName

func (o *QuoteView) SetAccountName(v string)

SetAccountName gets a reference to the given string and assigns it to the AccountName field.

func (*QuoteView) SetApprovalAmount

func (o *QuoteView) SetApprovalAmount(v float64)

SetApprovalAmount gets a reference to the given float64 and assigns it to the ApprovalAmount field.

func (*QuoteView) SetApprovalComment

func (o *QuoteView) SetApprovalComment(v string)

SetApprovalComment gets a reference to the given string and assigns it to the ApprovalComment field.

func (*QuoteView) SetApprovalMargin

func (o *QuoteView) SetApprovalMargin(v float64)

SetApprovalMargin gets a reference to the given float64 and assigns it to the ApprovalMargin field.

func (*QuoteView) SetApprovalMode

func (o *QuoteView) SetApprovalMode(v string)

SetApprovalMode gets a reference to the given string and assigns it to the ApprovalMode field.

func (*QuoteView) SetApprovalQuoteForm

func (o *QuoteView) SetApprovalQuoteForm(v string)

SetApprovalQuoteForm gets a reference to the given string and assigns it to the ApprovalQuoteForm field.

func (*QuoteView) SetApprovalReason

func (o *QuoteView) SetApprovalReason(v string)

SetApprovalReason gets a reference to the given string and assigns it to the ApprovalReason field.

func (*QuoteView) SetApprovalStatus

func (o *QuoteView) SetApprovalStatus(v string)

SetApprovalStatus gets a reference to the given string and assigns it to the ApprovalStatus field.

func (*QuoteView) SetApprovedByUser

func (o *QuoteView) SetApprovedByUser(v string)

SetApprovedByUser gets a reference to the given string and assigns it to the ApprovedByUser field.

func (*QuoteView) SetApprovedDate

func (o *QuoteView) SetApprovedDate(v time.Time)

SetApprovedDate gets a reference to the given time.Time and assigns it to the ApprovedDate field.

func (*QuoteView) SetAutoTaskQuoteNumber

func (o *QuoteView) SetAutoTaskQuoteNumber(v string)

SetAutoTaskQuoteNumber gets a reference to the given string and assigns it to the AutoTaskQuoteNumber field.

func (*QuoteView) SetBaseCurrency

func (o *QuoteView) SetBaseCurrency(v string)

SetBaseCurrency gets a reference to the given string and assigns it to the BaseCurrency field.

func (*QuoteView) SetContactName

func (o *QuoteView) SetContactName(v string)

SetContactName gets a reference to the given string and assigns it to the ContactName field.

func (*QuoteView) SetContractEndDate

func (o *QuoteView) SetContractEndDate(v time.Time)

SetContractEndDate gets a reference to the given time.Time and assigns it to the ContractEndDate field.

func (*QuoteView) SetContractStartDate

func (o *QuoteView) SetContractStartDate(v time.Time)

SetContractStartDate gets a reference to the given time.Time and assigns it to the ContractStartDate field.

func (*QuoteView) SetCostChangesCount

func (o *QuoteView) SetCostChangesCount(v int32)

SetCostChangesCount gets a reference to the given int32 and assigns it to the CostChangesCount field.

func (*QuoteView) SetCreateDate

func (o *QuoteView) SetCreateDate(v time.Time)

SetCreateDate gets a reference to the given time.Time and assigns it to the CreateDate field.

func (*QuoteView) SetCreateNotes

func (o *QuoteView) SetCreateNotes(v string)

SetCreateNotes gets a reference to the given string and assigns it to the CreateNotes field.

func (*QuoteView) SetCrmOpGroup

func (o *QuoteView) SetCrmOpGroup(v string)

SetCrmOpGroup gets a reference to the given string and assigns it to the CrmOpGroup field.

func (*QuoteView) SetCrmOpportunityId

func (o *QuoteView) SetCrmOpportunityId(v string)

SetCrmOpportunityId gets a reference to the given string and assigns it to the CrmOpportunityId field.

func (*QuoteView) SetCustomer

func (o *QuoteView) SetCustomer(v ReferenceLink)

SetCustomer gets a reference to the given ReferenceLink and assigns it to the Customer field.

func (*QuoteView) SetCustomerSignatureCapture

func (o *QuoteView) SetCustomerSignatureCapture(v ReferenceLink)

SetCustomerSignatureCapture gets a reference to the given ReferenceLink and assigns it to the CustomerSignatureCapture field.

func (*QuoteView) SetDefaultReportList

func (o *QuoteView) SetDefaultReportList(v string)

SetDefaultReportList gets a reference to the given string and assigns it to the DefaultReportList field.

func (*QuoteView) SetDefaultSuccessListProfile

func (o *QuoteView) SetDefaultSuccessListProfile(v string)

SetDefaultSuccessListProfile gets a reference to the given string and assigns it to the DefaultSuccessListProfile field.

func (*QuoteView) SetDefaultTermPeriods

func (o *QuoteView) SetDefaultTermPeriods(v int32)

SetDefaultTermPeriods gets a reference to the given int32 and assigns it to the DefaultTermPeriods field.

func (*QuoteView) SetDefaultVideoList

func (o *QuoteView) SetDefaultVideoList(v string)

SetDefaultVideoList gets a reference to the given string and assigns it to the DefaultVideoList field.

func (*QuoteView) SetDeliveredDate

func (o *QuoteView) SetDeliveredDate(v time.Time)

SetDeliveredDate gets a reference to the given time.Time and assigns it to the DeliveredDate field.

func (*QuoteView) SetDiscountAmount

func (o *QuoteView) SetDiscountAmount(v float64)

SetDiscountAmount gets a reference to the given float64 and assigns it to the DiscountAmount field.

func (*QuoteView) SetExpectedCloseDate

func (o *QuoteView) SetExpectedCloseDate(v time.Time)

SetExpectedCloseDate gets a reference to the given time.Time and assigns it to the ExpectedCloseDate field.

func (*QuoteView) SetExpirationDate

func (o *QuoteView) SetExpirationDate(v time.Time)

SetExpirationDate gets a reference to the given time.Time and assigns it to the ExpirationDate field.

func (*QuoteView) SetExternalReferenceQuoteDemandId

func (o *QuoteView) SetExternalReferenceQuoteDemandId(v string)

SetExternalReferenceQuoteDemandId gets a reference to the given string and assigns it to the ExternalReferenceQuoteDemandId field.

func (*QuoteView) SetForceManagerApprovalScript

func (o *QuoteView) SetForceManagerApprovalScript(v bool)

SetForceManagerApprovalScript gets a reference to the given bool and assigns it to the ForceManagerApprovalScript field.

func (*QuoteView) SetGreatAmericaDefaultRateCard

func (o *QuoteView) SetGreatAmericaDefaultRateCard(v string)

SetGreatAmericaDefaultRateCard gets a reference to the given string and assigns it to the GreatAmericaDefaultRateCard field.

func (*QuoteView) SetGrossMargin

func (o *QuoteView) SetGrossMargin(v float64)

SetGrossMargin gets a reference to the given float64 and assigns it to the GrossMargin field.

func (*QuoteView) SetGrossMarginAmount

func (o *QuoteView) SetGrossMarginAmount(v float64)

SetGrossMarginAmount gets a reference to the given float64 and assigns it to the GrossMarginAmount field.

func (*QuoteView) SetGst

func (o *QuoteView) SetGst(v float64)

SetGst gets a reference to the given float64 and assigns it to the Gst field.

func (*QuoteView) SetGstConverted

func (o *QuoteView) SetGstConverted(v float64)

SetGstConverted gets a reference to the given float64 and assigns it to the GstConverted field.

func (*QuoteView) SetHtmlAgreement

func (o *QuoteView) SetHtmlAgreement(v string)

SetHtmlAgreement gets a reference to the given string and assigns it to the HtmlAgreement field.

func (*QuoteView) SetHtmlNotes1

func (o *QuoteView) SetHtmlNotes1(v string)

SetHtmlNotes1 gets a reference to the given string and assigns it to the HtmlNotes1 field.

func (*QuoteView) SetHtmlNotes2

func (o *QuoteView) SetHtmlNotes2(v string)

SetHtmlNotes2 gets a reference to the given string and assigns it to the HtmlNotes2 field.

func (*QuoteView) SetId

func (o *QuoteView) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*QuoteView) SetIncludeZeroSuggestedInDiscount

func (o *QuoteView) SetIncludeZeroSuggestedInDiscount(v bool)

SetIncludeZeroSuggestedInDiscount gets a reference to the given bool and assigns it to the IncludeZeroSuggestedInDiscount field.

func (*QuoteView) SetInsideRep

func (o *QuoteView) SetInsideRep(v string)

SetInsideRep gets a reference to the given string and assigns it to the InsideRep field.

func (*QuoteView) SetInvoicePostDate

func (o *QuoteView) SetInvoicePostDate(v time.Time)

SetInvoicePostDate gets a reference to the given time.Time and assigns it to the InvoicePostDate field.

func (*QuoteView) SetInvoicePostStatus

func (o *QuoteView) SetInvoicePostStatus(v string)

SetInvoicePostStatus gets a reference to the given string and assigns it to the InvoicePostStatus field.

func (*QuoteView) SetInvoicePostUser

func (o *QuoteView) SetInvoicePostUser(v string)

SetInvoicePostUser gets a reference to the given string and assigns it to the InvoicePostUser field.

func (*QuoteView) SetIsAccepted

func (o *QuoteView) SetIsAccepted(v bool)

SetIsAccepted gets a reference to the given bool and assigns it to the IsAccepted field.

func (*QuoteView) SetIsArchive

func (o *QuoteView) SetIsArchive(v bool)

SetIsArchive gets a reference to the given bool and assigns it to the IsArchive field.

func (*QuoteView) SetIsLost

func (o *QuoteView) SetIsLost(v bool)

SetIsLost gets a reference to the given bool and assigns it to the IsLost field.

func (*QuoteView) SetIsManagerApproved

func (o *QuoteView) SetIsManagerApproved(v bool)

SetIsManagerApproved gets a reference to the given bool and assigns it to the IsManagerApproved field.

func (*QuoteView) SetIsOrderPorterApproved

func (o *QuoteView) SetIsOrderPorterApproved(v bool)

SetIsOrderPorterApproved gets a reference to the given bool and assigns it to the IsOrderPorterApproved field.

func (*QuoteView) SetIsQuoteDemand

func (o *QuoteView) SetIsQuoteDemand(v bool)

SetIsQuoteDemand gets a reference to the given bool and assigns it to the IsQuoteDemand field.

func (*QuoteView) SetIsRequestQuote

func (o *QuoteView) SetIsRequestQuote(v bool)

SetIsRequestQuote gets a reference to the given bool and assigns it to the IsRequestQuote field.

func (*QuoteView) SetIsRequestTemplate

func (o *QuoteView) SetIsRequestTemplate(v bool)

SetIsRequestTemplate gets a reference to the given bool and assigns it to the IsRequestTemplate field.

func (*QuoteView) SetIsSent

func (o *QuoteView) SetIsSent(v bool)

SetIsSent gets a reference to the given bool and assigns it to the IsSent field.

func (*QuoteView) SetIsSuccessListDisabled

func (o *QuoteView) SetIsSuccessListDisabled(v bool)

SetIsSuccessListDisabled gets a reference to the given bool and assigns it to the IsSuccessListDisabled field.

func (*QuoteView) SetIsTaxCalculated

func (o *QuoteView) SetIsTaxCalculated(v bool)

SetIsTaxCalculated gets a reference to the given bool and assigns it to the IsTaxCalculated field.

func (*QuoteView) SetKeywords

func (o *QuoteView) SetKeywords(v string)

SetKeywords gets a reference to the given string and assigns it to the Keywords field.

func (*QuoteView) SetLocationId

func (o *QuoteView) SetLocationId(v string)

SetLocationId gets a reference to the given string and assigns it to the LocationId field.

func (*QuoteView) SetLongDescription

func (o *QuoteView) SetLongDescription(v string)

SetLongDescription gets a reference to the given string and assigns it to the LongDescription field.

func (*QuoteView) SetLostReason

func (o *QuoteView) SetLostReason(v string)

SetLostReason gets a reference to the given string and assigns it to the LostReason field.

func (*QuoteView) SetMarkup

func (o *QuoteView) SetMarkup(v float64)

SetMarkup gets a reference to the given float64 and assigns it to the Markup field.

func (*QuoteView) SetMasterAgreement

func (o *QuoteView) SetMasterAgreement(v string)

SetMasterAgreement gets a reference to the given string and assigns it to the MasterAgreement field.

func (*QuoteView) SetMasterAgreementNumber

func (o *QuoteView) SetMasterAgreementNumber(v string)

SetMasterAgreementNumber gets a reference to the given string and assigns it to the MasterAgreementNumber field.

func (*QuoteView) SetModifyDate

func (o *QuoteView) SetModifyDate(v time.Time)

SetModifyDate gets a reference to the given time.Time and assigns it to the ModifyDate field.

func (*QuoteView) SetName

func (o *QuoteView) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*QuoteView) SetNetMargin

func (o *QuoteView) SetNetMargin(v float64)

SetNetMargin gets a reference to the given float64 and assigns it to the NetMargin field.

func (*QuoteView) SetNetSuiteSubsidiary

func (o *QuoteView) SetNetSuiteSubsidiary(v string)

SetNetSuiteSubsidiary gets a reference to the given string and assigns it to the NetSuiteSubsidiary field.

func (*QuoteView) SetOptionalAmount

func (o *QuoteView) SetOptionalAmount(v float64)

SetOptionalAmount gets a reference to the given float64 and assigns it to the OptionalAmount field.

func (*QuoteView) SetOptionalAmountConverted

func (o *QuoteView) SetOptionalAmountConverted(v float64)

SetOptionalAmountConverted gets a reference to the given float64 and assigns it to the OptionalAmountConverted field.

func (*QuoteView) SetOrderPorterDownPaymentMinimum

func (o *QuoteView) SetOrderPorterDownPaymentMinimum(v float64)

SetOrderPorterDownPaymentMinimum gets a reference to the given float64 and assigns it to the OrderPorterDownPaymentMinimum field.

func (*QuoteView) SetOrderPorterDownPaymentPercent

func (o *QuoteView) SetOrderPorterDownPaymentPercent(v float64)

SetOrderPorterDownPaymentPercent gets a reference to the given float64 and assigns it to the OrderPorterDownPaymentPercent field.

func (*QuoteView) SetOrderPorterEmailSignature

func (o *QuoteView) SetOrderPorterEmailSignature(v string)

SetOrderPorterEmailSignature gets a reference to the given string and assigns it to the OrderPorterEmailSignature field.

func (*QuoteView) SetOrderPorterFilteredIp

func (o *QuoteView) SetOrderPorterFilteredIp(v string)

SetOrderPorterFilteredIp gets a reference to the given string and assigns it to the OrderPorterFilteredIp field.

func (*QuoteView) SetOrderPorterFirstVisitDate

func (o *QuoteView) SetOrderPorterFirstVisitDate(v time.Time)

SetOrderPorterFirstVisitDate gets a reference to the given time.Time and assigns it to the OrderPorterFirstVisitDate field.

func (*QuoteView) SetOrderPorterFullPaymentAllowed

func (o *QuoteView) SetOrderPorterFullPaymentAllowed(v bool)

SetOrderPorterFullPaymentAllowed gets a reference to the given bool and assigns it to the OrderPorterFullPaymentAllowed field.

func (*QuoteView) SetOrderPorterGroup

func (o *QuoteView) SetOrderPorterGroup(v string)

SetOrderPorterGroup gets a reference to the given string and assigns it to the OrderPorterGroup field.

func (*QuoteView) SetOrderPorterHasFirstVisitOccurred

func (o *QuoteView) SetOrderPorterHasFirstVisitOccurred(v bool)

SetOrderPorterHasFirstVisitOccurred gets a reference to the given bool and assigns it to the OrderPorterHasFirstVisitOccurred field.

func (*QuoteView) SetOrderPorterInitialsSig

func (o *QuoteView) SetOrderPorterInitialsSig(v string)

SetOrderPorterInitialsSig gets a reference to the given string and assigns it to the OrderPorterInitialsSig field.

func (*QuoteView) SetOrderPorterIsUploaded

func (o *QuoteView) SetOrderPorterIsUploaded(v bool)

SetOrderPorterIsUploaded gets a reference to the given bool and assigns it to the OrderPorterIsUploaded field.

func (*QuoteView) SetOrderPorterPasscode

func (o *QuoteView) SetOrderPorterPasscode(v string)

SetOrderPorterPasscode gets a reference to the given string and assigns it to the OrderPorterPasscode field.

func (*QuoteView) SetOrderPorterPaymentMode

func (o *QuoteView) SetOrderPorterPaymentMode(v string)

SetOrderPorterPaymentMode gets a reference to the given string and assigns it to the OrderPorterPaymentMode field.

func (*QuoteView) SetOrderPorterPreviewPicture

func (o *QuoteView) SetOrderPorterPreviewPicture(v ReferenceLink)

SetOrderPorterPreviewPicture gets a reference to the given ReferenceLink and assigns it to the OrderPorterPreviewPicture field.

func (*QuoteView) SetOrderPorterShowImage

func (o *QuoteView) SetOrderPorterShowImage(v bool)

SetOrderPorterShowImage gets a reference to the given bool and assigns it to the OrderPorterShowImage field.

func (*QuoteView) SetOrderPorterShowItemOptionalCheckbox

func (o *QuoteView) SetOrderPorterShowItemOptionalCheckbox(v bool)

SetOrderPorterShowItemOptionalCheckbox gets a reference to the given bool and assigns it to the OrderPorterShowItemOptionalCheckbox field.

func (*QuoteView) SetOrderPorterShowLineDetails

func (o *QuoteView) SetOrderPorterShowLineDetails(v bool)

SetOrderPorterShowLineDetails gets a reference to the given bool and assigns it to the OrderPorterShowLineDetails field.

func (*QuoteView) SetOrderPorterShowQuantity

func (o *QuoteView) SetOrderPorterShowQuantity(v bool)

SetOrderPorterShowQuantity gets a reference to the given bool and assigns it to the OrderPorterShowQuantity field.

func (*QuoteView) SetOrderPorterShowSignature

func (o *QuoteView) SetOrderPorterShowSignature(v bool)

SetOrderPorterShowSignature gets a reference to the given bool and assigns it to the OrderPorterShowSignature field.

func (*QuoteView) SetOrderPorterShowTabOptionalCheckbox

func (o *QuoteView) SetOrderPorterShowTabOptionalCheckbox(v bool)

SetOrderPorterShowTabOptionalCheckbox gets a reference to the given bool and assigns it to the OrderPorterShowTabOptionalCheckbox field.

func (*QuoteView) SetOrderPorterSignedDate

func (o *QuoteView) SetOrderPorterSignedDate(v time.Time)

SetOrderPorterSignedDate gets a reference to the given time.Time and assigns it to the OrderPorterSignedDate field.

func (*QuoteView) SetOrderPorterSignedIp

func (o *QuoteView) SetOrderPorterSignedIp(v string)

SetOrderPorterSignedIp gets a reference to the given string and assigns it to the OrderPorterSignedIp field.

func (*QuoteView) SetOrderPorterTemplate

func (o *QuoteView) SetOrderPorterTemplate(v string)

SetOrderPorterTemplate gets a reference to the given string and assigns it to the OrderPorterTemplate field.

func (*QuoteView) SetOrderPorterTheme

func (o *QuoteView) SetOrderPorterTheme(v string)

SetOrderPorterTheme gets a reference to the given string and assigns it to the OrderPorterTheme field.

func (*QuoteView) SetOrderPorterVisits

func (o *QuoteView) SetOrderPorterVisits(v int32)

SetOrderPorterVisits gets a reference to the given int32 and assigns it to the OrderPorterVisits field.

func (*QuoteView) SetOriginalQuoteId

func (o *QuoteView) SetOriginalQuoteId(v string)

SetOriginalQuoteId gets a reference to the given string and assigns it to the OriginalQuoteId field.

func (*QuoteView) SetOverrideRate

func (o *QuoteView) SetOverrideRate(v float64)

SetOverrideRate gets a reference to the given float64 and assigns it to the OverrideRate field.

func (*QuoteView) SetPeerReviewDocument

func (o *QuoteView) SetPeerReviewDocument(v string)

SetPeerReviewDocument gets a reference to the given string and assigns it to the PeerReviewDocument field.

func (*QuoteView) SetPeerReviewStatus

func (o *QuoteView) SetPeerReviewStatus(v string)

SetPeerReviewStatus gets a reference to the given string and assigns it to the PeerReviewStatus field.

func (*QuoteView) SetPicture

func (o *QuoteView) SetPicture(v ReferenceLink)

SetPicture gets a reference to the given ReferenceLink and assigns it to the Picture field.

func (*QuoteView) SetPrimaryRep

func (o *QuoteView) SetPrimaryRep(v string)

SetPrimaryRep gets a reference to the given string and assigns it to the PrimaryRep field.

func (*QuoteView) SetPrintPackageHeaderPrice

func (o *QuoteView) SetPrintPackageHeaderPrice(v bool)

SetPrintPackageHeaderPrice gets a reference to the given bool and assigns it to the PrintPackageHeaderPrice field.

func (*QuoteView) SetPrintPackageItemPrice

func (o *QuoteView) SetPrintPackageItemPrice(v bool)

SetPrintPackageItemPrice gets a reference to the given bool and assigns it to the PrintPackageItemPrice field.

func (*QuoteView) SetProbability

func (o *QuoteView) SetProbability(v float64)

SetProbability gets a reference to the given float64 and assigns it to the Probability field.

func (*QuoteView) SetPromiseDate

func (o *QuoteView) SetPromiseDate(v time.Time)

SetPromiseDate gets a reference to the given time.Time and assigns it to the PromiseDate field.

func (*QuoteView) SetPromiseDateChangesCount

func (o *QuoteView) SetPromiseDateChangesCount(v int32)

SetPromiseDateChangesCount gets a reference to the given int32 and assigns it to the PromiseDateChangesCount field.

func (*QuoteView) SetPst

func (o *QuoteView) SetPst(v float64)

SetPst gets a reference to the given float64 and assigns it to the Pst field.

func (*QuoteView) SetPstConverted

func (o *QuoteView) SetPstConverted(v float64)

SetPstConverted gets a reference to the given float64 and assigns it to the PstConverted field.

func (*QuoteView) SetPublishNumber

func (o *QuoteView) SetPublishNumber(v int32)

SetPublishNumber gets a reference to the given int32 and assigns it to the PublishNumber field.

func (*QuoteView) SetPurchaseOrderNumber

func (o *QuoteView) SetPurchaseOrderNumber(v string)

SetPurchaseOrderNumber gets a reference to the given string and assigns it to the PurchaseOrderNumber field.

func (*QuoteView) SetQuickbooksTemplate

func (o *QuoteView) SetQuickbooksTemplate(v string)

SetQuickbooksTemplate gets a reference to the given string and assigns it to the QuickbooksTemplate field.

func (*QuoteView) SetQuoteCost

func (o *QuoteView) SetQuoteCost(v float64)

SetQuoteCost gets a reference to the given float64 and assigns it to the QuoteCost field.

func (*QuoteView) SetQuoteCreator

func (o *QuoteView) SetQuoteCreator(v string)

SetQuoteCreator gets a reference to the given string and assigns it to the QuoteCreator field.

func (*QuoteView) SetQuoteNotes

func (o *QuoteView) SetQuoteNotes(v string)

SetQuoteNotes gets a reference to the given string and assigns it to the QuoteNotes field.

func (*QuoteView) SetQuoteNumber

func (o *QuoteView) SetQuoteNumber(v int32)

SetQuoteNumber gets a reference to the given int32 and assigns it to the QuoteNumber field.

func (*QuoteView) SetQuotePreface

func (o *QuoteView) SetQuotePreface(v string)

SetQuotePreface gets a reference to the given string and assigns it to the QuotePreface field.

func (*QuoteView) SetQuoteStatus

func (o *QuoteView) SetQuoteStatus(v string)

SetQuoteStatus gets a reference to the given string and assigns it to the QuoteStatus field.

func (*QuoteView) SetQuoteTotal

func (o *QuoteView) SetQuoteTotal(v float64)

SetQuoteTotal gets a reference to the given float64 and assigns it to the QuoteTotal field.

func (*QuoteView) SetQuoteType

func (o *QuoteView) SetQuoteType(v string)

SetQuoteType gets a reference to the given string and assigns it to the QuoteType field.

func (*QuoteView) SetQuoteVersion

func (o *QuoteView) SetQuoteVersion(v int32)

SetQuoteVersion gets a reference to the given int32 and assigns it to the QuoteVersion field.

func (*QuoteView) SetRecurringCost

func (o *QuoteView) SetRecurringCost(v float64)

SetRecurringCost gets a reference to the given float64 and assigns it to the RecurringCost field.

func (*QuoteView) SetRecurringDiscountAmount

func (o *QuoteView) SetRecurringDiscountAmount(v float64)

SetRecurringDiscountAmount gets a reference to the given float64 and assigns it to the RecurringDiscountAmount field.

func (*QuoteView) SetRecurringGst

func (o *QuoteView) SetRecurringGst(v float64)

SetRecurringGst gets a reference to the given float64 and assigns it to the RecurringGst field.

func (*QuoteView) SetRecurringOptionalAmount

func (o *QuoteView) SetRecurringOptionalAmount(v float64)

SetRecurringOptionalAmount gets a reference to the given float64 and assigns it to the RecurringOptionalAmount field.

func (*QuoteView) SetRecurringPst

func (o *QuoteView) SetRecurringPst(v float64)

SetRecurringPst gets a reference to the given float64 and assigns it to the RecurringPst field.

func (*QuoteView) SetRecurringSubtotal

func (o *QuoteView) SetRecurringSubtotal(v float64)

SetRecurringSubtotal gets a reference to the given float64 and assigns it to the RecurringSubtotal field.

func (*QuoteView) SetRecurringSuggestedDiscountAmount

func (o *QuoteView) SetRecurringSuggestedDiscountAmount(v float64)

SetRecurringSuggestedDiscountAmount gets a reference to the given float64 and assigns it to the RecurringSuggestedDiscountAmount field.

func (*QuoteView) SetRecurringSuggestedTotal

func (o *QuoteView) SetRecurringSuggestedTotal(v float64)

SetRecurringSuggestedTotal gets a reference to the given float64 and assigns it to the RecurringSuggestedTotal field.

func (*QuoteView) SetRecurringTax

func (o *QuoteView) SetRecurringTax(v float64)

SetRecurringTax gets a reference to the given float64 and assigns it to the RecurringTax field.

func (*QuoteView) SetRecurringTotal

func (o *QuoteView) SetRecurringTotal(v float64)

SetRecurringTotal gets a reference to the given float64 and assigns it to the RecurringTotal field.

func (*QuoteView) SetRequestDate

func (o *QuoteView) SetRequestDate(v time.Time)

SetRequestDate gets a reference to the given time.Time and assigns it to the RequestDate field.

func (*QuoteView) SetRequestId

func (o *QuoteView) SetRequestId(v string)

SetRequestId gets a reference to the given string and assigns it to the RequestId field.

func (*QuoteView) SetRequestedBy

func (o *QuoteView) SetRequestedBy(v string)

SetRequestedBy gets a reference to the given string and assigns it to the RequestedBy field.

func (*QuoteView) SetRequiresApproval

func (o *QuoteView) SetRequiresApproval(v bool)

SetRequiresApproval gets a reference to the given bool and assigns it to the RequiresApproval field.

func (*QuoteView) SetRequiresNameChange

func (o *QuoteView) SetRequiresNameChange(v bool)

SetRequiresNameChange gets a reference to the given bool and assigns it to the RequiresNameChange field.

func (*QuoteView) SetSalesForceDefaultOppType

func (o *QuoteView) SetSalesForceDefaultOppType(v string)

SetSalesForceDefaultOppType gets a reference to the given string and assigns it to the SalesForceDefaultOppType field.

func (*QuoteView) SetSalesForceDefaultPriceList

func (o *QuoteView) SetSalesForceDefaultPriceList(v string)

SetSalesForceDefaultPriceList gets a reference to the given string and assigns it to the SalesForceDefaultPriceList field.

func (*QuoteView) SetSalesForceDefaultRecurringTermType

func (o *QuoteView) SetSalesForceDefaultRecurringTermType(v string)

SetSalesForceDefaultRecurringTermType gets a reference to the given string and assigns it to the SalesForceDefaultRecurringTermType field.

func (*QuoteView) SetSelectedTermsTotal

func (o *QuoteView) SetSelectedTermsTotal(v float64)

SetSelectedTermsTotal gets a reference to the given float64 and assigns it to the SelectedTermsTotal field.

func (*QuoteView) SetShippingSubtotal

func (o *QuoteView) SetShippingSubtotal(v float64)

SetShippingSubtotal gets a reference to the given float64 and assigns it to the ShippingSubtotal field.

func (*QuoteView) SetShippingTax

func (o *QuoteView) SetShippingTax(v float64)

SetShippingTax gets a reference to the given float64 and assigns it to the ShippingTax field.

func (*QuoteView) SetShortDescription

func (o *QuoteView) SetShortDescription(v string)

SetShortDescription gets a reference to the given string and assigns it to the ShortDescription field.

func (*QuoteView) SetShowOrderPorterESign

func (o *QuoteView) SetShowOrderPorterESign(v bool)

SetShowOrderPorterESign gets a reference to the given bool and assigns it to the ShowOrderPorterESign field.

func (*QuoteView) SetShowPackageHeader

func (o *QuoteView) SetShowPackageHeader(v bool)

SetShowPackageHeader gets a reference to the given bool and assigns it to the ShowPackageHeader field.

func (*QuoteView) SetShowPackageItems

func (o *QuoteView) SetShowPackageItems(v bool)

SetShowPackageItems gets a reference to the given bool and assigns it to the ShowPackageItems field.

func (*QuoteView) SetSourceCampaignId

func (o *QuoteView) SetSourceCampaignId(v string)

SetSourceCampaignId gets a reference to the given string and assigns it to the SourceCampaignId field.

func (*QuoteView) SetSubtotal

func (o *QuoteView) SetSubtotal(v float64)

SetSubtotal gets a reference to the given float64 and assigns it to the Subtotal field.

func (*QuoteView) SetSubtotalConverted

func (o *QuoteView) SetSubtotalConverted(v float64)

SetSubtotalConverted gets a reference to the given float64 and assigns it to the SubtotalConverted field.

func (*QuoteView) SetSuggestedDiscountAmount

func (o *QuoteView) SetSuggestedDiscountAmount(v float64)

SetSuggestedDiscountAmount gets a reference to the given float64 and assigns it to the SuggestedDiscountAmount field.

func (*QuoteView) SetSuggestedTotal

func (o *QuoteView) SetSuggestedTotal(v float64)

SetSuggestedTotal gets a reference to the given float64 and assigns it to the SuggestedTotal field.

func (*QuoteView) SetTargetDate

func (o *QuoteView) SetTargetDate(v time.Time)

SetTargetDate gets a reference to the given time.Time and assigns it to the TargetDate field.

func (*QuoteView) SetTax

func (o *QuoteView) SetTax(v float64)

SetTax gets a reference to the given float64 and assigns it to the Tax field.

func (*QuoteView) SetTaxCode

func (o *QuoteView) SetTaxCode(v string)

SetTaxCode gets a reference to the given string and assigns it to the TaxCode field.

func (*QuoteView) SetTaxRate

func (o *QuoteView) SetTaxRate(v float64)

SetTaxRate gets a reference to the given float64 and assigns it to the TaxRate field.

func (*QuoteView) SetTermsAndConditions

func (o *QuoteView) SetTermsAndConditions(v string)

SetTermsAndConditions gets a reference to the given string and assigns it to the TermsAndConditions field.

func (*QuoteView) SetVersionComment

func (o *QuoteView) SetVersionComment(v string)

SetVersionComment gets a reference to the given string and assigns it to the VersionComment field.

func (*QuoteView) SetWinForm

func (o *QuoteView) SetWinForm(v string)

SetWinForm gets a reference to the given string and assigns it to the WinForm field.

func (*QuoteView) SetWonOrLostDate

func (o *QuoteView) SetWonOrLostDate(v time.Time)

SetWonOrLostDate gets a reference to the given time.Time and assigns it to the WonOrLostDate field.

func (*QuoteView) SetZCustomQuoteBool1

func (o *QuoteView) SetZCustomQuoteBool1(v bool)

SetZCustomQuoteBool1 gets a reference to the given bool and assigns it to the ZCustomQuoteBool1 field.

func (*QuoteView) SetZCustomQuoteBool2

func (o *QuoteView) SetZCustomQuoteBool2(v bool)

SetZCustomQuoteBool2 gets a reference to the given bool and assigns it to the ZCustomQuoteBool2 field.

func (*QuoteView) SetZCustomQuoteBool3

func (o *QuoteView) SetZCustomQuoteBool3(v bool)

SetZCustomQuoteBool3 gets a reference to the given bool and assigns it to the ZCustomQuoteBool3 field.

func (*QuoteView) SetZCustomQuoteBool4

func (o *QuoteView) SetZCustomQuoteBool4(v bool)

SetZCustomQuoteBool4 gets a reference to the given bool and assigns it to the ZCustomQuoteBool4 field.

func (*QuoteView) SetZCustomQuoteBool5

func (o *QuoteView) SetZCustomQuoteBool5(v bool)

SetZCustomQuoteBool5 gets a reference to the given bool and assigns it to the ZCustomQuoteBool5 field.

func (*QuoteView) SetZCustomQuoteBool6

func (o *QuoteView) SetZCustomQuoteBool6(v bool)

SetZCustomQuoteBool6 gets a reference to the given bool and assigns it to the ZCustomQuoteBool6 field.

func (*QuoteView) SetZCustomQuoteBool7

func (o *QuoteView) SetZCustomQuoteBool7(v bool)

SetZCustomQuoteBool7 gets a reference to the given bool and assigns it to the ZCustomQuoteBool7 field.

func (*QuoteView) SetZCustomQuoteBool8

func (o *QuoteView) SetZCustomQuoteBool8(v bool)

SetZCustomQuoteBool8 gets a reference to the given bool and assigns it to the ZCustomQuoteBool8 field.

func (*QuoteView) SetZCustomQuoteBool9

func (o *QuoteView) SetZCustomQuoteBool9(v bool)

SetZCustomQuoteBool9 gets a reference to the given bool and assigns it to the ZCustomQuoteBool9 field.

func (*QuoteView) SetZCustomQuoteBool10

func (o *QuoteView) SetZCustomQuoteBool10(v bool)

SetZCustomQuoteBool10 gets a reference to the given bool and assigns it to the ZCustomQuoteBool10 field.

func (*QuoteView) SetZCustomQuoteDate1

func (o *QuoteView) SetZCustomQuoteDate1(v time.Time)

SetZCustomQuoteDate1 gets a reference to the given time.Time and assigns it to the ZCustomQuoteDate1 field.

func (*QuoteView) SetZCustomQuoteDate2

func (o *QuoteView) SetZCustomQuoteDate2(v time.Time)

SetZCustomQuoteDate2 gets a reference to the given time.Time and assigns it to the ZCustomQuoteDate2 field.

func (*QuoteView) SetZCustomQuoteDecimal1

func (o *QuoteView) SetZCustomQuoteDecimal1(v float64)

SetZCustomQuoteDecimal1 gets a reference to the given float64 and assigns it to the ZCustomQuoteDecimal1 field.

func (*QuoteView) SetZCustomQuoteDecimal2

func (o *QuoteView) SetZCustomQuoteDecimal2(v float64)

SetZCustomQuoteDecimal2 gets a reference to the given float64 and assigns it to the ZCustomQuoteDecimal2 field.

func (*QuoteView) SetZCustomQuoteDecimal3

func (o *QuoteView) SetZCustomQuoteDecimal3(v float64)

SetZCustomQuoteDecimal3 gets a reference to the given float64 and assigns it to the ZCustomQuoteDecimal3 field.

func (*QuoteView) SetZCustomQuoteDecimal4

func (o *QuoteView) SetZCustomQuoteDecimal4(v float64)

SetZCustomQuoteDecimal4 gets a reference to the given float64 and assigns it to the ZCustomQuoteDecimal4 field.

func (*QuoteView) SetZCustomQuoteDecimal5

func (o *QuoteView) SetZCustomQuoteDecimal5(v float64)

SetZCustomQuoteDecimal5 gets a reference to the given float64 and assigns it to the ZCustomQuoteDecimal5 field.

func (*QuoteView) SetZCustomQuoteDecimal6

func (o *QuoteView) SetZCustomQuoteDecimal6(v float64)

SetZCustomQuoteDecimal6 gets a reference to the given float64 and assigns it to the ZCustomQuoteDecimal6 field.

func (*QuoteView) SetZCustomQuoteDecimal7

func (o *QuoteView) SetZCustomQuoteDecimal7(v float64)

SetZCustomQuoteDecimal7 gets a reference to the given float64 and assigns it to the ZCustomQuoteDecimal7 field.

func (*QuoteView) SetZCustomQuoteDecimal8

func (o *QuoteView) SetZCustomQuoteDecimal8(v float64)

SetZCustomQuoteDecimal8 gets a reference to the given float64 and assigns it to the ZCustomQuoteDecimal8 field.

func (*QuoteView) SetZCustomQuoteDecimal9

func (o *QuoteView) SetZCustomQuoteDecimal9(v float64)

SetZCustomQuoteDecimal9 gets a reference to the given float64 and assigns it to the ZCustomQuoteDecimal9 field.

func (*QuoteView) SetZCustomQuoteDecimal10

func (o *QuoteView) SetZCustomQuoteDecimal10(v float64)

SetZCustomQuoteDecimal10 gets a reference to the given float64 and assigns it to the ZCustomQuoteDecimal10 field.

func (*QuoteView) SetZCustomQuoteDecimal11

func (o *QuoteView) SetZCustomQuoteDecimal11(v float64)

SetZCustomQuoteDecimal11 gets a reference to the given float64 and assigns it to the ZCustomQuoteDecimal11 field.

func (*QuoteView) SetZCustomQuoteDecimal12

func (o *QuoteView) SetZCustomQuoteDecimal12(v float64)

SetZCustomQuoteDecimal12 gets a reference to the given float64 and assigns it to the ZCustomQuoteDecimal12 field.

func (*QuoteView) SetZCustomQuoteDecimal13

func (o *QuoteView) SetZCustomQuoteDecimal13(v float64)

SetZCustomQuoteDecimal13 gets a reference to the given float64 and assigns it to the ZCustomQuoteDecimal13 field.

func (*QuoteView) SetZCustomQuoteDecimal14

func (o *QuoteView) SetZCustomQuoteDecimal14(v float64)

SetZCustomQuoteDecimal14 gets a reference to the given float64 and assigns it to the ZCustomQuoteDecimal14 field.

func (*QuoteView) SetZCustomQuoteDecimal15

func (o *QuoteView) SetZCustomQuoteDecimal15(v float64)

SetZCustomQuoteDecimal15 gets a reference to the given float64 and assigns it to the ZCustomQuoteDecimal15 field.

func (*QuoteView) SetZCustomQuoteDecimal16

func (o *QuoteView) SetZCustomQuoteDecimal16(v float64)

SetZCustomQuoteDecimal16 gets a reference to the given float64 and assigns it to the ZCustomQuoteDecimal16 field.

func (*QuoteView) SetZCustomQuoteDecimal17

func (o *QuoteView) SetZCustomQuoteDecimal17(v float64)

SetZCustomQuoteDecimal17 gets a reference to the given float64 and assigns it to the ZCustomQuoteDecimal17 field.

func (*QuoteView) SetZCustomQuoteDecimal18

func (o *QuoteView) SetZCustomQuoteDecimal18(v float64)

SetZCustomQuoteDecimal18 gets a reference to the given float64 and assigns it to the ZCustomQuoteDecimal18 field.

func (*QuoteView) SetZCustomQuoteDecimal19

func (o *QuoteView) SetZCustomQuoteDecimal19(v float64)

SetZCustomQuoteDecimal19 gets a reference to the given float64 and assigns it to the ZCustomQuoteDecimal19 field.

func (*QuoteView) SetZCustomQuoteDecimal20

func (o *QuoteView) SetZCustomQuoteDecimal20(v float64)

SetZCustomQuoteDecimal20 gets a reference to the given float64 and assigns it to the ZCustomQuoteDecimal20 field.

func (*QuoteView) SetZCustomQuoteString1

func (o *QuoteView) SetZCustomQuoteString1(v string)

SetZCustomQuoteString1 gets a reference to the given string and assigns it to the ZCustomQuoteString1 field.

func (*QuoteView) SetZCustomQuoteString2

func (o *QuoteView) SetZCustomQuoteString2(v string)

SetZCustomQuoteString2 gets a reference to the given string and assigns it to the ZCustomQuoteString2 field.

func (*QuoteView) SetZCustomQuoteString3

func (o *QuoteView) SetZCustomQuoteString3(v string)

SetZCustomQuoteString3 gets a reference to the given string and assigns it to the ZCustomQuoteString3 field.

func (*QuoteView) SetZCustomQuoteString4

func (o *QuoteView) SetZCustomQuoteString4(v string)

SetZCustomQuoteString4 gets a reference to the given string and assigns it to the ZCustomQuoteString4 field.

func (*QuoteView) SetZCustomQuoteString5

func (o *QuoteView) SetZCustomQuoteString5(v string)

SetZCustomQuoteString5 gets a reference to the given string and assigns it to the ZCustomQuoteString5 field.

func (*QuoteView) SetZCustomQuoteString6

func (o *QuoteView) SetZCustomQuoteString6(v string)

SetZCustomQuoteString6 gets a reference to the given string and assigns it to the ZCustomQuoteString6 field.

func (*QuoteView) SetZCustomQuoteString7

func (o *QuoteView) SetZCustomQuoteString7(v string)

SetZCustomQuoteString7 gets a reference to the given string and assigns it to the ZCustomQuoteString7 field.

func (*QuoteView) SetZCustomQuoteString8

func (o *QuoteView) SetZCustomQuoteString8(v string)

SetZCustomQuoteString8 gets a reference to the given string and assigns it to the ZCustomQuoteString8 field.

func (*QuoteView) SetZCustomQuoteString9

func (o *QuoteView) SetZCustomQuoteString9(v string)

SetZCustomQuoteString9 gets a reference to the given string and assigns it to the ZCustomQuoteString9 field.

func (*QuoteView) SetZCustomQuoteString10

func (o *QuoteView) SetZCustomQuoteString10(v string)

SetZCustomQuoteString10 gets a reference to the given string and assigns it to the ZCustomQuoteString10 field.

func (*QuoteView) SetZCustomQuoteString11

func (o *QuoteView) SetZCustomQuoteString11(v string)

SetZCustomQuoteString11 gets a reference to the given string and assigns it to the ZCustomQuoteString11 field.

func (*QuoteView) SetZCustomQuoteString12

func (o *QuoteView) SetZCustomQuoteString12(v string)

SetZCustomQuoteString12 gets a reference to the given string and assigns it to the ZCustomQuoteString12 field.

func (*QuoteView) SetZCustomQuoteString13

func (o *QuoteView) SetZCustomQuoteString13(v string)

SetZCustomQuoteString13 gets a reference to the given string and assigns it to the ZCustomQuoteString13 field.

func (*QuoteView) SetZCustomQuoteString14

func (o *QuoteView) SetZCustomQuoteString14(v string)

SetZCustomQuoteString14 gets a reference to the given string and assigns it to the ZCustomQuoteString14 field.

func (*QuoteView) SetZCustomQuoteString15

func (o *QuoteView) SetZCustomQuoteString15(v string)

SetZCustomQuoteString15 gets a reference to the given string and assigns it to the ZCustomQuoteString15 field.

func (QuoteView) ToMap

func (o QuoteView) ToMap() (map[string]interface{}, error)

func (*QuoteView) UnmarshalJSON

func (o *QuoteView) UnmarshalJSON(data []byte) (err error)

type QuotesAPIService

type QuotesAPIService service

QuotesAPIService QuotesAPI service

func (*QuotesAPIService) CopyQuote

CopyQuote Method for CopyQuote

NOTE: Also copies tabs, items and quote customers.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id Quote or template ID
@return ApiCopyQuoteRequest

func (*QuotesAPIService) CopyQuoteExecute

func (a *QuotesAPIService) CopyQuoteExecute(r ApiCopyQuoteRequest) (*QuoteView, *http.Response, error)

Execute executes the request

@return QuoteView

func (*QuotesAPIService) DeleteQuoteByID

func (a *QuotesAPIService) DeleteQuoteByID(ctx context.Context, id string) ApiDeleteQuoteByIDRequest

DeleteQuoteByID Method for DeleteQuoteByID

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiDeleteQuoteByIDRequest

func (*QuotesAPIService) DeleteQuoteByIDExecute

func (a *QuotesAPIService) DeleteQuoteByIDExecute(r ApiDeleteQuoteByIDRequest) (*http.Response, error)

Execute executes the request

func (*QuotesAPIService) DeleteQuoteByNumberAndVersion

func (a *QuotesAPIService) DeleteQuoteByNumberAndVersion(ctx context.Context, quoteNumber int32, quoteVersion int32) ApiDeleteQuoteByNumberAndVersionRequest

DeleteQuoteByNumberAndVersion Method for DeleteQuoteByNumberAndVersion

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param quoteNumber
@param quoteVersion
@return ApiDeleteQuoteByNumberAndVersionRequest

func (*QuotesAPIService) DeleteQuoteByNumberAndVersionExecute

func (a *QuotesAPIService) DeleteQuoteByNumberAndVersionExecute(r ApiDeleteQuoteByNumberAndVersionRequest) (*http.Response, error)

Execute executes the request

func (*QuotesAPIService) GetLatestVersionOfQuoteByQuoteNumber

func (a *QuotesAPIService) GetLatestVersionOfQuoteByQuoteNumber(ctx context.Context, quoteNumber int32) ApiGetLatestVersionOfQuoteByQuoteNumberRequest

GetLatestVersionOfQuoteByQuoteNumber Method for GetLatestVersionOfQuoteByQuoteNumber

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param quoteNumber
@return ApiGetLatestVersionOfQuoteByQuoteNumberRequest

func (*QuotesAPIService) GetLatestVersionOfQuoteByQuoteNumberExecute

func (a *QuotesAPIService) GetLatestVersionOfQuoteByQuoteNumberExecute(r ApiGetLatestVersionOfQuoteByQuoteNumberRequest) (*QuoteView, *http.Response, error)

Execute executes the request

@return QuoteView

func (*QuotesAPIService) GetQuoteByID

GetQuoteByID Method for GetQuoteByID

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiGetQuoteByIDRequest

func (*QuotesAPIService) GetQuoteByIDExecute

func (a *QuotesAPIService) GetQuoteByIDExecute(r ApiGetQuoteByIDRequest) (*QuoteView, *http.Response, error)

Execute executes the request

@return QuoteView

func (*QuotesAPIService) GetQuoteByQuoteNumberAndVersion

func (a *QuotesAPIService) GetQuoteByQuoteNumberAndVersion(ctx context.Context, quoteNumber int32, quoteVersion int32) ApiGetQuoteByQuoteNumberAndVersionRequest

GetQuoteByQuoteNumberAndVersion Method for GetQuoteByQuoteNumberAndVersion

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param quoteNumber
@param quoteVersion
@return ApiGetQuoteByQuoteNumberAndVersionRequest

func (*QuotesAPIService) GetQuoteByQuoteNumberAndVersionExecute

func (a *QuotesAPIService) GetQuoteByQuoteNumberAndVersionExecute(r ApiGetQuoteByQuoteNumberAndVersionRequest) (*QuoteView, *http.Response, error)

Execute executes the request

@return QuoteView

func (*QuotesAPIService) GetQuotes

GetQuotes Method for GetQuotes

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetQuotesRequest

func (*QuotesAPIService) GetQuotesByQuoteNumber

func (a *QuotesAPIService) GetQuotesByQuoteNumber(ctx context.Context, quoteNumber int32) ApiGetQuotesByQuoteNumberRequest

GetQuotesByQuoteNumber Method for GetQuotesByQuoteNumber

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param quoteNumber
@return ApiGetQuotesByQuoteNumberRequest

func (*QuotesAPIService) GetQuotesByQuoteNumberExecute

func (a *QuotesAPIService) GetQuotesByQuoteNumberExecute(r ApiGetQuotesByQuoteNumberRequest) ([]QuoteView, *http.Response, error)

Execute executes the request

@return []QuoteView

func (*QuotesAPIService) GetQuotesExecute

func (a *QuotesAPIService) GetQuotesExecute(r ApiGetQuotesRequest) ([]QuoteView, *http.Response, error)

Execute executes the request

@return []QuoteView

func (*QuotesAPIService) PatchQuoteByID

func (a *QuotesAPIService) PatchQuoteByID(ctx context.Context, id string) ApiPatchQuoteByIDRequest

PatchQuoteByID Method for PatchQuoteByID

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiPatchQuoteByIDRequest

func (*QuotesAPIService) PatchQuoteByIDExecute

func (a *QuotesAPIService) PatchQuoteByIDExecute(r ApiPatchQuoteByIDRequest) (*QuoteView, *http.Response, error)

Execute executes the request

@return QuoteView

type RecurringRevenueAPIService

type RecurringRevenueAPIService service

RecurringRevenueAPIService RecurringRevenueAPI service

func (*RecurringRevenueAPIService) GetRecurringRevenues

GetRecurringRevenues Method for GetRecurringRevenues

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetRecurringRevenuesRequest

func (*RecurringRevenueAPIService) GetRecurringRevenuesExecute

Execute executes the request

@return []RecurringRevenueView

type RecurringRevenueView

type RecurringRevenueView struct {
	// This field is Read Only.
	Id                   *string `json:"id,omitempty"`
	Description          *string `json:"description,omitempty"`
	PeriodType           *string `json:"periodType,omitempty"`
	Duration             *int32  `json:"duration,omitempty"`
	ExternalXref         *string `json:"externalXref,omitempty"`
	Cycle                *string `json:"cycle,omitempty"`
	AdditionalProperties map[string]interface{}
}

RecurringRevenueView struct for RecurringRevenueView

func NewRecurringRevenueView

func NewRecurringRevenueView() *RecurringRevenueView

NewRecurringRevenueView instantiates a new RecurringRevenueView object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRecurringRevenueViewWithDefaults

func NewRecurringRevenueViewWithDefaults() *RecurringRevenueView

NewRecurringRevenueViewWithDefaults instantiates a new RecurringRevenueView object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RecurringRevenueView) GetCycle

func (o *RecurringRevenueView) GetCycle() string

GetCycle returns the Cycle field value if set, zero value otherwise.

func (*RecurringRevenueView) GetCycleOk

func (o *RecurringRevenueView) GetCycleOk() (*string, bool)

GetCycleOk returns a tuple with the Cycle field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RecurringRevenueView) GetDescription

func (o *RecurringRevenueView) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*RecurringRevenueView) GetDescriptionOk

func (o *RecurringRevenueView) GetDescriptionOk() (*string, bool)

GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RecurringRevenueView) GetDuration

func (o *RecurringRevenueView) GetDuration() int32

GetDuration returns the Duration field value if set, zero value otherwise.

func (*RecurringRevenueView) GetDurationOk

func (o *RecurringRevenueView) GetDurationOk() (*int32, bool)

GetDurationOk returns a tuple with the Duration field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RecurringRevenueView) GetExternalXref

func (o *RecurringRevenueView) GetExternalXref() string

GetExternalXref returns the ExternalXref field value if set, zero value otherwise.

func (*RecurringRevenueView) GetExternalXrefOk

func (o *RecurringRevenueView) GetExternalXrefOk() (*string, bool)

GetExternalXrefOk returns a tuple with the ExternalXref field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RecurringRevenueView) GetId

func (o *RecurringRevenueView) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*RecurringRevenueView) GetIdOk

func (o *RecurringRevenueView) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RecurringRevenueView) GetPeriodType

func (o *RecurringRevenueView) GetPeriodType() string

GetPeriodType returns the PeriodType field value if set, zero value otherwise.

func (*RecurringRevenueView) GetPeriodTypeOk

func (o *RecurringRevenueView) GetPeriodTypeOk() (*string, bool)

GetPeriodTypeOk returns a tuple with the PeriodType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RecurringRevenueView) HasCycle

func (o *RecurringRevenueView) HasCycle() bool

HasCycle returns a boolean if a field has been set.

func (*RecurringRevenueView) HasDescription

func (o *RecurringRevenueView) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*RecurringRevenueView) HasDuration

func (o *RecurringRevenueView) HasDuration() bool

HasDuration returns a boolean if a field has been set.

func (*RecurringRevenueView) HasExternalXref

func (o *RecurringRevenueView) HasExternalXref() bool

HasExternalXref returns a boolean if a field has been set.

func (*RecurringRevenueView) HasId

func (o *RecurringRevenueView) HasId() bool

HasId returns a boolean if a field has been set.

func (*RecurringRevenueView) HasPeriodType

func (o *RecurringRevenueView) HasPeriodType() bool

HasPeriodType returns a boolean if a field has been set.

func (RecurringRevenueView) MarshalJSON

func (o RecurringRevenueView) MarshalJSON() ([]byte, error)

func (*RecurringRevenueView) SetCycle

func (o *RecurringRevenueView) SetCycle(v string)

SetCycle gets a reference to the given string and assigns it to the Cycle field.

func (*RecurringRevenueView) SetDescription

func (o *RecurringRevenueView) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*RecurringRevenueView) SetDuration

func (o *RecurringRevenueView) SetDuration(v int32)

SetDuration gets a reference to the given int32 and assigns it to the Duration field.

func (*RecurringRevenueView) SetExternalXref

func (o *RecurringRevenueView) SetExternalXref(v string)

SetExternalXref gets a reference to the given string and assigns it to the ExternalXref field.

func (*RecurringRevenueView) SetId

func (o *RecurringRevenueView) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*RecurringRevenueView) SetPeriodType

func (o *RecurringRevenueView) SetPeriodType(v string)

SetPeriodType gets a reference to the given string and assigns it to the PeriodType field.

func (RecurringRevenueView) ToMap

func (o RecurringRevenueView) ToMap() (map[string]interface{}, error)

func (*RecurringRevenueView) UnmarshalJSON

func (o *RecurringRevenueView) UnmarshalJSON(data []byte) (err error)

type RecurringRevenuesQueryModel

type RecurringRevenuesQueryModel struct {
	// Comma separated list of fields to return.
	IncludeFields *string `json:"includeFields,omitempty"`
	// Conditional retrieve statements.
	Conditions *string `json:"conditions,omitempty"`
	// Page of results to get. 1-index based.
	Page *int32 `json:"page,omitempty"`
	// Page size of results to get. Max size 1000, default 50.
	PageSize             *int32 `json:"pageSize,omitempty"`
	AdditionalProperties map[string]interface{}
}

RecurringRevenuesQueryModel struct for RecurringRevenuesQueryModel

func NewRecurringRevenuesQueryModel

func NewRecurringRevenuesQueryModel() *RecurringRevenuesQueryModel

NewRecurringRevenuesQueryModel instantiates a new RecurringRevenuesQueryModel object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRecurringRevenuesQueryModelWithDefaults

func NewRecurringRevenuesQueryModelWithDefaults() *RecurringRevenuesQueryModel

NewRecurringRevenuesQueryModelWithDefaults instantiates a new RecurringRevenuesQueryModel object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RecurringRevenuesQueryModel) GetConditions

func (o *RecurringRevenuesQueryModel) GetConditions() string

GetConditions returns the Conditions field value if set, zero value otherwise.

func (*RecurringRevenuesQueryModel) GetConditionsOk

func (o *RecurringRevenuesQueryModel) GetConditionsOk() (*string, bool)

GetConditionsOk returns a tuple with the Conditions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RecurringRevenuesQueryModel) GetIncludeFields

func (o *RecurringRevenuesQueryModel) GetIncludeFields() string

GetIncludeFields returns the IncludeFields field value if set, zero value otherwise.

func (*RecurringRevenuesQueryModel) GetIncludeFieldsOk

func (o *RecurringRevenuesQueryModel) GetIncludeFieldsOk() (*string, bool)

GetIncludeFieldsOk returns a tuple with the IncludeFields field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RecurringRevenuesQueryModel) GetPage

func (o *RecurringRevenuesQueryModel) GetPage() int32

GetPage returns the Page field value if set, zero value otherwise.

func (*RecurringRevenuesQueryModel) GetPageOk

func (o *RecurringRevenuesQueryModel) GetPageOk() (*int32, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RecurringRevenuesQueryModel) GetPageSize

func (o *RecurringRevenuesQueryModel) GetPageSize() int32

GetPageSize returns the PageSize field value if set, zero value otherwise.

func (*RecurringRevenuesQueryModel) GetPageSizeOk

func (o *RecurringRevenuesQueryModel) GetPageSizeOk() (*int32, bool)

GetPageSizeOk returns a tuple with the PageSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RecurringRevenuesQueryModel) HasConditions

func (o *RecurringRevenuesQueryModel) HasConditions() bool

HasConditions returns a boolean if a field has been set.

func (*RecurringRevenuesQueryModel) HasIncludeFields

func (o *RecurringRevenuesQueryModel) HasIncludeFields() bool

HasIncludeFields returns a boolean if a field has been set.

func (*RecurringRevenuesQueryModel) HasPage

func (o *RecurringRevenuesQueryModel) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*RecurringRevenuesQueryModel) HasPageSize

func (o *RecurringRevenuesQueryModel) HasPageSize() bool

HasPageSize returns a boolean if a field has been set.

func (RecurringRevenuesQueryModel) MarshalJSON

func (o RecurringRevenuesQueryModel) MarshalJSON() ([]byte, error)

func (*RecurringRevenuesQueryModel) SetConditions

func (o *RecurringRevenuesQueryModel) SetConditions(v string)

SetConditions gets a reference to the given string and assigns it to the Conditions field.

func (*RecurringRevenuesQueryModel) SetIncludeFields

func (o *RecurringRevenuesQueryModel) SetIncludeFields(v string)

SetIncludeFields gets a reference to the given string and assigns it to the IncludeFields field.

func (*RecurringRevenuesQueryModel) SetPage

func (o *RecurringRevenuesQueryModel) SetPage(v int32)

SetPage gets a reference to the given int32 and assigns it to the Page field.

func (*RecurringRevenuesQueryModel) SetPageSize

func (o *RecurringRevenuesQueryModel) SetPageSize(v int32)

SetPageSize gets a reference to the given int32 and assigns it to the PageSize field.

func (RecurringRevenuesQueryModel) ToMap

func (o RecurringRevenuesQueryModel) ToMap() (map[string]interface{}, error)

func (*RecurringRevenuesQueryModel) UnmarshalJSON

func (o *RecurringRevenuesQueryModel) UnmarshalJSON(data []byte) (err error)
type ReferenceLink struct {
	Id                   *string            `json:"id,omitempty"`
	Name                 *string            `json:"name,omitempty"`
	Info                 *map[string]string `json:"_info,omitempty"`
	AdditionalProperties map[string]interface{}
}

ReferenceLink struct for ReferenceLink

func NewReferenceLink() *ReferenceLink

NewReferenceLink instantiates a new ReferenceLink object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReferenceLinkWithDefaults

func NewReferenceLinkWithDefaults() *ReferenceLink

NewReferenceLinkWithDefaults instantiates a new ReferenceLink object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReferenceLink) GetId

func (o *ReferenceLink) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*ReferenceLink) GetIdOk

func (o *ReferenceLink) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceLink) GetInfo

func (o *ReferenceLink) GetInfo() map[string]string

GetInfo returns the Info field value if set, zero value otherwise.

func (*ReferenceLink) GetInfoOk

func (o *ReferenceLink) GetInfoOk() (*map[string]string, bool)

GetInfoOk returns a tuple with the Info field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceLink) GetName

func (o *ReferenceLink) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ReferenceLink) GetNameOk

func (o *ReferenceLink) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReferenceLink) HasId

func (o *ReferenceLink) HasId() bool

HasId returns a boolean if a field has been set.

func (*ReferenceLink) HasInfo

func (o *ReferenceLink) HasInfo() bool

HasInfo returns a boolean if a field has been set.

func (*ReferenceLink) HasName

func (o *ReferenceLink) HasName() bool

HasName returns a boolean if a field has been set.

func (ReferenceLink) MarshalJSON

func (o ReferenceLink) MarshalJSON() ([]byte, error)

func (*ReferenceLink) SetId

func (o *ReferenceLink) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*ReferenceLink) SetInfo

func (o *ReferenceLink) SetInfo(v map[string]string)

SetInfo gets a reference to the given map[string]string and assigns it to the Info field.

func (*ReferenceLink) SetName

func (o *ReferenceLink) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (ReferenceLink) ToMap

func (o ReferenceLink) ToMap() (map[string]interface{}, error)

func (*ReferenceLink) UnmarshalJSON

func (o *ReferenceLink) UnmarshalJSON(data []byte) (err error)

type ServerConfiguration

type ServerConfiguration struct {
	URL         string
	Description string
	Variables   map[string]ServerVariable
}

ServerConfiguration stores the information about a server

type ServerConfigurations

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL

func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error)

URL formats template on a index using given variables

type ServerVariable

type ServerVariable struct {
	Description  string
	DefaultValue string
	EnumValues   []string
}

ServerVariable stores the information about a server variable

type TaxCodeAPIService

type TaxCodeAPIService service

TaxCodeAPIService TaxCodeAPI service

func (*TaxCodeAPIService) GetTaxCodes

GetTaxCodes Method for GetTaxCodes

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetTaxCodesRequest

func (*TaxCodeAPIService) GetTaxCodesExecute

func (a *TaxCodeAPIService) GetTaxCodesExecute(r ApiGetTaxCodesRequest) ([]TaxCodeView, *http.Response, error)

Execute executes the request

@return []TaxCodeView

type TaxCodeView

type TaxCodeView struct {
	// This field is Read Only.
	Id                     *string  `json:"id,omitempty"`
	TaxCode                *string  `json:"taxCode,omitempty"`
	TaxRate                *float64 `json:"taxRate,omitempty"`
	GstRate                *float64 `json:"gstRate,omitempty"`
	PstRate                *float64 `json:"pstRate,omitempty"`
	TaxExternalXref        *string  `json:"taxExternalXref,omitempty"`
	IsCalculatedExternally *bool    `json:"isCalculatedExternally,omitempty"`
	AdditionalProperties   map[string]interface{}
}

TaxCodeView struct for TaxCodeView

func NewTaxCodeView

func NewTaxCodeView() *TaxCodeView

NewTaxCodeView instantiates a new TaxCodeView object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTaxCodeViewWithDefaults

func NewTaxCodeViewWithDefaults() *TaxCodeView

NewTaxCodeViewWithDefaults instantiates a new TaxCodeView object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TaxCodeView) GetGstRate

func (o *TaxCodeView) GetGstRate() float64

GetGstRate returns the GstRate field value if set, zero value otherwise.

func (*TaxCodeView) GetGstRateOk

func (o *TaxCodeView) GetGstRateOk() (*float64, bool)

GetGstRateOk returns a tuple with the GstRate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaxCodeView) GetId

func (o *TaxCodeView) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*TaxCodeView) GetIdOk

func (o *TaxCodeView) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaxCodeView) GetIsCalculatedExternally

func (o *TaxCodeView) GetIsCalculatedExternally() bool

GetIsCalculatedExternally returns the IsCalculatedExternally field value if set, zero value otherwise.

func (*TaxCodeView) GetIsCalculatedExternallyOk

func (o *TaxCodeView) GetIsCalculatedExternallyOk() (*bool, bool)

GetIsCalculatedExternallyOk returns a tuple with the IsCalculatedExternally field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaxCodeView) GetPstRate

func (o *TaxCodeView) GetPstRate() float64

GetPstRate returns the PstRate field value if set, zero value otherwise.

func (*TaxCodeView) GetPstRateOk

func (o *TaxCodeView) GetPstRateOk() (*float64, bool)

GetPstRateOk returns a tuple with the PstRate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaxCodeView) GetTaxCode

func (o *TaxCodeView) GetTaxCode() string

GetTaxCode returns the TaxCode field value if set, zero value otherwise.

func (*TaxCodeView) GetTaxCodeOk

func (o *TaxCodeView) GetTaxCodeOk() (*string, bool)

GetTaxCodeOk returns a tuple with the TaxCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaxCodeView) GetTaxExternalXref

func (o *TaxCodeView) GetTaxExternalXref() string

GetTaxExternalXref returns the TaxExternalXref field value if set, zero value otherwise.

func (*TaxCodeView) GetTaxExternalXrefOk

func (o *TaxCodeView) GetTaxExternalXrefOk() (*string, bool)

GetTaxExternalXrefOk returns a tuple with the TaxExternalXref field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaxCodeView) GetTaxRate

func (o *TaxCodeView) GetTaxRate() float64

GetTaxRate returns the TaxRate field value if set, zero value otherwise.

func (*TaxCodeView) GetTaxRateOk

func (o *TaxCodeView) GetTaxRateOk() (*float64, bool)

GetTaxRateOk returns a tuple with the TaxRate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TaxCodeView) HasGstRate

func (o *TaxCodeView) HasGstRate() bool

HasGstRate returns a boolean if a field has been set.

func (*TaxCodeView) HasId

func (o *TaxCodeView) HasId() bool

HasId returns a boolean if a field has been set.

func (*TaxCodeView) HasIsCalculatedExternally

func (o *TaxCodeView) HasIsCalculatedExternally() bool

HasIsCalculatedExternally returns a boolean if a field has been set.

func (*TaxCodeView) HasPstRate

func (o *TaxCodeView) HasPstRate() bool

HasPstRate returns a boolean if a field has been set.

func (*TaxCodeView) HasTaxCode

func (o *TaxCodeView) HasTaxCode() bool

HasTaxCode returns a boolean if a field has been set.

func (*TaxCodeView) HasTaxExternalXref

func (o *TaxCodeView) HasTaxExternalXref() bool

HasTaxExternalXref returns a boolean if a field has been set.

func (*TaxCodeView) HasTaxRate

func (o *TaxCodeView) HasTaxRate() bool

HasTaxRate returns a boolean if a field has been set.

func (TaxCodeView) MarshalJSON

func (o TaxCodeView) MarshalJSON() ([]byte, error)

func (*TaxCodeView) SetGstRate

func (o *TaxCodeView) SetGstRate(v float64)

SetGstRate gets a reference to the given float64 and assigns it to the GstRate field.

func (*TaxCodeView) SetId

func (o *TaxCodeView) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*TaxCodeView) SetIsCalculatedExternally

func (o *TaxCodeView) SetIsCalculatedExternally(v bool)

SetIsCalculatedExternally gets a reference to the given bool and assigns it to the IsCalculatedExternally field.

func (*TaxCodeView) SetPstRate

func (o *TaxCodeView) SetPstRate(v float64)

SetPstRate gets a reference to the given float64 and assigns it to the PstRate field.

func (*TaxCodeView) SetTaxCode

func (o *TaxCodeView) SetTaxCode(v string)

SetTaxCode gets a reference to the given string and assigns it to the TaxCode field.

func (*TaxCodeView) SetTaxExternalXref

func (o *TaxCodeView) SetTaxExternalXref(v string)

SetTaxExternalXref gets a reference to the given string and assigns it to the TaxExternalXref field.

func (*TaxCodeView) SetTaxRate

func (o *TaxCodeView) SetTaxRate(v float64)

SetTaxRate gets a reference to the given float64 and assigns it to the TaxRate field.

func (TaxCodeView) ToMap

func (o TaxCodeView) ToMap() (map[string]interface{}, error)

func (*TaxCodeView) UnmarshalJSON

func (o *TaxCodeView) UnmarshalJSON(data []byte) (err error)

type TemplatesAPIService

type TemplatesAPIService service

TemplatesAPIService TemplatesAPI service

func (*TemplatesAPIService) GetTemplates

GetTemplates Method for GetTemplates

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetTemplatesRequest

func (*TemplatesAPIService) GetTemplatesExecute

func (a *TemplatesAPIService) GetTemplatesExecute(r ApiGetTemplatesRequest) ([]QuoteView, *http.Response, error)

Execute executes the request

@return []QuoteView

type UserAPIService

type UserAPIService service

UserAPIService UserAPI service

func (*UserAPIService) GetUser

GetUser Method for GetUser

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetUserRequest

func (*UserAPIService) GetUserExecute

func (a *UserAPIService) GetUserExecute(r ApiGetUserRequest) ([]UserView, *http.Response, error)

Execute executes the request

@return []UserView

func (*UserAPIService) PatchUserByID

func (a *UserAPIService) PatchUserByID(ctx context.Context, id string) ApiPatchUserByIDRequest

PatchUserByID Method for PatchUserByID

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiPatchUserByIDRequest

func (*UserAPIService) PatchUserByIDExecute

func (a *UserAPIService) PatchUserByIDExecute(r ApiPatchUserByIDRequest) (*UserView, *http.Response, error)

Execute executes the request

@return UserView

type UserQueryModel

type UserQueryModel struct {
	// Comma separated list of fields to return.
	IncludeFields *string `json:"includeFields,omitempty"`
	// Conditional retrieve statements.
	Conditions *string `json:"conditions,omitempty"`
	// Page of results to get. 1-index based.
	Page *int32 `json:"page,omitempty"`
	// Page size of results to get. Max size 1000, default 50.
	PageSize             *int32 `json:"pageSize,omitempty"`
	AdditionalProperties map[string]interface{}
}

UserQueryModel struct for UserQueryModel

func NewUserQueryModel

func NewUserQueryModel() *UserQueryModel

NewUserQueryModel instantiates a new UserQueryModel object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserQueryModelWithDefaults

func NewUserQueryModelWithDefaults() *UserQueryModel

NewUserQueryModelWithDefaults instantiates a new UserQueryModel object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserQueryModel) GetConditions

func (o *UserQueryModel) GetConditions() string

GetConditions returns the Conditions field value if set, zero value otherwise.

func (*UserQueryModel) GetConditionsOk

func (o *UserQueryModel) GetConditionsOk() (*string, bool)

GetConditionsOk returns a tuple with the Conditions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserQueryModel) GetIncludeFields

func (o *UserQueryModel) GetIncludeFields() string

GetIncludeFields returns the IncludeFields field value if set, zero value otherwise.

func (*UserQueryModel) GetIncludeFieldsOk

func (o *UserQueryModel) GetIncludeFieldsOk() (*string, bool)

GetIncludeFieldsOk returns a tuple with the IncludeFields field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserQueryModel) GetPage

func (o *UserQueryModel) GetPage() int32

GetPage returns the Page field value if set, zero value otherwise.

func (*UserQueryModel) GetPageOk

func (o *UserQueryModel) GetPageOk() (*int32, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserQueryModel) GetPageSize

func (o *UserQueryModel) GetPageSize() int32

GetPageSize returns the PageSize field value if set, zero value otherwise.

func (*UserQueryModel) GetPageSizeOk

func (o *UserQueryModel) GetPageSizeOk() (*int32, bool)

GetPageSizeOk returns a tuple with the PageSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserQueryModel) HasConditions

func (o *UserQueryModel) HasConditions() bool

HasConditions returns a boolean if a field has been set.

func (*UserQueryModel) HasIncludeFields

func (o *UserQueryModel) HasIncludeFields() bool

HasIncludeFields returns a boolean if a field has been set.

func (*UserQueryModel) HasPage

func (o *UserQueryModel) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*UserQueryModel) HasPageSize

func (o *UserQueryModel) HasPageSize() bool

HasPageSize returns a boolean if a field has been set.

func (UserQueryModel) MarshalJSON

func (o UserQueryModel) MarshalJSON() ([]byte, error)

func (*UserQueryModel) SetConditions

func (o *UserQueryModel) SetConditions(v string)

SetConditions gets a reference to the given string and assigns it to the Conditions field.

func (*UserQueryModel) SetIncludeFields

func (o *UserQueryModel) SetIncludeFields(v string)

SetIncludeFields gets a reference to the given string and assigns it to the IncludeFields field.

func (*UserQueryModel) SetPage

func (o *UserQueryModel) SetPage(v int32)

SetPage gets a reference to the given int32 and assigns it to the Page field.

func (*UserQueryModel) SetPageSize

func (o *UserQueryModel) SetPageSize(v int32)

SetPageSize gets a reference to the given int32 and assigns it to the PageSize field.

func (UserQueryModel) ToMap

func (o UserQueryModel) ToMap() (map[string]interface{}, error)

func (*UserQueryModel) UnmarshalJSON

func (o *UserQueryModel) UnmarshalJSON(data []byte) (err error)

type UserView

type UserView struct {
	// This field is Read Only.
	Id *string `json:"id,omitempty"`
	// This field is Read Only.
	IsInactiveUser *bool `json:"isInactiveUser,omitempty"`
	// This field is Read Only.
	IsReadOnlyUser *bool `json:"isReadOnlyUser,omitempty"`
	// This field is Read Only.
	FailedLoginCount *int32 `json:"failedLoginCount,omitempty"`
	// This field is Read Only.
	IsApprover *bool `json:"isApprover,omitempty"`
	// This field is Read Only.
	IsPriceChanger *bool `json:"isPriceChanger,omitempty"`
	// This field is Read Only.
	CanAccessAllQuotes *bool `json:"canAccessAllQuotes,omitempty"`
	// This field is Read Only.
	IsAdministrator *bool `json:"isAdministrator,omitempty"`
	// This field is Read Only.
	IsDeveloper *bool `json:"isDeveloper,omitempty"`
	// This field is Read Only.
	IsApiUser *bool `json:"isApiUser,omitempty"`
	// This field is Read Only.
	IsContentManager *bool `json:"isContentManager,omitempty"`
	// This field is Read Only.
	IsStandardPlus *bool `json:"isStandardPlus,omitempty"`
	// This field is Read Only.
	AlwaysRequireManagerApproval *bool `json:"alwaysRequireManagerApproval,omitempty"`
	// This field is Read Only.
	IsPublisher *bool `json:"isPublisher,omitempty"`
	// This field is Read Only.
	IsManualWinner *bool `json:"isManualWinner,omitempty"`
	// This field is Read Only.
	ElectronicOrderUser *bool `json:"electronicOrderUser,omitempty"`
	// This field is Read Only.
	IdProfileTeams *string `json:"idProfileTeams,omitempty"`
	LocationId     *string `json:"locationId,omitempty"`
	// This field is Read Only.
	ManagerUserId *string `json:"managerUserId,omitempty"`
	// This field is Read Only.
	ApproverUserId *string `json:"approverUserId,omitempty"`
	// This field is Read Only.
	UserName      *string `json:"userName,omitempty"`
	FirstName     *string `json:"firstName,omitempty"`
	LastName      *string `json:"lastName,omitempty"`
	PresentedName *string `json:"presentedName,omitempty"`
	JobTitle      *string `json:"jobTitle,omitempty"`
	QuotePreface  *string `json:"quotePreface,omitempty"`
	UserNotes     *string `json:"userNotes,omitempty"`
	// This field is Read Only.
	BaseCurrency              *string `json:"baseCurrency,omitempty"`
	PhoneNumber               *string `json:"phoneNumber,omitempty"`
	MobilePhoneNumber         *string `json:"mobilePhoneNumber,omitempty"`
	EmailAddress              *string `json:"emailAddress,omitempty"`
	MessengerId               *string `json:"messengerId,omitempty"`
	InvoiceRepId              *string `json:"invoiceRepId,omitempty"`
	TimeZone                  *string `json:"timeZone,omitempty"`
	OrderPorterEmailAddresses *string `json:"orderPorterEmailAddresses,omitempty"`
	OnBehalfUser              *string `json:"onBehalfUser,omitempty"`
	DefaultSearchQuoteStatus  *string `json:"defaultSearchQuoteStatus,omitempty"`
	BccEmailAddresses         *string `json:"bccEmailAddresses,omitempty"`
	// This field is Read Only.
	OauthSubscriberId    *string `json:"oauthSubscriberId,omitempty"`
	AdditionalProperties map[string]interface{}
}

UserView struct for UserView

func NewUserView

func NewUserView() *UserView

NewUserView instantiates a new UserView object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserViewWithDefaults

func NewUserViewWithDefaults() *UserView

NewUserViewWithDefaults instantiates a new UserView object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserView) GetAlwaysRequireManagerApproval

func (o *UserView) GetAlwaysRequireManagerApproval() bool

GetAlwaysRequireManagerApproval returns the AlwaysRequireManagerApproval field value if set, zero value otherwise.

func (*UserView) GetAlwaysRequireManagerApprovalOk

func (o *UserView) GetAlwaysRequireManagerApprovalOk() (*bool, bool)

GetAlwaysRequireManagerApprovalOk returns a tuple with the AlwaysRequireManagerApproval field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserView) GetApproverUserId

func (o *UserView) GetApproverUserId() string

GetApproverUserId returns the ApproverUserId field value if set, zero value otherwise.

func (*UserView) GetApproverUserIdOk

func (o *UserView) GetApproverUserIdOk() (*string, bool)

GetApproverUserIdOk returns a tuple with the ApproverUserId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserView) GetBaseCurrency

func (o *UserView) GetBaseCurrency() string

GetBaseCurrency returns the BaseCurrency field value if set, zero value otherwise.

func (*UserView) GetBaseCurrencyOk

func (o *UserView) GetBaseCurrencyOk() (*string, bool)

GetBaseCurrencyOk returns a tuple with the BaseCurrency field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserView) GetBccEmailAddresses

func (o *UserView) GetBccEmailAddresses() string

GetBccEmailAddresses returns the BccEmailAddresses field value if set, zero value otherwise.

func (*UserView) GetBccEmailAddressesOk

func (o *UserView) GetBccEmailAddressesOk() (*string, bool)

GetBccEmailAddressesOk returns a tuple with the BccEmailAddresses field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserView) GetCanAccessAllQuotes

func (o *UserView) GetCanAccessAllQuotes() bool

GetCanAccessAllQuotes returns the CanAccessAllQuotes field value if set, zero value otherwise.

func (*UserView) GetCanAccessAllQuotesOk

func (o *UserView) GetCanAccessAllQuotesOk() (*bool, bool)

GetCanAccessAllQuotesOk returns a tuple with the CanAccessAllQuotes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserView) GetDefaultSearchQuoteStatus

func (o *UserView) GetDefaultSearchQuoteStatus() string

GetDefaultSearchQuoteStatus returns the DefaultSearchQuoteStatus field value if set, zero value otherwise.

func (*UserView) GetDefaultSearchQuoteStatusOk

func (o *UserView) GetDefaultSearchQuoteStatusOk() (*string, bool)

GetDefaultSearchQuoteStatusOk returns a tuple with the DefaultSearchQuoteStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserView) GetElectronicOrderUser

func (o *UserView) GetElectronicOrderUser() bool

GetElectronicOrderUser returns the ElectronicOrderUser field value if set, zero value otherwise.

func (*UserView) GetElectronicOrderUserOk

func (o *UserView) GetElectronicOrderUserOk() (*bool, bool)

GetElectronicOrderUserOk returns a tuple with the ElectronicOrderUser field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserView) GetEmailAddress

func (o *UserView) GetEmailAddress() string

GetEmailAddress returns the EmailAddress field value if set, zero value otherwise.

func (*UserView) GetEmailAddressOk

func (o *UserView) GetEmailAddressOk() (*string, bool)

GetEmailAddressOk returns a tuple with the EmailAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserView) GetFailedLoginCount

func (o *UserView) GetFailedLoginCount() int32

GetFailedLoginCount returns the FailedLoginCount field value if set, zero value otherwise.

func (*UserView) GetFailedLoginCountOk

func (o *UserView) GetFailedLoginCountOk() (*int32, bool)

GetFailedLoginCountOk returns a tuple with the FailedLoginCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserView) GetFirstName

func (o *UserView) GetFirstName() string

GetFirstName returns the FirstName field value if set, zero value otherwise.

func (*UserView) GetFirstNameOk

func (o *UserView) GetFirstNameOk() (*string, bool)

GetFirstNameOk returns a tuple with the FirstName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserView) GetId

func (o *UserView) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*UserView) GetIdOk

func (o *UserView) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserView) GetIdProfileTeams

func (o *UserView) GetIdProfileTeams() string

GetIdProfileTeams returns the IdProfileTeams field value if set, zero value otherwise.

func (*UserView) GetIdProfileTeamsOk

func (o *UserView) GetIdProfileTeamsOk() (*string, bool)

GetIdProfileTeamsOk returns a tuple with the IdProfileTeams field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserView) GetInvoiceRepId

func (o *UserView) GetInvoiceRepId() string

GetInvoiceRepId returns the InvoiceRepId field value if set, zero value otherwise.

func (*UserView) GetInvoiceRepIdOk

func (o *UserView) GetInvoiceRepIdOk() (*string, bool)

GetInvoiceRepIdOk returns a tuple with the InvoiceRepId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserView) GetIsAdministrator

func (o *UserView) GetIsAdministrator() bool

GetIsAdministrator returns the IsAdministrator field value if set, zero value otherwise.

func (*UserView) GetIsAdministratorOk

func (o *UserView) GetIsAdministratorOk() (*bool, bool)

GetIsAdministratorOk returns a tuple with the IsAdministrator field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserView) GetIsApiUser

func (o *UserView) GetIsApiUser() bool

GetIsApiUser returns the IsApiUser field value if set, zero value otherwise.

func (*UserView) GetIsApiUserOk

func (o *UserView) GetIsApiUserOk() (*bool, bool)

GetIsApiUserOk returns a tuple with the IsApiUser field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserView) GetIsApprover

func (o *UserView) GetIsApprover() bool

GetIsApprover returns the IsApprover field value if set, zero value otherwise.

func (*UserView) GetIsApproverOk

func (o *UserView) GetIsApproverOk() (*bool, bool)

GetIsApproverOk returns a tuple with the IsApprover field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserView) GetIsContentManager

func (o *UserView) GetIsContentManager() bool

GetIsContentManager returns the IsContentManager field value if set, zero value otherwise.

func (*UserView) GetIsContentManagerOk

func (o *UserView) GetIsContentManagerOk() (*bool, bool)

GetIsContentManagerOk returns a tuple with the IsContentManager field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserView) GetIsDeveloper

func (o *UserView) GetIsDeveloper() bool

GetIsDeveloper returns the IsDeveloper field value if set, zero value otherwise.

func (*UserView) GetIsDeveloperOk

func (o *UserView) GetIsDeveloperOk() (*bool, bool)

GetIsDeveloperOk returns a tuple with the IsDeveloper field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserView) GetIsInactiveUser

func (o *UserView) GetIsInactiveUser() bool

GetIsInactiveUser returns the IsInactiveUser field value if set, zero value otherwise.

func (*UserView) GetIsInactiveUserOk

func (o *UserView) GetIsInactiveUserOk() (*bool, bool)

GetIsInactiveUserOk returns a tuple with the IsInactiveUser field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserView) GetIsManualWinner

func (o *UserView) GetIsManualWinner() bool

GetIsManualWinner returns the IsManualWinner field value if set, zero value otherwise.

func (*UserView) GetIsManualWinnerOk

func (o *UserView) GetIsManualWinnerOk() (*bool, bool)

GetIsManualWinnerOk returns a tuple with the IsManualWinner field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserView) GetIsPriceChanger

func (o *UserView) GetIsPriceChanger() bool

GetIsPriceChanger returns the IsPriceChanger field value if set, zero value otherwise.

func (*UserView) GetIsPriceChangerOk

func (o *UserView) GetIsPriceChangerOk() (*bool, bool)

GetIsPriceChangerOk returns a tuple with the IsPriceChanger field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserView) GetIsPublisher

func (o *UserView) GetIsPublisher() bool

GetIsPublisher returns the IsPublisher field value if set, zero value otherwise.

func (*UserView) GetIsPublisherOk

func (o *UserView) GetIsPublisherOk() (*bool, bool)

GetIsPublisherOk returns a tuple with the IsPublisher field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserView) GetIsReadOnlyUser

func (o *UserView) GetIsReadOnlyUser() bool

GetIsReadOnlyUser returns the IsReadOnlyUser field value if set, zero value otherwise.

func (*UserView) GetIsReadOnlyUserOk

func (o *UserView) GetIsReadOnlyUserOk() (*bool, bool)

GetIsReadOnlyUserOk returns a tuple with the IsReadOnlyUser field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserView) GetIsStandardPlus

func (o *UserView) GetIsStandardPlus() bool

GetIsStandardPlus returns the IsStandardPlus field value if set, zero value otherwise.

func (*UserView) GetIsStandardPlusOk

func (o *UserView) GetIsStandardPlusOk() (*bool, bool)

GetIsStandardPlusOk returns a tuple with the IsStandardPlus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserView) GetJobTitle

func (o *UserView) GetJobTitle() string

GetJobTitle returns the JobTitle field value if set, zero value otherwise.

func (*UserView) GetJobTitleOk

func (o *UserView) GetJobTitleOk() (*string, bool)

GetJobTitleOk returns a tuple with the JobTitle field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserView) GetLastName

func (o *UserView) GetLastName() string

GetLastName returns the LastName field value if set, zero value otherwise.

func (*UserView) GetLastNameOk

func (o *UserView) GetLastNameOk() (*string, bool)

GetLastNameOk returns a tuple with the LastName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserView) GetLocationId

func (o *UserView) GetLocationId() string

GetLocationId returns the LocationId field value if set, zero value otherwise.

func (*UserView) GetLocationIdOk

func (o *UserView) GetLocationIdOk() (*string, bool)

GetLocationIdOk returns a tuple with the LocationId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserView) GetManagerUserId

func (o *UserView) GetManagerUserId() string

GetManagerUserId returns the ManagerUserId field value if set, zero value otherwise.

func (*UserView) GetManagerUserIdOk

func (o *UserView) GetManagerUserIdOk() (*string, bool)

GetManagerUserIdOk returns a tuple with the ManagerUserId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserView) GetMessengerId

func (o *UserView) GetMessengerId() string

GetMessengerId returns the MessengerId field value if set, zero value otherwise.

func (*UserView) GetMessengerIdOk

func (o *UserView) GetMessengerIdOk() (*string, bool)

GetMessengerIdOk returns a tuple with the MessengerId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserView) GetMobilePhoneNumber

func (o *UserView) GetMobilePhoneNumber() string

GetMobilePhoneNumber returns the MobilePhoneNumber field value if set, zero value otherwise.

func (*UserView) GetMobilePhoneNumberOk

func (o *UserView) GetMobilePhoneNumberOk() (*string, bool)

GetMobilePhoneNumberOk returns a tuple with the MobilePhoneNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserView) GetOauthSubscriberId

func (o *UserView) GetOauthSubscriberId() string

GetOauthSubscriberId returns the OauthSubscriberId field value if set, zero value otherwise.

func (*UserView) GetOauthSubscriberIdOk

func (o *UserView) GetOauthSubscriberIdOk() (*string, bool)

GetOauthSubscriberIdOk returns a tuple with the OauthSubscriberId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserView) GetOnBehalfUser

func (o *UserView) GetOnBehalfUser() string

GetOnBehalfUser returns the OnBehalfUser field value if set, zero value otherwise.

func (*UserView) GetOnBehalfUserOk

func (o *UserView) GetOnBehalfUserOk() (*string, bool)

GetOnBehalfUserOk returns a tuple with the OnBehalfUser field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserView) GetOrderPorterEmailAddresses

func (o *UserView) GetOrderPorterEmailAddresses() string

GetOrderPorterEmailAddresses returns the OrderPorterEmailAddresses field value if set, zero value otherwise.

func (*UserView) GetOrderPorterEmailAddressesOk

func (o *UserView) GetOrderPorterEmailAddressesOk() (*string, bool)

GetOrderPorterEmailAddressesOk returns a tuple with the OrderPorterEmailAddresses field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserView) GetPhoneNumber

func (o *UserView) GetPhoneNumber() string

GetPhoneNumber returns the PhoneNumber field value if set, zero value otherwise.

func (*UserView) GetPhoneNumberOk

func (o *UserView) GetPhoneNumberOk() (*string, bool)

GetPhoneNumberOk returns a tuple with the PhoneNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserView) GetPresentedName

func (o *UserView) GetPresentedName() string

GetPresentedName returns the PresentedName field value if set, zero value otherwise.

func (*UserView) GetPresentedNameOk

func (o *UserView) GetPresentedNameOk() (*string, bool)

GetPresentedNameOk returns a tuple with the PresentedName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserView) GetQuotePreface

func (o *UserView) GetQuotePreface() string

GetQuotePreface returns the QuotePreface field value if set, zero value otherwise.

func (*UserView) GetQuotePrefaceOk

func (o *UserView) GetQuotePrefaceOk() (*string, bool)

GetQuotePrefaceOk returns a tuple with the QuotePreface field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserView) GetTimeZone

func (o *UserView) GetTimeZone() string

GetTimeZone returns the TimeZone field value if set, zero value otherwise.

func (*UserView) GetTimeZoneOk

func (o *UserView) GetTimeZoneOk() (*string, bool)

GetTimeZoneOk returns a tuple with the TimeZone field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserView) GetUserName

func (o *UserView) GetUserName() string

GetUserName returns the UserName field value if set, zero value otherwise.

func (*UserView) GetUserNameOk

func (o *UserView) GetUserNameOk() (*string, bool)

GetUserNameOk returns a tuple with the UserName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserView) GetUserNotes

func (o *UserView) GetUserNotes() string

GetUserNotes returns the UserNotes field value if set, zero value otherwise.

func (*UserView) GetUserNotesOk

func (o *UserView) GetUserNotesOk() (*string, bool)

GetUserNotesOk returns a tuple with the UserNotes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserView) HasAlwaysRequireManagerApproval

func (o *UserView) HasAlwaysRequireManagerApproval() bool

HasAlwaysRequireManagerApproval returns a boolean if a field has been set.

func (*UserView) HasApproverUserId

func (o *UserView) HasApproverUserId() bool

HasApproverUserId returns a boolean if a field has been set.

func (*UserView) HasBaseCurrency

func (o *UserView) HasBaseCurrency() bool

HasBaseCurrency returns a boolean if a field has been set.

func (*UserView) HasBccEmailAddresses

func (o *UserView) HasBccEmailAddresses() bool

HasBccEmailAddresses returns a boolean if a field has been set.

func (*UserView) HasCanAccessAllQuotes

func (o *UserView) HasCanAccessAllQuotes() bool

HasCanAccessAllQuotes returns a boolean if a field has been set.

func (*UserView) HasDefaultSearchQuoteStatus

func (o *UserView) HasDefaultSearchQuoteStatus() bool

HasDefaultSearchQuoteStatus returns a boolean if a field has been set.

func (*UserView) HasElectronicOrderUser

func (o *UserView) HasElectronicOrderUser() bool

HasElectronicOrderUser returns a boolean if a field has been set.

func (*UserView) HasEmailAddress

func (o *UserView) HasEmailAddress() bool

HasEmailAddress returns a boolean if a field has been set.

func (*UserView) HasFailedLoginCount

func (o *UserView) HasFailedLoginCount() bool

HasFailedLoginCount returns a boolean if a field has been set.

func (*UserView) HasFirstName

func (o *UserView) HasFirstName() bool

HasFirstName returns a boolean if a field has been set.

func (*UserView) HasId

func (o *UserView) HasId() bool

HasId returns a boolean if a field has been set.

func (*UserView) HasIdProfileTeams

func (o *UserView) HasIdProfileTeams() bool

HasIdProfileTeams returns a boolean if a field has been set.

func (*UserView) HasInvoiceRepId

func (o *UserView) HasInvoiceRepId() bool

HasInvoiceRepId returns a boolean if a field has been set.

func (*UserView) HasIsAdministrator

func (o *UserView) HasIsAdministrator() bool

HasIsAdministrator returns a boolean if a field has been set.

func (*UserView) HasIsApiUser

func (o *UserView) HasIsApiUser() bool

HasIsApiUser returns a boolean if a field has been set.

func (*UserView) HasIsApprover

func (o *UserView) HasIsApprover() bool

HasIsApprover returns a boolean if a field has been set.

func (*UserView) HasIsContentManager

func (o *UserView) HasIsContentManager() bool

HasIsContentManager returns a boolean if a field has been set.

func (*UserView) HasIsDeveloper

func (o *UserView) HasIsDeveloper() bool

HasIsDeveloper returns a boolean if a field has been set.

func (*UserView) HasIsInactiveUser

func (o *UserView) HasIsInactiveUser() bool

HasIsInactiveUser returns a boolean if a field has been set.

func (*UserView) HasIsManualWinner

func (o *UserView) HasIsManualWinner() bool

HasIsManualWinner returns a boolean if a field has been set.

func (*UserView) HasIsPriceChanger

func (o *UserView) HasIsPriceChanger() bool

HasIsPriceChanger returns a boolean if a field has been set.

func (*UserView) HasIsPublisher

func (o *UserView) HasIsPublisher() bool

HasIsPublisher returns a boolean if a field has been set.

func (*UserView) HasIsReadOnlyUser

func (o *UserView) HasIsReadOnlyUser() bool

HasIsReadOnlyUser returns a boolean if a field has been set.

func (*UserView) HasIsStandardPlus

func (o *UserView) HasIsStandardPlus() bool

HasIsStandardPlus returns a boolean if a field has been set.

func (*UserView) HasJobTitle

func (o *UserView) HasJobTitle() bool

HasJobTitle returns a boolean if a field has been set.

func (*UserView) HasLastName

func (o *UserView) HasLastName() bool

HasLastName returns a boolean if a field has been set.

func (*UserView) HasLocationId

func (o *UserView) HasLocationId() bool

HasLocationId returns a boolean if a field has been set.

func (*UserView) HasManagerUserId

func (o *UserView) HasManagerUserId() bool

HasManagerUserId returns a boolean if a field has been set.

func (*UserView) HasMessengerId

func (o *UserView) HasMessengerId() bool

HasMessengerId returns a boolean if a field has been set.

func (*UserView) HasMobilePhoneNumber

func (o *UserView) HasMobilePhoneNumber() bool

HasMobilePhoneNumber returns a boolean if a field has been set.

func (*UserView) HasOauthSubscriberId

func (o *UserView) HasOauthSubscriberId() bool

HasOauthSubscriberId returns a boolean if a field has been set.

func (*UserView) HasOnBehalfUser

func (o *UserView) HasOnBehalfUser() bool

HasOnBehalfUser returns a boolean if a field has been set.

func (*UserView) HasOrderPorterEmailAddresses

func (o *UserView) HasOrderPorterEmailAddresses() bool

HasOrderPorterEmailAddresses returns a boolean if a field has been set.

func (*UserView) HasPhoneNumber

func (o *UserView) HasPhoneNumber() bool

HasPhoneNumber returns a boolean if a field has been set.

func (*UserView) HasPresentedName

func (o *UserView) HasPresentedName() bool

HasPresentedName returns a boolean if a field has been set.

func (*UserView) HasQuotePreface

func (o *UserView) HasQuotePreface() bool

HasQuotePreface returns a boolean if a field has been set.

func (*UserView) HasTimeZone

func (o *UserView) HasTimeZone() bool

HasTimeZone returns a boolean if a field has been set.

func (*UserView) HasUserName

func (o *UserView) HasUserName() bool

HasUserName returns a boolean if a field has been set.

func (*UserView) HasUserNotes

func (o *UserView) HasUserNotes() bool

HasUserNotes returns a boolean if a field has been set.

func (UserView) MarshalJSON

func (o UserView) MarshalJSON() ([]byte, error)

func (*UserView) SetAlwaysRequireManagerApproval

func (o *UserView) SetAlwaysRequireManagerApproval(v bool)

SetAlwaysRequireManagerApproval gets a reference to the given bool and assigns it to the AlwaysRequireManagerApproval field.

func (*UserView) SetApproverUserId

func (o *UserView) SetApproverUserId(v string)

SetApproverUserId gets a reference to the given string and assigns it to the ApproverUserId field.

func (*UserView) SetBaseCurrency

func (o *UserView) SetBaseCurrency(v string)

SetBaseCurrency gets a reference to the given string and assigns it to the BaseCurrency field.

func (*UserView) SetBccEmailAddresses

func (o *UserView) SetBccEmailAddresses(v string)

SetBccEmailAddresses gets a reference to the given string and assigns it to the BccEmailAddresses field.

func (*UserView) SetCanAccessAllQuotes

func (o *UserView) SetCanAccessAllQuotes(v bool)

SetCanAccessAllQuotes gets a reference to the given bool and assigns it to the CanAccessAllQuotes field.

func (*UserView) SetDefaultSearchQuoteStatus

func (o *UserView) SetDefaultSearchQuoteStatus(v string)

SetDefaultSearchQuoteStatus gets a reference to the given string and assigns it to the DefaultSearchQuoteStatus field.

func (*UserView) SetElectronicOrderUser

func (o *UserView) SetElectronicOrderUser(v bool)

SetElectronicOrderUser gets a reference to the given bool and assigns it to the ElectronicOrderUser field.

func (*UserView) SetEmailAddress

func (o *UserView) SetEmailAddress(v string)

SetEmailAddress gets a reference to the given string and assigns it to the EmailAddress field.

func (*UserView) SetFailedLoginCount

func (o *UserView) SetFailedLoginCount(v int32)

SetFailedLoginCount gets a reference to the given int32 and assigns it to the FailedLoginCount field.

func (*UserView) SetFirstName

func (o *UserView) SetFirstName(v string)

SetFirstName gets a reference to the given string and assigns it to the FirstName field.

func (*UserView) SetId

func (o *UserView) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*UserView) SetIdProfileTeams

func (o *UserView) SetIdProfileTeams(v string)

SetIdProfileTeams gets a reference to the given string and assigns it to the IdProfileTeams field.

func (*UserView) SetInvoiceRepId

func (o *UserView) SetInvoiceRepId(v string)

SetInvoiceRepId gets a reference to the given string and assigns it to the InvoiceRepId field.

func (*UserView) SetIsAdministrator

func (o *UserView) SetIsAdministrator(v bool)

SetIsAdministrator gets a reference to the given bool and assigns it to the IsAdministrator field.

func (*UserView) SetIsApiUser

func (o *UserView) SetIsApiUser(v bool)

SetIsApiUser gets a reference to the given bool and assigns it to the IsApiUser field.

func (*UserView) SetIsApprover

func (o *UserView) SetIsApprover(v bool)

SetIsApprover gets a reference to the given bool and assigns it to the IsApprover field.

func (*UserView) SetIsContentManager

func (o *UserView) SetIsContentManager(v bool)

SetIsContentManager gets a reference to the given bool and assigns it to the IsContentManager field.

func (*UserView) SetIsDeveloper

func (o *UserView) SetIsDeveloper(v bool)

SetIsDeveloper gets a reference to the given bool and assigns it to the IsDeveloper field.

func (*UserView) SetIsInactiveUser

func (o *UserView) SetIsInactiveUser(v bool)

SetIsInactiveUser gets a reference to the given bool and assigns it to the IsInactiveUser field.

func (*UserView) SetIsManualWinner

func (o *UserView) SetIsManualWinner(v bool)

SetIsManualWinner gets a reference to the given bool and assigns it to the IsManualWinner field.

func (*UserView) SetIsPriceChanger

func (o *UserView) SetIsPriceChanger(v bool)

SetIsPriceChanger gets a reference to the given bool and assigns it to the IsPriceChanger field.

func (*UserView) SetIsPublisher

func (o *UserView) SetIsPublisher(v bool)

SetIsPublisher gets a reference to the given bool and assigns it to the IsPublisher field.

func (*UserView) SetIsReadOnlyUser

func (o *UserView) SetIsReadOnlyUser(v bool)

SetIsReadOnlyUser gets a reference to the given bool and assigns it to the IsReadOnlyUser field.

func (*UserView) SetIsStandardPlus

func (o *UserView) SetIsStandardPlus(v bool)

SetIsStandardPlus gets a reference to the given bool and assigns it to the IsStandardPlus field.

func (*UserView) SetJobTitle

func (o *UserView) SetJobTitle(v string)

SetJobTitle gets a reference to the given string and assigns it to the JobTitle field.

func (*UserView) SetLastName

func (o *UserView) SetLastName(v string)

SetLastName gets a reference to the given string and assigns it to the LastName field.

func (*UserView) SetLocationId

func (o *UserView) SetLocationId(v string)

SetLocationId gets a reference to the given string and assigns it to the LocationId field.

func (*UserView) SetManagerUserId

func (o *UserView) SetManagerUserId(v string)

SetManagerUserId gets a reference to the given string and assigns it to the ManagerUserId field.

func (*UserView) SetMessengerId

func (o *UserView) SetMessengerId(v string)

SetMessengerId gets a reference to the given string and assigns it to the MessengerId field.

func (*UserView) SetMobilePhoneNumber

func (o *UserView) SetMobilePhoneNumber(v string)

SetMobilePhoneNumber gets a reference to the given string and assigns it to the MobilePhoneNumber field.

func (*UserView) SetOauthSubscriberId

func (o *UserView) SetOauthSubscriberId(v string)

SetOauthSubscriberId gets a reference to the given string and assigns it to the OauthSubscriberId field.

func (*UserView) SetOnBehalfUser

func (o *UserView) SetOnBehalfUser(v string)

SetOnBehalfUser gets a reference to the given string and assigns it to the OnBehalfUser field.

func (*UserView) SetOrderPorterEmailAddresses

func (o *UserView) SetOrderPorterEmailAddresses(v string)

SetOrderPorterEmailAddresses gets a reference to the given string and assigns it to the OrderPorterEmailAddresses field.

func (*UserView) SetPhoneNumber

func (o *UserView) SetPhoneNumber(v string)

SetPhoneNumber gets a reference to the given string and assigns it to the PhoneNumber field.

func (*UserView) SetPresentedName

func (o *UserView) SetPresentedName(v string)

SetPresentedName gets a reference to the given string and assigns it to the PresentedName field.

func (*UserView) SetQuotePreface

func (o *UserView) SetQuotePreface(v string)

SetQuotePreface gets a reference to the given string and assigns it to the QuotePreface field.

func (*UserView) SetTimeZone

func (o *UserView) SetTimeZone(v string)

SetTimeZone gets a reference to the given string and assigns it to the TimeZone field.

func (*UserView) SetUserName

func (o *UserView) SetUserName(v string)

SetUserName gets a reference to the given string and assigns it to the UserName field.

func (*UserView) SetUserNotes

func (o *UserView) SetUserNotes(v string)

SetUserNotes gets a reference to the given string and assigns it to the UserNotes field.

func (UserView) ToMap

func (o UserView) ToMap() (map[string]interface{}, error)

func (*UserView) UnmarshalJSON

func (o *UserView) UnmarshalJSON(data []byte) (err error)

type ViewQueryModel

type ViewQueryModel struct {
	// Comma separated list of fields to return.
	IncludeFields *string `json:"includeFields,omitempty"`
	// Conditional retrieve statements.
	Conditions *string `json:"conditions,omitempty"`
	// Page of results to get. 1-index based.
	Page *int32 `json:"page,omitempty"`
	// Page size of results to get. Max size 1000, default 50.
	PageSize             *int32 `json:"pageSize,omitempty"`
	AdditionalProperties map[string]interface{}
}

ViewQueryModel struct for ViewQueryModel

func NewViewQueryModel

func NewViewQueryModel() *ViewQueryModel

NewViewQueryModel instantiates a new ViewQueryModel object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewViewQueryModelWithDefaults

func NewViewQueryModelWithDefaults() *ViewQueryModel

NewViewQueryModelWithDefaults instantiates a new ViewQueryModel object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ViewQueryModel) GetConditions

func (o *ViewQueryModel) GetConditions() string

GetConditions returns the Conditions field value if set, zero value otherwise.

func (*ViewQueryModel) GetConditionsOk

func (o *ViewQueryModel) GetConditionsOk() (*string, bool)

GetConditionsOk returns a tuple with the Conditions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ViewQueryModel) GetIncludeFields

func (o *ViewQueryModel) GetIncludeFields() string

GetIncludeFields returns the IncludeFields field value if set, zero value otherwise.

func (*ViewQueryModel) GetIncludeFieldsOk

func (o *ViewQueryModel) GetIncludeFieldsOk() (*string, bool)

GetIncludeFieldsOk returns a tuple with the IncludeFields field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ViewQueryModel) GetPage

func (o *ViewQueryModel) GetPage() int32

GetPage returns the Page field value if set, zero value otherwise.

func (*ViewQueryModel) GetPageOk

func (o *ViewQueryModel) GetPageOk() (*int32, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ViewQueryModel) GetPageSize

func (o *ViewQueryModel) GetPageSize() int32

GetPageSize returns the PageSize field value if set, zero value otherwise.

func (*ViewQueryModel) GetPageSizeOk

func (o *ViewQueryModel) GetPageSizeOk() (*int32, bool)

GetPageSizeOk returns a tuple with the PageSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ViewQueryModel) HasConditions

func (o *ViewQueryModel) HasConditions() bool

HasConditions returns a boolean if a field has been set.

func (*ViewQueryModel) HasIncludeFields

func (o *ViewQueryModel) HasIncludeFields() bool

HasIncludeFields returns a boolean if a field has been set.

func (*ViewQueryModel) HasPage

func (o *ViewQueryModel) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*ViewQueryModel) HasPageSize

func (o *ViewQueryModel) HasPageSize() bool

HasPageSize returns a boolean if a field has been set.

func (ViewQueryModel) MarshalJSON

func (o ViewQueryModel) MarshalJSON() ([]byte, error)

func (*ViewQueryModel) SetConditions

func (o *ViewQueryModel) SetConditions(v string)

SetConditions gets a reference to the given string and assigns it to the Conditions field.

func (*ViewQueryModel) SetIncludeFields

func (o *ViewQueryModel) SetIncludeFields(v string)

SetIncludeFields gets a reference to the given string and assigns it to the IncludeFields field.

func (*ViewQueryModel) SetPage

func (o *ViewQueryModel) SetPage(v int32)

SetPage gets a reference to the given int32 and assigns it to the Page field.

func (*ViewQueryModel) SetPageSize

func (o *ViewQueryModel) SetPageSize(v int32)

SetPageSize gets a reference to the given int32 and assigns it to the PageSize field.

func (ViewQueryModel) ToMap

func (o ViewQueryModel) ToMap() (map[string]interface{}, error)

func (*ViewQueryModel) UnmarshalJSON

func (o *ViewQueryModel) UnmarshalJSON(data []byte) (err error)

Jump to

Keyboard shortcuts

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