floorplans

package
v0.0.0-...-b7c797c Latest Latest
Warning

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

Go to latest
Published: Mar 26, 2020 License: Apache-2.0 Imports: 10 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Client

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

Client for floorplans API

func (*Client) CreateNetworkFloorPlan

CreateNetworkFloorPlan creates network floor plan

Upload a floor plan

func (*Client) DeleteNetworkFloorPlan

DeleteNetworkFloorPlan deletes network floor plan

Destroy a floor plan

func (*Client) GetNetworkFloorPlan

func (a *Client) GetNetworkFloorPlan(params *GetNetworkFloorPlanParams, authInfo runtime.ClientAuthInfoWriter) (*GetNetworkFloorPlanOK, error)

GetNetworkFloorPlan gets network floor plan

Find a floor plan by ID

func (*Client) GetNetworkFloorPlans

func (a *Client) GetNetworkFloorPlans(params *GetNetworkFloorPlansParams, authInfo runtime.ClientAuthInfoWriter) (*GetNetworkFloorPlansOK, error)

GetNetworkFloorPlans gets network floor plans

List the floor plans that belong to your network

func (*Client) SetTransport

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

SetTransport changes the transport on the client

func (*Client) UpdateNetworkFloorPlan

func (a *Client) UpdateNetworkFloorPlan(params *UpdateNetworkFloorPlanParams, authInfo runtime.ClientAuthInfoWriter) (*UpdateNetworkFloorPlanOK, error)

UpdateNetworkFloorPlan updates network floor plan

Update a floor plan's geolocation and other meta data

type ClientService

type ClientService interface {
	CreateNetworkFloorPlan(params *CreateNetworkFloorPlanParams, authInfo runtime.ClientAuthInfoWriter) (*CreateNetworkFloorPlanCreated, error)

	DeleteNetworkFloorPlan(params *DeleteNetworkFloorPlanParams, authInfo runtime.ClientAuthInfoWriter) (*DeleteNetworkFloorPlanNoContent, error)

	GetNetworkFloorPlan(params *GetNetworkFloorPlanParams, authInfo runtime.ClientAuthInfoWriter) (*GetNetworkFloorPlanOK, error)

	GetNetworkFloorPlans(params *GetNetworkFloorPlansParams, authInfo runtime.ClientAuthInfoWriter) (*GetNetworkFloorPlansOK, error)

	UpdateNetworkFloorPlan(params *UpdateNetworkFloorPlanParams, authInfo runtime.ClientAuthInfoWriter) (*UpdateNetworkFloorPlanOK, 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 floorplans API client.

type CreateNetworkFloorPlanCreated

type CreateNetworkFloorPlanCreated struct {
	Payload interface{}
}

CreateNetworkFloorPlanCreated handles this case with default header values.

Successful operation

func NewCreateNetworkFloorPlanCreated

func NewCreateNetworkFloorPlanCreated() *CreateNetworkFloorPlanCreated

NewCreateNetworkFloorPlanCreated creates a CreateNetworkFloorPlanCreated with default headers values

func (*CreateNetworkFloorPlanCreated) Error

func (*CreateNetworkFloorPlanCreated) GetPayload

func (o *CreateNetworkFloorPlanCreated) GetPayload() interface{}

type CreateNetworkFloorPlanParams

type CreateNetworkFloorPlanParams struct {

	/*CreateNetworkFloorPlan*/
	CreateNetworkFloorPlan *models.CreateNetworkFloorPlan
	/*NetworkID*/
	NetworkID string

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

CreateNetworkFloorPlanParams contains all the parameters to send to the API endpoint for the create network floor plan operation typically these are written to a http.Request

func NewCreateNetworkFloorPlanParams

func NewCreateNetworkFloorPlanParams() *CreateNetworkFloorPlanParams

NewCreateNetworkFloorPlanParams creates a new CreateNetworkFloorPlanParams object with the default values initialized.

func NewCreateNetworkFloorPlanParamsWithContext

func NewCreateNetworkFloorPlanParamsWithContext(ctx context.Context) *CreateNetworkFloorPlanParams

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

func NewCreateNetworkFloorPlanParamsWithHTTPClient

func NewCreateNetworkFloorPlanParamsWithHTTPClient(client *http.Client) *CreateNetworkFloorPlanParams

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

func NewCreateNetworkFloorPlanParamsWithTimeout

func NewCreateNetworkFloorPlanParamsWithTimeout(timeout time.Duration) *CreateNetworkFloorPlanParams

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

func (*CreateNetworkFloorPlanParams) SetContext

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

SetContext adds the context to the create network floor plan params

func (*CreateNetworkFloorPlanParams) SetCreateNetworkFloorPlan

func (o *CreateNetworkFloorPlanParams) SetCreateNetworkFloorPlan(createNetworkFloorPlan *models.CreateNetworkFloorPlan)

SetCreateNetworkFloorPlan adds the createNetworkFloorPlan to the create network floor plan params

func (*CreateNetworkFloorPlanParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the create network floor plan params

func (*CreateNetworkFloorPlanParams) SetNetworkID

func (o *CreateNetworkFloorPlanParams) SetNetworkID(networkID string)

SetNetworkID adds the networkId to the create network floor plan params

func (*CreateNetworkFloorPlanParams) SetTimeout

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

SetTimeout adds the timeout to the create network floor plan params

func (*CreateNetworkFloorPlanParams) WithContext

WithContext adds the context to the create network floor plan params

func (*CreateNetworkFloorPlanParams) WithCreateNetworkFloorPlan

func (o *CreateNetworkFloorPlanParams) WithCreateNetworkFloorPlan(createNetworkFloorPlan *models.CreateNetworkFloorPlan) *CreateNetworkFloorPlanParams

WithCreateNetworkFloorPlan adds the createNetworkFloorPlan to the create network floor plan params

func (*CreateNetworkFloorPlanParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the create network floor plan params

func (*CreateNetworkFloorPlanParams) WithNetworkID

WithNetworkID adds the networkID to the create network floor plan params

func (*CreateNetworkFloorPlanParams) WithTimeout

WithTimeout adds the timeout to the create network floor plan params

func (*CreateNetworkFloorPlanParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type CreateNetworkFloorPlanReader

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

CreateNetworkFloorPlanReader is a Reader for the CreateNetworkFloorPlan structure.

func (*CreateNetworkFloorPlanReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeleteNetworkFloorPlanNoContent

type DeleteNetworkFloorPlanNoContent struct {
}

DeleteNetworkFloorPlanNoContent handles this case with default header values.

Successful operation

func NewDeleteNetworkFloorPlanNoContent

func NewDeleteNetworkFloorPlanNoContent() *DeleteNetworkFloorPlanNoContent

NewDeleteNetworkFloorPlanNoContent creates a DeleteNetworkFloorPlanNoContent with default headers values

func (*DeleteNetworkFloorPlanNoContent) Error

type DeleteNetworkFloorPlanParams

type DeleteNetworkFloorPlanParams struct {

	/*FloorPlanID*/
	FloorPlanID string
	/*NetworkID*/
	NetworkID string

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

DeleteNetworkFloorPlanParams contains all the parameters to send to the API endpoint for the delete network floor plan operation typically these are written to a http.Request

func NewDeleteNetworkFloorPlanParams

func NewDeleteNetworkFloorPlanParams() *DeleteNetworkFloorPlanParams

NewDeleteNetworkFloorPlanParams creates a new DeleteNetworkFloorPlanParams object with the default values initialized.

func NewDeleteNetworkFloorPlanParamsWithContext

func NewDeleteNetworkFloorPlanParamsWithContext(ctx context.Context) *DeleteNetworkFloorPlanParams

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

func NewDeleteNetworkFloorPlanParamsWithHTTPClient

func NewDeleteNetworkFloorPlanParamsWithHTTPClient(client *http.Client) *DeleteNetworkFloorPlanParams

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

func NewDeleteNetworkFloorPlanParamsWithTimeout

func NewDeleteNetworkFloorPlanParamsWithTimeout(timeout time.Duration) *DeleteNetworkFloorPlanParams

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

func (*DeleteNetworkFloorPlanParams) SetContext

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

SetContext adds the context to the delete network floor plan params

func (*DeleteNetworkFloorPlanParams) SetFloorPlanID

func (o *DeleteNetworkFloorPlanParams) SetFloorPlanID(floorPlanID string)

SetFloorPlanID adds the floorPlanId to the delete network floor plan params

func (*DeleteNetworkFloorPlanParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete network floor plan params

func (*DeleteNetworkFloorPlanParams) SetNetworkID

func (o *DeleteNetworkFloorPlanParams) SetNetworkID(networkID string)

SetNetworkID adds the networkId to the delete network floor plan params

func (*DeleteNetworkFloorPlanParams) SetTimeout

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

SetTimeout adds the timeout to the delete network floor plan params

func (*DeleteNetworkFloorPlanParams) WithContext

WithContext adds the context to the delete network floor plan params

func (*DeleteNetworkFloorPlanParams) WithFloorPlanID

func (o *DeleteNetworkFloorPlanParams) WithFloorPlanID(floorPlanID string) *DeleteNetworkFloorPlanParams

WithFloorPlanID adds the floorPlanID to the delete network floor plan params

func (*DeleteNetworkFloorPlanParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the delete network floor plan params

func (*DeleteNetworkFloorPlanParams) WithNetworkID

WithNetworkID adds the networkID to the delete network floor plan params

func (*DeleteNetworkFloorPlanParams) WithTimeout

WithTimeout adds the timeout to the delete network floor plan params

func (*DeleteNetworkFloorPlanParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DeleteNetworkFloorPlanReader

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

DeleteNetworkFloorPlanReader is a Reader for the DeleteNetworkFloorPlan structure.

func (*DeleteNetworkFloorPlanReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetNetworkFloorPlanOK

type GetNetworkFloorPlanOK struct {
	Payload interface{}
}

GetNetworkFloorPlanOK handles this case with default header values.

Successful operation

func NewGetNetworkFloorPlanOK

func NewGetNetworkFloorPlanOK() *GetNetworkFloorPlanOK

NewGetNetworkFloorPlanOK creates a GetNetworkFloorPlanOK with default headers values

func (*GetNetworkFloorPlanOK) Error

func (o *GetNetworkFloorPlanOK) Error() string

func (*GetNetworkFloorPlanOK) GetPayload

func (o *GetNetworkFloorPlanOK) GetPayload() interface{}

type GetNetworkFloorPlanParams

type GetNetworkFloorPlanParams struct {

	/*FloorPlanID*/
	FloorPlanID string
	/*NetworkID*/
	NetworkID string

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

GetNetworkFloorPlanParams contains all the parameters to send to the API endpoint for the get network floor plan operation typically these are written to a http.Request

func NewGetNetworkFloorPlanParams

func NewGetNetworkFloorPlanParams() *GetNetworkFloorPlanParams

NewGetNetworkFloorPlanParams creates a new GetNetworkFloorPlanParams object with the default values initialized.

func NewGetNetworkFloorPlanParamsWithContext

func NewGetNetworkFloorPlanParamsWithContext(ctx context.Context) *GetNetworkFloorPlanParams

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

func NewGetNetworkFloorPlanParamsWithHTTPClient

func NewGetNetworkFloorPlanParamsWithHTTPClient(client *http.Client) *GetNetworkFloorPlanParams

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

func NewGetNetworkFloorPlanParamsWithTimeout

func NewGetNetworkFloorPlanParamsWithTimeout(timeout time.Duration) *GetNetworkFloorPlanParams

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

func (*GetNetworkFloorPlanParams) SetContext

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

SetContext adds the context to the get network floor plan params

func (*GetNetworkFloorPlanParams) SetFloorPlanID

func (o *GetNetworkFloorPlanParams) SetFloorPlanID(floorPlanID string)

SetFloorPlanID adds the floorPlanId to the get network floor plan params

func (*GetNetworkFloorPlanParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get network floor plan params

func (*GetNetworkFloorPlanParams) SetNetworkID

func (o *GetNetworkFloorPlanParams) SetNetworkID(networkID string)

SetNetworkID adds the networkId to the get network floor plan params

func (*GetNetworkFloorPlanParams) SetTimeout

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

SetTimeout adds the timeout to the get network floor plan params

func (*GetNetworkFloorPlanParams) WithContext

WithContext adds the context to the get network floor plan params

func (*GetNetworkFloorPlanParams) WithFloorPlanID

func (o *GetNetworkFloorPlanParams) WithFloorPlanID(floorPlanID string) *GetNetworkFloorPlanParams

WithFloorPlanID adds the floorPlanID to the get network floor plan params

func (*GetNetworkFloorPlanParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get network floor plan params

func (*GetNetworkFloorPlanParams) WithNetworkID

func (o *GetNetworkFloorPlanParams) WithNetworkID(networkID string) *GetNetworkFloorPlanParams

WithNetworkID adds the networkID to the get network floor plan params

func (*GetNetworkFloorPlanParams) WithTimeout

WithTimeout adds the timeout to the get network floor plan params

func (*GetNetworkFloorPlanParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetNetworkFloorPlanReader

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

GetNetworkFloorPlanReader is a Reader for the GetNetworkFloorPlan structure.

func (*GetNetworkFloorPlanReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetNetworkFloorPlansOK

type GetNetworkFloorPlansOK struct {
	Payload interface{}
}

GetNetworkFloorPlansOK handles this case with default header values.

Successful operation

func NewGetNetworkFloorPlansOK

func NewGetNetworkFloorPlansOK() *GetNetworkFloorPlansOK

NewGetNetworkFloorPlansOK creates a GetNetworkFloorPlansOK with default headers values

func (*GetNetworkFloorPlansOK) Error

func (o *GetNetworkFloorPlansOK) Error() string

func (*GetNetworkFloorPlansOK) GetPayload

func (o *GetNetworkFloorPlansOK) GetPayload() interface{}

type GetNetworkFloorPlansParams

type GetNetworkFloorPlansParams struct {

	/*NetworkID*/
	NetworkID string

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

GetNetworkFloorPlansParams contains all the parameters to send to the API endpoint for the get network floor plans operation typically these are written to a http.Request

func NewGetNetworkFloorPlansParams

func NewGetNetworkFloorPlansParams() *GetNetworkFloorPlansParams

NewGetNetworkFloorPlansParams creates a new GetNetworkFloorPlansParams object with the default values initialized.

func NewGetNetworkFloorPlansParamsWithContext

func NewGetNetworkFloorPlansParamsWithContext(ctx context.Context) *GetNetworkFloorPlansParams

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

func NewGetNetworkFloorPlansParamsWithHTTPClient

func NewGetNetworkFloorPlansParamsWithHTTPClient(client *http.Client) *GetNetworkFloorPlansParams

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

func NewGetNetworkFloorPlansParamsWithTimeout

func NewGetNetworkFloorPlansParamsWithTimeout(timeout time.Duration) *GetNetworkFloorPlansParams

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

func (*GetNetworkFloorPlansParams) SetContext

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

SetContext adds the context to the get network floor plans params

func (*GetNetworkFloorPlansParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get network floor plans params

func (*GetNetworkFloorPlansParams) SetNetworkID

func (o *GetNetworkFloorPlansParams) SetNetworkID(networkID string)

SetNetworkID adds the networkId to the get network floor plans params

func (*GetNetworkFloorPlansParams) SetTimeout

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

SetTimeout adds the timeout to the get network floor plans params

func (*GetNetworkFloorPlansParams) WithContext

WithContext adds the context to the get network floor plans params

func (*GetNetworkFloorPlansParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get network floor plans params

func (*GetNetworkFloorPlansParams) WithNetworkID

func (o *GetNetworkFloorPlansParams) WithNetworkID(networkID string) *GetNetworkFloorPlansParams

WithNetworkID adds the networkID to the get network floor plans params

func (*GetNetworkFloorPlansParams) WithTimeout

WithTimeout adds the timeout to the get network floor plans params

func (*GetNetworkFloorPlansParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetNetworkFloorPlansReader

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

GetNetworkFloorPlansReader is a Reader for the GetNetworkFloorPlans structure.

func (*GetNetworkFloorPlansReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateNetworkFloorPlanOK

type UpdateNetworkFloorPlanOK struct {
	Payload interface{}
}

UpdateNetworkFloorPlanOK handles this case with default header values.

Successful operation

func NewUpdateNetworkFloorPlanOK

func NewUpdateNetworkFloorPlanOK() *UpdateNetworkFloorPlanOK

NewUpdateNetworkFloorPlanOK creates a UpdateNetworkFloorPlanOK with default headers values

func (*UpdateNetworkFloorPlanOK) Error

func (o *UpdateNetworkFloorPlanOK) Error() string

func (*UpdateNetworkFloorPlanOK) GetPayload

func (o *UpdateNetworkFloorPlanOK) GetPayload() interface{}

type UpdateNetworkFloorPlanParams

type UpdateNetworkFloorPlanParams struct {

	/*FloorPlanID*/
	FloorPlanID string
	/*NetworkID*/
	NetworkID string
	/*UpdateNetworkFloorPlan*/
	UpdateNetworkFloorPlan *models.UpdateNetworkFloorPlan

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

UpdateNetworkFloorPlanParams contains all the parameters to send to the API endpoint for the update network floor plan operation typically these are written to a http.Request

func NewUpdateNetworkFloorPlanParams

func NewUpdateNetworkFloorPlanParams() *UpdateNetworkFloorPlanParams

NewUpdateNetworkFloorPlanParams creates a new UpdateNetworkFloorPlanParams object with the default values initialized.

func NewUpdateNetworkFloorPlanParamsWithContext

func NewUpdateNetworkFloorPlanParamsWithContext(ctx context.Context) *UpdateNetworkFloorPlanParams

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

func NewUpdateNetworkFloorPlanParamsWithHTTPClient

func NewUpdateNetworkFloorPlanParamsWithHTTPClient(client *http.Client) *UpdateNetworkFloorPlanParams

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

func NewUpdateNetworkFloorPlanParamsWithTimeout

func NewUpdateNetworkFloorPlanParamsWithTimeout(timeout time.Duration) *UpdateNetworkFloorPlanParams

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

func (*UpdateNetworkFloorPlanParams) SetContext

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

SetContext adds the context to the update network floor plan params

func (*UpdateNetworkFloorPlanParams) SetFloorPlanID

func (o *UpdateNetworkFloorPlanParams) SetFloorPlanID(floorPlanID string)

SetFloorPlanID adds the floorPlanId to the update network floor plan params

func (*UpdateNetworkFloorPlanParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update network floor plan params

func (*UpdateNetworkFloorPlanParams) SetNetworkID

func (o *UpdateNetworkFloorPlanParams) SetNetworkID(networkID string)

SetNetworkID adds the networkId to the update network floor plan params

func (*UpdateNetworkFloorPlanParams) SetTimeout

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

SetTimeout adds the timeout to the update network floor plan params

func (*UpdateNetworkFloorPlanParams) SetUpdateNetworkFloorPlan

func (o *UpdateNetworkFloorPlanParams) SetUpdateNetworkFloorPlan(updateNetworkFloorPlan *models.UpdateNetworkFloorPlan)

SetUpdateNetworkFloorPlan adds the updateNetworkFloorPlan to the update network floor plan params

func (*UpdateNetworkFloorPlanParams) WithContext

WithContext adds the context to the update network floor plan params

func (*UpdateNetworkFloorPlanParams) WithFloorPlanID

func (o *UpdateNetworkFloorPlanParams) WithFloorPlanID(floorPlanID string) *UpdateNetworkFloorPlanParams

WithFloorPlanID adds the floorPlanID to the update network floor plan params

func (*UpdateNetworkFloorPlanParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the update network floor plan params

func (*UpdateNetworkFloorPlanParams) WithNetworkID

WithNetworkID adds the networkID to the update network floor plan params

func (*UpdateNetworkFloorPlanParams) WithTimeout

WithTimeout adds the timeout to the update network floor plan params

func (*UpdateNetworkFloorPlanParams) WithUpdateNetworkFloorPlan

func (o *UpdateNetworkFloorPlanParams) WithUpdateNetworkFloorPlan(updateNetworkFloorPlan *models.UpdateNetworkFloorPlan) *UpdateNetworkFloorPlanParams

WithUpdateNetworkFloorPlan adds the updateNetworkFloorPlan to the update network floor plan params

func (*UpdateNetworkFloorPlanParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type UpdateNetworkFloorPlanReader

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

UpdateNetworkFloorPlanReader is a Reader for the UpdateNetworkFloorPlan structure.

func (*UpdateNetworkFloorPlanReader) ReadResponse

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

ReadResponse reads a server response into the received o.

Jump to

Keyboard shortcuts

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