activity_feed_controller

package
v0.0.0-...-7b3e9a7 Latest Latest
Warning

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

Go to latest
Published: Jan 26, 2022 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 Client

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

Client for activity feed controller API

func (*Client) ListActivityFeed

func (a *Client) ListActivityFeed(params *ListActivityFeedParams, authInfo runtime.ClientAuthInfoWriter) (*ListActivityFeedOK, error)

ListActivityFeed lists

func (*Client) SetTransport

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

SetTransport changes the transport on the client

type ClientService

type ClientService interface {
	ListActivityFeed(params *ListActivityFeedParams, authInfo runtime.ClientAuthInfoWriter) (*ListActivityFeedOK, 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 activity feed controller API client.

type ListActivityFeedBadRequest

type ListActivityFeedBadRequest struct {
	Payload *models.APIResult
}

ListActivityFeedBadRequest handles this case with default header values.

Bad Request

func NewListActivityFeedBadRequest

func NewListActivityFeedBadRequest() *ListActivityFeedBadRequest

NewListActivityFeedBadRequest creates a ListActivityFeedBadRequest with default headers values

func (*ListActivityFeedBadRequest) Error

func (*ListActivityFeedBadRequest) GetPayload

func (o *ListActivityFeedBadRequest) GetPayload() *models.APIResult

type ListActivityFeedConflict

type ListActivityFeedConflict struct {
	Payload *models.APIResult
}

ListActivityFeedConflict handles this case with default header values.

Conflict

func NewListActivityFeedConflict

func NewListActivityFeedConflict() *ListActivityFeedConflict

NewListActivityFeedConflict creates a ListActivityFeedConflict with default headers values

func (*ListActivityFeedConflict) Error

func (o *ListActivityFeedConflict) Error() string

func (*ListActivityFeedConflict) GetPayload

func (o *ListActivityFeedConflict) GetPayload() *models.APIResult

type ListActivityFeedForbidden

type ListActivityFeedForbidden struct {
	Payload *models.APIResult
}

ListActivityFeedForbidden handles this case with default header values.

Forbidden

func NewListActivityFeedForbidden

func NewListActivityFeedForbidden() *ListActivityFeedForbidden

NewListActivityFeedForbidden creates a ListActivityFeedForbidden with default headers values

func (*ListActivityFeedForbidden) Error

func (o *ListActivityFeedForbidden) Error() string

func (*ListActivityFeedForbidden) GetPayload

func (o *ListActivityFeedForbidden) GetPayload() *models.APIResult

type ListActivityFeedInternalServerError

type ListActivityFeedInternalServerError struct {
	Payload *models.APIResult
}

ListActivityFeedInternalServerError handles this case with default header values.

Internal Server Error

func NewListActivityFeedInternalServerError

func NewListActivityFeedInternalServerError() *ListActivityFeedInternalServerError

NewListActivityFeedInternalServerError creates a ListActivityFeedInternalServerError with default headers values

func (*ListActivityFeedInternalServerError) Error

func (*ListActivityFeedInternalServerError) GetPayload

type ListActivityFeedNotFound

type ListActivityFeedNotFound struct {
	Payload *models.APIResult
}

ListActivityFeedNotFound handles this case with default header values.

Not Found

func NewListActivityFeedNotFound

func NewListActivityFeedNotFound() *ListActivityFeedNotFound

NewListActivityFeedNotFound creates a ListActivityFeedNotFound with default headers values

func (*ListActivityFeedNotFound) Error

func (o *ListActivityFeedNotFound) Error() string

func (*ListActivityFeedNotFound) GetPayload

func (o *ListActivityFeedNotFound) GetPayload() *models.APIResult

type ListActivityFeedOK

type ListActivityFeedOK struct {
	Payload *models.APIResultListActivityFeed
}

ListActivityFeedOK handles this case with default header values.

OK

func NewListActivityFeedOK

func NewListActivityFeedOK() *ListActivityFeedOK

NewListActivityFeedOK creates a ListActivityFeedOK with default headers values

func (*ListActivityFeedOK) Error

func (o *ListActivityFeedOK) Error() string

func (*ListActivityFeedOK) GetPayload

type ListActivityFeedParams

type ListActivityFeedParams struct {

	/*Fields
	  Output fields

	*/
	Fields *string
	/*Limit
	  A maximum number of returned objects in listing, if '-1' or '0' no limit is applied

	*/
	Limit *int32
	/*Start
	  A start offset in object listing

	*/
	Start *int32

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

ListActivityFeedParams contains all the parameters to send to the API endpoint for the list activity feed operation typically these are written to a http.Request

func NewListActivityFeedParams

func NewListActivityFeedParams() *ListActivityFeedParams

NewListActivityFeedParams creates a new ListActivityFeedParams object with the default values initialized.

func NewListActivityFeedParamsWithContext

func NewListActivityFeedParamsWithContext(ctx context.Context) *ListActivityFeedParams

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

func NewListActivityFeedParamsWithHTTPClient

func NewListActivityFeedParamsWithHTTPClient(client *http.Client) *ListActivityFeedParams

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

func NewListActivityFeedParamsWithTimeout

func NewListActivityFeedParamsWithTimeout(timeout time.Duration) *ListActivityFeedParams

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

func (*ListActivityFeedParams) SetContext

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

SetContext adds the context to the list activity feed params

func (*ListActivityFeedParams) SetFields

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

SetFields adds the fields to the list activity feed params

func (*ListActivityFeedParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the list activity feed params

func (*ListActivityFeedParams) SetLimit

func (o *ListActivityFeedParams) SetLimit(limit *int32)

SetLimit adds the limit to the list activity feed params

func (*ListActivityFeedParams) SetStart

func (o *ListActivityFeedParams) SetStart(start *int32)

SetStart adds the start to the list activity feed params

func (*ListActivityFeedParams) SetTimeout

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

SetTimeout adds the timeout to the list activity feed params

func (*ListActivityFeedParams) WithContext

WithContext adds the context to the list activity feed params

func (*ListActivityFeedParams) WithFields

func (o *ListActivityFeedParams) WithFields(fields *string) *ListActivityFeedParams

WithFields adds the fields to the list activity feed params

func (*ListActivityFeedParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the list activity feed params

func (*ListActivityFeedParams) WithLimit

func (o *ListActivityFeedParams) WithLimit(limit *int32) *ListActivityFeedParams

WithLimit adds the limit to the list activity feed params

func (*ListActivityFeedParams) WithStart

func (o *ListActivityFeedParams) WithStart(start *int32) *ListActivityFeedParams

WithStart adds the start to the list activity feed params

func (*ListActivityFeedParams) WithTimeout

WithTimeout adds the timeout to the list activity feed params

func (*ListActivityFeedParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ListActivityFeedReader

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

ListActivityFeedReader is a Reader for the ListActivityFeed structure.

func (*ListActivityFeedReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ListActivityFeedUnauthorized

type ListActivityFeedUnauthorized struct {
	Payload *models.APIResult
}

ListActivityFeedUnauthorized handles this case with default header values.

Unauthorized

func NewListActivityFeedUnauthorized

func NewListActivityFeedUnauthorized() *ListActivityFeedUnauthorized

NewListActivityFeedUnauthorized creates a ListActivityFeedUnauthorized with default headers values

func (*ListActivityFeedUnauthorized) Error

func (*ListActivityFeedUnauthorized) GetPayload

Jump to

Keyboard shortcuts

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