balance_sheet

package
v2.0.2 Latest Latest
Warning

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

Go to latest
Published: May 1, 2023 License: Apache-2.0 Imports: 11 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type BalanceSheetSearchOK

type BalanceSheetSearchOK struct {
	Payload *models.ListResponseBalanceSheetAccount
}

BalanceSheetSearchOK handles this case with default header values.

successful operation

func NewBalanceSheetSearchOK

func NewBalanceSheetSearchOK() *BalanceSheetSearchOK

NewBalanceSheetSearchOK creates a BalanceSheetSearchOK with default headers values

func (*BalanceSheetSearchOK) Error

func (o *BalanceSheetSearchOK) Error() string

func (*BalanceSheetSearchOK) GetPayload

type BalanceSheetSearchParams

type BalanceSheetSearchParams struct {

	/*AccountNumberFrom
	  From and including

	*/
	AccountNumberFrom *int32
	/*AccountNumberTo
	  To and excluding

	*/
	AccountNumberTo *int32
	/*Count
	  Number of elements to return

	*/
	Count *int64
	/*CustomerID
	  Element ID

	*/
	CustomerID *int32
	/*DateFrom
	  Format is yyyy-MM-dd (from and incl.).

	*/
	DateFrom string
	/*DateTo
	  Format is yyyy-MM-dd (to and excl.).

	*/
	DateTo string
	/*DepartmentID
	  Element ID

	*/
	DepartmentID *int32
	/*EmployeeID
	  Element ID

	*/
	EmployeeID *int32
	/*Fields
	  Fields filter pattern

	*/
	Fields *string
	/*From
	  From index

	*/
	From *int64
	/*IncludeActiveAccountsWithoutMovements
	  Should active accounts with no movements be included

	*/
	IncludeActiveAccountsWithoutMovements *bool
	/*IncludeSubProjects
	  Should sub projects of the given project be included

	*/
	IncludeSubProjects *bool
	/*ProjectID
	  Element ID

	*/
	ProjectID *int32
	/*Sorting
	  Sorting pattern

	*/
	Sorting *string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

BalanceSheetSearchParams contains all the parameters to send to the API endpoint for the balance sheet search operation typically these are written to a http.Request

func NewBalanceSheetSearchParams

func NewBalanceSheetSearchParams() *BalanceSheetSearchParams

NewBalanceSheetSearchParams creates a new BalanceSheetSearchParams object with the default values initialized.

func NewBalanceSheetSearchParamsWithContext

func NewBalanceSheetSearchParamsWithContext(ctx context.Context) *BalanceSheetSearchParams

NewBalanceSheetSearchParamsWithContext creates a new BalanceSheetSearchParams object with the default values initialized, and the ability to set a context for a request

func NewBalanceSheetSearchParamsWithHTTPClient

func NewBalanceSheetSearchParamsWithHTTPClient(client *http.Client) *BalanceSheetSearchParams

NewBalanceSheetSearchParamsWithHTTPClient creates a new BalanceSheetSearchParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewBalanceSheetSearchParamsWithTimeout

func NewBalanceSheetSearchParamsWithTimeout(timeout time.Duration) *BalanceSheetSearchParams

NewBalanceSheetSearchParamsWithTimeout creates a new BalanceSheetSearchParams object with the default values initialized, and the ability to set a timeout on a request

func (*BalanceSheetSearchParams) SetAccountNumberFrom

func (o *BalanceSheetSearchParams) SetAccountNumberFrom(accountNumberFrom *int32)

SetAccountNumberFrom adds the accountNumberFrom to the balance sheet search params

func (*BalanceSheetSearchParams) SetAccountNumberTo

func (o *BalanceSheetSearchParams) SetAccountNumberTo(accountNumberTo *int32)

SetAccountNumberTo adds the accountNumberTo to the balance sheet search params

func (*BalanceSheetSearchParams) SetContext

func (o *BalanceSheetSearchParams) SetContext(ctx context.Context)

SetContext adds the context to the balance sheet search params

func (*BalanceSheetSearchParams) SetCount

func (o *BalanceSheetSearchParams) SetCount(count *int64)

SetCount adds the count to the balance sheet search params

func (*BalanceSheetSearchParams) SetCustomerID

func (o *BalanceSheetSearchParams) SetCustomerID(customerID *int32)

SetCustomerID adds the customerId to the balance sheet search params

func (*BalanceSheetSearchParams) SetDateFrom

func (o *BalanceSheetSearchParams) SetDateFrom(dateFrom string)

SetDateFrom adds the dateFrom to the balance sheet search params

func (*BalanceSheetSearchParams) SetDateTo

func (o *BalanceSheetSearchParams) SetDateTo(dateTo string)

SetDateTo adds the dateTo to the balance sheet search params

func (*BalanceSheetSearchParams) SetDepartmentID

func (o *BalanceSheetSearchParams) SetDepartmentID(departmentID *int32)

SetDepartmentID adds the departmentId to the balance sheet search params

func (*BalanceSheetSearchParams) SetEmployeeID

func (o *BalanceSheetSearchParams) SetEmployeeID(employeeID *int32)

SetEmployeeID adds the employeeId to the balance sheet search params

func (*BalanceSheetSearchParams) SetFields

func (o *BalanceSheetSearchParams) SetFields(fields *string)

SetFields adds the fields to the balance sheet search params

func (*BalanceSheetSearchParams) SetFrom

func (o *BalanceSheetSearchParams) SetFrom(from *int64)

SetFrom adds the from to the balance sheet search params

func (*BalanceSheetSearchParams) SetHTTPClient

func (o *BalanceSheetSearchParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the balance sheet search params

func (*BalanceSheetSearchParams) SetIncludeActiveAccountsWithoutMovements

func (o *BalanceSheetSearchParams) SetIncludeActiveAccountsWithoutMovements(includeActiveAccountsWithoutMovements *bool)

SetIncludeActiveAccountsWithoutMovements adds the includeActiveAccountsWithoutMovements to the balance sheet search params

func (*BalanceSheetSearchParams) SetIncludeSubProjects

func (o *BalanceSheetSearchParams) SetIncludeSubProjects(includeSubProjects *bool)

SetIncludeSubProjects adds the includeSubProjects to the balance sheet search params

func (*BalanceSheetSearchParams) SetProjectID

func (o *BalanceSheetSearchParams) SetProjectID(projectID *int32)

SetProjectID adds the projectId to the balance sheet search params

func (*BalanceSheetSearchParams) SetSorting

func (o *BalanceSheetSearchParams) SetSorting(sorting *string)

SetSorting adds the sorting to the balance sheet search params

func (*BalanceSheetSearchParams) SetTimeout

func (o *BalanceSheetSearchParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the balance sheet search params

func (*BalanceSheetSearchParams) WithAccountNumberFrom

func (o *BalanceSheetSearchParams) WithAccountNumberFrom(accountNumberFrom *int32) *BalanceSheetSearchParams

WithAccountNumberFrom adds the accountNumberFrom to the balance sheet search params

func (*BalanceSheetSearchParams) WithAccountNumberTo

func (o *BalanceSheetSearchParams) WithAccountNumberTo(accountNumberTo *int32) *BalanceSheetSearchParams

WithAccountNumberTo adds the accountNumberTo to the balance sheet search params

func (*BalanceSheetSearchParams) WithContext

WithContext adds the context to the balance sheet search params

func (*BalanceSheetSearchParams) WithCount

WithCount adds the count to the balance sheet search params

func (*BalanceSheetSearchParams) WithCustomerID

func (o *BalanceSheetSearchParams) WithCustomerID(customerID *int32) *BalanceSheetSearchParams

WithCustomerID adds the customerID to the balance sheet search params

func (*BalanceSheetSearchParams) WithDateFrom

func (o *BalanceSheetSearchParams) WithDateFrom(dateFrom string) *BalanceSheetSearchParams

WithDateFrom adds the dateFrom to the balance sheet search params

func (*BalanceSheetSearchParams) WithDateTo

WithDateTo adds the dateTo to the balance sheet search params

func (*BalanceSheetSearchParams) WithDepartmentID

func (o *BalanceSheetSearchParams) WithDepartmentID(departmentID *int32) *BalanceSheetSearchParams

WithDepartmentID adds the departmentID to the balance sheet search params

func (*BalanceSheetSearchParams) WithEmployeeID

func (o *BalanceSheetSearchParams) WithEmployeeID(employeeID *int32) *BalanceSheetSearchParams

WithEmployeeID adds the employeeID to the balance sheet search params

func (*BalanceSheetSearchParams) WithFields

WithFields adds the fields to the balance sheet search params

func (*BalanceSheetSearchParams) WithFrom

WithFrom adds the from to the balance sheet search params

func (*BalanceSheetSearchParams) WithHTTPClient

func (o *BalanceSheetSearchParams) WithHTTPClient(client *http.Client) *BalanceSheetSearchParams

WithHTTPClient adds the HTTPClient to the balance sheet search params

func (*BalanceSheetSearchParams) WithIncludeActiveAccountsWithoutMovements

func (o *BalanceSheetSearchParams) WithIncludeActiveAccountsWithoutMovements(includeActiveAccountsWithoutMovements *bool) *BalanceSheetSearchParams

WithIncludeActiveAccountsWithoutMovements adds the includeActiveAccountsWithoutMovements to the balance sheet search params

func (*BalanceSheetSearchParams) WithIncludeSubProjects

func (o *BalanceSheetSearchParams) WithIncludeSubProjects(includeSubProjects *bool) *BalanceSheetSearchParams

WithIncludeSubProjects adds the includeSubProjects to the balance sheet search params

func (*BalanceSheetSearchParams) WithProjectID

func (o *BalanceSheetSearchParams) WithProjectID(projectID *int32) *BalanceSheetSearchParams

WithProjectID adds the projectID to the balance sheet search params

func (*BalanceSheetSearchParams) WithSorting

func (o *BalanceSheetSearchParams) WithSorting(sorting *string) *BalanceSheetSearchParams

WithSorting adds the sorting to the balance sheet search params

func (*BalanceSheetSearchParams) WithTimeout

WithTimeout adds the timeout to the balance sheet search params

func (*BalanceSheetSearchParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type BalanceSheetSearchReader

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

BalanceSheetSearchReader is a Reader for the BalanceSheetSearch structure.

func (*BalanceSheetSearchReader) ReadResponse

func (o *BalanceSheetSearchReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type Client

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

Client for balance sheet API

func (*Client) BalanceSheetSearch

func (a *Client) BalanceSheetSearch(params *BalanceSheetSearchParams, authInfo runtime.ClientAuthInfoWriter) (*BalanceSheetSearchOK, error)

BalanceSheetSearch bs e t a get balance sheet saldobalanse

func (*Client) SetTransport

func (a *Client) SetTransport(transport runtime.ClientTransport)

SetTransport changes the transport on the client

type ClientService

type ClientService interface {
	BalanceSheetSearch(params *BalanceSheetSearchParams, authInfo runtime.ClientAuthInfoWriter) (*BalanceSheetSearchOK, error)

	SetTransport(transport runtime.ClientTransport)
}

ClientService is the interface for Client methods

func New

func New(transport runtime.ClientTransport, formats strfmt.Registry) ClientService

New creates a new balance sheet API client.

Jump to

Keyboard shortcuts

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