disruptions

package
v0.0.0-...-6ca850d Latest Latest
Warning

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

Go to latest
Published: Jan 11, 2020 License: MIT 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 disruptions API

func New

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

New creates a new disruptions API client.

func (*Client) DisruptionsGetAllDisruptions

func (a *Client) DisruptionsGetAllDisruptions(params *DisruptionsGetAllDisruptionsParams) (*DisruptionsGetAllDisruptionsOK, error)

DisruptionsGetAllDisruptions views all disruptions for all route types

func (*Client) DisruptionsGetDisruptionByID

func (a *Client) DisruptionsGetDisruptionByID(params *DisruptionsGetDisruptionByIDParams) (*DisruptionsGetDisruptionByIDOK, error)

DisruptionsGetDisruptionByID views a specific disruption

func (*Client) DisruptionsGetDisruptionModes

func (a *Client) DisruptionsGetDisruptionModes(params *DisruptionsGetDisruptionModesParams) (*DisruptionsGetDisruptionModesOK, error)

DisruptionsGetDisruptionModes gets all disruption modes

func (*Client) DisruptionsGetDisruptionsByRoute

func (a *Client) DisruptionsGetDisruptionsByRoute(params *DisruptionsGetDisruptionsByRouteParams) (*DisruptionsGetDisruptionsByRouteOK, error)

DisruptionsGetDisruptionsByRoute views all disruptions for a particular route

func (*Client) DisruptionsGetDisruptionsByRouteAndStop

func (a *Client) DisruptionsGetDisruptionsByRouteAndStop(params *DisruptionsGetDisruptionsByRouteAndStopParams) (*DisruptionsGetDisruptionsByRouteAndStopOK, error)

DisruptionsGetDisruptionsByRouteAndStop views all disruptions for a particular route and stop

func (*Client) DisruptionsGetDisruptionsByStop

func (a *Client) DisruptionsGetDisruptionsByStop(params *DisruptionsGetDisruptionsByStopParams) (*DisruptionsGetDisruptionsByStopOK, error)

DisruptionsGetDisruptionsByStop views all disruptions for a particular stop

func (*Client) SetTransport

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

SetTransport changes the transport on the client

type DisruptionsGetAllDisruptionsBadRequest

type DisruptionsGetAllDisruptionsBadRequest struct {
	Payload *models.V3ErrorResponse
}

DisruptionsGetAllDisruptionsBadRequest handles this case with default header values.

Invalid Request

func NewDisruptionsGetAllDisruptionsBadRequest

func NewDisruptionsGetAllDisruptionsBadRequest() *DisruptionsGetAllDisruptionsBadRequest

NewDisruptionsGetAllDisruptionsBadRequest creates a DisruptionsGetAllDisruptionsBadRequest with default headers values

func (*DisruptionsGetAllDisruptionsBadRequest) Error

func (*DisruptionsGetAllDisruptionsBadRequest) GetPayload

type DisruptionsGetAllDisruptionsForbidden

type DisruptionsGetAllDisruptionsForbidden struct {
	Payload *models.V3ErrorResponse
}

DisruptionsGetAllDisruptionsForbidden handles this case with default header values.

Access Denied

func NewDisruptionsGetAllDisruptionsForbidden

func NewDisruptionsGetAllDisruptionsForbidden() *DisruptionsGetAllDisruptionsForbidden

NewDisruptionsGetAllDisruptionsForbidden creates a DisruptionsGetAllDisruptionsForbidden with default headers values

func (*DisruptionsGetAllDisruptionsForbidden) Error

func (*DisruptionsGetAllDisruptionsForbidden) GetPayload

type DisruptionsGetAllDisruptionsOK

type DisruptionsGetAllDisruptionsOK struct {
	Payload *models.V3DisruptionsResponse
}

DisruptionsGetAllDisruptionsOK handles this case with default header values.

All disruption information for all route types.

func NewDisruptionsGetAllDisruptionsOK

func NewDisruptionsGetAllDisruptionsOK() *DisruptionsGetAllDisruptionsOK

NewDisruptionsGetAllDisruptionsOK creates a DisruptionsGetAllDisruptionsOK with default headers values

func (*DisruptionsGetAllDisruptionsOK) Error

func (*DisruptionsGetAllDisruptionsOK) GetPayload

type DisruptionsGetAllDisruptionsParams

type DisruptionsGetAllDisruptionsParams struct {

	/*Devid
	  Your developer id

	*/
	Devid *string
	/*DisruptionModes
	  Filter by disruption_mode; values returned via v3/disruptions/modes API

	*/
	DisruptionModes []int32
	/*DisruptionStatus
	  Filter by status of disruption

	*/
	DisruptionStatus *string
	/*RouteTypes
	  Filter by route_type; values returned via RouteTypes API

	*/
	RouteTypes []int32
	/*Signature
	  Authentication signature for request

	*/
	Signature *string
	/*Token
	  Please ignore

	*/
	Token *string

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

DisruptionsGetAllDisruptionsParams contains all the parameters to send to the API endpoint for the disruptions get all disruptions operation typically these are written to a http.Request

func NewDisruptionsGetAllDisruptionsParams

func NewDisruptionsGetAllDisruptionsParams() *DisruptionsGetAllDisruptionsParams

NewDisruptionsGetAllDisruptionsParams creates a new DisruptionsGetAllDisruptionsParams object with the default values initialized.

func NewDisruptionsGetAllDisruptionsParamsWithContext

func NewDisruptionsGetAllDisruptionsParamsWithContext(ctx context.Context) *DisruptionsGetAllDisruptionsParams

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

func NewDisruptionsGetAllDisruptionsParamsWithHTTPClient

func NewDisruptionsGetAllDisruptionsParamsWithHTTPClient(client *http.Client) *DisruptionsGetAllDisruptionsParams

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

func NewDisruptionsGetAllDisruptionsParamsWithTimeout

func NewDisruptionsGetAllDisruptionsParamsWithTimeout(timeout time.Duration) *DisruptionsGetAllDisruptionsParams

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

func (*DisruptionsGetAllDisruptionsParams) SetContext

SetContext adds the context to the disruptions get all disruptions params

func (*DisruptionsGetAllDisruptionsParams) SetDevid

func (o *DisruptionsGetAllDisruptionsParams) SetDevid(devid *string)

SetDevid adds the devid to the disruptions get all disruptions params

func (*DisruptionsGetAllDisruptionsParams) SetDisruptionModes

func (o *DisruptionsGetAllDisruptionsParams) SetDisruptionModes(disruptionModes []int32)

SetDisruptionModes adds the disruptionModes to the disruptions get all disruptions params

func (*DisruptionsGetAllDisruptionsParams) SetDisruptionStatus

func (o *DisruptionsGetAllDisruptionsParams) SetDisruptionStatus(disruptionStatus *string)

SetDisruptionStatus adds the disruptionStatus to the disruptions get all disruptions params

func (*DisruptionsGetAllDisruptionsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the disruptions get all disruptions params

func (*DisruptionsGetAllDisruptionsParams) SetRouteTypes

func (o *DisruptionsGetAllDisruptionsParams) SetRouteTypes(routeTypes []int32)

SetRouteTypes adds the routeTypes to the disruptions get all disruptions params

func (*DisruptionsGetAllDisruptionsParams) SetSignature

func (o *DisruptionsGetAllDisruptionsParams) SetSignature(signature *string)

SetSignature adds the signature to the disruptions get all disruptions params

func (*DisruptionsGetAllDisruptionsParams) SetTimeout

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

SetTimeout adds the timeout to the disruptions get all disruptions params

func (*DisruptionsGetAllDisruptionsParams) SetToken

func (o *DisruptionsGetAllDisruptionsParams) SetToken(token *string)

SetToken adds the token to the disruptions get all disruptions params

func (*DisruptionsGetAllDisruptionsParams) WithContext

WithContext adds the context to the disruptions get all disruptions params

func (*DisruptionsGetAllDisruptionsParams) WithDevid

WithDevid adds the devid to the disruptions get all disruptions params

func (*DisruptionsGetAllDisruptionsParams) WithDisruptionModes

func (o *DisruptionsGetAllDisruptionsParams) WithDisruptionModes(disruptionModes []int32) *DisruptionsGetAllDisruptionsParams

WithDisruptionModes adds the disruptionModes to the disruptions get all disruptions params

func (*DisruptionsGetAllDisruptionsParams) WithDisruptionStatus

func (o *DisruptionsGetAllDisruptionsParams) WithDisruptionStatus(disruptionStatus *string) *DisruptionsGetAllDisruptionsParams

WithDisruptionStatus adds the disruptionStatus to the disruptions get all disruptions params

func (*DisruptionsGetAllDisruptionsParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the disruptions get all disruptions params

func (*DisruptionsGetAllDisruptionsParams) WithRouteTypes

WithRouteTypes adds the routeTypes to the disruptions get all disruptions params

func (*DisruptionsGetAllDisruptionsParams) WithSignature

WithSignature adds the signature to the disruptions get all disruptions params

func (*DisruptionsGetAllDisruptionsParams) WithTimeout

WithTimeout adds the timeout to the disruptions get all disruptions params

func (*DisruptionsGetAllDisruptionsParams) WithToken

WithToken adds the token to the disruptions get all disruptions params

func (*DisruptionsGetAllDisruptionsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DisruptionsGetAllDisruptionsReader

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

DisruptionsGetAllDisruptionsReader is a Reader for the DisruptionsGetAllDisruptions structure.

func (*DisruptionsGetAllDisruptionsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DisruptionsGetDisruptionByIDBadRequest

type DisruptionsGetDisruptionByIDBadRequest struct {
	Payload *models.V3ErrorResponse
}

DisruptionsGetDisruptionByIDBadRequest handles this case with default header values.

Invalid Request

func NewDisruptionsGetDisruptionByIDBadRequest

func NewDisruptionsGetDisruptionByIDBadRequest() *DisruptionsGetDisruptionByIDBadRequest

NewDisruptionsGetDisruptionByIDBadRequest creates a DisruptionsGetDisruptionByIDBadRequest with default headers values

func (*DisruptionsGetDisruptionByIDBadRequest) Error

func (*DisruptionsGetDisruptionByIDBadRequest) GetPayload

type DisruptionsGetDisruptionByIDForbidden

type DisruptionsGetDisruptionByIDForbidden struct {
	Payload *models.V3ErrorResponse
}

DisruptionsGetDisruptionByIDForbidden handles this case with default header values.

Access Denied

func NewDisruptionsGetDisruptionByIDForbidden

func NewDisruptionsGetDisruptionByIDForbidden() *DisruptionsGetDisruptionByIDForbidden

NewDisruptionsGetDisruptionByIDForbidden creates a DisruptionsGetDisruptionByIDForbidden with default headers values

func (*DisruptionsGetDisruptionByIDForbidden) Error

func (*DisruptionsGetDisruptionByIDForbidden) GetPayload

type DisruptionsGetDisruptionByIDOK

type DisruptionsGetDisruptionByIDOK struct {
	Payload *models.V3DisruptionResponse
}

DisruptionsGetDisruptionByIDOK handles this case with default header values.

Disruption information for the specified disruption ID.

func NewDisruptionsGetDisruptionByIDOK

func NewDisruptionsGetDisruptionByIDOK() *DisruptionsGetDisruptionByIDOK

NewDisruptionsGetDisruptionByIDOK creates a DisruptionsGetDisruptionByIDOK with default headers values

func (*DisruptionsGetDisruptionByIDOK) Error

func (*DisruptionsGetDisruptionByIDOK) GetPayload

type DisruptionsGetDisruptionByIDParams

type DisruptionsGetDisruptionByIDParams struct {

	/*Devid
	  Your developer id

	*/
	Devid *string
	/*DisruptionID
	  Identifier of disruption; values returned by Disruptions API - /v3/disruptions OR /v3/disruptions/route/{route_id}

	*/
	DisruptionID int64
	/*Signature
	  Authentication signature for request

	*/
	Signature *string
	/*Token
	  Please ignore

	*/
	Token *string

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

DisruptionsGetDisruptionByIDParams contains all the parameters to send to the API endpoint for the disruptions get disruption by Id operation typically these are written to a http.Request

func NewDisruptionsGetDisruptionByIDParams

func NewDisruptionsGetDisruptionByIDParams() *DisruptionsGetDisruptionByIDParams

NewDisruptionsGetDisruptionByIDParams creates a new DisruptionsGetDisruptionByIDParams object with the default values initialized.

func NewDisruptionsGetDisruptionByIDParamsWithContext

func NewDisruptionsGetDisruptionByIDParamsWithContext(ctx context.Context) *DisruptionsGetDisruptionByIDParams

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

func NewDisruptionsGetDisruptionByIDParamsWithHTTPClient

func NewDisruptionsGetDisruptionByIDParamsWithHTTPClient(client *http.Client) *DisruptionsGetDisruptionByIDParams

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

func NewDisruptionsGetDisruptionByIDParamsWithTimeout

func NewDisruptionsGetDisruptionByIDParamsWithTimeout(timeout time.Duration) *DisruptionsGetDisruptionByIDParams

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

func (*DisruptionsGetDisruptionByIDParams) SetContext

SetContext adds the context to the disruptions get disruption by Id params

func (*DisruptionsGetDisruptionByIDParams) SetDevid

func (o *DisruptionsGetDisruptionByIDParams) SetDevid(devid *string)

SetDevid adds the devid to the disruptions get disruption by Id params

func (*DisruptionsGetDisruptionByIDParams) SetDisruptionID

func (o *DisruptionsGetDisruptionByIDParams) SetDisruptionID(disruptionID int64)

SetDisruptionID adds the disruptionId to the disruptions get disruption by Id params

func (*DisruptionsGetDisruptionByIDParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the disruptions get disruption by Id params

func (*DisruptionsGetDisruptionByIDParams) SetSignature

func (o *DisruptionsGetDisruptionByIDParams) SetSignature(signature *string)

SetSignature adds the signature to the disruptions get disruption by Id params

func (*DisruptionsGetDisruptionByIDParams) SetTimeout

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

SetTimeout adds the timeout to the disruptions get disruption by Id params

func (*DisruptionsGetDisruptionByIDParams) SetToken

func (o *DisruptionsGetDisruptionByIDParams) SetToken(token *string)

SetToken adds the token to the disruptions get disruption by Id params

func (*DisruptionsGetDisruptionByIDParams) WithContext

WithContext adds the context to the disruptions get disruption by Id params

func (*DisruptionsGetDisruptionByIDParams) WithDevid

WithDevid adds the devid to the disruptions get disruption by Id params

func (*DisruptionsGetDisruptionByIDParams) WithDisruptionID

WithDisruptionID adds the disruptionID to the disruptions get disruption by Id params

func (*DisruptionsGetDisruptionByIDParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the disruptions get disruption by Id params

func (*DisruptionsGetDisruptionByIDParams) WithSignature

WithSignature adds the signature to the disruptions get disruption by Id params

func (*DisruptionsGetDisruptionByIDParams) WithTimeout

WithTimeout adds the timeout to the disruptions get disruption by Id params

func (*DisruptionsGetDisruptionByIDParams) WithToken

WithToken adds the token to the disruptions get disruption by Id params

func (*DisruptionsGetDisruptionByIDParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DisruptionsGetDisruptionByIDReader

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

DisruptionsGetDisruptionByIDReader is a Reader for the DisruptionsGetDisruptionByID structure.

func (*DisruptionsGetDisruptionByIDReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DisruptionsGetDisruptionModesBadRequest

type DisruptionsGetDisruptionModesBadRequest struct {
	Payload *models.V3ErrorResponse
}

DisruptionsGetDisruptionModesBadRequest handles this case with default header values.

Invalid Request

func NewDisruptionsGetDisruptionModesBadRequest

func NewDisruptionsGetDisruptionModesBadRequest() *DisruptionsGetDisruptionModesBadRequest

NewDisruptionsGetDisruptionModesBadRequest creates a DisruptionsGetDisruptionModesBadRequest with default headers values

func (*DisruptionsGetDisruptionModesBadRequest) Error

func (*DisruptionsGetDisruptionModesBadRequest) GetPayload

type DisruptionsGetDisruptionModesForbidden

type DisruptionsGetDisruptionModesForbidden struct {
	Payload *models.V3ErrorResponse
}

DisruptionsGetDisruptionModesForbidden handles this case with default header values.

Access Denied

func NewDisruptionsGetDisruptionModesForbidden

func NewDisruptionsGetDisruptionModesForbidden() *DisruptionsGetDisruptionModesForbidden

NewDisruptionsGetDisruptionModesForbidden creates a DisruptionsGetDisruptionModesForbidden with default headers values

func (*DisruptionsGetDisruptionModesForbidden) Error

func (*DisruptionsGetDisruptionModesForbidden) GetPayload

type DisruptionsGetDisruptionModesOK

type DisruptionsGetDisruptionModesOK struct {
	Payload *models.V3DisruptionModesResponse
}

DisruptionsGetDisruptionModesOK handles this case with default header values.

Disruption specific modes

func NewDisruptionsGetDisruptionModesOK

func NewDisruptionsGetDisruptionModesOK() *DisruptionsGetDisruptionModesOK

NewDisruptionsGetDisruptionModesOK creates a DisruptionsGetDisruptionModesOK with default headers values

func (*DisruptionsGetDisruptionModesOK) Error

func (*DisruptionsGetDisruptionModesOK) GetPayload

type DisruptionsGetDisruptionModesParams

type DisruptionsGetDisruptionModesParams struct {

	/*Devid
	  Your developer id

	*/
	Devid *string
	/*Signature
	  Authentication signature for request

	*/
	Signature *string
	/*Token
	  Please ignore

	*/
	Token *string

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

DisruptionsGetDisruptionModesParams contains all the parameters to send to the API endpoint for the disruptions get disruption modes operation typically these are written to a http.Request

func NewDisruptionsGetDisruptionModesParams

func NewDisruptionsGetDisruptionModesParams() *DisruptionsGetDisruptionModesParams

NewDisruptionsGetDisruptionModesParams creates a new DisruptionsGetDisruptionModesParams object with the default values initialized.

func NewDisruptionsGetDisruptionModesParamsWithContext

func NewDisruptionsGetDisruptionModesParamsWithContext(ctx context.Context) *DisruptionsGetDisruptionModesParams

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

func NewDisruptionsGetDisruptionModesParamsWithHTTPClient

func NewDisruptionsGetDisruptionModesParamsWithHTTPClient(client *http.Client) *DisruptionsGetDisruptionModesParams

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

func NewDisruptionsGetDisruptionModesParamsWithTimeout

func NewDisruptionsGetDisruptionModesParamsWithTimeout(timeout time.Duration) *DisruptionsGetDisruptionModesParams

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

func (*DisruptionsGetDisruptionModesParams) SetContext

SetContext adds the context to the disruptions get disruption modes params

func (*DisruptionsGetDisruptionModesParams) SetDevid

func (o *DisruptionsGetDisruptionModesParams) SetDevid(devid *string)

SetDevid adds the devid to the disruptions get disruption modes params

func (*DisruptionsGetDisruptionModesParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the disruptions get disruption modes params

func (*DisruptionsGetDisruptionModesParams) SetSignature

func (o *DisruptionsGetDisruptionModesParams) SetSignature(signature *string)

SetSignature adds the signature to the disruptions get disruption modes params

func (*DisruptionsGetDisruptionModesParams) SetTimeout

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

SetTimeout adds the timeout to the disruptions get disruption modes params

func (*DisruptionsGetDisruptionModesParams) SetToken

func (o *DisruptionsGetDisruptionModesParams) SetToken(token *string)

SetToken adds the token to the disruptions get disruption modes params

func (*DisruptionsGetDisruptionModesParams) WithContext

WithContext adds the context to the disruptions get disruption modes params

func (*DisruptionsGetDisruptionModesParams) WithDevid

WithDevid adds the devid to the disruptions get disruption modes params

func (*DisruptionsGetDisruptionModesParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the disruptions get disruption modes params

func (*DisruptionsGetDisruptionModesParams) WithSignature

WithSignature adds the signature to the disruptions get disruption modes params

func (*DisruptionsGetDisruptionModesParams) WithTimeout

WithTimeout adds the timeout to the disruptions get disruption modes params

func (*DisruptionsGetDisruptionModesParams) WithToken

WithToken adds the token to the disruptions get disruption modes params

func (*DisruptionsGetDisruptionModesParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DisruptionsGetDisruptionModesReader

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

DisruptionsGetDisruptionModesReader is a Reader for the DisruptionsGetDisruptionModes structure.

func (*DisruptionsGetDisruptionModesReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DisruptionsGetDisruptionsByRouteAndStopBadRequest

type DisruptionsGetDisruptionsByRouteAndStopBadRequest struct {
	Payload *models.V3ErrorResponse
}

DisruptionsGetDisruptionsByRouteAndStopBadRequest handles this case with default header values.

Invalid Request

func NewDisruptionsGetDisruptionsByRouteAndStopBadRequest

func NewDisruptionsGetDisruptionsByRouteAndStopBadRequest() *DisruptionsGetDisruptionsByRouteAndStopBadRequest

NewDisruptionsGetDisruptionsByRouteAndStopBadRequest creates a DisruptionsGetDisruptionsByRouteAndStopBadRequest with default headers values

func (*DisruptionsGetDisruptionsByRouteAndStopBadRequest) Error

func (*DisruptionsGetDisruptionsByRouteAndStopBadRequest) GetPayload

type DisruptionsGetDisruptionsByRouteAndStopForbidden

type DisruptionsGetDisruptionsByRouteAndStopForbidden struct {
	Payload *models.V3ErrorResponse
}

DisruptionsGetDisruptionsByRouteAndStopForbidden handles this case with default header values.

Access Denied

func NewDisruptionsGetDisruptionsByRouteAndStopForbidden

func NewDisruptionsGetDisruptionsByRouteAndStopForbidden() *DisruptionsGetDisruptionsByRouteAndStopForbidden

NewDisruptionsGetDisruptionsByRouteAndStopForbidden creates a DisruptionsGetDisruptionsByRouteAndStopForbidden with default headers values

func (*DisruptionsGetDisruptionsByRouteAndStopForbidden) Error

func (*DisruptionsGetDisruptionsByRouteAndStopForbidden) GetPayload

type DisruptionsGetDisruptionsByRouteAndStopOK

type DisruptionsGetDisruptionsByRouteAndStopOK struct {
	Payload *models.V3DisruptionsResponse
}

DisruptionsGetDisruptionsByRouteAndStopOK handles this case with default header values.

All disruption information (if any exists) for the specified route and stop.

func NewDisruptionsGetDisruptionsByRouteAndStopOK

func NewDisruptionsGetDisruptionsByRouteAndStopOK() *DisruptionsGetDisruptionsByRouteAndStopOK

NewDisruptionsGetDisruptionsByRouteAndStopOK creates a DisruptionsGetDisruptionsByRouteAndStopOK with default headers values

func (*DisruptionsGetDisruptionsByRouteAndStopOK) Error

func (*DisruptionsGetDisruptionsByRouteAndStopOK) GetPayload

type DisruptionsGetDisruptionsByRouteAndStopParams

type DisruptionsGetDisruptionsByRouteAndStopParams struct {

	/*Devid
	  Your developer id

	*/
	Devid *string
	/*DisruptionStatus
	  Filter by status of disruption

	*/
	DisruptionStatus *string
	/*RouteID
	  Identifier of route; values returned by Routes API - v3/routes

	*/
	RouteID int32
	/*Signature
	  Authentication signature for request

	*/
	Signature *string
	/*StopID
	  Identifier of stop; values returned by Stops API - v3/stops

	*/
	StopID int32
	/*Token
	  Please ignore

	*/
	Token *string

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

DisruptionsGetDisruptionsByRouteAndStopParams contains all the parameters to send to the API endpoint for the disruptions get disruptions by route and stop operation typically these are written to a http.Request

func NewDisruptionsGetDisruptionsByRouteAndStopParams

func NewDisruptionsGetDisruptionsByRouteAndStopParams() *DisruptionsGetDisruptionsByRouteAndStopParams

NewDisruptionsGetDisruptionsByRouteAndStopParams creates a new DisruptionsGetDisruptionsByRouteAndStopParams object with the default values initialized.

func NewDisruptionsGetDisruptionsByRouteAndStopParamsWithContext

func NewDisruptionsGetDisruptionsByRouteAndStopParamsWithContext(ctx context.Context) *DisruptionsGetDisruptionsByRouteAndStopParams

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

func NewDisruptionsGetDisruptionsByRouteAndStopParamsWithHTTPClient

func NewDisruptionsGetDisruptionsByRouteAndStopParamsWithHTTPClient(client *http.Client) *DisruptionsGetDisruptionsByRouteAndStopParams

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

func NewDisruptionsGetDisruptionsByRouteAndStopParamsWithTimeout

func NewDisruptionsGetDisruptionsByRouteAndStopParamsWithTimeout(timeout time.Duration) *DisruptionsGetDisruptionsByRouteAndStopParams

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

func (*DisruptionsGetDisruptionsByRouteAndStopParams) SetContext

SetContext adds the context to the disruptions get disruptions by route and stop params

func (*DisruptionsGetDisruptionsByRouteAndStopParams) SetDevid

SetDevid adds the devid to the disruptions get disruptions by route and stop params

func (*DisruptionsGetDisruptionsByRouteAndStopParams) SetDisruptionStatus

func (o *DisruptionsGetDisruptionsByRouteAndStopParams) SetDisruptionStatus(disruptionStatus *string)

SetDisruptionStatus adds the disruptionStatus to the disruptions get disruptions by route and stop params

func (*DisruptionsGetDisruptionsByRouteAndStopParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the disruptions get disruptions by route and stop params

func (*DisruptionsGetDisruptionsByRouteAndStopParams) SetRouteID

SetRouteID adds the routeId to the disruptions get disruptions by route and stop params

func (*DisruptionsGetDisruptionsByRouteAndStopParams) SetSignature

func (o *DisruptionsGetDisruptionsByRouteAndStopParams) SetSignature(signature *string)

SetSignature adds the signature to the disruptions get disruptions by route and stop params

func (*DisruptionsGetDisruptionsByRouteAndStopParams) SetStopID

SetStopID adds the stopId to the disruptions get disruptions by route and stop params

func (*DisruptionsGetDisruptionsByRouteAndStopParams) SetTimeout

SetTimeout adds the timeout to the disruptions get disruptions by route and stop params

func (*DisruptionsGetDisruptionsByRouteAndStopParams) SetToken

SetToken adds the token to the disruptions get disruptions by route and stop params

func (*DisruptionsGetDisruptionsByRouteAndStopParams) WithContext

WithContext adds the context to the disruptions get disruptions by route and stop params

func (*DisruptionsGetDisruptionsByRouteAndStopParams) WithDevid

WithDevid adds the devid to the disruptions get disruptions by route and stop params

func (*DisruptionsGetDisruptionsByRouteAndStopParams) WithDisruptionStatus

WithDisruptionStatus adds the disruptionStatus to the disruptions get disruptions by route and stop params

func (*DisruptionsGetDisruptionsByRouteAndStopParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the disruptions get disruptions by route and stop params

func (*DisruptionsGetDisruptionsByRouteAndStopParams) WithRouteID

WithRouteID adds the routeID to the disruptions get disruptions by route and stop params

func (*DisruptionsGetDisruptionsByRouteAndStopParams) WithSignature

WithSignature adds the signature to the disruptions get disruptions by route and stop params

func (*DisruptionsGetDisruptionsByRouteAndStopParams) WithStopID

WithStopID adds the stopID to the disruptions get disruptions by route and stop params

func (*DisruptionsGetDisruptionsByRouteAndStopParams) WithTimeout

WithTimeout adds the timeout to the disruptions get disruptions by route and stop params

func (*DisruptionsGetDisruptionsByRouteAndStopParams) WithToken

WithToken adds the token to the disruptions get disruptions by route and stop params

func (*DisruptionsGetDisruptionsByRouteAndStopParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DisruptionsGetDisruptionsByRouteAndStopReader

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

DisruptionsGetDisruptionsByRouteAndStopReader is a Reader for the DisruptionsGetDisruptionsByRouteAndStop structure.

func (*DisruptionsGetDisruptionsByRouteAndStopReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DisruptionsGetDisruptionsByRouteBadRequest

type DisruptionsGetDisruptionsByRouteBadRequest struct {
	Payload *models.V3ErrorResponse
}

DisruptionsGetDisruptionsByRouteBadRequest handles this case with default header values.

Invalid Request

func NewDisruptionsGetDisruptionsByRouteBadRequest

func NewDisruptionsGetDisruptionsByRouteBadRequest() *DisruptionsGetDisruptionsByRouteBadRequest

NewDisruptionsGetDisruptionsByRouteBadRequest creates a DisruptionsGetDisruptionsByRouteBadRequest with default headers values

func (*DisruptionsGetDisruptionsByRouteBadRequest) Error

func (*DisruptionsGetDisruptionsByRouteBadRequest) GetPayload

type DisruptionsGetDisruptionsByRouteForbidden

type DisruptionsGetDisruptionsByRouteForbidden struct {
	Payload *models.V3ErrorResponse
}

DisruptionsGetDisruptionsByRouteForbidden handles this case with default header values.

Access Denied

func NewDisruptionsGetDisruptionsByRouteForbidden

func NewDisruptionsGetDisruptionsByRouteForbidden() *DisruptionsGetDisruptionsByRouteForbidden

NewDisruptionsGetDisruptionsByRouteForbidden creates a DisruptionsGetDisruptionsByRouteForbidden with default headers values

func (*DisruptionsGetDisruptionsByRouteForbidden) Error

func (*DisruptionsGetDisruptionsByRouteForbidden) GetPayload

type DisruptionsGetDisruptionsByRouteOK

type DisruptionsGetDisruptionsByRouteOK struct {
	Payload *models.V3DisruptionsResponse
}

DisruptionsGetDisruptionsByRouteOK handles this case with default header values.

All disruption information (if any exists) for the specified route.

func NewDisruptionsGetDisruptionsByRouteOK

func NewDisruptionsGetDisruptionsByRouteOK() *DisruptionsGetDisruptionsByRouteOK

NewDisruptionsGetDisruptionsByRouteOK creates a DisruptionsGetDisruptionsByRouteOK with default headers values

func (*DisruptionsGetDisruptionsByRouteOK) Error

func (*DisruptionsGetDisruptionsByRouteOK) GetPayload

type DisruptionsGetDisruptionsByRouteParams

type DisruptionsGetDisruptionsByRouteParams struct {

	/*Devid
	  Your developer id

	*/
	Devid *string
	/*DisruptionStatus
	  Filter by status of disruption

	*/
	DisruptionStatus *string
	/*RouteID
	  Identifier of route; values returned by Routes API - v3/routes

	*/
	RouteID int32
	/*Signature
	  Authentication signature for request

	*/
	Signature *string
	/*Token
	  Please ignore

	*/
	Token *string

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

DisruptionsGetDisruptionsByRouteParams contains all the parameters to send to the API endpoint for the disruptions get disruptions by route operation typically these are written to a http.Request

func NewDisruptionsGetDisruptionsByRouteParams

func NewDisruptionsGetDisruptionsByRouteParams() *DisruptionsGetDisruptionsByRouteParams

NewDisruptionsGetDisruptionsByRouteParams creates a new DisruptionsGetDisruptionsByRouteParams object with the default values initialized.

func NewDisruptionsGetDisruptionsByRouteParamsWithContext

func NewDisruptionsGetDisruptionsByRouteParamsWithContext(ctx context.Context) *DisruptionsGetDisruptionsByRouteParams

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

func NewDisruptionsGetDisruptionsByRouteParamsWithHTTPClient

func NewDisruptionsGetDisruptionsByRouteParamsWithHTTPClient(client *http.Client) *DisruptionsGetDisruptionsByRouteParams

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

func NewDisruptionsGetDisruptionsByRouteParamsWithTimeout

func NewDisruptionsGetDisruptionsByRouteParamsWithTimeout(timeout time.Duration) *DisruptionsGetDisruptionsByRouteParams

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

func (*DisruptionsGetDisruptionsByRouteParams) SetContext

SetContext adds the context to the disruptions get disruptions by route params

func (*DisruptionsGetDisruptionsByRouteParams) SetDevid

func (o *DisruptionsGetDisruptionsByRouteParams) SetDevid(devid *string)

SetDevid adds the devid to the disruptions get disruptions by route params

func (*DisruptionsGetDisruptionsByRouteParams) SetDisruptionStatus

func (o *DisruptionsGetDisruptionsByRouteParams) SetDisruptionStatus(disruptionStatus *string)

SetDisruptionStatus adds the disruptionStatus to the disruptions get disruptions by route params

func (*DisruptionsGetDisruptionsByRouteParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the disruptions get disruptions by route params

func (*DisruptionsGetDisruptionsByRouteParams) SetRouteID

func (o *DisruptionsGetDisruptionsByRouteParams) SetRouteID(routeID int32)

SetRouteID adds the routeId to the disruptions get disruptions by route params

func (*DisruptionsGetDisruptionsByRouteParams) SetSignature

func (o *DisruptionsGetDisruptionsByRouteParams) SetSignature(signature *string)

SetSignature adds the signature to the disruptions get disruptions by route params

func (*DisruptionsGetDisruptionsByRouteParams) SetTimeout

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

SetTimeout adds the timeout to the disruptions get disruptions by route params

func (*DisruptionsGetDisruptionsByRouteParams) SetToken

func (o *DisruptionsGetDisruptionsByRouteParams) SetToken(token *string)

SetToken adds the token to the disruptions get disruptions by route params

func (*DisruptionsGetDisruptionsByRouteParams) WithContext

WithContext adds the context to the disruptions get disruptions by route params

func (*DisruptionsGetDisruptionsByRouteParams) WithDevid

WithDevid adds the devid to the disruptions get disruptions by route params

func (*DisruptionsGetDisruptionsByRouteParams) WithDisruptionStatus

func (o *DisruptionsGetDisruptionsByRouteParams) WithDisruptionStatus(disruptionStatus *string) *DisruptionsGetDisruptionsByRouteParams

WithDisruptionStatus adds the disruptionStatus to the disruptions get disruptions by route params

func (*DisruptionsGetDisruptionsByRouteParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the disruptions get disruptions by route params

func (*DisruptionsGetDisruptionsByRouteParams) WithRouteID

WithRouteID adds the routeID to the disruptions get disruptions by route params

func (*DisruptionsGetDisruptionsByRouteParams) WithSignature

WithSignature adds the signature to the disruptions get disruptions by route params

func (*DisruptionsGetDisruptionsByRouteParams) WithTimeout

WithTimeout adds the timeout to the disruptions get disruptions by route params

func (*DisruptionsGetDisruptionsByRouteParams) WithToken

WithToken adds the token to the disruptions get disruptions by route params

func (*DisruptionsGetDisruptionsByRouteParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DisruptionsGetDisruptionsByRouteReader

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

DisruptionsGetDisruptionsByRouteReader is a Reader for the DisruptionsGetDisruptionsByRoute structure.

func (*DisruptionsGetDisruptionsByRouteReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DisruptionsGetDisruptionsByStopBadRequest

type DisruptionsGetDisruptionsByStopBadRequest struct {
	Payload *models.V3ErrorResponse
}

DisruptionsGetDisruptionsByStopBadRequest handles this case with default header values.

Invalid Request

func NewDisruptionsGetDisruptionsByStopBadRequest

func NewDisruptionsGetDisruptionsByStopBadRequest() *DisruptionsGetDisruptionsByStopBadRequest

NewDisruptionsGetDisruptionsByStopBadRequest creates a DisruptionsGetDisruptionsByStopBadRequest with default headers values

func (*DisruptionsGetDisruptionsByStopBadRequest) Error

func (*DisruptionsGetDisruptionsByStopBadRequest) GetPayload

type DisruptionsGetDisruptionsByStopForbidden

type DisruptionsGetDisruptionsByStopForbidden struct {
	Payload *models.V3ErrorResponse
}

DisruptionsGetDisruptionsByStopForbidden handles this case with default header values.

Access Denied

func NewDisruptionsGetDisruptionsByStopForbidden

func NewDisruptionsGetDisruptionsByStopForbidden() *DisruptionsGetDisruptionsByStopForbidden

NewDisruptionsGetDisruptionsByStopForbidden creates a DisruptionsGetDisruptionsByStopForbidden with default headers values

func (*DisruptionsGetDisruptionsByStopForbidden) Error

func (*DisruptionsGetDisruptionsByStopForbidden) GetPayload

type DisruptionsGetDisruptionsByStopOK

type DisruptionsGetDisruptionsByStopOK struct {
	Payload *models.V3DisruptionsResponse
}

DisruptionsGetDisruptionsByStopOK handles this case with default header values.

All disruption information (if any exists) for the specified stop.

func NewDisruptionsGetDisruptionsByStopOK

func NewDisruptionsGetDisruptionsByStopOK() *DisruptionsGetDisruptionsByStopOK

NewDisruptionsGetDisruptionsByStopOK creates a DisruptionsGetDisruptionsByStopOK with default headers values

func (*DisruptionsGetDisruptionsByStopOK) Error

func (*DisruptionsGetDisruptionsByStopOK) GetPayload

type DisruptionsGetDisruptionsByStopParams

type DisruptionsGetDisruptionsByStopParams struct {

	/*Devid
	  Your developer id

	*/
	Devid *string
	/*DisruptionStatus
	  Filter by status of disruption

	*/
	DisruptionStatus *string
	/*Signature
	  Authentication signature for request

	*/
	Signature *string
	/*StopID
	  Identifier of stop; values returned by Stops API - v3/stops

	*/
	StopID int32
	/*Token
	  Please ignore

	*/
	Token *string

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

DisruptionsGetDisruptionsByStopParams contains all the parameters to send to the API endpoint for the disruptions get disruptions by stop operation typically these are written to a http.Request

func NewDisruptionsGetDisruptionsByStopParams

func NewDisruptionsGetDisruptionsByStopParams() *DisruptionsGetDisruptionsByStopParams

NewDisruptionsGetDisruptionsByStopParams creates a new DisruptionsGetDisruptionsByStopParams object with the default values initialized.

func NewDisruptionsGetDisruptionsByStopParamsWithContext

func NewDisruptionsGetDisruptionsByStopParamsWithContext(ctx context.Context) *DisruptionsGetDisruptionsByStopParams

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

func NewDisruptionsGetDisruptionsByStopParamsWithHTTPClient

func NewDisruptionsGetDisruptionsByStopParamsWithHTTPClient(client *http.Client) *DisruptionsGetDisruptionsByStopParams

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

func NewDisruptionsGetDisruptionsByStopParamsWithTimeout

func NewDisruptionsGetDisruptionsByStopParamsWithTimeout(timeout time.Duration) *DisruptionsGetDisruptionsByStopParams

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

func (*DisruptionsGetDisruptionsByStopParams) SetContext

SetContext adds the context to the disruptions get disruptions by stop params

func (*DisruptionsGetDisruptionsByStopParams) SetDevid

func (o *DisruptionsGetDisruptionsByStopParams) SetDevid(devid *string)

SetDevid adds the devid to the disruptions get disruptions by stop params

func (*DisruptionsGetDisruptionsByStopParams) SetDisruptionStatus

func (o *DisruptionsGetDisruptionsByStopParams) SetDisruptionStatus(disruptionStatus *string)

SetDisruptionStatus adds the disruptionStatus to the disruptions get disruptions by stop params

func (*DisruptionsGetDisruptionsByStopParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the disruptions get disruptions by stop params

func (*DisruptionsGetDisruptionsByStopParams) SetSignature

func (o *DisruptionsGetDisruptionsByStopParams) SetSignature(signature *string)

SetSignature adds the signature to the disruptions get disruptions by stop params

func (*DisruptionsGetDisruptionsByStopParams) SetStopID

func (o *DisruptionsGetDisruptionsByStopParams) SetStopID(stopID int32)

SetStopID adds the stopId to the disruptions get disruptions by stop params

func (*DisruptionsGetDisruptionsByStopParams) SetTimeout

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

SetTimeout adds the timeout to the disruptions get disruptions by stop params

func (*DisruptionsGetDisruptionsByStopParams) SetToken

func (o *DisruptionsGetDisruptionsByStopParams) SetToken(token *string)

SetToken adds the token to the disruptions get disruptions by stop params

func (*DisruptionsGetDisruptionsByStopParams) WithContext

WithContext adds the context to the disruptions get disruptions by stop params

func (*DisruptionsGetDisruptionsByStopParams) WithDevid

WithDevid adds the devid to the disruptions get disruptions by stop params

func (*DisruptionsGetDisruptionsByStopParams) WithDisruptionStatus

func (o *DisruptionsGetDisruptionsByStopParams) WithDisruptionStatus(disruptionStatus *string) *DisruptionsGetDisruptionsByStopParams

WithDisruptionStatus adds the disruptionStatus to the disruptions get disruptions by stop params

func (*DisruptionsGetDisruptionsByStopParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the disruptions get disruptions by stop params

func (*DisruptionsGetDisruptionsByStopParams) WithSignature

WithSignature adds the signature to the disruptions get disruptions by stop params

func (*DisruptionsGetDisruptionsByStopParams) WithStopID

WithStopID adds the stopID to the disruptions get disruptions by stop params

func (*DisruptionsGetDisruptionsByStopParams) WithTimeout

WithTimeout adds the timeout to the disruptions get disruptions by stop params

func (*DisruptionsGetDisruptionsByStopParams) WithToken

WithToken adds the token to the disruptions get disruptions by stop params

func (*DisruptionsGetDisruptionsByStopParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DisruptionsGetDisruptionsByStopReader

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

DisruptionsGetDisruptionsByStopReader is a Reader for the DisruptionsGetDisruptionsByStop structure.

func (*DisruptionsGetDisruptionsByStopReader) ReadResponse

func (o *DisruptionsGetDisruptionsByStopReader) 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