issues

package
v1.0.0 Latest Latest
Warning

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

Go to latest
Published: Feb 16, 2024 License: MPL-2.0 Imports: 13 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 issues API

func (*Client) FetchIssuesPerPurl

func (a *Client) FetchIssuesPerPurl(params *FetchIssuesPerPurlParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*FetchIssuesPerPurlOK, error)

FetchIssuesPerPurl lists issues for a package

Query issues for a specific package version identified by Package URL (purl). Snyk returns only direct vulnerabilities. Transitive vulnerabilities (from dependencies) are not returned because they can vary depending on context.

func (*Client) GetGroupIssueByIssueID

func (a *Client) GetGroupIssueByIssueID(params *GetGroupIssueByIssueIDParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetGroupIssueByIssueIDOK, error)

GetGroupIssueByIssueID gets an issue

Get an issue

func (*Client) GetOrgIssueByIssueID

func (a *Client) GetOrgIssueByIssueID(params *GetOrgIssueByIssueIDParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetOrgIssueByIssueIDOK, error)

GetOrgIssueByIssueID gets an issue

Get an issue

func (*Client) ListGroupIssues

func (a *Client) ListGroupIssues(params *ListGroupIssuesParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListGroupIssuesOK, error)

ListGroupIssues gets issues by group ID

Get a list of a group's issues.

func (*Client) ListIssuesForManyPurls

func (a *Client) ListIssuesForManyPurls(params *ListIssuesForManyPurlsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListIssuesForManyPurlsOK, error)

ListIssuesForManyPurls lists issues for a given set of packages currently not available to all customers

This endpoint is not available to all customers. If you are interested please contact support. Query issues for a batch of packages identified by Package URL (purl). Only direct vulnerabilities are returned, transitive vulnerabilities (from dependencies) are not returned because they can vary depending on context.

func (*Client) ListOrgIssues

func (a *Client) ListOrgIssues(params *ListOrgIssuesParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListOrgIssuesOK, error)

ListOrgIssues gets issues by org ID

Get a list of an organization's issues.

func (*Client) SetTransport

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

SetTransport changes the transport on the client

type ClientOption

type ClientOption func(*runtime.ClientOperation)

ClientOption is the option for Client methods

type ClientService

type ClientService interface {
	FetchIssuesPerPurl(params *FetchIssuesPerPurlParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*FetchIssuesPerPurlOK, error)

	GetGroupIssueByIssueID(params *GetGroupIssueByIssueIDParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetGroupIssueByIssueIDOK, error)

	GetOrgIssueByIssueID(params *GetOrgIssueByIssueIDParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetOrgIssueByIssueIDOK, error)

	ListGroupIssues(params *ListGroupIssuesParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListGroupIssuesOK, error)

	ListIssuesForManyPurls(params *ListIssuesForManyPurlsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListIssuesForManyPurlsOK, error)

	ListOrgIssues(params *ListOrgIssuesParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListOrgIssuesOK, 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 issues API client.

type FetchIssuesPerPurlBadRequest

type FetchIssuesPerPurlBadRequest struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *FetchIssuesPerPurlBadRequestBody
}

FetchIssuesPerPurlBadRequest describes a response with status code 400, with default header values.

Bad Request: A parameter provided as a part of the request was invalid.

func NewFetchIssuesPerPurlBadRequest

func NewFetchIssuesPerPurlBadRequest() *FetchIssuesPerPurlBadRequest

NewFetchIssuesPerPurlBadRequest creates a FetchIssuesPerPurlBadRequest with default headers values

func (*FetchIssuesPerPurlBadRequest) Code

Code gets the status code for the fetch issues per purl bad request response

func (*FetchIssuesPerPurlBadRequest) Error

func (*FetchIssuesPerPurlBadRequest) GetPayload

func (*FetchIssuesPerPurlBadRequest) IsClientError

func (o *FetchIssuesPerPurlBadRequest) IsClientError() bool

IsClientError returns true when this fetch issues per purl bad request response has a 4xx status code

func (*FetchIssuesPerPurlBadRequest) IsCode

func (o *FetchIssuesPerPurlBadRequest) IsCode(code int) bool

IsCode returns true when this fetch issues per purl bad request response a status code equal to that given

func (*FetchIssuesPerPurlBadRequest) IsRedirect

func (o *FetchIssuesPerPurlBadRequest) IsRedirect() bool

IsRedirect returns true when this fetch issues per purl bad request response has a 3xx status code

func (*FetchIssuesPerPurlBadRequest) IsServerError

func (o *FetchIssuesPerPurlBadRequest) IsServerError() bool

IsServerError returns true when this fetch issues per purl bad request response has a 5xx status code

func (*FetchIssuesPerPurlBadRequest) IsSuccess

func (o *FetchIssuesPerPurlBadRequest) IsSuccess() bool

IsSuccess returns true when this fetch issues per purl bad request response has a 2xx status code

func (*FetchIssuesPerPurlBadRequest) String

type FetchIssuesPerPurlBadRequestBody

type FetchIssuesPerPurlBadRequestBody struct {

	// errors
	// Example: [{"detail":"Permission denied for this resource","status":"403"}]
	// Required: true
	// Min Items: 1
	Errors []*FetchIssuesPerPurlBadRequestBodyErrorsItems0 `json:"errors"`

	// jsonapi
	// Required: true
	Jsonapi *FetchIssuesPerPurlBadRequestBodyJsonapi `json:"jsonapi"`
}

FetchIssuesPerPurlBadRequestBody fetch issues per purl bad request body // Example: {"errors":[{"detail":"Permission denied for this resource","status":"403"}],"jsonapi":{"version":"1.0"}} swagger:model FetchIssuesPerPurlBadRequestBody

func (*FetchIssuesPerPurlBadRequestBody) ContextValidate

func (o *FetchIssuesPerPurlBadRequestBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this fetch issues per purl bad request body based on the context it is used

func (*FetchIssuesPerPurlBadRequestBody) MarshalBinary

func (o *FetchIssuesPerPurlBadRequestBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*FetchIssuesPerPurlBadRequestBody) UnmarshalBinary

func (o *FetchIssuesPerPurlBadRequestBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*FetchIssuesPerPurlBadRequestBody) Validate

Validate validates this fetch issues per purl bad request body

type FetchIssuesPerPurlBadRequestBodyErrorsItems0

type FetchIssuesPerPurlBadRequestBodyErrorsItems0 struct {

	// An application-specific error code, expressed as a string value.
	// Example: entity-not-found
	Code string `json:"code,omitempty"`

	// A human-readable explanation specific to this occurrence of the problem.
	// Example: The request was missing these required fields: ...
	// Required: true
	Detail *string `json:"detail"`

	// A unique identifier for this particular occurrence of the problem.
	// Example: f16c31b5-6129-4571-add8-d589da9be524
	// Format: uuid
	ID strfmt.UUID `json:"id,omitempty"`

	// links
	Links *FetchIssuesPerPurlBadRequestBodyErrorsItems0Links `json:"links,omitempty"`

	// meta
	// Example: {"key":"value"}
	Meta interface{} `json:"meta,omitempty"`

	// source
	Source *FetchIssuesPerPurlBadRequestBodyErrorsItems0Source `json:"source,omitempty"`

	// The HTTP status code applicable to this problem, expressed as a string value.
	// Example: 400
	// Required: true
	// Pattern: ^[45]\d\d$
	Status *string `json:"status"`

	// A short, human-readable summary of the problem that SHOULD NOT change from occurrence to occurrence of the problem, except for purposes of localization.
	// Example: Bad request
	Title string `json:"title,omitempty"`
}

FetchIssuesPerPurlBadRequestBodyErrorsItems0 fetch issues per purl bad request body errors items0 // Example: {"detail":"Not Found","status":"404"} swagger:model FetchIssuesPerPurlBadRequestBodyErrorsItems0

func (*FetchIssuesPerPurlBadRequestBodyErrorsItems0) ContextValidate

ContextValidate validate this fetch issues per purl bad request body errors items0 based on the context it is used

func (*FetchIssuesPerPurlBadRequestBodyErrorsItems0) MarshalBinary

MarshalBinary interface implementation

func (*FetchIssuesPerPurlBadRequestBodyErrorsItems0) UnmarshalBinary

UnmarshalBinary interface implementation

func (*FetchIssuesPerPurlBadRequestBodyErrorsItems0) Validate

Validate validates this fetch issues per purl bad request body errors items0

type FetchIssuesPerPurlBadRequestBodyErrorsItems0Links struct {

	// about
	// Example: https://example.com/api/resource
	About interface{} `json:"about,omitempty"`
}

FetchIssuesPerPurlBadRequestBodyErrorsItems0Links A link that leads to further details about this particular occurrance of the problem. // Example: {"about":"https://example.com/about_this_error"} swagger:model FetchIssuesPerPurlBadRequestBodyErrorsItems0Links

func (*FetchIssuesPerPurlBadRequestBodyErrorsItems0Links) ContextValidate

ContextValidate validates this fetch issues per purl bad request body errors items0 links based on context it is used

func (*FetchIssuesPerPurlBadRequestBodyErrorsItems0Links) MarshalBinary

MarshalBinary interface implementation

func (*FetchIssuesPerPurlBadRequestBodyErrorsItems0Links) UnmarshalBinary

UnmarshalBinary interface implementation

func (*FetchIssuesPerPurlBadRequestBodyErrorsItems0Links) Validate

Validate validates this fetch issues per purl bad request body errors items0 links

type FetchIssuesPerPurlBadRequestBodyErrorsItems0Source

type FetchIssuesPerPurlBadRequestBodyErrorsItems0Source struct {

	// A string indicating which URI query parameter caused the error.
	// Example: param1
	Parameter string `json:"parameter,omitempty"`

	// A JSON Pointer [RFC6901] to the associated entity in the request document.
	// Example: /data/attributes
	Pointer string `json:"pointer,omitempty"`
}

FetchIssuesPerPurlBadRequestBodyErrorsItems0Source fetch issues per purl bad request body errors items0 source // Example: {"pointer":"/data/attributes"} swagger:model FetchIssuesPerPurlBadRequestBodyErrorsItems0Source

func (*FetchIssuesPerPurlBadRequestBodyErrorsItems0Source) ContextValidate

ContextValidate validates this fetch issues per purl bad request body errors items0 source based on context it is used

func (*FetchIssuesPerPurlBadRequestBodyErrorsItems0Source) MarshalBinary

MarshalBinary interface implementation

func (*FetchIssuesPerPurlBadRequestBodyErrorsItems0Source) UnmarshalBinary

UnmarshalBinary interface implementation

func (*FetchIssuesPerPurlBadRequestBodyErrorsItems0Source) Validate

Validate validates this fetch issues per purl bad request body errors items0 source

type FetchIssuesPerPurlBadRequestBodyJsonapi

type FetchIssuesPerPurlBadRequestBodyJsonapi struct {

	// Version of the JSON API specification this server supports.
	// Example: 1.0
	// Required: true
	// Pattern: ^(0|[1-9]\d*)\.(0|[1-9]\d*)$
	Version *string `json:"version"`
}

FetchIssuesPerPurlBadRequestBodyJsonapi fetch issues per purl bad request body jsonapi // Example: {"version":"1.0"} swagger:model FetchIssuesPerPurlBadRequestBodyJsonapi

func (*FetchIssuesPerPurlBadRequestBodyJsonapi) ContextValidate

ContextValidate validates this fetch issues per purl bad request body jsonapi based on context it is used

func (*FetchIssuesPerPurlBadRequestBodyJsonapi) MarshalBinary

func (o *FetchIssuesPerPurlBadRequestBodyJsonapi) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*FetchIssuesPerPurlBadRequestBodyJsonapi) UnmarshalBinary

func (o *FetchIssuesPerPurlBadRequestBodyJsonapi) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*FetchIssuesPerPurlBadRequestBodyJsonapi) Validate

Validate validates this fetch issues per purl bad request body jsonapi

type FetchIssuesPerPurlConflict

type FetchIssuesPerPurlConflict struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *FetchIssuesPerPurlConflictBody
}

FetchIssuesPerPurlConflict describes a response with status code 409, with default header values.

Conflict: The requested operation conflicts with the current state of the resource in some way.

func NewFetchIssuesPerPurlConflict

func NewFetchIssuesPerPurlConflict() *FetchIssuesPerPurlConflict

NewFetchIssuesPerPurlConflict creates a FetchIssuesPerPurlConflict with default headers values

func (*FetchIssuesPerPurlConflict) Code

func (o *FetchIssuesPerPurlConflict) Code() int

Code gets the status code for the fetch issues per purl conflict response

func (*FetchIssuesPerPurlConflict) Error

func (*FetchIssuesPerPurlConflict) GetPayload

func (*FetchIssuesPerPurlConflict) IsClientError

func (o *FetchIssuesPerPurlConflict) IsClientError() bool

IsClientError returns true when this fetch issues per purl conflict response has a 4xx status code

func (*FetchIssuesPerPurlConflict) IsCode

func (o *FetchIssuesPerPurlConflict) IsCode(code int) bool

IsCode returns true when this fetch issues per purl conflict response a status code equal to that given

func (*FetchIssuesPerPurlConflict) IsRedirect

func (o *FetchIssuesPerPurlConflict) IsRedirect() bool

IsRedirect returns true when this fetch issues per purl conflict response has a 3xx status code

func (*FetchIssuesPerPurlConflict) IsServerError

func (o *FetchIssuesPerPurlConflict) IsServerError() bool

IsServerError returns true when this fetch issues per purl conflict response has a 5xx status code

func (*FetchIssuesPerPurlConflict) IsSuccess

func (o *FetchIssuesPerPurlConflict) IsSuccess() bool

IsSuccess returns true when this fetch issues per purl conflict response has a 2xx status code

func (*FetchIssuesPerPurlConflict) String

func (o *FetchIssuesPerPurlConflict) String() string

type FetchIssuesPerPurlConflictBody

type FetchIssuesPerPurlConflictBody struct {

	// errors
	// Example: [{"detail":"Permission denied for this resource","status":"403"}]
	// Required: true
	// Min Items: 1
	Errors []*FetchIssuesPerPurlConflictBodyErrorsItems0 `json:"errors"`

	// jsonapi
	// Required: true
	Jsonapi *FetchIssuesPerPurlConflictBodyJsonapi `json:"jsonapi"`
}

FetchIssuesPerPurlConflictBody fetch issues per purl conflict body // Example: {"errors":[{"detail":"Permission denied for this resource","status":"403"}],"jsonapi":{"version":"1.0"}} swagger:model FetchIssuesPerPurlConflictBody

func (*FetchIssuesPerPurlConflictBody) ContextValidate

func (o *FetchIssuesPerPurlConflictBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this fetch issues per purl conflict body based on the context it is used

func (*FetchIssuesPerPurlConflictBody) MarshalBinary

func (o *FetchIssuesPerPurlConflictBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*FetchIssuesPerPurlConflictBody) UnmarshalBinary

func (o *FetchIssuesPerPurlConflictBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*FetchIssuesPerPurlConflictBody) Validate

func (o *FetchIssuesPerPurlConflictBody) Validate(formats strfmt.Registry) error

Validate validates this fetch issues per purl conflict body

type FetchIssuesPerPurlConflictBodyErrorsItems0

type FetchIssuesPerPurlConflictBodyErrorsItems0 struct {

	// An application-specific error code, expressed as a string value.
	// Example: entity-not-found
	Code string `json:"code,omitempty"`

	// A human-readable explanation specific to this occurrence of the problem.
	// Example: The request was missing these required fields: ...
	// Required: true
	Detail *string `json:"detail"`

	// A unique identifier for this particular occurrence of the problem.
	// Example: f16c31b5-6129-4571-add8-d589da9be524
	// Format: uuid
	ID strfmt.UUID `json:"id,omitempty"`

	// links
	Links *FetchIssuesPerPurlConflictBodyErrorsItems0Links `json:"links,omitempty"`

	// meta
	// Example: {"key":"value"}
	Meta interface{} `json:"meta,omitempty"`

	// source
	Source *FetchIssuesPerPurlConflictBodyErrorsItems0Source `json:"source,omitempty"`

	// The HTTP status code applicable to this problem, expressed as a string value.
	// Example: 400
	// Required: true
	// Pattern: ^[45]\d\d$
	Status *string `json:"status"`

	// A short, human-readable summary of the problem that SHOULD NOT change from occurrence to occurrence of the problem, except for purposes of localization.
	// Example: Bad request
	Title string `json:"title,omitempty"`
}

FetchIssuesPerPurlConflictBodyErrorsItems0 fetch issues per purl conflict body errors items0 // Example: {"detail":"Not Found","status":"404"} swagger:model FetchIssuesPerPurlConflictBodyErrorsItems0

func (*FetchIssuesPerPurlConflictBodyErrorsItems0) ContextValidate

ContextValidate validate this fetch issues per purl conflict body errors items0 based on the context it is used

func (*FetchIssuesPerPurlConflictBodyErrorsItems0) MarshalBinary

func (o *FetchIssuesPerPurlConflictBodyErrorsItems0) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*FetchIssuesPerPurlConflictBodyErrorsItems0) UnmarshalBinary

func (o *FetchIssuesPerPurlConflictBodyErrorsItems0) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*FetchIssuesPerPurlConflictBodyErrorsItems0) Validate

Validate validates this fetch issues per purl conflict body errors items0

type FetchIssuesPerPurlConflictBodyErrorsItems0Links struct {

	// about
	// Example: https://example.com/api/resource
	About interface{} `json:"about,omitempty"`
}

FetchIssuesPerPurlConflictBodyErrorsItems0Links A link that leads to further details about this particular occurrance of the problem. // Example: {"about":"https://example.com/about_this_error"} swagger:model FetchIssuesPerPurlConflictBodyErrorsItems0Links

func (*FetchIssuesPerPurlConflictBodyErrorsItems0Links) ContextValidate

ContextValidate validates this fetch issues per purl conflict body errors items0 links based on context it is used

func (*FetchIssuesPerPurlConflictBodyErrorsItems0Links) MarshalBinary

MarshalBinary interface implementation

func (*FetchIssuesPerPurlConflictBodyErrorsItems0Links) UnmarshalBinary

UnmarshalBinary interface implementation

func (*FetchIssuesPerPurlConflictBodyErrorsItems0Links) Validate

Validate validates this fetch issues per purl conflict body errors items0 links

type FetchIssuesPerPurlConflictBodyErrorsItems0Source

type FetchIssuesPerPurlConflictBodyErrorsItems0Source struct {

	// A string indicating which URI query parameter caused the error.
	// Example: param1
	Parameter string `json:"parameter,omitempty"`

	// A JSON Pointer [RFC6901] to the associated entity in the request document.
	// Example: /data/attributes
	Pointer string `json:"pointer,omitempty"`
}

FetchIssuesPerPurlConflictBodyErrorsItems0Source fetch issues per purl conflict body errors items0 source // Example: {"pointer":"/data/attributes"} swagger:model FetchIssuesPerPurlConflictBodyErrorsItems0Source

func (*FetchIssuesPerPurlConflictBodyErrorsItems0Source) ContextValidate

ContextValidate validates this fetch issues per purl conflict body errors items0 source based on context it is used

func (*FetchIssuesPerPurlConflictBodyErrorsItems0Source) MarshalBinary

MarshalBinary interface implementation

func (*FetchIssuesPerPurlConflictBodyErrorsItems0Source) UnmarshalBinary

UnmarshalBinary interface implementation

func (*FetchIssuesPerPurlConflictBodyErrorsItems0Source) Validate

Validate validates this fetch issues per purl conflict body errors items0 source

type FetchIssuesPerPurlConflictBodyJsonapi

type FetchIssuesPerPurlConflictBodyJsonapi struct {

	// Version of the JSON API specification this server supports.
	// Example: 1.0
	// Required: true
	// Pattern: ^(0|[1-9]\d*)\.(0|[1-9]\d*)$
	Version *string `json:"version"`
}

FetchIssuesPerPurlConflictBodyJsonapi fetch issues per purl conflict body jsonapi // Example: {"version":"1.0"} swagger:model FetchIssuesPerPurlConflictBodyJsonapi

func (*FetchIssuesPerPurlConflictBodyJsonapi) ContextValidate

func (o *FetchIssuesPerPurlConflictBodyJsonapi) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this fetch issues per purl conflict body jsonapi based on context it is used

func (*FetchIssuesPerPurlConflictBodyJsonapi) MarshalBinary

func (o *FetchIssuesPerPurlConflictBodyJsonapi) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*FetchIssuesPerPurlConflictBodyJsonapi) UnmarshalBinary

func (o *FetchIssuesPerPurlConflictBodyJsonapi) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*FetchIssuesPerPurlConflictBodyJsonapi) Validate

Validate validates this fetch issues per purl conflict body jsonapi

type FetchIssuesPerPurlForbidden

type FetchIssuesPerPurlForbidden struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *FetchIssuesPerPurlForbiddenBody
}

FetchIssuesPerPurlForbidden describes a response with status code 403, with default header values.

Forbidden: the request requires an authentication token with more or different permissions.

func NewFetchIssuesPerPurlForbidden

func NewFetchIssuesPerPurlForbidden() *FetchIssuesPerPurlForbidden

NewFetchIssuesPerPurlForbidden creates a FetchIssuesPerPurlForbidden with default headers values

func (*FetchIssuesPerPurlForbidden) Code

func (o *FetchIssuesPerPurlForbidden) Code() int

Code gets the status code for the fetch issues per purl forbidden response

func (*FetchIssuesPerPurlForbidden) Error

func (*FetchIssuesPerPurlForbidden) GetPayload

func (*FetchIssuesPerPurlForbidden) IsClientError

func (o *FetchIssuesPerPurlForbidden) IsClientError() bool

IsClientError returns true when this fetch issues per purl forbidden response has a 4xx status code

func (*FetchIssuesPerPurlForbidden) IsCode

func (o *FetchIssuesPerPurlForbidden) IsCode(code int) bool

IsCode returns true when this fetch issues per purl forbidden response a status code equal to that given

func (*FetchIssuesPerPurlForbidden) IsRedirect

func (o *FetchIssuesPerPurlForbidden) IsRedirect() bool

IsRedirect returns true when this fetch issues per purl forbidden response has a 3xx status code

func (*FetchIssuesPerPurlForbidden) IsServerError

func (o *FetchIssuesPerPurlForbidden) IsServerError() bool

IsServerError returns true when this fetch issues per purl forbidden response has a 5xx status code

func (*FetchIssuesPerPurlForbidden) IsSuccess

func (o *FetchIssuesPerPurlForbidden) IsSuccess() bool

IsSuccess returns true when this fetch issues per purl forbidden response has a 2xx status code

func (*FetchIssuesPerPurlForbidden) String

func (o *FetchIssuesPerPurlForbidden) String() string

type FetchIssuesPerPurlForbiddenBody

type FetchIssuesPerPurlForbiddenBody struct {

	// errors
	// Example: [{"detail":"Permission denied for this resource","status":"403"}]
	// Required: true
	// Min Items: 1
	Errors []*FetchIssuesPerPurlForbiddenBodyErrorsItems0 `json:"errors"`

	// jsonapi
	// Required: true
	Jsonapi *FetchIssuesPerPurlForbiddenBodyJsonapi `json:"jsonapi"`
}

FetchIssuesPerPurlForbiddenBody fetch issues per purl forbidden body // Example: {"errors":[{"detail":"Permission denied for this resource","status":"403"}],"jsonapi":{"version":"1.0"}} swagger:model FetchIssuesPerPurlForbiddenBody

func (*FetchIssuesPerPurlForbiddenBody) ContextValidate

func (o *FetchIssuesPerPurlForbiddenBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this fetch issues per purl forbidden body based on the context it is used

func (*FetchIssuesPerPurlForbiddenBody) MarshalBinary

func (o *FetchIssuesPerPurlForbiddenBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*FetchIssuesPerPurlForbiddenBody) UnmarshalBinary

func (o *FetchIssuesPerPurlForbiddenBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*FetchIssuesPerPurlForbiddenBody) Validate

Validate validates this fetch issues per purl forbidden body

type FetchIssuesPerPurlForbiddenBodyErrorsItems0

type FetchIssuesPerPurlForbiddenBodyErrorsItems0 struct {

	// An application-specific error code, expressed as a string value.
	// Example: entity-not-found
	Code string `json:"code,omitempty"`

	// A human-readable explanation specific to this occurrence of the problem.
	// Example: The request was missing these required fields: ...
	// Required: true
	Detail *string `json:"detail"`

	// A unique identifier for this particular occurrence of the problem.
	// Example: f16c31b5-6129-4571-add8-d589da9be524
	// Format: uuid
	ID strfmt.UUID `json:"id,omitempty"`

	// links
	Links *FetchIssuesPerPurlForbiddenBodyErrorsItems0Links `json:"links,omitempty"`

	// meta
	// Example: {"key":"value"}
	Meta interface{} `json:"meta,omitempty"`

	// source
	Source *FetchIssuesPerPurlForbiddenBodyErrorsItems0Source `json:"source,omitempty"`

	// The HTTP status code applicable to this problem, expressed as a string value.
	// Example: 400
	// Required: true
	// Pattern: ^[45]\d\d$
	Status *string `json:"status"`

	// A short, human-readable summary of the problem that SHOULD NOT change from occurrence to occurrence of the problem, except for purposes of localization.
	// Example: Bad request
	Title string `json:"title,omitempty"`
}

FetchIssuesPerPurlForbiddenBodyErrorsItems0 fetch issues per purl forbidden body errors items0 // Example: {"detail":"Not Found","status":"404"} swagger:model FetchIssuesPerPurlForbiddenBodyErrorsItems0

func (*FetchIssuesPerPurlForbiddenBodyErrorsItems0) ContextValidate

ContextValidate validate this fetch issues per purl forbidden body errors items0 based on the context it is used

func (*FetchIssuesPerPurlForbiddenBodyErrorsItems0) MarshalBinary

func (o *FetchIssuesPerPurlForbiddenBodyErrorsItems0) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*FetchIssuesPerPurlForbiddenBodyErrorsItems0) UnmarshalBinary

func (o *FetchIssuesPerPurlForbiddenBodyErrorsItems0) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*FetchIssuesPerPurlForbiddenBodyErrorsItems0) Validate

Validate validates this fetch issues per purl forbidden body errors items0

type FetchIssuesPerPurlForbiddenBodyErrorsItems0Links struct {

	// about
	// Example: https://example.com/api/resource
	About interface{} `json:"about,omitempty"`
}

FetchIssuesPerPurlForbiddenBodyErrorsItems0Links A link that leads to further details about this particular occurrance of the problem. // Example: {"about":"https://example.com/about_this_error"} swagger:model FetchIssuesPerPurlForbiddenBodyErrorsItems0Links

func (*FetchIssuesPerPurlForbiddenBodyErrorsItems0Links) ContextValidate

ContextValidate validates this fetch issues per purl forbidden body errors items0 links based on context it is used

func (*FetchIssuesPerPurlForbiddenBodyErrorsItems0Links) MarshalBinary

MarshalBinary interface implementation

func (*FetchIssuesPerPurlForbiddenBodyErrorsItems0Links) UnmarshalBinary

UnmarshalBinary interface implementation

func (*FetchIssuesPerPurlForbiddenBodyErrorsItems0Links) Validate

Validate validates this fetch issues per purl forbidden body errors items0 links

type FetchIssuesPerPurlForbiddenBodyErrorsItems0Source

type FetchIssuesPerPurlForbiddenBodyErrorsItems0Source struct {

	// A string indicating which URI query parameter caused the error.
	// Example: param1
	Parameter string `json:"parameter,omitempty"`

	// A JSON Pointer [RFC6901] to the associated entity in the request document.
	// Example: /data/attributes
	Pointer string `json:"pointer,omitempty"`
}

FetchIssuesPerPurlForbiddenBodyErrorsItems0Source fetch issues per purl forbidden body errors items0 source // Example: {"pointer":"/data/attributes"} swagger:model FetchIssuesPerPurlForbiddenBodyErrorsItems0Source

func (*FetchIssuesPerPurlForbiddenBodyErrorsItems0Source) ContextValidate

ContextValidate validates this fetch issues per purl forbidden body errors items0 source based on context it is used

func (*FetchIssuesPerPurlForbiddenBodyErrorsItems0Source) MarshalBinary

MarshalBinary interface implementation

func (*FetchIssuesPerPurlForbiddenBodyErrorsItems0Source) UnmarshalBinary

UnmarshalBinary interface implementation

func (*FetchIssuesPerPurlForbiddenBodyErrorsItems0Source) Validate

Validate validates this fetch issues per purl forbidden body errors items0 source

type FetchIssuesPerPurlForbiddenBodyJsonapi

type FetchIssuesPerPurlForbiddenBodyJsonapi struct {

	// Version of the JSON API specification this server supports.
	// Example: 1.0
	// Required: true
	// Pattern: ^(0|[1-9]\d*)\.(0|[1-9]\d*)$
	Version *string `json:"version"`
}

FetchIssuesPerPurlForbiddenBodyJsonapi fetch issues per purl forbidden body jsonapi // Example: {"version":"1.0"} swagger:model FetchIssuesPerPurlForbiddenBodyJsonapi

func (*FetchIssuesPerPurlForbiddenBodyJsonapi) ContextValidate

ContextValidate validates this fetch issues per purl forbidden body jsonapi based on context it is used

func (*FetchIssuesPerPurlForbiddenBodyJsonapi) MarshalBinary

func (o *FetchIssuesPerPurlForbiddenBodyJsonapi) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*FetchIssuesPerPurlForbiddenBodyJsonapi) UnmarshalBinary

func (o *FetchIssuesPerPurlForbiddenBodyJsonapi) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*FetchIssuesPerPurlForbiddenBodyJsonapi) Validate

Validate validates this fetch issues per purl forbidden body jsonapi

type FetchIssuesPerPurlInternalServerError

type FetchIssuesPerPurlInternalServerError struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *FetchIssuesPerPurlInternalServerErrorBody
}

FetchIssuesPerPurlInternalServerError describes a response with status code 500, with default header values.

Internal Server Error: An error was encountered while attempting to process the request.

func NewFetchIssuesPerPurlInternalServerError

func NewFetchIssuesPerPurlInternalServerError() *FetchIssuesPerPurlInternalServerError

NewFetchIssuesPerPurlInternalServerError creates a FetchIssuesPerPurlInternalServerError with default headers values

func (*FetchIssuesPerPurlInternalServerError) Code

Code gets the status code for the fetch issues per purl internal server error response

func (*FetchIssuesPerPurlInternalServerError) Error

func (*FetchIssuesPerPurlInternalServerError) GetPayload

func (*FetchIssuesPerPurlInternalServerError) IsClientError

func (o *FetchIssuesPerPurlInternalServerError) IsClientError() bool

IsClientError returns true when this fetch issues per purl internal server error response has a 4xx status code

func (*FetchIssuesPerPurlInternalServerError) IsCode

IsCode returns true when this fetch issues per purl internal server error response a status code equal to that given

func (*FetchIssuesPerPurlInternalServerError) IsRedirect

IsRedirect returns true when this fetch issues per purl internal server error response has a 3xx status code

func (*FetchIssuesPerPurlInternalServerError) IsServerError

func (o *FetchIssuesPerPurlInternalServerError) IsServerError() bool

IsServerError returns true when this fetch issues per purl internal server error response has a 5xx status code

func (*FetchIssuesPerPurlInternalServerError) IsSuccess

IsSuccess returns true when this fetch issues per purl internal server error response has a 2xx status code

func (*FetchIssuesPerPurlInternalServerError) String

type FetchIssuesPerPurlInternalServerErrorBody

type FetchIssuesPerPurlInternalServerErrorBody struct {

	// errors
	// Example: [{"detail":"Permission denied for this resource","status":"403"}]
	// Required: true
	// Min Items: 1
	Errors []*FetchIssuesPerPurlInternalServerErrorBodyErrorsItems0 `json:"errors"`

	// jsonapi
	// Required: true
	Jsonapi *FetchIssuesPerPurlInternalServerErrorBodyJsonapi `json:"jsonapi"`
}

FetchIssuesPerPurlInternalServerErrorBody fetch issues per purl internal server error body // Example: {"errors":[{"detail":"Permission denied for this resource","status":"403"}],"jsonapi":{"version":"1.0"}} swagger:model FetchIssuesPerPurlInternalServerErrorBody

func (*FetchIssuesPerPurlInternalServerErrorBody) ContextValidate

ContextValidate validate this fetch issues per purl internal server error body based on the context it is used

func (*FetchIssuesPerPurlInternalServerErrorBody) MarshalBinary

func (o *FetchIssuesPerPurlInternalServerErrorBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*FetchIssuesPerPurlInternalServerErrorBody) UnmarshalBinary

func (o *FetchIssuesPerPurlInternalServerErrorBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*FetchIssuesPerPurlInternalServerErrorBody) Validate

Validate validates this fetch issues per purl internal server error body

type FetchIssuesPerPurlInternalServerErrorBodyErrorsItems0

type FetchIssuesPerPurlInternalServerErrorBodyErrorsItems0 struct {

	// An application-specific error code, expressed as a string value.
	// Example: entity-not-found
	Code string `json:"code,omitempty"`

	// A human-readable explanation specific to this occurrence of the problem.
	// Example: The request was missing these required fields: ...
	// Required: true
	Detail *string `json:"detail"`

	// A unique identifier for this particular occurrence of the problem.
	// Example: f16c31b5-6129-4571-add8-d589da9be524
	// Format: uuid
	ID strfmt.UUID `json:"id,omitempty"`

	// links
	Links *FetchIssuesPerPurlInternalServerErrorBodyErrorsItems0Links `json:"links,omitempty"`

	// meta
	// Example: {"key":"value"}
	Meta interface{} `json:"meta,omitempty"`

	// source
	Source *FetchIssuesPerPurlInternalServerErrorBodyErrorsItems0Source `json:"source,omitempty"`

	// The HTTP status code applicable to this problem, expressed as a string value.
	// Example: 400
	// Required: true
	// Pattern: ^[45]\d\d$
	Status *string `json:"status"`

	// A short, human-readable summary of the problem that SHOULD NOT change from occurrence to occurrence of the problem, except for purposes of localization.
	// Example: Bad request
	Title string `json:"title,omitempty"`
}

FetchIssuesPerPurlInternalServerErrorBodyErrorsItems0 fetch issues per purl internal server error body errors items0 // Example: {"detail":"Not Found","status":"404"} swagger:model FetchIssuesPerPurlInternalServerErrorBodyErrorsItems0

func (*FetchIssuesPerPurlInternalServerErrorBodyErrorsItems0) ContextValidate

ContextValidate validate this fetch issues per purl internal server error body errors items0 based on the context it is used

func (*FetchIssuesPerPurlInternalServerErrorBodyErrorsItems0) MarshalBinary

MarshalBinary interface implementation

func (*FetchIssuesPerPurlInternalServerErrorBodyErrorsItems0) UnmarshalBinary

UnmarshalBinary interface implementation

func (*FetchIssuesPerPurlInternalServerErrorBodyErrorsItems0) Validate

Validate validates this fetch issues per purl internal server error body errors items0

type FetchIssuesPerPurlInternalServerErrorBodyErrorsItems0Links struct {

	// about
	// Example: https://example.com/api/resource
	About interface{} `json:"about,omitempty"`
}

FetchIssuesPerPurlInternalServerErrorBodyErrorsItems0Links A link that leads to further details about this particular occurrance of the problem. // Example: {"about":"https://example.com/about_this_error"} swagger:model FetchIssuesPerPurlInternalServerErrorBodyErrorsItems0Links

func (*FetchIssuesPerPurlInternalServerErrorBodyErrorsItems0Links) ContextValidate

ContextValidate validates this fetch issues per purl internal server error body errors items0 links based on context it is used

func (*FetchIssuesPerPurlInternalServerErrorBodyErrorsItems0Links) MarshalBinary

MarshalBinary interface implementation

func (*FetchIssuesPerPurlInternalServerErrorBodyErrorsItems0Links) UnmarshalBinary

UnmarshalBinary interface implementation

func (*FetchIssuesPerPurlInternalServerErrorBodyErrorsItems0Links) Validate

Validate validates this fetch issues per purl internal server error body errors items0 links

type FetchIssuesPerPurlInternalServerErrorBodyErrorsItems0Source

type FetchIssuesPerPurlInternalServerErrorBodyErrorsItems0Source struct {

	// A string indicating which URI query parameter caused the error.
	// Example: param1
	Parameter string `json:"parameter,omitempty"`

	// A JSON Pointer [RFC6901] to the associated entity in the request document.
	// Example: /data/attributes
	Pointer string `json:"pointer,omitempty"`
}

FetchIssuesPerPurlInternalServerErrorBodyErrorsItems0Source fetch issues per purl internal server error body errors items0 source // Example: {"pointer":"/data/attributes"} swagger:model FetchIssuesPerPurlInternalServerErrorBodyErrorsItems0Source

func (*FetchIssuesPerPurlInternalServerErrorBodyErrorsItems0Source) ContextValidate

ContextValidate validates this fetch issues per purl internal server error body errors items0 source based on context it is used

func (*FetchIssuesPerPurlInternalServerErrorBodyErrorsItems0Source) MarshalBinary

MarshalBinary interface implementation

func (*FetchIssuesPerPurlInternalServerErrorBodyErrorsItems0Source) UnmarshalBinary

UnmarshalBinary interface implementation

func (*FetchIssuesPerPurlInternalServerErrorBodyErrorsItems0Source) Validate

Validate validates this fetch issues per purl internal server error body errors items0 source

type FetchIssuesPerPurlInternalServerErrorBodyJsonapi

type FetchIssuesPerPurlInternalServerErrorBodyJsonapi struct {

	// Version of the JSON API specification this server supports.
	// Example: 1.0
	// Required: true
	// Pattern: ^(0|[1-9]\d*)\.(0|[1-9]\d*)$
	Version *string `json:"version"`
}

FetchIssuesPerPurlInternalServerErrorBodyJsonapi fetch issues per purl internal server error body jsonapi // Example: {"version":"1.0"} swagger:model FetchIssuesPerPurlInternalServerErrorBodyJsonapi

func (*FetchIssuesPerPurlInternalServerErrorBodyJsonapi) ContextValidate

ContextValidate validates this fetch issues per purl internal server error body jsonapi based on context it is used

func (*FetchIssuesPerPurlInternalServerErrorBodyJsonapi) MarshalBinary

MarshalBinary interface implementation

func (*FetchIssuesPerPurlInternalServerErrorBodyJsonapi) UnmarshalBinary

UnmarshalBinary interface implementation

func (*FetchIssuesPerPurlInternalServerErrorBodyJsonapi) Validate

Validate validates this fetch issues per purl internal server error body jsonapi

type FetchIssuesPerPurlNotFound

type FetchIssuesPerPurlNotFound struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *FetchIssuesPerPurlNotFoundBody
}

FetchIssuesPerPurlNotFound describes a response with status code 404, with default header values.

Not Found: The resource being operated on could not be found.

func NewFetchIssuesPerPurlNotFound

func NewFetchIssuesPerPurlNotFound() *FetchIssuesPerPurlNotFound

NewFetchIssuesPerPurlNotFound creates a FetchIssuesPerPurlNotFound with default headers values

func (*FetchIssuesPerPurlNotFound) Code

func (o *FetchIssuesPerPurlNotFound) Code() int

Code gets the status code for the fetch issues per purl not found response

func (*FetchIssuesPerPurlNotFound) Error

func (*FetchIssuesPerPurlNotFound) GetPayload

func (*FetchIssuesPerPurlNotFound) IsClientError

func (o *FetchIssuesPerPurlNotFound) IsClientError() bool

IsClientError returns true when this fetch issues per purl not found response has a 4xx status code

func (*FetchIssuesPerPurlNotFound) IsCode

func (o *FetchIssuesPerPurlNotFound) IsCode(code int) bool

IsCode returns true when this fetch issues per purl not found response a status code equal to that given

func (*FetchIssuesPerPurlNotFound) IsRedirect

func (o *FetchIssuesPerPurlNotFound) IsRedirect() bool

IsRedirect returns true when this fetch issues per purl not found response has a 3xx status code

func (*FetchIssuesPerPurlNotFound) IsServerError

func (o *FetchIssuesPerPurlNotFound) IsServerError() bool

IsServerError returns true when this fetch issues per purl not found response has a 5xx status code

func (*FetchIssuesPerPurlNotFound) IsSuccess

func (o *FetchIssuesPerPurlNotFound) IsSuccess() bool

IsSuccess returns true when this fetch issues per purl not found response has a 2xx status code

func (*FetchIssuesPerPurlNotFound) String

func (o *FetchIssuesPerPurlNotFound) String() string

type FetchIssuesPerPurlNotFoundBody

type FetchIssuesPerPurlNotFoundBody struct {

	// errors
	// Example: [{"detail":"Permission denied for this resource","status":"403"}]
	// Required: true
	// Min Items: 1
	Errors []*FetchIssuesPerPurlNotFoundBodyErrorsItems0 `json:"errors"`

	// jsonapi
	// Required: true
	Jsonapi *FetchIssuesPerPurlNotFoundBodyJsonapi `json:"jsonapi"`
}

FetchIssuesPerPurlNotFoundBody fetch issues per purl not found body // Example: {"errors":[{"detail":"Permission denied for this resource","status":"403"}],"jsonapi":{"version":"1.0"}} swagger:model FetchIssuesPerPurlNotFoundBody

func (*FetchIssuesPerPurlNotFoundBody) ContextValidate

func (o *FetchIssuesPerPurlNotFoundBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this fetch issues per purl not found body based on the context it is used

func (*FetchIssuesPerPurlNotFoundBody) MarshalBinary

func (o *FetchIssuesPerPurlNotFoundBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*FetchIssuesPerPurlNotFoundBody) UnmarshalBinary

func (o *FetchIssuesPerPurlNotFoundBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*FetchIssuesPerPurlNotFoundBody) Validate

func (o *FetchIssuesPerPurlNotFoundBody) Validate(formats strfmt.Registry) error

Validate validates this fetch issues per purl not found body

type FetchIssuesPerPurlNotFoundBodyErrorsItems0

type FetchIssuesPerPurlNotFoundBodyErrorsItems0 struct {

	// An application-specific error code, expressed as a string value.
	// Example: entity-not-found
	Code string `json:"code,omitempty"`

	// A human-readable explanation specific to this occurrence of the problem.
	// Example: The request was missing these required fields: ...
	// Required: true
	Detail *string `json:"detail"`

	// A unique identifier for this particular occurrence of the problem.
	// Example: f16c31b5-6129-4571-add8-d589da9be524
	// Format: uuid
	ID strfmt.UUID `json:"id,omitempty"`

	// links
	Links *FetchIssuesPerPurlNotFoundBodyErrorsItems0Links `json:"links,omitempty"`

	// meta
	// Example: {"key":"value"}
	Meta interface{} `json:"meta,omitempty"`

	// source
	Source *FetchIssuesPerPurlNotFoundBodyErrorsItems0Source `json:"source,omitempty"`

	// The HTTP status code applicable to this problem, expressed as a string value.
	// Example: 400
	// Required: true
	// Pattern: ^[45]\d\d$
	Status *string `json:"status"`

	// A short, human-readable summary of the problem that SHOULD NOT change from occurrence to occurrence of the problem, except for purposes of localization.
	// Example: Bad request
	Title string `json:"title,omitempty"`
}

FetchIssuesPerPurlNotFoundBodyErrorsItems0 fetch issues per purl not found body errors items0 // Example: {"detail":"Not Found","status":"404"} swagger:model FetchIssuesPerPurlNotFoundBodyErrorsItems0

func (*FetchIssuesPerPurlNotFoundBodyErrorsItems0) ContextValidate

ContextValidate validate this fetch issues per purl not found body errors items0 based on the context it is used

func (*FetchIssuesPerPurlNotFoundBodyErrorsItems0) MarshalBinary

func (o *FetchIssuesPerPurlNotFoundBodyErrorsItems0) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*FetchIssuesPerPurlNotFoundBodyErrorsItems0) UnmarshalBinary

func (o *FetchIssuesPerPurlNotFoundBodyErrorsItems0) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*FetchIssuesPerPurlNotFoundBodyErrorsItems0) Validate

Validate validates this fetch issues per purl not found body errors items0

type FetchIssuesPerPurlNotFoundBodyErrorsItems0Links struct {

	// about
	// Example: https://example.com/api/resource
	About interface{} `json:"about,omitempty"`
}

FetchIssuesPerPurlNotFoundBodyErrorsItems0Links A link that leads to further details about this particular occurrance of the problem. // Example: {"about":"https://example.com/about_this_error"} swagger:model FetchIssuesPerPurlNotFoundBodyErrorsItems0Links

func (*FetchIssuesPerPurlNotFoundBodyErrorsItems0Links) ContextValidate

ContextValidate validates this fetch issues per purl not found body errors items0 links based on context it is used

func (*FetchIssuesPerPurlNotFoundBodyErrorsItems0Links) MarshalBinary

MarshalBinary interface implementation

func (*FetchIssuesPerPurlNotFoundBodyErrorsItems0Links) UnmarshalBinary

UnmarshalBinary interface implementation

func (*FetchIssuesPerPurlNotFoundBodyErrorsItems0Links) Validate

Validate validates this fetch issues per purl not found body errors items0 links

type FetchIssuesPerPurlNotFoundBodyErrorsItems0Source

type FetchIssuesPerPurlNotFoundBodyErrorsItems0Source struct {

	// A string indicating which URI query parameter caused the error.
	// Example: param1
	Parameter string `json:"parameter,omitempty"`

	// A JSON Pointer [RFC6901] to the associated entity in the request document.
	// Example: /data/attributes
	Pointer string `json:"pointer,omitempty"`
}

FetchIssuesPerPurlNotFoundBodyErrorsItems0Source fetch issues per purl not found body errors items0 source // Example: {"pointer":"/data/attributes"} swagger:model FetchIssuesPerPurlNotFoundBodyErrorsItems0Source

func (*FetchIssuesPerPurlNotFoundBodyErrorsItems0Source) ContextValidate

ContextValidate validates this fetch issues per purl not found body errors items0 source based on context it is used

func (*FetchIssuesPerPurlNotFoundBodyErrorsItems0Source) MarshalBinary

MarshalBinary interface implementation

func (*FetchIssuesPerPurlNotFoundBodyErrorsItems0Source) UnmarshalBinary

UnmarshalBinary interface implementation

func (*FetchIssuesPerPurlNotFoundBodyErrorsItems0Source) Validate

Validate validates this fetch issues per purl not found body errors items0 source

type FetchIssuesPerPurlNotFoundBodyJsonapi

type FetchIssuesPerPurlNotFoundBodyJsonapi struct {

	// Version of the JSON API specification this server supports.
	// Example: 1.0
	// Required: true
	// Pattern: ^(0|[1-9]\d*)\.(0|[1-9]\d*)$
	Version *string `json:"version"`
}

FetchIssuesPerPurlNotFoundBodyJsonapi fetch issues per purl not found body jsonapi // Example: {"version":"1.0"} swagger:model FetchIssuesPerPurlNotFoundBodyJsonapi

func (*FetchIssuesPerPurlNotFoundBodyJsonapi) ContextValidate

func (o *FetchIssuesPerPurlNotFoundBodyJsonapi) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this fetch issues per purl not found body jsonapi based on context it is used

func (*FetchIssuesPerPurlNotFoundBodyJsonapi) MarshalBinary

func (o *FetchIssuesPerPurlNotFoundBodyJsonapi) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*FetchIssuesPerPurlNotFoundBodyJsonapi) UnmarshalBinary

func (o *FetchIssuesPerPurlNotFoundBodyJsonapi) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*FetchIssuesPerPurlNotFoundBodyJsonapi) Validate

Validate validates this fetch issues per purl not found body jsonapi

type FetchIssuesPerPurlOK

type FetchIssuesPerPurlOK struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *models.IssuesResponse
}

FetchIssuesPerPurlOK describes a response with status code 200, with default header values.

Returns an array of issues

func NewFetchIssuesPerPurlOK

func NewFetchIssuesPerPurlOK() *FetchIssuesPerPurlOK

NewFetchIssuesPerPurlOK creates a FetchIssuesPerPurlOK with default headers values

func (*FetchIssuesPerPurlOK) Code

func (o *FetchIssuesPerPurlOK) Code() int

Code gets the status code for the fetch issues per purl o k response

func (*FetchIssuesPerPurlOK) Error

func (o *FetchIssuesPerPurlOK) Error() string

func (*FetchIssuesPerPurlOK) GetPayload

func (o *FetchIssuesPerPurlOK) GetPayload() *models.IssuesResponse

func (*FetchIssuesPerPurlOK) IsClientError

func (o *FetchIssuesPerPurlOK) IsClientError() bool

IsClientError returns true when this fetch issues per purl o k response has a 4xx status code

func (*FetchIssuesPerPurlOK) IsCode

func (o *FetchIssuesPerPurlOK) IsCode(code int) bool

IsCode returns true when this fetch issues per purl o k response a status code equal to that given

func (*FetchIssuesPerPurlOK) IsRedirect

func (o *FetchIssuesPerPurlOK) IsRedirect() bool

IsRedirect returns true when this fetch issues per purl o k response has a 3xx status code

func (*FetchIssuesPerPurlOK) IsServerError

func (o *FetchIssuesPerPurlOK) IsServerError() bool

IsServerError returns true when this fetch issues per purl o k response has a 5xx status code

func (*FetchIssuesPerPurlOK) IsSuccess

func (o *FetchIssuesPerPurlOK) IsSuccess() bool

IsSuccess returns true when this fetch issues per purl o k response has a 2xx status code

func (*FetchIssuesPerPurlOK) String

func (o *FetchIssuesPerPurlOK) String() string

type FetchIssuesPerPurlParams

type FetchIssuesPerPurlParams struct {

	/* Limit.

	   Specify the number of results to return. Must be greater than 0 and less than 1000. Default is 1000.
	*/
	Limit *float64

	/* Offset.

	   Specify the number of results to skip before returning results. Must be greater than or equal to 0. Default is 0.
	*/
	Offset *float64

	/* OrgID.

	   Unique identifier for an organization

	   Format: uuid
	*/
	OrgID strfmt.UUID

	/* Purl.

	   A URI-encoded Package URL (purl). Supported purl types are apk, cargo, cocoapods, composer, deb, gem, generic, golang, hex, maven, npm, nuget, pub, pypi, rpm, and swift. A version for the package is also required.
	*/
	Purl string

	/* Version.

	   The requested version of the endpoint to process the request
	*/
	Version string

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

FetchIssuesPerPurlParams contains all the parameters to send to the API endpoint

for the fetch issues per purl operation.

Typically these are written to a http.Request.

func NewFetchIssuesPerPurlParams

func NewFetchIssuesPerPurlParams() *FetchIssuesPerPurlParams

NewFetchIssuesPerPurlParams creates a new FetchIssuesPerPurlParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewFetchIssuesPerPurlParamsWithContext

func NewFetchIssuesPerPurlParamsWithContext(ctx context.Context) *FetchIssuesPerPurlParams

NewFetchIssuesPerPurlParamsWithContext creates a new FetchIssuesPerPurlParams object with the ability to set a context for a request.

func NewFetchIssuesPerPurlParamsWithHTTPClient

func NewFetchIssuesPerPurlParamsWithHTTPClient(client *http.Client) *FetchIssuesPerPurlParams

NewFetchIssuesPerPurlParamsWithHTTPClient creates a new FetchIssuesPerPurlParams object with the ability to set a custom HTTPClient for a request.

func NewFetchIssuesPerPurlParamsWithTimeout

func NewFetchIssuesPerPurlParamsWithTimeout(timeout time.Duration) *FetchIssuesPerPurlParams

NewFetchIssuesPerPurlParamsWithTimeout creates a new FetchIssuesPerPurlParams object with the ability to set a timeout on a request.

func (*FetchIssuesPerPurlParams) SetContext

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

SetContext adds the context to the fetch issues per purl params

func (*FetchIssuesPerPurlParams) SetDefaults

func (o *FetchIssuesPerPurlParams) SetDefaults()

SetDefaults hydrates default values in the fetch issues per purl params (not the query body).

All values with no default are reset to their zero value.

func (*FetchIssuesPerPurlParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the fetch issues per purl params

func (*FetchIssuesPerPurlParams) SetLimit

func (o *FetchIssuesPerPurlParams) SetLimit(limit *float64)

SetLimit adds the limit to the fetch issues per purl params

func (*FetchIssuesPerPurlParams) SetOffset

func (o *FetchIssuesPerPurlParams) SetOffset(offset *float64)

SetOffset adds the offset to the fetch issues per purl params

func (*FetchIssuesPerPurlParams) SetOrgID

func (o *FetchIssuesPerPurlParams) SetOrgID(orgID strfmt.UUID)

SetOrgID adds the orgId to the fetch issues per purl params

func (*FetchIssuesPerPurlParams) SetPurl

func (o *FetchIssuesPerPurlParams) SetPurl(purl string)

SetPurl adds the purl to the fetch issues per purl params

func (*FetchIssuesPerPurlParams) SetTimeout

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

SetTimeout adds the timeout to the fetch issues per purl params

func (*FetchIssuesPerPurlParams) SetVersion

func (o *FetchIssuesPerPurlParams) SetVersion(version string)

SetVersion adds the version to the fetch issues per purl params

func (*FetchIssuesPerPurlParams) WithContext

WithContext adds the context to the fetch issues per purl params

func (*FetchIssuesPerPurlParams) WithDefaults

WithDefaults hydrates default values in the fetch issues per purl params (not the query body).

All values with no default are reset to their zero value.

func (*FetchIssuesPerPurlParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the fetch issues per purl params

func (*FetchIssuesPerPurlParams) WithLimit

WithLimit adds the limit to the fetch issues per purl params

func (*FetchIssuesPerPurlParams) WithOffset

WithOffset adds the offset to the fetch issues per purl params

func (*FetchIssuesPerPurlParams) WithOrgID

WithOrgID adds the orgID to the fetch issues per purl params

func (*FetchIssuesPerPurlParams) WithPurl

WithPurl adds the purl to the fetch issues per purl params

func (*FetchIssuesPerPurlParams) WithTimeout

WithTimeout adds the timeout to the fetch issues per purl params

func (*FetchIssuesPerPurlParams) WithVersion

func (o *FetchIssuesPerPurlParams) WithVersion(version string) *FetchIssuesPerPurlParams

WithVersion adds the version to the fetch issues per purl params

func (*FetchIssuesPerPurlParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type FetchIssuesPerPurlReader

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

FetchIssuesPerPurlReader is a Reader for the FetchIssuesPerPurl structure.

func (*FetchIssuesPerPurlReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type FetchIssuesPerPurlUnauthorized

type FetchIssuesPerPurlUnauthorized struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *FetchIssuesPerPurlUnauthorizedBody
}

FetchIssuesPerPurlUnauthorized describes a response with status code 401, with default header values.

Unauthorized: the request requires an authentication token.

func NewFetchIssuesPerPurlUnauthorized

func NewFetchIssuesPerPurlUnauthorized() *FetchIssuesPerPurlUnauthorized

NewFetchIssuesPerPurlUnauthorized creates a FetchIssuesPerPurlUnauthorized with default headers values

func (*FetchIssuesPerPurlUnauthorized) Code

Code gets the status code for the fetch issues per purl unauthorized response

func (*FetchIssuesPerPurlUnauthorized) Error

func (*FetchIssuesPerPurlUnauthorized) GetPayload

func (*FetchIssuesPerPurlUnauthorized) IsClientError

func (o *FetchIssuesPerPurlUnauthorized) IsClientError() bool

IsClientError returns true when this fetch issues per purl unauthorized response has a 4xx status code

func (*FetchIssuesPerPurlUnauthorized) IsCode

func (o *FetchIssuesPerPurlUnauthorized) IsCode(code int) bool

IsCode returns true when this fetch issues per purl unauthorized response a status code equal to that given

func (*FetchIssuesPerPurlUnauthorized) IsRedirect

func (o *FetchIssuesPerPurlUnauthorized) IsRedirect() bool

IsRedirect returns true when this fetch issues per purl unauthorized response has a 3xx status code

func (*FetchIssuesPerPurlUnauthorized) IsServerError

func (o *FetchIssuesPerPurlUnauthorized) IsServerError() bool

IsServerError returns true when this fetch issues per purl unauthorized response has a 5xx status code

func (*FetchIssuesPerPurlUnauthorized) IsSuccess

func (o *FetchIssuesPerPurlUnauthorized) IsSuccess() bool

IsSuccess returns true when this fetch issues per purl unauthorized response has a 2xx status code

func (*FetchIssuesPerPurlUnauthorized) String

type FetchIssuesPerPurlUnauthorizedBody

type FetchIssuesPerPurlUnauthorizedBody struct {

	// errors
	// Example: [{"detail":"Permission denied for this resource","status":"403"}]
	// Required: true
	// Min Items: 1
	Errors []*FetchIssuesPerPurlUnauthorizedBodyErrorsItems0 `json:"errors"`

	// jsonapi
	// Required: true
	Jsonapi *FetchIssuesPerPurlUnauthorizedBodyJsonapi `json:"jsonapi"`
}

FetchIssuesPerPurlUnauthorizedBody fetch issues per purl unauthorized body // Example: {"errors":[{"detail":"Permission denied for this resource","status":"403"}],"jsonapi":{"version":"1.0"}} swagger:model FetchIssuesPerPurlUnauthorizedBody

func (*FetchIssuesPerPurlUnauthorizedBody) ContextValidate

func (o *FetchIssuesPerPurlUnauthorizedBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this fetch issues per purl unauthorized body based on the context it is used

func (*FetchIssuesPerPurlUnauthorizedBody) MarshalBinary

func (o *FetchIssuesPerPurlUnauthorizedBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*FetchIssuesPerPurlUnauthorizedBody) UnmarshalBinary

func (o *FetchIssuesPerPurlUnauthorizedBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*FetchIssuesPerPurlUnauthorizedBody) Validate

Validate validates this fetch issues per purl unauthorized body

type FetchIssuesPerPurlUnauthorizedBodyErrorsItems0

type FetchIssuesPerPurlUnauthorizedBodyErrorsItems0 struct {

	// An application-specific error code, expressed as a string value.
	// Example: entity-not-found
	Code string `json:"code,omitempty"`

	// A human-readable explanation specific to this occurrence of the problem.
	// Example: The request was missing these required fields: ...
	// Required: true
	Detail *string `json:"detail"`

	// A unique identifier for this particular occurrence of the problem.
	// Example: f16c31b5-6129-4571-add8-d589da9be524
	// Format: uuid
	ID strfmt.UUID `json:"id,omitempty"`

	// links
	Links *FetchIssuesPerPurlUnauthorizedBodyErrorsItems0Links `json:"links,omitempty"`

	// meta
	// Example: {"key":"value"}
	Meta interface{} `json:"meta,omitempty"`

	// source
	Source *FetchIssuesPerPurlUnauthorizedBodyErrorsItems0Source `json:"source,omitempty"`

	// The HTTP status code applicable to this problem, expressed as a string value.
	// Example: 400
	// Required: true
	// Pattern: ^[45]\d\d$
	Status *string `json:"status"`

	// A short, human-readable summary of the problem that SHOULD NOT change from occurrence to occurrence of the problem, except for purposes of localization.
	// Example: Bad request
	Title string `json:"title,omitempty"`
}

FetchIssuesPerPurlUnauthorizedBodyErrorsItems0 fetch issues per purl unauthorized body errors items0 // Example: {"detail":"Not Found","status":"404"} swagger:model FetchIssuesPerPurlUnauthorizedBodyErrorsItems0

func (*FetchIssuesPerPurlUnauthorizedBodyErrorsItems0) ContextValidate

ContextValidate validate this fetch issues per purl unauthorized body errors items0 based on the context it is used

func (*FetchIssuesPerPurlUnauthorizedBodyErrorsItems0) MarshalBinary

MarshalBinary interface implementation

func (*FetchIssuesPerPurlUnauthorizedBodyErrorsItems0) UnmarshalBinary

UnmarshalBinary interface implementation

func (*FetchIssuesPerPurlUnauthorizedBodyErrorsItems0) Validate

Validate validates this fetch issues per purl unauthorized body errors items0

type FetchIssuesPerPurlUnauthorizedBodyErrorsItems0Links struct {

	// about
	// Example: https://example.com/api/resource
	About interface{} `json:"about,omitempty"`
}

FetchIssuesPerPurlUnauthorizedBodyErrorsItems0Links A link that leads to further details about this particular occurrance of the problem. // Example: {"about":"https://example.com/about_this_error"} swagger:model FetchIssuesPerPurlUnauthorizedBodyErrorsItems0Links

func (*FetchIssuesPerPurlUnauthorizedBodyErrorsItems0Links) ContextValidate

ContextValidate validates this fetch issues per purl unauthorized body errors items0 links based on context it is used

func (*FetchIssuesPerPurlUnauthorizedBodyErrorsItems0Links) MarshalBinary

MarshalBinary interface implementation

func (*FetchIssuesPerPurlUnauthorizedBodyErrorsItems0Links) UnmarshalBinary

UnmarshalBinary interface implementation

func (*FetchIssuesPerPurlUnauthorizedBodyErrorsItems0Links) Validate

Validate validates this fetch issues per purl unauthorized body errors items0 links

type FetchIssuesPerPurlUnauthorizedBodyErrorsItems0Source

type FetchIssuesPerPurlUnauthorizedBodyErrorsItems0Source struct {

	// A string indicating which URI query parameter caused the error.
	// Example: param1
	Parameter string `json:"parameter,omitempty"`

	// A JSON Pointer [RFC6901] to the associated entity in the request document.
	// Example: /data/attributes
	Pointer string `json:"pointer,omitempty"`
}

FetchIssuesPerPurlUnauthorizedBodyErrorsItems0Source fetch issues per purl unauthorized body errors items0 source // Example: {"pointer":"/data/attributes"} swagger:model FetchIssuesPerPurlUnauthorizedBodyErrorsItems0Source

func (*FetchIssuesPerPurlUnauthorizedBodyErrorsItems0Source) ContextValidate

ContextValidate validates this fetch issues per purl unauthorized body errors items0 source based on context it is used

func (*FetchIssuesPerPurlUnauthorizedBodyErrorsItems0Source) MarshalBinary

MarshalBinary interface implementation

func (*FetchIssuesPerPurlUnauthorizedBodyErrorsItems0Source) UnmarshalBinary

UnmarshalBinary interface implementation

func (*FetchIssuesPerPurlUnauthorizedBodyErrorsItems0Source) Validate

Validate validates this fetch issues per purl unauthorized body errors items0 source

type FetchIssuesPerPurlUnauthorizedBodyJsonapi

type FetchIssuesPerPurlUnauthorizedBodyJsonapi struct {

	// Version of the JSON API specification this server supports.
	// Example: 1.0
	// Required: true
	// Pattern: ^(0|[1-9]\d*)\.(0|[1-9]\d*)$
	Version *string `json:"version"`
}

FetchIssuesPerPurlUnauthorizedBodyJsonapi fetch issues per purl unauthorized body jsonapi // Example: {"version":"1.0"} swagger:model FetchIssuesPerPurlUnauthorizedBodyJsonapi

func (*FetchIssuesPerPurlUnauthorizedBodyJsonapi) ContextValidate

ContextValidate validates this fetch issues per purl unauthorized body jsonapi based on context it is used

func (*FetchIssuesPerPurlUnauthorizedBodyJsonapi) MarshalBinary

func (o *FetchIssuesPerPurlUnauthorizedBodyJsonapi) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*FetchIssuesPerPurlUnauthorizedBodyJsonapi) UnmarshalBinary

func (o *FetchIssuesPerPurlUnauthorizedBodyJsonapi) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*FetchIssuesPerPurlUnauthorizedBodyJsonapi) Validate

Validate validates this fetch issues per purl unauthorized body jsonapi

type GetGroupIssueByIssueIDBadRequest

type GetGroupIssueByIssueIDBadRequest struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *models.ErrorDocument
}

GetGroupIssueByIssueIDBadRequest describes a response with status code 400, with default header values.

Bad Request: A parameter provided as a part of the request was invalid.

func NewGetGroupIssueByIssueIDBadRequest

func NewGetGroupIssueByIssueIDBadRequest() *GetGroupIssueByIssueIDBadRequest

NewGetGroupIssueByIssueIDBadRequest creates a GetGroupIssueByIssueIDBadRequest with default headers values

func (*GetGroupIssueByIssueIDBadRequest) Code

Code gets the status code for the get group issue by issue Id bad request response

func (*GetGroupIssueByIssueIDBadRequest) Error

func (*GetGroupIssueByIssueIDBadRequest) GetPayload

func (*GetGroupIssueByIssueIDBadRequest) IsClientError

func (o *GetGroupIssueByIssueIDBadRequest) IsClientError() bool

IsClientError returns true when this get group issue by issue Id bad request response has a 4xx status code

func (*GetGroupIssueByIssueIDBadRequest) IsCode

func (o *GetGroupIssueByIssueIDBadRequest) IsCode(code int) bool

IsCode returns true when this get group issue by issue Id bad request response a status code equal to that given

func (*GetGroupIssueByIssueIDBadRequest) IsRedirect

func (o *GetGroupIssueByIssueIDBadRequest) IsRedirect() bool

IsRedirect returns true when this get group issue by issue Id bad request response has a 3xx status code

func (*GetGroupIssueByIssueIDBadRequest) IsServerError

func (o *GetGroupIssueByIssueIDBadRequest) IsServerError() bool

IsServerError returns true when this get group issue by issue Id bad request response has a 5xx status code

func (*GetGroupIssueByIssueIDBadRequest) IsSuccess

func (o *GetGroupIssueByIssueIDBadRequest) IsSuccess() bool

IsSuccess returns true when this get group issue by issue Id bad request response has a 2xx status code

func (*GetGroupIssueByIssueIDBadRequest) String

type GetGroupIssueByIssueIDConflict

type GetGroupIssueByIssueIDConflict struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *models.ErrorDocument
}

GetGroupIssueByIssueIDConflict describes a response with status code 409, with default header values.

Conflict: The requested operation conflicts with the current state of the resource in some way.

func NewGetGroupIssueByIssueIDConflict

func NewGetGroupIssueByIssueIDConflict() *GetGroupIssueByIssueIDConflict

NewGetGroupIssueByIssueIDConflict creates a GetGroupIssueByIssueIDConflict with default headers values

func (*GetGroupIssueByIssueIDConflict) Code

Code gets the status code for the get group issue by issue Id conflict response

func (*GetGroupIssueByIssueIDConflict) Error

func (*GetGroupIssueByIssueIDConflict) GetPayload

func (*GetGroupIssueByIssueIDConflict) IsClientError

func (o *GetGroupIssueByIssueIDConflict) IsClientError() bool

IsClientError returns true when this get group issue by issue Id conflict response has a 4xx status code

func (*GetGroupIssueByIssueIDConflict) IsCode

func (o *GetGroupIssueByIssueIDConflict) IsCode(code int) bool

IsCode returns true when this get group issue by issue Id conflict response a status code equal to that given

func (*GetGroupIssueByIssueIDConflict) IsRedirect

func (o *GetGroupIssueByIssueIDConflict) IsRedirect() bool

IsRedirect returns true when this get group issue by issue Id conflict response has a 3xx status code

func (*GetGroupIssueByIssueIDConflict) IsServerError

func (o *GetGroupIssueByIssueIDConflict) IsServerError() bool

IsServerError returns true when this get group issue by issue Id conflict response has a 5xx status code

func (*GetGroupIssueByIssueIDConflict) IsSuccess

func (o *GetGroupIssueByIssueIDConflict) IsSuccess() bool

IsSuccess returns true when this get group issue by issue Id conflict response has a 2xx status code

func (*GetGroupIssueByIssueIDConflict) String

type GetGroupIssueByIssueIDForbidden

type GetGroupIssueByIssueIDForbidden struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *models.ErrorDocument
}

GetGroupIssueByIssueIDForbidden describes a response with status code 403, with default header values.

Unauthorized: the request requires an authentication token or a token with more permissions.

func NewGetGroupIssueByIssueIDForbidden

func NewGetGroupIssueByIssueIDForbidden() *GetGroupIssueByIssueIDForbidden

NewGetGroupIssueByIssueIDForbidden creates a GetGroupIssueByIssueIDForbidden with default headers values

func (*GetGroupIssueByIssueIDForbidden) Code

Code gets the status code for the get group issue by issue Id forbidden response

func (*GetGroupIssueByIssueIDForbidden) Error

func (*GetGroupIssueByIssueIDForbidden) GetPayload

func (*GetGroupIssueByIssueIDForbidden) IsClientError

func (o *GetGroupIssueByIssueIDForbidden) IsClientError() bool

IsClientError returns true when this get group issue by issue Id forbidden response has a 4xx status code

func (*GetGroupIssueByIssueIDForbidden) IsCode

func (o *GetGroupIssueByIssueIDForbidden) IsCode(code int) bool

IsCode returns true when this get group issue by issue Id forbidden response a status code equal to that given

func (*GetGroupIssueByIssueIDForbidden) IsRedirect

func (o *GetGroupIssueByIssueIDForbidden) IsRedirect() bool

IsRedirect returns true when this get group issue by issue Id forbidden response has a 3xx status code

func (*GetGroupIssueByIssueIDForbidden) IsServerError

func (o *GetGroupIssueByIssueIDForbidden) IsServerError() bool

IsServerError returns true when this get group issue by issue Id forbidden response has a 5xx status code

func (*GetGroupIssueByIssueIDForbidden) IsSuccess

func (o *GetGroupIssueByIssueIDForbidden) IsSuccess() bool

IsSuccess returns true when this get group issue by issue Id forbidden response has a 2xx status code

func (*GetGroupIssueByIssueIDForbidden) String

type GetGroupIssueByIssueIDInternalServerError

type GetGroupIssueByIssueIDInternalServerError struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *models.ErrorDocument
}

GetGroupIssueByIssueIDInternalServerError describes a response with status code 500, with default header values.

Internal Server Error: An error was encountered while attempting to process the request.

func NewGetGroupIssueByIssueIDInternalServerError

func NewGetGroupIssueByIssueIDInternalServerError() *GetGroupIssueByIssueIDInternalServerError

NewGetGroupIssueByIssueIDInternalServerError creates a GetGroupIssueByIssueIDInternalServerError with default headers values

func (*GetGroupIssueByIssueIDInternalServerError) Code

Code gets the status code for the get group issue by issue Id internal server error response

func (*GetGroupIssueByIssueIDInternalServerError) Error

func (*GetGroupIssueByIssueIDInternalServerError) GetPayload

func (*GetGroupIssueByIssueIDInternalServerError) IsClientError

IsClientError returns true when this get group issue by issue Id internal server error response has a 4xx status code

func (*GetGroupIssueByIssueIDInternalServerError) IsCode

IsCode returns true when this get group issue by issue Id internal server error response a status code equal to that given

func (*GetGroupIssueByIssueIDInternalServerError) IsRedirect

IsRedirect returns true when this get group issue by issue Id internal server error response has a 3xx status code

func (*GetGroupIssueByIssueIDInternalServerError) IsServerError

IsServerError returns true when this get group issue by issue Id internal server error response has a 5xx status code

func (*GetGroupIssueByIssueIDInternalServerError) IsSuccess

IsSuccess returns true when this get group issue by issue Id internal server error response has a 2xx status code

func (*GetGroupIssueByIssueIDInternalServerError) String

type GetGroupIssueByIssueIDNotFound

type GetGroupIssueByIssueIDNotFound struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *models.ErrorDocument
}

GetGroupIssueByIssueIDNotFound describes a response with status code 404, with default header values.

Not Found: The resource being operated on could not be found.

func NewGetGroupIssueByIssueIDNotFound

func NewGetGroupIssueByIssueIDNotFound() *GetGroupIssueByIssueIDNotFound

NewGetGroupIssueByIssueIDNotFound creates a GetGroupIssueByIssueIDNotFound with default headers values

func (*GetGroupIssueByIssueIDNotFound) Code

Code gets the status code for the get group issue by issue Id not found response

func (*GetGroupIssueByIssueIDNotFound) Error

func (*GetGroupIssueByIssueIDNotFound) GetPayload

func (*GetGroupIssueByIssueIDNotFound) IsClientError

func (o *GetGroupIssueByIssueIDNotFound) IsClientError() bool

IsClientError returns true when this get group issue by issue Id not found response has a 4xx status code

func (*GetGroupIssueByIssueIDNotFound) IsCode

func (o *GetGroupIssueByIssueIDNotFound) IsCode(code int) bool

IsCode returns true when this get group issue by issue Id not found response a status code equal to that given

func (*GetGroupIssueByIssueIDNotFound) IsRedirect

func (o *GetGroupIssueByIssueIDNotFound) IsRedirect() bool

IsRedirect returns true when this get group issue by issue Id not found response has a 3xx status code

func (*GetGroupIssueByIssueIDNotFound) IsServerError

func (o *GetGroupIssueByIssueIDNotFound) IsServerError() bool

IsServerError returns true when this get group issue by issue Id not found response has a 5xx status code

func (*GetGroupIssueByIssueIDNotFound) IsSuccess

func (o *GetGroupIssueByIssueIDNotFound) IsSuccess() bool

IsSuccess returns true when this get group issue by issue Id not found response has a 2xx status code

func (*GetGroupIssueByIssueIDNotFound) String

type GetGroupIssueByIssueIDOK

type GetGroupIssueByIssueIDOK struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime

	/* A header providing a URL for the location of a resource


	   Format: uri
	*/
	Location strfmt.URI

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *GetGroupIssueByIssueIDOKBody
}

GetGroupIssueByIssueIDOK describes a response with status code 200, with default header values.

Returns an instance of an issue

func NewGetGroupIssueByIssueIDOK

func NewGetGroupIssueByIssueIDOK() *GetGroupIssueByIssueIDOK

NewGetGroupIssueByIssueIDOK creates a GetGroupIssueByIssueIDOK with default headers values

func (*GetGroupIssueByIssueIDOK) Code

func (o *GetGroupIssueByIssueIDOK) Code() int

Code gets the status code for the get group issue by issue Id o k response

func (*GetGroupIssueByIssueIDOK) Error

func (o *GetGroupIssueByIssueIDOK) Error() string

func (*GetGroupIssueByIssueIDOK) GetPayload

func (*GetGroupIssueByIssueIDOK) IsClientError

func (o *GetGroupIssueByIssueIDOK) IsClientError() bool

IsClientError returns true when this get group issue by issue Id o k response has a 4xx status code

func (*GetGroupIssueByIssueIDOK) IsCode

func (o *GetGroupIssueByIssueIDOK) IsCode(code int) bool

IsCode returns true when this get group issue by issue Id o k response a status code equal to that given

func (*GetGroupIssueByIssueIDOK) IsRedirect

func (o *GetGroupIssueByIssueIDOK) IsRedirect() bool

IsRedirect returns true when this get group issue by issue Id o k response has a 3xx status code

func (*GetGroupIssueByIssueIDOK) IsServerError

func (o *GetGroupIssueByIssueIDOK) IsServerError() bool

IsServerError returns true when this get group issue by issue Id o k response has a 5xx status code

func (*GetGroupIssueByIssueIDOK) IsSuccess

func (o *GetGroupIssueByIssueIDOK) IsSuccess() bool

IsSuccess returns true when this get group issue by issue Id o k response has a 2xx status code

func (*GetGroupIssueByIssueIDOK) String

func (o *GetGroupIssueByIssueIDOK) String() string

type GetGroupIssueByIssueIDOKBody

type GetGroupIssueByIssueIDOKBody struct {

	// data
	// Required: true
	Data *models.Issue `json:"data"`

	// jsonapi
	// Required: true
	Jsonapi *models.JSONAPI `json:"jsonapi"`

	// links
	Links *models.PaginatedLinks `json:"links,omitempty"`
}

GetGroupIssueByIssueIDOKBody get group issue by issue ID o k body swagger:model GetGroupIssueByIssueIDOKBody

func (*GetGroupIssueByIssueIDOKBody) ContextValidate

func (o *GetGroupIssueByIssueIDOKBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this get group issue by issue ID o k body based on the context it is used

func (*GetGroupIssueByIssueIDOKBody) MarshalBinary

func (o *GetGroupIssueByIssueIDOKBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*GetGroupIssueByIssueIDOKBody) UnmarshalBinary

func (o *GetGroupIssueByIssueIDOKBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*GetGroupIssueByIssueIDOKBody) Validate

func (o *GetGroupIssueByIssueIDOKBody) Validate(formats strfmt.Registry) error

Validate validates this get group issue by issue ID o k body

type GetGroupIssueByIssueIDParams

type GetGroupIssueByIssueIDParams struct {

	/* GroupID.

	   Group ID

	   Format: uuid
	*/
	GroupID strfmt.UUID

	/* IssueID.

	   Issue ID

	   Format: uuid
	*/
	IssueID strfmt.UUID

	/* Version.

	   The requested version of the endpoint to process the request
	*/
	Version string

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

GetGroupIssueByIssueIDParams contains all the parameters to send to the API endpoint

for the get group issue by issue ID operation.

Typically these are written to a http.Request.

func NewGetGroupIssueByIssueIDParams

func NewGetGroupIssueByIssueIDParams() *GetGroupIssueByIssueIDParams

NewGetGroupIssueByIssueIDParams creates a new GetGroupIssueByIssueIDParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewGetGroupIssueByIssueIDParamsWithContext

func NewGetGroupIssueByIssueIDParamsWithContext(ctx context.Context) *GetGroupIssueByIssueIDParams

NewGetGroupIssueByIssueIDParamsWithContext creates a new GetGroupIssueByIssueIDParams object with the ability to set a context for a request.

func NewGetGroupIssueByIssueIDParamsWithHTTPClient

func NewGetGroupIssueByIssueIDParamsWithHTTPClient(client *http.Client) *GetGroupIssueByIssueIDParams

NewGetGroupIssueByIssueIDParamsWithHTTPClient creates a new GetGroupIssueByIssueIDParams object with the ability to set a custom HTTPClient for a request.

func NewGetGroupIssueByIssueIDParamsWithTimeout

func NewGetGroupIssueByIssueIDParamsWithTimeout(timeout time.Duration) *GetGroupIssueByIssueIDParams

NewGetGroupIssueByIssueIDParamsWithTimeout creates a new GetGroupIssueByIssueIDParams object with the ability to set a timeout on a request.

func (*GetGroupIssueByIssueIDParams) SetContext

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

SetContext adds the context to the get group issue by issue ID params

func (*GetGroupIssueByIssueIDParams) SetDefaults

func (o *GetGroupIssueByIssueIDParams) SetDefaults()

SetDefaults hydrates default values in the get group issue by issue ID params (not the query body).

All values with no default are reset to their zero value.

func (*GetGroupIssueByIssueIDParams) SetGroupID

func (o *GetGroupIssueByIssueIDParams) SetGroupID(groupID strfmt.UUID)

SetGroupID adds the groupId to the get group issue by issue ID params

func (*GetGroupIssueByIssueIDParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get group issue by issue ID params

func (*GetGroupIssueByIssueIDParams) SetIssueID

func (o *GetGroupIssueByIssueIDParams) SetIssueID(issueID strfmt.UUID)

SetIssueID adds the issueId to the get group issue by issue ID params

func (*GetGroupIssueByIssueIDParams) SetTimeout

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

SetTimeout adds the timeout to the get group issue by issue ID params

func (*GetGroupIssueByIssueIDParams) SetVersion

func (o *GetGroupIssueByIssueIDParams) SetVersion(version string)

SetVersion adds the version to the get group issue by issue ID params

func (*GetGroupIssueByIssueIDParams) WithContext

WithContext adds the context to the get group issue by issue ID params

func (*GetGroupIssueByIssueIDParams) WithDefaults

WithDefaults hydrates default values in the get group issue by issue ID params (not the query body).

All values with no default are reset to their zero value.

func (*GetGroupIssueByIssueIDParams) WithGroupID

WithGroupID adds the groupID to the get group issue by issue ID params

func (*GetGroupIssueByIssueIDParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get group issue by issue ID params

func (*GetGroupIssueByIssueIDParams) WithIssueID

WithIssueID adds the issueID to the get group issue by issue ID params

func (*GetGroupIssueByIssueIDParams) WithTimeout

WithTimeout adds the timeout to the get group issue by issue ID params

func (*GetGroupIssueByIssueIDParams) WithVersion

WithVersion adds the version to the get group issue by issue ID params

func (*GetGroupIssueByIssueIDParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetGroupIssueByIssueIDReader

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

GetGroupIssueByIssueIDReader is a Reader for the GetGroupIssueByIssueID structure.

func (*GetGroupIssueByIssueIDReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetGroupIssueByIssueIDUnauthorized

type GetGroupIssueByIssueIDUnauthorized struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *models.ErrorDocument
}

GetGroupIssueByIssueIDUnauthorized describes a response with status code 401, with default header values.

Unauthorized: the request requires an authentication token or a token with more permissions.

func NewGetGroupIssueByIssueIDUnauthorized

func NewGetGroupIssueByIssueIDUnauthorized() *GetGroupIssueByIssueIDUnauthorized

NewGetGroupIssueByIssueIDUnauthorized creates a GetGroupIssueByIssueIDUnauthorized with default headers values

func (*GetGroupIssueByIssueIDUnauthorized) Code

Code gets the status code for the get group issue by issue Id unauthorized response

func (*GetGroupIssueByIssueIDUnauthorized) Error

func (*GetGroupIssueByIssueIDUnauthorized) GetPayload

func (*GetGroupIssueByIssueIDUnauthorized) IsClientError

func (o *GetGroupIssueByIssueIDUnauthorized) IsClientError() bool

IsClientError returns true when this get group issue by issue Id unauthorized response has a 4xx status code

func (*GetGroupIssueByIssueIDUnauthorized) IsCode

IsCode returns true when this get group issue by issue Id unauthorized response a status code equal to that given

func (*GetGroupIssueByIssueIDUnauthorized) IsRedirect

func (o *GetGroupIssueByIssueIDUnauthorized) IsRedirect() bool

IsRedirect returns true when this get group issue by issue Id unauthorized response has a 3xx status code

func (*GetGroupIssueByIssueIDUnauthorized) IsServerError

func (o *GetGroupIssueByIssueIDUnauthorized) IsServerError() bool

IsServerError returns true when this get group issue by issue Id unauthorized response has a 5xx status code

func (*GetGroupIssueByIssueIDUnauthorized) IsSuccess

IsSuccess returns true when this get group issue by issue Id unauthorized response has a 2xx status code

func (*GetGroupIssueByIssueIDUnauthorized) String

type GetOrgIssueByIssueIDBadRequest

type GetOrgIssueByIssueIDBadRequest struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *models.ErrorDocument
}

GetOrgIssueByIssueIDBadRequest describes a response with status code 400, with default header values.

Bad Request: A parameter provided as a part of the request was invalid.

func NewGetOrgIssueByIssueIDBadRequest

func NewGetOrgIssueByIssueIDBadRequest() *GetOrgIssueByIssueIDBadRequest

NewGetOrgIssueByIssueIDBadRequest creates a GetOrgIssueByIssueIDBadRequest with default headers values

func (*GetOrgIssueByIssueIDBadRequest) Code

Code gets the status code for the get org issue by issue Id bad request response

func (*GetOrgIssueByIssueIDBadRequest) Error

func (*GetOrgIssueByIssueIDBadRequest) GetPayload

func (*GetOrgIssueByIssueIDBadRequest) IsClientError

func (o *GetOrgIssueByIssueIDBadRequest) IsClientError() bool

IsClientError returns true when this get org issue by issue Id bad request response has a 4xx status code

func (*GetOrgIssueByIssueIDBadRequest) IsCode

func (o *GetOrgIssueByIssueIDBadRequest) IsCode(code int) bool

IsCode returns true when this get org issue by issue Id bad request response a status code equal to that given

func (*GetOrgIssueByIssueIDBadRequest) IsRedirect

func (o *GetOrgIssueByIssueIDBadRequest) IsRedirect() bool

IsRedirect returns true when this get org issue by issue Id bad request response has a 3xx status code

func (*GetOrgIssueByIssueIDBadRequest) IsServerError

func (o *GetOrgIssueByIssueIDBadRequest) IsServerError() bool

IsServerError returns true when this get org issue by issue Id bad request response has a 5xx status code

func (*GetOrgIssueByIssueIDBadRequest) IsSuccess

func (o *GetOrgIssueByIssueIDBadRequest) IsSuccess() bool

IsSuccess returns true when this get org issue by issue Id bad request response has a 2xx status code

func (*GetOrgIssueByIssueIDBadRequest) String

type GetOrgIssueByIssueIDConflict

type GetOrgIssueByIssueIDConflict struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *models.ErrorDocument
}

GetOrgIssueByIssueIDConflict describes a response with status code 409, with default header values.

Conflict: The requested operation conflicts with the current state of the resource in some way.

func NewGetOrgIssueByIssueIDConflict

func NewGetOrgIssueByIssueIDConflict() *GetOrgIssueByIssueIDConflict

NewGetOrgIssueByIssueIDConflict creates a GetOrgIssueByIssueIDConflict with default headers values

func (*GetOrgIssueByIssueIDConflict) Code

Code gets the status code for the get org issue by issue Id conflict response

func (*GetOrgIssueByIssueIDConflict) Error

func (*GetOrgIssueByIssueIDConflict) GetPayload

func (*GetOrgIssueByIssueIDConflict) IsClientError

func (o *GetOrgIssueByIssueIDConflict) IsClientError() bool

IsClientError returns true when this get org issue by issue Id conflict response has a 4xx status code

func (*GetOrgIssueByIssueIDConflict) IsCode

func (o *GetOrgIssueByIssueIDConflict) IsCode(code int) bool

IsCode returns true when this get org issue by issue Id conflict response a status code equal to that given

func (*GetOrgIssueByIssueIDConflict) IsRedirect

func (o *GetOrgIssueByIssueIDConflict) IsRedirect() bool

IsRedirect returns true when this get org issue by issue Id conflict response has a 3xx status code

func (*GetOrgIssueByIssueIDConflict) IsServerError

func (o *GetOrgIssueByIssueIDConflict) IsServerError() bool

IsServerError returns true when this get org issue by issue Id conflict response has a 5xx status code

func (*GetOrgIssueByIssueIDConflict) IsSuccess

func (o *GetOrgIssueByIssueIDConflict) IsSuccess() bool

IsSuccess returns true when this get org issue by issue Id conflict response has a 2xx status code

func (*GetOrgIssueByIssueIDConflict) String

type GetOrgIssueByIssueIDForbidden

type GetOrgIssueByIssueIDForbidden struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *models.ErrorDocument
}

GetOrgIssueByIssueIDForbidden describes a response with status code 403, with default header values.

Unauthorized: the request requires an authentication token or a token with more permissions.

func NewGetOrgIssueByIssueIDForbidden

func NewGetOrgIssueByIssueIDForbidden() *GetOrgIssueByIssueIDForbidden

NewGetOrgIssueByIssueIDForbidden creates a GetOrgIssueByIssueIDForbidden with default headers values

func (*GetOrgIssueByIssueIDForbidden) Code

Code gets the status code for the get org issue by issue Id forbidden response

func (*GetOrgIssueByIssueIDForbidden) Error

func (*GetOrgIssueByIssueIDForbidden) GetPayload

func (*GetOrgIssueByIssueIDForbidden) IsClientError

func (o *GetOrgIssueByIssueIDForbidden) IsClientError() bool

IsClientError returns true when this get org issue by issue Id forbidden response has a 4xx status code

func (*GetOrgIssueByIssueIDForbidden) IsCode

func (o *GetOrgIssueByIssueIDForbidden) IsCode(code int) bool

IsCode returns true when this get org issue by issue Id forbidden response a status code equal to that given

func (*GetOrgIssueByIssueIDForbidden) IsRedirect

func (o *GetOrgIssueByIssueIDForbidden) IsRedirect() bool

IsRedirect returns true when this get org issue by issue Id forbidden response has a 3xx status code

func (*GetOrgIssueByIssueIDForbidden) IsServerError

func (o *GetOrgIssueByIssueIDForbidden) IsServerError() bool

IsServerError returns true when this get org issue by issue Id forbidden response has a 5xx status code

func (*GetOrgIssueByIssueIDForbidden) IsSuccess

func (o *GetOrgIssueByIssueIDForbidden) IsSuccess() bool

IsSuccess returns true when this get org issue by issue Id forbidden response has a 2xx status code

func (*GetOrgIssueByIssueIDForbidden) String

type GetOrgIssueByIssueIDInternalServerError

type GetOrgIssueByIssueIDInternalServerError struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *models.ErrorDocument
}

GetOrgIssueByIssueIDInternalServerError describes a response with status code 500, with default header values.

Internal Server Error: An error was encountered while attempting to process the request.

func NewGetOrgIssueByIssueIDInternalServerError

func NewGetOrgIssueByIssueIDInternalServerError() *GetOrgIssueByIssueIDInternalServerError

NewGetOrgIssueByIssueIDInternalServerError creates a GetOrgIssueByIssueIDInternalServerError with default headers values

func (*GetOrgIssueByIssueIDInternalServerError) Code

Code gets the status code for the get org issue by issue Id internal server error response

func (*GetOrgIssueByIssueIDInternalServerError) Error

func (*GetOrgIssueByIssueIDInternalServerError) GetPayload

func (*GetOrgIssueByIssueIDInternalServerError) IsClientError

func (o *GetOrgIssueByIssueIDInternalServerError) IsClientError() bool

IsClientError returns true when this get org issue by issue Id internal server error response has a 4xx status code

func (*GetOrgIssueByIssueIDInternalServerError) IsCode

IsCode returns true when this get org issue by issue Id internal server error response a status code equal to that given

func (*GetOrgIssueByIssueIDInternalServerError) IsRedirect

IsRedirect returns true when this get org issue by issue Id internal server error response has a 3xx status code

func (*GetOrgIssueByIssueIDInternalServerError) IsServerError

func (o *GetOrgIssueByIssueIDInternalServerError) IsServerError() bool

IsServerError returns true when this get org issue by issue Id internal server error response has a 5xx status code

func (*GetOrgIssueByIssueIDInternalServerError) IsSuccess

IsSuccess returns true when this get org issue by issue Id internal server error response has a 2xx status code

func (*GetOrgIssueByIssueIDInternalServerError) String

type GetOrgIssueByIssueIDNotFound

type GetOrgIssueByIssueIDNotFound struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *models.ErrorDocument
}

GetOrgIssueByIssueIDNotFound describes a response with status code 404, with default header values.

Not Found: The resource being operated on could not be found.

func NewGetOrgIssueByIssueIDNotFound

func NewGetOrgIssueByIssueIDNotFound() *GetOrgIssueByIssueIDNotFound

NewGetOrgIssueByIssueIDNotFound creates a GetOrgIssueByIssueIDNotFound with default headers values

func (*GetOrgIssueByIssueIDNotFound) Code

Code gets the status code for the get org issue by issue Id not found response

func (*GetOrgIssueByIssueIDNotFound) Error

func (*GetOrgIssueByIssueIDNotFound) GetPayload

func (*GetOrgIssueByIssueIDNotFound) IsClientError

func (o *GetOrgIssueByIssueIDNotFound) IsClientError() bool

IsClientError returns true when this get org issue by issue Id not found response has a 4xx status code

func (*GetOrgIssueByIssueIDNotFound) IsCode

func (o *GetOrgIssueByIssueIDNotFound) IsCode(code int) bool

IsCode returns true when this get org issue by issue Id not found response a status code equal to that given

func (*GetOrgIssueByIssueIDNotFound) IsRedirect

func (o *GetOrgIssueByIssueIDNotFound) IsRedirect() bool

IsRedirect returns true when this get org issue by issue Id not found response has a 3xx status code

func (*GetOrgIssueByIssueIDNotFound) IsServerError

func (o *GetOrgIssueByIssueIDNotFound) IsServerError() bool

IsServerError returns true when this get org issue by issue Id not found response has a 5xx status code

func (*GetOrgIssueByIssueIDNotFound) IsSuccess

func (o *GetOrgIssueByIssueIDNotFound) IsSuccess() bool

IsSuccess returns true when this get org issue by issue Id not found response has a 2xx status code

func (*GetOrgIssueByIssueIDNotFound) String

type GetOrgIssueByIssueIDOK

type GetOrgIssueByIssueIDOK struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime

	/* A header providing a URL for the location of a resource


	   Format: uri
	*/
	Location strfmt.URI

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *GetOrgIssueByIssueIDOKBody
}

GetOrgIssueByIssueIDOK describes a response with status code 200, with default header values.

Returns an instance of an issue

func NewGetOrgIssueByIssueIDOK

func NewGetOrgIssueByIssueIDOK() *GetOrgIssueByIssueIDOK

NewGetOrgIssueByIssueIDOK creates a GetOrgIssueByIssueIDOK with default headers values

func (*GetOrgIssueByIssueIDOK) Code

func (o *GetOrgIssueByIssueIDOK) Code() int

Code gets the status code for the get org issue by issue Id o k response

func (*GetOrgIssueByIssueIDOK) Error

func (o *GetOrgIssueByIssueIDOK) Error() string

func (*GetOrgIssueByIssueIDOK) GetPayload

func (*GetOrgIssueByIssueIDOK) IsClientError

func (o *GetOrgIssueByIssueIDOK) IsClientError() bool

IsClientError returns true when this get org issue by issue Id o k response has a 4xx status code

func (*GetOrgIssueByIssueIDOK) IsCode

func (o *GetOrgIssueByIssueIDOK) IsCode(code int) bool

IsCode returns true when this get org issue by issue Id o k response a status code equal to that given

func (*GetOrgIssueByIssueIDOK) IsRedirect

func (o *GetOrgIssueByIssueIDOK) IsRedirect() bool

IsRedirect returns true when this get org issue by issue Id o k response has a 3xx status code

func (*GetOrgIssueByIssueIDOK) IsServerError

func (o *GetOrgIssueByIssueIDOK) IsServerError() bool

IsServerError returns true when this get org issue by issue Id o k response has a 5xx status code

func (*GetOrgIssueByIssueIDOK) IsSuccess

func (o *GetOrgIssueByIssueIDOK) IsSuccess() bool

IsSuccess returns true when this get org issue by issue Id o k response has a 2xx status code

func (*GetOrgIssueByIssueIDOK) String

func (o *GetOrgIssueByIssueIDOK) String() string

type GetOrgIssueByIssueIDOKBody

type GetOrgIssueByIssueIDOKBody struct {

	// data
	// Required: true
	Data *models.Issue `json:"data"`

	// jsonapi
	// Required: true
	Jsonapi *models.JSONAPI `json:"jsonapi"`

	// links
	Links *models.PaginatedLinks `json:"links,omitempty"`
}

GetOrgIssueByIssueIDOKBody get org issue by issue ID o k body swagger:model GetOrgIssueByIssueIDOKBody

func (*GetOrgIssueByIssueIDOKBody) ContextValidate

func (o *GetOrgIssueByIssueIDOKBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this get org issue by issue ID o k body based on the context it is used

func (*GetOrgIssueByIssueIDOKBody) MarshalBinary

func (o *GetOrgIssueByIssueIDOKBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*GetOrgIssueByIssueIDOKBody) UnmarshalBinary

func (o *GetOrgIssueByIssueIDOKBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*GetOrgIssueByIssueIDOKBody) Validate

func (o *GetOrgIssueByIssueIDOKBody) Validate(formats strfmt.Registry) error

Validate validates this get org issue by issue ID o k body

type GetOrgIssueByIssueIDParams

type GetOrgIssueByIssueIDParams struct {

	/* IssueID.

	   Issue ID

	   Format: uuid
	*/
	IssueID strfmt.UUID

	/* OrgID.

	   Org ID

	   Format: uuid
	*/
	OrgID strfmt.UUID

	/* Version.

	   The requested version of the endpoint to process the request
	*/
	Version string

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

GetOrgIssueByIssueIDParams contains all the parameters to send to the API endpoint

for the get org issue by issue ID operation.

Typically these are written to a http.Request.

func NewGetOrgIssueByIssueIDParams

func NewGetOrgIssueByIssueIDParams() *GetOrgIssueByIssueIDParams

NewGetOrgIssueByIssueIDParams creates a new GetOrgIssueByIssueIDParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewGetOrgIssueByIssueIDParamsWithContext

func NewGetOrgIssueByIssueIDParamsWithContext(ctx context.Context) *GetOrgIssueByIssueIDParams

NewGetOrgIssueByIssueIDParamsWithContext creates a new GetOrgIssueByIssueIDParams object with the ability to set a context for a request.

func NewGetOrgIssueByIssueIDParamsWithHTTPClient

func NewGetOrgIssueByIssueIDParamsWithHTTPClient(client *http.Client) *GetOrgIssueByIssueIDParams

NewGetOrgIssueByIssueIDParamsWithHTTPClient creates a new GetOrgIssueByIssueIDParams object with the ability to set a custom HTTPClient for a request.

func NewGetOrgIssueByIssueIDParamsWithTimeout

func NewGetOrgIssueByIssueIDParamsWithTimeout(timeout time.Duration) *GetOrgIssueByIssueIDParams

NewGetOrgIssueByIssueIDParamsWithTimeout creates a new GetOrgIssueByIssueIDParams object with the ability to set a timeout on a request.

func (*GetOrgIssueByIssueIDParams) SetContext

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

SetContext adds the context to the get org issue by issue ID params

func (*GetOrgIssueByIssueIDParams) SetDefaults

func (o *GetOrgIssueByIssueIDParams) SetDefaults()

SetDefaults hydrates default values in the get org issue by issue ID params (not the query body).

All values with no default are reset to their zero value.

func (*GetOrgIssueByIssueIDParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get org issue by issue ID params

func (*GetOrgIssueByIssueIDParams) SetIssueID

func (o *GetOrgIssueByIssueIDParams) SetIssueID(issueID strfmt.UUID)

SetIssueID adds the issueId to the get org issue by issue ID params

func (*GetOrgIssueByIssueIDParams) SetOrgID

func (o *GetOrgIssueByIssueIDParams) SetOrgID(orgID strfmt.UUID)

SetOrgID adds the orgId to the get org issue by issue ID params

func (*GetOrgIssueByIssueIDParams) SetTimeout

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

SetTimeout adds the timeout to the get org issue by issue ID params

func (*GetOrgIssueByIssueIDParams) SetVersion

func (o *GetOrgIssueByIssueIDParams) SetVersion(version string)

SetVersion adds the version to the get org issue by issue ID params

func (*GetOrgIssueByIssueIDParams) WithContext

WithContext adds the context to the get org issue by issue ID params

func (*GetOrgIssueByIssueIDParams) WithDefaults

WithDefaults hydrates default values in the get org issue by issue ID params (not the query body).

All values with no default are reset to their zero value.

func (*GetOrgIssueByIssueIDParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get org issue by issue ID params

func (*GetOrgIssueByIssueIDParams) WithIssueID

WithIssueID adds the issueID to the get org issue by issue ID params

func (*GetOrgIssueByIssueIDParams) WithOrgID

WithOrgID adds the orgID to the get org issue by issue ID params

func (*GetOrgIssueByIssueIDParams) WithTimeout

WithTimeout adds the timeout to the get org issue by issue ID params

func (*GetOrgIssueByIssueIDParams) WithVersion

WithVersion adds the version to the get org issue by issue ID params

func (*GetOrgIssueByIssueIDParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetOrgIssueByIssueIDReader

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

GetOrgIssueByIssueIDReader is a Reader for the GetOrgIssueByIssueID structure.

func (*GetOrgIssueByIssueIDReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetOrgIssueByIssueIDUnauthorized

type GetOrgIssueByIssueIDUnauthorized struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *models.ErrorDocument
}

GetOrgIssueByIssueIDUnauthorized describes a response with status code 401, with default header values.

Unauthorized: the request requires an authentication token or a token with more permissions.

func NewGetOrgIssueByIssueIDUnauthorized

func NewGetOrgIssueByIssueIDUnauthorized() *GetOrgIssueByIssueIDUnauthorized

NewGetOrgIssueByIssueIDUnauthorized creates a GetOrgIssueByIssueIDUnauthorized with default headers values

func (*GetOrgIssueByIssueIDUnauthorized) Code

Code gets the status code for the get org issue by issue Id unauthorized response

func (*GetOrgIssueByIssueIDUnauthorized) Error

func (*GetOrgIssueByIssueIDUnauthorized) GetPayload

func (*GetOrgIssueByIssueIDUnauthorized) IsClientError

func (o *GetOrgIssueByIssueIDUnauthorized) IsClientError() bool

IsClientError returns true when this get org issue by issue Id unauthorized response has a 4xx status code

func (*GetOrgIssueByIssueIDUnauthorized) IsCode

func (o *GetOrgIssueByIssueIDUnauthorized) IsCode(code int) bool

IsCode returns true when this get org issue by issue Id unauthorized response a status code equal to that given

func (*GetOrgIssueByIssueIDUnauthorized) IsRedirect

func (o *GetOrgIssueByIssueIDUnauthorized) IsRedirect() bool

IsRedirect returns true when this get org issue by issue Id unauthorized response has a 3xx status code

func (*GetOrgIssueByIssueIDUnauthorized) IsServerError

func (o *GetOrgIssueByIssueIDUnauthorized) IsServerError() bool

IsServerError returns true when this get org issue by issue Id unauthorized response has a 5xx status code

func (*GetOrgIssueByIssueIDUnauthorized) IsSuccess

func (o *GetOrgIssueByIssueIDUnauthorized) IsSuccess() bool

IsSuccess returns true when this get org issue by issue Id unauthorized response has a 2xx status code

func (*GetOrgIssueByIssueIDUnauthorized) String

type ListGroupIssuesForbidden

type ListGroupIssuesForbidden struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *models.ErrorDocument
}

ListGroupIssuesForbidden describes a response with status code 403, with default header values.

Unauthorized: the request requires an authentication token or a token with more permissions.

func NewListGroupIssuesForbidden

func NewListGroupIssuesForbidden() *ListGroupIssuesForbidden

NewListGroupIssuesForbidden creates a ListGroupIssuesForbidden with default headers values

func (*ListGroupIssuesForbidden) Code

func (o *ListGroupIssuesForbidden) Code() int

Code gets the status code for the list group issues forbidden response

func (*ListGroupIssuesForbidden) Error

func (o *ListGroupIssuesForbidden) Error() string

func (*ListGroupIssuesForbidden) GetPayload

func (*ListGroupIssuesForbidden) IsClientError

func (o *ListGroupIssuesForbidden) IsClientError() bool

IsClientError returns true when this list group issues forbidden response has a 4xx status code

func (*ListGroupIssuesForbidden) IsCode

func (o *ListGroupIssuesForbidden) IsCode(code int) bool

IsCode returns true when this list group issues forbidden response a status code equal to that given

func (*ListGroupIssuesForbidden) IsRedirect

func (o *ListGroupIssuesForbidden) IsRedirect() bool

IsRedirect returns true when this list group issues forbidden response has a 3xx status code

func (*ListGroupIssuesForbidden) IsServerError

func (o *ListGroupIssuesForbidden) IsServerError() bool

IsServerError returns true when this list group issues forbidden response has a 5xx status code

func (*ListGroupIssuesForbidden) IsSuccess

func (o *ListGroupIssuesForbidden) IsSuccess() bool

IsSuccess returns true when this list group issues forbidden response has a 2xx status code

func (*ListGroupIssuesForbidden) String

func (o *ListGroupIssuesForbidden) String() string

type ListGroupIssuesInternalServerError

type ListGroupIssuesInternalServerError struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *models.ErrorDocument
}

ListGroupIssuesInternalServerError describes a response with status code 500, with default header values.

Internal Server Error: An error was encountered while attempting to process the request.

func NewListGroupIssuesInternalServerError

func NewListGroupIssuesInternalServerError() *ListGroupIssuesInternalServerError

NewListGroupIssuesInternalServerError creates a ListGroupIssuesInternalServerError with default headers values

func (*ListGroupIssuesInternalServerError) Code

Code gets the status code for the list group issues internal server error response

func (*ListGroupIssuesInternalServerError) Error

func (*ListGroupIssuesInternalServerError) GetPayload

func (*ListGroupIssuesInternalServerError) IsClientError

func (o *ListGroupIssuesInternalServerError) IsClientError() bool

IsClientError returns true when this list group issues internal server error response has a 4xx status code

func (*ListGroupIssuesInternalServerError) IsCode

IsCode returns true when this list group issues internal server error response a status code equal to that given

func (*ListGroupIssuesInternalServerError) IsRedirect

func (o *ListGroupIssuesInternalServerError) IsRedirect() bool

IsRedirect returns true when this list group issues internal server error response has a 3xx status code

func (*ListGroupIssuesInternalServerError) IsServerError

func (o *ListGroupIssuesInternalServerError) IsServerError() bool

IsServerError returns true when this list group issues internal server error response has a 5xx status code

func (*ListGroupIssuesInternalServerError) IsSuccess

IsSuccess returns true when this list group issues internal server error response has a 2xx status code

func (*ListGroupIssuesInternalServerError) String

type ListGroupIssuesNotFound

type ListGroupIssuesNotFound struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *models.ErrorDocument
}

ListGroupIssuesNotFound describes a response with status code 404, with default header values.

Not Found: The resource being operated on could not be found.

func NewListGroupIssuesNotFound

func NewListGroupIssuesNotFound() *ListGroupIssuesNotFound

NewListGroupIssuesNotFound creates a ListGroupIssuesNotFound with default headers values

func (*ListGroupIssuesNotFound) Code

func (o *ListGroupIssuesNotFound) Code() int

Code gets the status code for the list group issues not found response

func (*ListGroupIssuesNotFound) Error

func (o *ListGroupIssuesNotFound) Error() string

func (*ListGroupIssuesNotFound) GetPayload

func (o *ListGroupIssuesNotFound) GetPayload() *models.ErrorDocument

func (*ListGroupIssuesNotFound) IsClientError

func (o *ListGroupIssuesNotFound) IsClientError() bool

IsClientError returns true when this list group issues not found response has a 4xx status code

func (*ListGroupIssuesNotFound) IsCode

func (o *ListGroupIssuesNotFound) IsCode(code int) bool

IsCode returns true when this list group issues not found response a status code equal to that given

func (*ListGroupIssuesNotFound) IsRedirect

func (o *ListGroupIssuesNotFound) IsRedirect() bool

IsRedirect returns true when this list group issues not found response has a 3xx status code

func (*ListGroupIssuesNotFound) IsServerError

func (o *ListGroupIssuesNotFound) IsServerError() bool

IsServerError returns true when this list group issues not found response has a 5xx status code

func (*ListGroupIssuesNotFound) IsSuccess

func (o *ListGroupIssuesNotFound) IsSuccess() bool

IsSuccess returns true when this list group issues not found response has a 2xx status code

func (*ListGroupIssuesNotFound) String

func (o *ListGroupIssuesNotFound) String() string

type ListGroupIssuesOK

type ListGroupIssuesOK struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *ListGroupIssuesOKBody
}

ListGroupIssuesOK describes a response with status code 200, with default header values.

Returns a collection of issues.

func NewListGroupIssuesOK

func NewListGroupIssuesOK() *ListGroupIssuesOK

NewListGroupIssuesOK creates a ListGroupIssuesOK with default headers values

func (*ListGroupIssuesOK) Code

func (o *ListGroupIssuesOK) Code() int

Code gets the status code for the list group issues o k response

func (*ListGroupIssuesOK) Error

func (o *ListGroupIssuesOK) Error() string

func (*ListGroupIssuesOK) GetPayload

func (o *ListGroupIssuesOK) GetPayload() *ListGroupIssuesOKBody

func (*ListGroupIssuesOK) IsClientError

func (o *ListGroupIssuesOK) IsClientError() bool

IsClientError returns true when this list group issues o k response has a 4xx status code

func (*ListGroupIssuesOK) IsCode

func (o *ListGroupIssuesOK) IsCode(code int) bool

IsCode returns true when this list group issues o k response a status code equal to that given

func (*ListGroupIssuesOK) IsRedirect

func (o *ListGroupIssuesOK) IsRedirect() bool

IsRedirect returns true when this list group issues o k response has a 3xx status code

func (*ListGroupIssuesOK) IsServerError

func (o *ListGroupIssuesOK) IsServerError() bool

IsServerError returns true when this list group issues o k response has a 5xx status code

func (*ListGroupIssuesOK) IsSuccess

func (o *ListGroupIssuesOK) IsSuccess() bool

IsSuccess returns true when this list group issues o k response has a 2xx status code

func (*ListGroupIssuesOK) String

func (o *ListGroupIssuesOK) String() string

type ListGroupIssuesOKBody

type ListGroupIssuesOKBody struct {

	// data
	// Required: true
	Data []*models.Issue `json:"data"`

	// jsonapi
	// Required: true
	Jsonapi *models.JSONAPI `json:"jsonapi"`

	// links
	Links *models.PaginatedLinks `json:"links,omitempty"`
}

ListGroupIssuesOKBody list group issues o k body swagger:model ListGroupIssuesOKBody

func (*ListGroupIssuesOKBody) ContextValidate

func (o *ListGroupIssuesOKBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this list group issues o k body based on the context it is used

func (*ListGroupIssuesOKBody) MarshalBinary

func (o *ListGroupIssuesOKBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ListGroupIssuesOKBody) UnmarshalBinary

func (o *ListGroupIssuesOKBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ListGroupIssuesOKBody) Validate

func (o *ListGroupIssuesOKBody) Validate(formats strfmt.Registry) error

Validate validates this list group issues o k body

type ListGroupIssuesParams

type ListGroupIssuesParams struct {

	/* CreatedAfter.

	   A filter to select issues created after this date.

	   Format: date-time
	*/
	CreatedAfter *strfmt.DateTime

	/* CreatedBefore.

	   A filter to select issues created before this date.

	   Format: date-time
	*/
	CreatedBefore *strfmt.DateTime

	/* EffectiveSeverityLevel.

	   One or more effective severity levels to filter issues.
	*/
	EffectiveSeverityLevel []string

	/* EndingBefore.

	   Return the page of results immediately before this cursor
	*/
	EndingBefore *string

	/* GroupID.

	   Group ID

	   Format: uuid
	*/
	GroupID strfmt.UUID

	/* Ignored.

	   Whether an issue is ignored or not.
	*/
	Ignored *bool

	/* Limit.

	   Number of results to return per page

	   Format: int32
	   Default: 10
	*/
	Limit *int32

	/* ScanItemID.

	   A scan item id to filter issues through their scan item relationship.

	   Format: uuid
	*/
	ScanItemID *strfmt.UUID

	/* ScanItemType.

	   A scan item types to filter issues through their scan item relationship.
	*/
	ScanItemType *string

	/* StartingAfter.

	   Return the page of results immediately after this cursor
	*/
	StartingAfter *string

	/* Status.

	   An issue's status
	*/
	Status []string

	/* Type.

	   An issue type to filter issues.
	*/
	Type *string

	/* UpdatedAfter.

	   A filter to select issues updated after this date.

	   Format: date-time
	*/
	UpdatedAfter *strfmt.DateTime

	/* UpdatedBefore.

	   A filter to select issues updated before this date.

	   Format: date-time
	*/
	UpdatedBefore *strfmt.DateTime

	/* Version.

	   The requested version of the endpoint to process the request
	*/
	Version string

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

ListGroupIssuesParams contains all the parameters to send to the API endpoint

for the list group issues operation.

Typically these are written to a http.Request.

func NewListGroupIssuesParams

func NewListGroupIssuesParams() *ListGroupIssuesParams

NewListGroupIssuesParams creates a new ListGroupIssuesParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewListGroupIssuesParamsWithContext

func NewListGroupIssuesParamsWithContext(ctx context.Context) *ListGroupIssuesParams

NewListGroupIssuesParamsWithContext creates a new ListGroupIssuesParams object with the ability to set a context for a request.

func NewListGroupIssuesParamsWithHTTPClient

func NewListGroupIssuesParamsWithHTTPClient(client *http.Client) *ListGroupIssuesParams

NewListGroupIssuesParamsWithHTTPClient creates a new ListGroupIssuesParams object with the ability to set a custom HTTPClient for a request.

func NewListGroupIssuesParamsWithTimeout

func NewListGroupIssuesParamsWithTimeout(timeout time.Duration) *ListGroupIssuesParams

NewListGroupIssuesParamsWithTimeout creates a new ListGroupIssuesParams object with the ability to set a timeout on a request.

func (*ListGroupIssuesParams) SetContext

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

SetContext adds the context to the list group issues params

func (*ListGroupIssuesParams) SetCreatedAfter

func (o *ListGroupIssuesParams) SetCreatedAfter(createdAfter *strfmt.DateTime)

SetCreatedAfter adds the createdAfter to the list group issues params

func (*ListGroupIssuesParams) SetCreatedBefore

func (o *ListGroupIssuesParams) SetCreatedBefore(createdBefore *strfmt.DateTime)

SetCreatedBefore adds the createdBefore to the list group issues params

func (*ListGroupIssuesParams) SetDefaults

func (o *ListGroupIssuesParams) SetDefaults()

SetDefaults hydrates default values in the list group issues params (not the query body).

All values with no default are reset to their zero value.

func (*ListGroupIssuesParams) SetEffectiveSeverityLevel

func (o *ListGroupIssuesParams) SetEffectiveSeverityLevel(effectiveSeverityLevel []string)

SetEffectiveSeverityLevel adds the effectiveSeverityLevel to the list group issues params

func (*ListGroupIssuesParams) SetEndingBefore

func (o *ListGroupIssuesParams) SetEndingBefore(endingBefore *string)

SetEndingBefore adds the endingBefore to the list group issues params

func (*ListGroupIssuesParams) SetGroupID

func (o *ListGroupIssuesParams) SetGroupID(groupID strfmt.UUID)

SetGroupID adds the groupId to the list group issues params

func (*ListGroupIssuesParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the list group issues params

func (*ListGroupIssuesParams) SetIgnored

func (o *ListGroupIssuesParams) SetIgnored(ignored *bool)

SetIgnored adds the ignored to the list group issues params

func (*ListGroupIssuesParams) SetLimit

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

SetLimit adds the limit to the list group issues params

func (*ListGroupIssuesParams) SetScanItemID

func (o *ListGroupIssuesParams) SetScanItemID(scanItemID *strfmt.UUID)

SetScanItemID adds the scanItemId to the list group issues params

func (*ListGroupIssuesParams) SetScanItemType

func (o *ListGroupIssuesParams) SetScanItemType(scanItemType *string)

SetScanItemType adds the scanItemType to the list group issues params

func (*ListGroupIssuesParams) SetStartingAfter

func (o *ListGroupIssuesParams) SetStartingAfter(startingAfter *string)

SetStartingAfter adds the startingAfter to the list group issues params

func (*ListGroupIssuesParams) SetStatus

func (o *ListGroupIssuesParams) SetStatus(status []string)

SetStatus adds the status to the list group issues params

func (*ListGroupIssuesParams) SetTimeout

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

SetTimeout adds the timeout to the list group issues params

func (*ListGroupIssuesParams) SetType

func (o *ListGroupIssuesParams) SetType(typeVar *string)

SetType adds the type to the list group issues params

func (*ListGroupIssuesParams) SetUpdatedAfter

func (o *ListGroupIssuesParams) SetUpdatedAfter(updatedAfter *strfmt.DateTime)

SetUpdatedAfter adds the updatedAfter to the list group issues params

func (*ListGroupIssuesParams) SetUpdatedBefore

func (o *ListGroupIssuesParams) SetUpdatedBefore(updatedBefore *strfmt.DateTime)

SetUpdatedBefore adds the updatedBefore to the list group issues params

func (*ListGroupIssuesParams) SetVersion

func (o *ListGroupIssuesParams) SetVersion(version string)

SetVersion adds the version to the list group issues params

func (*ListGroupIssuesParams) WithContext

WithContext adds the context to the list group issues params

func (*ListGroupIssuesParams) WithCreatedAfter

func (o *ListGroupIssuesParams) WithCreatedAfter(createdAfter *strfmt.DateTime) *ListGroupIssuesParams

WithCreatedAfter adds the createdAfter to the list group issues params

func (*ListGroupIssuesParams) WithCreatedBefore

func (o *ListGroupIssuesParams) WithCreatedBefore(createdBefore *strfmt.DateTime) *ListGroupIssuesParams

WithCreatedBefore adds the createdBefore to the list group issues params

func (*ListGroupIssuesParams) WithDefaults

func (o *ListGroupIssuesParams) WithDefaults() *ListGroupIssuesParams

WithDefaults hydrates default values in the list group issues params (not the query body).

All values with no default are reset to their zero value.

func (*ListGroupIssuesParams) WithEffectiveSeverityLevel

func (o *ListGroupIssuesParams) WithEffectiveSeverityLevel(effectiveSeverityLevel []string) *ListGroupIssuesParams

WithEffectiveSeverityLevel adds the effectiveSeverityLevel to the list group issues params

func (*ListGroupIssuesParams) WithEndingBefore

func (o *ListGroupIssuesParams) WithEndingBefore(endingBefore *string) *ListGroupIssuesParams

WithEndingBefore adds the endingBefore to the list group issues params

func (*ListGroupIssuesParams) WithGroupID

func (o *ListGroupIssuesParams) WithGroupID(groupID strfmt.UUID) *ListGroupIssuesParams

WithGroupID adds the groupID to the list group issues params

func (*ListGroupIssuesParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the list group issues params

func (*ListGroupIssuesParams) WithIgnored

func (o *ListGroupIssuesParams) WithIgnored(ignored *bool) *ListGroupIssuesParams

WithIgnored adds the ignored to the list group issues params

func (*ListGroupIssuesParams) WithLimit

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

WithLimit adds the limit to the list group issues params

func (*ListGroupIssuesParams) WithScanItemID

func (o *ListGroupIssuesParams) WithScanItemID(scanItemID *strfmt.UUID) *ListGroupIssuesParams

WithScanItemID adds the scanItemID to the list group issues params

func (*ListGroupIssuesParams) WithScanItemType

func (o *ListGroupIssuesParams) WithScanItemType(scanItemType *string) *ListGroupIssuesParams

WithScanItemType adds the scanItemType to the list group issues params

func (*ListGroupIssuesParams) WithStartingAfter

func (o *ListGroupIssuesParams) WithStartingAfter(startingAfter *string) *ListGroupIssuesParams

WithStartingAfter adds the startingAfter to the list group issues params

func (*ListGroupIssuesParams) WithStatus

func (o *ListGroupIssuesParams) WithStatus(status []string) *ListGroupIssuesParams

WithStatus adds the status to the list group issues params

func (*ListGroupIssuesParams) WithTimeout

func (o *ListGroupIssuesParams) WithTimeout(timeout time.Duration) *ListGroupIssuesParams

WithTimeout adds the timeout to the list group issues params

func (*ListGroupIssuesParams) WithType

func (o *ListGroupIssuesParams) WithType(typeVar *string) *ListGroupIssuesParams

WithType adds the typeVar to the list group issues params

func (*ListGroupIssuesParams) WithUpdatedAfter

func (o *ListGroupIssuesParams) WithUpdatedAfter(updatedAfter *strfmt.DateTime) *ListGroupIssuesParams

WithUpdatedAfter adds the updatedAfter to the list group issues params

func (*ListGroupIssuesParams) WithUpdatedBefore

func (o *ListGroupIssuesParams) WithUpdatedBefore(updatedBefore *strfmt.DateTime) *ListGroupIssuesParams

WithUpdatedBefore adds the updatedBefore to the list group issues params

func (*ListGroupIssuesParams) WithVersion

func (o *ListGroupIssuesParams) WithVersion(version string) *ListGroupIssuesParams

WithVersion adds the version to the list group issues params

func (*ListGroupIssuesParams) WriteToRequest

func (o *ListGroupIssuesParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type ListGroupIssuesReader

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

ListGroupIssuesReader is a Reader for the ListGroupIssues structure.

func (*ListGroupIssuesReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ListGroupIssuesUnauthorized

type ListGroupIssuesUnauthorized struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *models.ErrorDocument
}

ListGroupIssuesUnauthorized describes a response with status code 401, with default header values.

Unauthorized: the request requires an authentication token or a token with more permissions.

func NewListGroupIssuesUnauthorized

func NewListGroupIssuesUnauthorized() *ListGroupIssuesUnauthorized

NewListGroupIssuesUnauthorized creates a ListGroupIssuesUnauthorized with default headers values

func (*ListGroupIssuesUnauthorized) Code

func (o *ListGroupIssuesUnauthorized) Code() int

Code gets the status code for the list group issues unauthorized response

func (*ListGroupIssuesUnauthorized) Error

func (*ListGroupIssuesUnauthorized) GetPayload

func (*ListGroupIssuesUnauthorized) IsClientError

func (o *ListGroupIssuesUnauthorized) IsClientError() bool

IsClientError returns true when this list group issues unauthorized response has a 4xx status code

func (*ListGroupIssuesUnauthorized) IsCode

func (o *ListGroupIssuesUnauthorized) IsCode(code int) bool

IsCode returns true when this list group issues unauthorized response a status code equal to that given

func (*ListGroupIssuesUnauthorized) IsRedirect

func (o *ListGroupIssuesUnauthorized) IsRedirect() bool

IsRedirect returns true when this list group issues unauthorized response has a 3xx status code

func (*ListGroupIssuesUnauthorized) IsServerError

func (o *ListGroupIssuesUnauthorized) IsServerError() bool

IsServerError returns true when this list group issues unauthorized response has a 5xx status code

func (*ListGroupIssuesUnauthorized) IsSuccess

func (o *ListGroupIssuesUnauthorized) IsSuccess() bool

IsSuccess returns true when this list group issues unauthorized response has a 2xx status code

func (*ListGroupIssuesUnauthorized) String

func (o *ListGroupIssuesUnauthorized) String() string

type ListIssuesForManyPurlsBadRequest

type ListIssuesForManyPurlsBadRequest struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *ListIssuesForManyPurlsBadRequestBody
}

ListIssuesForManyPurlsBadRequest describes a response with status code 400, with default header values.

Bad Request: A parameter provided as a part of the request was invalid.

func NewListIssuesForManyPurlsBadRequest

func NewListIssuesForManyPurlsBadRequest() *ListIssuesForManyPurlsBadRequest

NewListIssuesForManyPurlsBadRequest creates a ListIssuesForManyPurlsBadRequest with default headers values

func (*ListIssuesForManyPurlsBadRequest) Code

Code gets the status code for the list issues for many purls bad request response

func (*ListIssuesForManyPurlsBadRequest) Error

func (*ListIssuesForManyPurlsBadRequest) GetPayload

func (*ListIssuesForManyPurlsBadRequest) IsClientError

func (o *ListIssuesForManyPurlsBadRequest) IsClientError() bool

IsClientError returns true when this list issues for many purls bad request response has a 4xx status code

func (*ListIssuesForManyPurlsBadRequest) IsCode

func (o *ListIssuesForManyPurlsBadRequest) IsCode(code int) bool

IsCode returns true when this list issues for many purls bad request response a status code equal to that given

func (*ListIssuesForManyPurlsBadRequest) IsRedirect

func (o *ListIssuesForManyPurlsBadRequest) IsRedirect() bool

IsRedirect returns true when this list issues for many purls bad request response has a 3xx status code

func (*ListIssuesForManyPurlsBadRequest) IsServerError

func (o *ListIssuesForManyPurlsBadRequest) IsServerError() bool

IsServerError returns true when this list issues for many purls bad request response has a 5xx status code

func (*ListIssuesForManyPurlsBadRequest) IsSuccess

func (o *ListIssuesForManyPurlsBadRequest) IsSuccess() bool

IsSuccess returns true when this list issues for many purls bad request response has a 2xx status code

func (*ListIssuesForManyPurlsBadRequest) String

type ListIssuesForManyPurlsBadRequestBody

type ListIssuesForManyPurlsBadRequestBody struct {

	// errors
	// Example: [{"detail":"Permission denied for this resource","status":"403"}]
	// Required: true
	// Min Items: 1
	Errors []*ListIssuesForManyPurlsBadRequestBodyErrorsItems0 `json:"errors"`

	// jsonapi
	// Required: true
	Jsonapi *ListIssuesForManyPurlsBadRequestBodyJsonapi `json:"jsonapi"`
}

ListIssuesForManyPurlsBadRequestBody list issues for many purls bad request body // Example: {"errors":[{"detail":"Permission denied for this resource","status":"403"}],"jsonapi":{"version":"1.0"}} swagger:model ListIssuesForManyPurlsBadRequestBody

func (*ListIssuesForManyPurlsBadRequestBody) ContextValidate

func (o *ListIssuesForManyPurlsBadRequestBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this list issues for many purls bad request body based on the context it is used

func (*ListIssuesForManyPurlsBadRequestBody) MarshalBinary

func (o *ListIssuesForManyPurlsBadRequestBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ListIssuesForManyPurlsBadRequestBody) UnmarshalBinary

func (o *ListIssuesForManyPurlsBadRequestBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ListIssuesForManyPurlsBadRequestBody) Validate

Validate validates this list issues for many purls bad request body

type ListIssuesForManyPurlsBadRequestBodyErrorsItems0

type ListIssuesForManyPurlsBadRequestBodyErrorsItems0 struct {

	// An application-specific error code, expressed as a string value.
	// Example: entity-not-found
	Code string `json:"code,omitempty"`

	// A human-readable explanation specific to this occurrence of the problem.
	// Example: The request was missing these required fields: ...
	// Required: true
	Detail *string `json:"detail"`

	// A unique identifier for this particular occurrence of the problem.
	// Example: f16c31b5-6129-4571-add8-d589da9be524
	// Format: uuid
	ID strfmt.UUID `json:"id,omitempty"`

	// links
	Links *ListIssuesForManyPurlsBadRequestBodyErrorsItems0Links `json:"links,omitempty"`

	// meta
	// Example: {"key":"value"}
	Meta interface{} `json:"meta,omitempty"`

	// source
	Source *ListIssuesForManyPurlsBadRequestBodyErrorsItems0Source `json:"source,omitempty"`

	// The HTTP status code applicable to this problem, expressed as a string value.
	// Example: 400
	// Required: true
	// Pattern: ^[45]\d\d$
	Status *string `json:"status"`

	// A short, human-readable summary of the problem that SHOULD NOT change from occurrence to occurrence of the problem, except for purposes of localization.
	// Example: Bad request
	Title string `json:"title,omitempty"`
}

ListIssuesForManyPurlsBadRequestBodyErrorsItems0 list issues for many purls bad request body errors items0 // Example: {"detail":"Not Found","status":"404"} swagger:model ListIssuesForManyPurlsBadRequestBodyErrorsItems0

func (*ListIssuesForManyPurlsBadRequestBodyErrorsItems0) ContextValidate

ContextValidate validate this list issues for many purls bad request body errors items0 based on the context it is used

func (*ListIssuesForManyPurlsBadRequestBodyErrorsItems0) MarshalBinary

MarshalBinary interface implementation

func (*ListIssuesForManyPurlsBadRequestBodyErrorsItems0) UnmarshalBinary

UnmarshalBinary interface implementation

func (*ListIssuesForManyPurlsBadRequestBodyErrorsItems0) Validate

Validate validates this list issues for many purls bad request body errors items0

type ListIssuesForManyPurlsBadRequestBodyErrorsItems0Links struct {

	// about
	// Example: https://example.com/api/resource
	About interface{} `json:"about,omitempty"`
}

ListIssuesForManyPurlsBadRequestBodyErrorsItems0Links A link that leads to further details about this particular occurrance of the problem. // Example: {"about":"https://example.com/about_this_error"} swagger:model ListIssuesForManyPurlsBadRequestBodyErrorsItems0Links

func (*ListIssuesForManyPurlsBadRequestBodyErrorsItems0Links) ContextValidate

ContextValidate validates this list issues for many purls bad request body errors items0 links based on context it is used

func (*ListIssuesForManyPurlsBadRequestBodyErrorsItems0Links) MarshalBinary

MarshalBinary interface implementation

func (*ListIssuesForManyPurlsBadRequestBodyErrorsItems0Links) UnmarshalBinary

UnmarshalBinary interface implementation

func (*ListIssuesForManyPurlsBadRequestBodyErrorsItems0Links) Validate

Validate validates this list issues for many purls bad request body errors items0 links

type ListIssuesForManyPurlsBadRequestBodyErrorsItems0Source

type ListIssuesForManyPurlsBadRequestBodyErrorsItems0Source struct {

	// A string indicating which URI query parameter caused the error.
	// Example: param1
	Parameter string `json:"parameter,omitempty"`

	// A JSON Pointer [RFC6901] to the associated entity in the request document.
	// Example: /data/attributes
	Pointer string `json:"pointer,omitempty"`
}

ListIssuesForManyPurlsBadRequestBodyErrorsItems0Source list issues for many purls bad request body errors items0 source // Example: {"pointer":"/data/attributes"} swagger:model ListIssuesForManyPurlsBadRequestBodyErrorsItems0Source

func (*ListIssuesForManyPurlsBadRequestBodyErrorsItems0Source) ContextValidate

ContextValidate validates this list issues for many purls bad request body errors items0 source based on context it is used

func (*ListIssuesForManyPurlsBadRequestBodyErrorsItems0Source) MarshalBinary

MarshalBinary interface implementation

func (*ListIssuesForManyPurlsBadRequestBodyErrorsItems0Source) UnmarshalBinary

UnmarshalBinary interface implementation

func (*ListIssuesForManyPurlsBadRequestBodyErrorsItems0Source) Validate

Validate validates this list issues for many purls bad request body errors items0 source

type ListIssuesForManyPurlsBadRequestBodyJsonapi

type ListIssuesForManyPurlsBadRequestBodyJsonapi struct {

	// Version of the JSON API specification this server supports.
	// Example: 1.0
	// Required: true
	// Pattern: ^(0|[1-9]\d*)\.(0|[1-9]\d*)$
	Version *string `json:"version"`
}

ListIssuesForManyPurlsBadRequestBodyJsonapi list issues for many purls bad request body jsonapi // Example: {"version":"1.0"} swagger:model ListIssuesForManyPurlsBadRequestBodyJsonapi

func (*ListIssuesForManyPurlsBadRequestBodyJsonapi) ContextValidate

ContextValidate validates this list issues for many purls bad request body jsonapi based on context it is used

func (*ListIssuesForManyPurlsBadRequestBodyJsonapi) MarshalBinary

func (o *ListIssuesForManyPurlsBadRequestBodyJsonapi) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ListIssuesForManyPurlsBadRequestBodyJsonapi) UnmarshalBinary

func (o *ListIssuesForManyPurlsBadRequestBodyJsonapi) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ListIssuesForManyPurlsBadRequestBodyJsonapi) Validate

Validate validates this list issues for many purls bad request body jsonapi

type ListIssuesForManyPurlsConflict

type ListIssuesForManyPurlsConflict struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *ListIssuesForManyPurlsConflictBody
}

ListIssuesForManyPurlsConflict describes a response with status code 409, with default header values.

Conflict: The requested operation conflicts with the current state of the resource in some way.

func NewListIssuesForManyPurlsConflict

func NewListIssuesForManyPurlsConflict() *ListIssuesForManyPurlsConflict

NewListIssuesForManyPurlsConflict creates a ListIssuesForManyPurlsConflict with default headers values

func (*ListIssuesForManyPurlsConflict) Code

Code gets the status code for the list issues for many purls conflict response

func (*ListIssuesForManyPurlsConflict) Error

func (*ListIssuesForManyPurlsConflict) GetPayload

func (*ListIssuesForManyPurlsConflict) IsClientError

func (o *ListIssuesForManyPurlsConflict) IsClientError() bool

IsClientError returns true when this list issues for many purls conflict response has a 4xx status code

func (*ListIssuesForManyPurlsConflict) IsCode

func (o *ListIssuesForManyPurlsConflict) IsCode(code int) bool

IsCode returns true when this list issues for many purls conflict response a status code equal to that given

func (*ListIssuesForManyPurlsConflict) IsRedirect

func (o *ListIssuesForManyPurlsConflict) IsRedirect() bool

IsRedirect returns true when this list issues for many purls conflict response has a 3xx status code

func (*ListIssuesForManyPurlsConflict) IsServerError

func (o *ListIssuesForManyPurlsConflict) IsServerError() bool

IsServerError returns true when this list issues for many purls conflict response has a 5xx status code

func (*ListIssuesForManyPurlsConflict) IsSuccess

func (o *ListIssuesForManyPurlsConflict) IsSuccess() bool

IsSuccess returns true when this list issues for many purls conflict response has a 2xx status code

func (*ListIssuesForManyPurlsConflict) String

type ListIssuesForManyPurlsConflictBody

type ListIssuesForManyPurlsConflictBody struct {

	// errors
	// Example: [{"detail":"Permission denied for this resource","status":"403"}]
	// Required: true
	// Min Items: 1
	Errors []*ListIssuesForManyPurlsConflictBodyErrorsItems0 `json:"errors"`

	// jsonapi
	// Required: true
	Jsonapi *ListIssuesForManyPurlsConflictBodyJsonapi `json:"jsonapi"`
}

ListIssuesForManyPurlsConflictBody list issues for many purls conflict body // Example: {"errors":[{"detail":"Permission denied for this resource","status":"403"}],"jsonapi":{"version":"1.0"}} swagger:model ListIssuesForManyPurlsConflictBody

func (*ListIssuesForManyPurlsConflictBody) ContextValidate

func (o *ListIssuesForManyPurlsConflictBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this list issues for many purls conflict body based on the context it is used

func (*ListIssuesForManyPurlsConflictBody) MarshalBinary

func (o *ListIssuesForManyPurlsConflictBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ListIssuesForManyPurlsConflictBody) UnmarshalBinary

func (o *ListIssuesForManyPurlsConflictBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ListIssuesForManyPurlsConflictBody) Validate

Validate validates this list issues for many purls conflict body

type ListIssuesForManyPurlsConflictBodyErrorsItems0

type ListIssuesForManyPurlsConflictBodyErrorsItems0 struct {

	// An application-specific error code, expressed as a string value.
	// Example: entity-not-found
	Code string `json:"code,omitempty"`

	// A human-readable explanation specific to this occurrence of the problem.
	// Example: The request was missing these required fields: ...
	// Required: true
	Detail *string `json:"detail"`

	// A unique identifier for this particular occurrence of the problem.
	// Example: f16c31b5-6129-4571-add8-d589da9be524
	// Format: uuid
	ID strfmt.UUID `json:"id,omitempty"`

	// links
	Links *ListIssuesForManyPurlsConflictBodyErrorsItems0Links `json:"links,omitempty"`

	// meta
	// Example: {"key":"value"}
	Meta interface{} `json:"meta,omitempty"`

	// source
	Source *ListIssuesForManyPurlsConflictBodyErrorsItems0Source `json:"source,omitempty"`

	// The HTTP status code applicable to this problem, expressed as a string value.
	// Example: 400
	// Required: true
	// Pattern: ^[45]\d\d$
	Status *string `json:"status"`

	// A short, human-readable summary of the problem that SHOULD NOT change from occurrence to occurrence of the problem, except for purposes of localization.
	// Example: Bad request
	Title string `json:"title,omitempty"`
}

ListIssuesForManyPurlsConflictBodyErrorsItems0 list issues for many purls conflict body errors items0 // Example: {"detail":"Not Found","status":"404"} swagger:model ListIssuesForManyPurlsConflictBodyErrorsItems0

func (*ListIssuesForManyPurlsConflictBodyErrorsItems0) ContextValidate

ContextValidate validate this list issues for many purls conflict body errors items0 based on the context it is used

func (*ListIssuesForManyPurlsConflictBodyErrorsItems0) MarshalBinary

MarshalBinary interface implementation

func (*ListIssuesForManyPurlsConflictBodyErrorsItems0) UnmarshalBinary

UnmarshalBinary interface implementation

func (*ListIssuesForManyPurlsConflictBodyErrorsItems0) Validate

Validate validates this list issues for many purls conflict body errors items0

type ListIssuesForManyPurlsConflictBodyErrorsItems0Links struct {

	// about
	// Example: https://example.com/api/resource
	About interface{} `json:"about,omitempty"`
}

ListIssuesForManyPurlsConflictBodyErrorsItems0Links A link that leads to further details about this particular occurrance of the problem. // Example: {"about":"https://example.com/about_this_error"} swagger:model ListIssuesForManyPurlsConflictBodyErrorsItems0Links

func (*ListIssuesForManyPurlsConflictBodyErrorsItems0Links) ContextValidate

ContextValidate validates this list issues for many purls conflict body errors items0 links based on context it is used

func (*ListIssuesForManyPurlsConflictBodyErrorsItems0Links) MarshalBinary

MarshalBinary interface implementation

func (*ListIssuesForManyPurlsConflictBodyErrorsItems0Links) UnmarshalBinary

UnmarshalBinary interface implementation

func (*ListIssuesForManyPurlsConflictBodyErrorsItems0Links) Validate

Validate validates this list issues for many purls conflict body errors items0 links

type ListIssuesForManyPurlsConflictBodyErrorsItems0Source

type ListIssuesForManyPurlsConflictBodyErrorsItems0Source struct {

	// A string indicating which URI query parameter caused the error.
	// Example: param1
	Parameter string `json:"parameter,omitempty"`

	// A JSON Pointer [RFC6901] to the associated entity in the request document.
	// Example: /data/attributes
	Pointer string `json:"pointer,omitempty"`
}

ListIssuesForManyPurlsConflictBodyErrorsItems0Source list issues for many purls conflict body errors items0 source // Example: {"pointer":"/data/attributes"} swagger:model ListIssuesForManyPurlsConflictBodyErrorsItems0Source

func (*ListIssuesForManyPurlsConflictBodyErrorsItems0Source) ContextValidate

ContextValidate validates this list issues for many purls conflict body errors items0 source based on context it is used

func (*ListIssuesForManyPurlsConflictBodyErrorsItems0Source) MarshalBinary

MarshalBinary interface implementation

func (*ListIssuesForManyPurlsConflictBodyErrorsItems0Source) UnmarshalBinary

UnmarshalBinary interface implementation

func (*ListIssuesForManyPurlsConflictBodyErrorsItems0Source) Validate

Validate validates this list issues for many purls conflict body errors items0 source

type ListIssuesForManyPurlsConflictBodyJsonapi

type ListIssuesForManyPurlsConflictBodyJsonapi struct {

	// Version of the JSON API specification this server supports.
	// Example: 1.0
	// Required: true
	// Pattern: ^(0|[1-9]\d*)\.(0|[1-9]\d*)$
	Version *string `json:"version"`
}

ListIssuesForManyPurlsConflictBodyJsonapi list issues for many purls conflict body jsonapi // Example: {"version":"1.0"} swagger:model ListIssuesForManyPurlsConflictBodyJsonapi

func (*ListIssuesForManyPurlsConflictBodyJsonapi) ContextValidate

ContextValidate validates this list issues for many purls conflict body jsonapi based on context it is used

func (*ListIssuesForManyPurlsConflictBodyJsonapi) MarshalBinary

func (o *ListIssuesForManyPurlsConflictBodyJsonapi) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ListIssuesForManyPurlsConflictBodyJsonapi) UnmarshalBinary

func (o *ListIssuesForManyPurlsConflictBodyJsonapi) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ListIssuesForManyPurlsConflictBodyJsonapi) Validate

Validate validates this list issues for many purls conflict body jsonapi

type ListIssuesForManyPurlsForbidden

type ListIssuesForManyPurlsForbidden struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *ListIssuesForManyPurlsForbiddenBody
}

ListIssuesForManyPurlsForbidden describes a response with status code 403, with default header values.

Forbidden: the request requires an authentication token with more or different permissions.

func NewListIssuesForManyPurlsForbidden

func NewListIssuesForManyPurlsForbidden() *ListIssuesForManyPurlsForbidden

NewListIssuesForManyPurlsForbidden creates a ListIssuesForManyPurlsForbidden with default headers values

func (*ListIssuesForManyPurlsForbidden) Code

Code gets the status code for the list issues for many purls forbidden response

func (*ListIssuesForManyPurlsForbidden) Error

func (*ListIssuesForManyPurlsForbidden) GetPayload

func (*ListIssuesForManyPurlsForbidden) IsClientError

func (o *ListIssuesForManyPurlsForbidden) IsClientError() bool

IsClientError returns true when this list issues for many purls forbidden response has a 4xx status code

func (*ListIssuesForManyPurlsForbidden) IsCode

func (o *ListIssuesForManyPurlsForbidden) IsCode(code int) bool

IsCode returns true when this list issues for many purls forbidden response a status code equal to that given

func (*ListIssuesForManyPurlsForbidden) IsRedirect

func (o *ListIssuesForManyPurlsForbidden) IsRedirect() bool

IsRedirect returns true when this list issues for many purls forbidden response has a 3xx status code

func (*ListIssuesForManyPurlsForbidden) IsServerError

func (o *ListIssuesForManyPurlsForbidden) IsServerError() bool

IsServerError returns true when this list issues for many purls forbidden response has a 5xx status code

func (*ListIssuesForManyPurlsForbidden) IsSuccess

func (o *ListIssuesForManyPurlsForbidden) IsSuccess() bool

IsSuccess returns true when this list issues for many purls forbidden response has a 2xx status code

func (*ListIssuesForManyPurlsForbidden) String

type ListIssuesForManyPurlsForbiddenBody

type ListIssuesForManyPurlsForbiddenBody struct {

	// errors
	// Example: [{"detail":"Permission denied for this resource","status":"403"}]
	// Required: true
	// Min Items: 1
	Errors []*ListIssuesForManyPurlsForbiddenBodyErrorsItems0 `json:"errors"`

	// jsonapi
	// Required: true
	Jsonapi *ListIssuesForManyPurlsForbiddenBodyJsonapi `json:"jsonapi"`
}

ListIssuesForManyPurlsForbiddenBody list issues for many purls forbidden body // Example: {"errors":[{"detail":"Permission denied for this resource","status":"403"}],"jsonapi":{"version":"1.0"}} swagger:model ListIssuesForManyPurlsForbiddenBody

func (*ListIssuesForManyPurlsForbiddenBody) ContextValidate

func (o *ListIssuesForManyPurlsForbiddenBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this list issues for many purls forbidden body based on the context it is used

func (*ListIssuesForManyPurlsForbiddenBody) MarshalBinary

func (o *ListIssuesForManyPurlsForbiddenBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ListIssuesForManyPurlsForbiddenBody) UnmarshalBinary

func (o *ListIssuesForManyPurlsForbiddenBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ListIssuesForManyPurlsForbiddenBody) Validate

Validate validates this list issues for many purls forbidden body

type ListIssuesForManyPurlsForbiddenBodyErrorsItems0

type ListIssuesForManyPurlsForbiddenBodyErrorsItems0 struct {

	// An application-specific error code, expressed as a string value.
	// Example: entity-not-found
	Code string `json:"code,omitempty"`

	// A human-readable explanation specific to this occurrence of the problem.
	// Example: The request was missing these required fields: ...
	// Required: true
	Detail *string `json:"detail"`

	// A unique identifier for this particular occurrence of the problem.
	// Example: f16c31b5-6129-4571-add8-d589da9be524
	// Format: uuid
	ID strfmt.UUID `json:"id,omitempty"`

	// links
	Links *ListIssuesForManyPurlsForbiddenBodyErrorsItems0Links `json:"links,omitempty"`

	// meta
	// Example: {"key":"value"}
	Meta interface{} `json:"meta,omitempty"`

	// source
	Source *ListIssuesForManyPurlsForbiddenBodyErrorsItems0Source `json:"source,omitempty"`

	// The HTTP status code applicable to this problem, expressed as a string value.
	// Example: 400
	// Required: true
	// Pattern: ^[45]\d\d$
	Status *string `json:"status"`

	// A short, human-readable summary of the problem that SHOULD NOT change from occurrence to occurrence of the problem, except for purposes of localization.
	// Example: Bad request
	Title string `json:"title,omitempty"`
}

ListIssuesForManyPurlsForbiddenBodyErrorsItems0 list issues for many purls forbidden body errors items0 // Example: {"detail":"Not Found","status":"404"} swagger:model ListIssuesForManyPurlsForbiddenBodyErrorsItems0

func (*ListIssuesForManyPurlsForbiddenBodyErrorsItems0) ContextValidate

ContextValidate validate this list issues for many purls forbidden body errors items0 based on the context it is used

func (*ListIssuesForManyPurlsForbiddenBodyErrorsItems0) MarshalBinary

MarshalBinary interface implementation

func (*ListIssuesForManyPurlsForbiddenBodyErrorsItems0) UnmarshalBinary

UnmarshalBinary interface implementation

func (*ListIssuesForManyPurlsForbiddenBodyErrorsItems0) Validate

Validate validates this list issues for many purls forbidden body errors items0

type ListIssuesForManyPurlsForbiddenBodyErrorsItems0Links struct {

	// about
	// Example: https://example.com/api/resource
	About interface{} `json:"about,omitempty"`
}

ListIssuesForManyPurlsForbiddenBodyErrorsItems0Links A link that leads to further details about this particular occurrance of the problem. // Example: {"about":"https://example.com/about_this_error"} swagger:model ListIssuesForManyPurlsForbiddenBodyErrorsItems0Links

func (*ListIssuesForManyPurlsForbiddenBodyErrorsItems0Links) ContextValidate

ContextValidate validates this list issues for many purls forbidden body errors items0 links based on context it is used

func (*ListIssuesForManyPurlsForbiddenBodyErrorsItems0Links) MarshalBinary

MarshalBinary interface implementation

func (*ListIssuesForManyPurlsForbiddenBodyErrorsItems0Links) UnmarshalBinary

UnmarshalBinary interface implementation

func (*ListIssuesForManyPurlsForbiddenBodyErrorsItems0Links) Validate

Validate validates this list issues for many purls forbidden body errors items0 links

type ListIssuesForManyPurlsForbiddenBodyErrorsItems0Source

type ListIssuesForManyPurlsForbiddenBodyErrorsItems0Source struct {

	// A string indicating which URI query parameter caused the error.
	// Example: param1
	Parameter string `json:"parameter,omitempty"`

	// A JSON Pointer [RFC6901] to the associated entity in the request document.
	// Example: /data/attributes
	Pointer string `json:"pointer,omitempty"`
}

ListIssuesForManyPurlsForbiddenBodyErrorsItems0Source list issues for many purls forbidden body errors items0 source // Example: {"pointer":"/data/attributes"} swagger:model ListIssuesForManyPurlsForbiddenBodyErrorsItems0Source

func (*ListIssuesForManyPurlsForbiddenBodyErrorsItems0Source) ContextValidate

ContextValidate validates this list issues for many purls forbidden body errors items0 source based on context it is used

func (*ListIssuesForManyPurlsForbiddenBodyErrorsItems0Source) MarshalBinary

MarshalBinary interface implementation

func (*ListIssuesForManyPurlsForbiddenBodyErrorsItems0Source) UnmarshalBinary

UnmarshalBinary interface implementation

func (*ListIssuesForManyPurlsForbiddenBodyErrorsItems0Source) Validate

Validate validates this list issues for many purls forbidden body errors items0 source

type ListIssuesForManyPurlsForbiddenBodyJsonapi

type ListIssuesForManyPurlsForbiddenBodyJsonapi struct {

	// Version of the JSON API specification this server supports.
	// Example: 1.0
	// Required: true
	// Pattern: ^(0|[1-9]\d*)\.(0|[1-9]\d*)$
	Version *string `json:"version"`
}

ListIssuesForManyPurlsForbiddenBodyJsonapi list issues for many purls forbidden body jsonapi // Example: {"version":"1.0"} swagger:model ListIssuesForManyPurlsForbiddenBodyJsonapi

func (*ListIssuesForManyPurlsForbiddenBodyJsonapi) ContextValidate

ContextValidate validates this list issues for many purls forbidden body jsonapi based on context it is used

func (*ListIssuesForManyPurlsForbiddenBodyJsonapi) MarshalBinary

func (o *ListIssuesForManyPurlsForbiddenBodyJsonapi) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ListIssuesForManyPurlsForbiddenBodyJsonapi) UnmarshalBinary

func (o *ListIssuesForManyPurlsForbiddenBodyJsonapi) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ListIssuesForManyPurlsForbiddenBodyJsonapi) Validate

Validate validates this list issues for many purls forbidden body jsonapi

type ListIssuesForManyPurlsInternalServerError

type ListIssuesForManyPurlsInternalServerError struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *ListIssuesForManyPurlsInternalServerErrorBody
}

ListIssuesForManyPurlsInternalServerError describes a response with status code 500, with default header values.

Internal Server Error: An error was encountered while attempting to process the request.

func NewListIssuesForManyPurlsInternalServerError

func NewListIssuesForManyPurlsInternalServerError() *ListIssuesForManyPurlsInternalServerError

NewListIssuesForManyPurlsInternalServerError creates a ListIssuesForManyPurlsInternalServerError with default headers values

func (*ListIssuesForManyPurlsInternalServerError) Code

Code gets the status code for the list issues for many purls internal server error response

func (*ListIssuesForManyPurlsInternalServerError) Error

func (*ListIssuesForManyPurlsInternalServerError) GetPayload

func (*ListIssuesForManyPurlsInternalServerError) IsClientError

IsClientError returns true when this list issues for many purls internal server error response has a 4xx status code

func (*ListIssuesForManyPurlsInternalServerError) IsCode

IsCode returns true when this list issues for many purls internal server error response a status code equal to that given

func (*ListIssuesForManyPurlsInternalServerError) IsRedirect

IsRedirect returns true when this list issues for many purls internal server error response has a 3xx status code

func (*ListIssuesForManyPurlsInternalServerError) IsServerError

IsServerError returns true when this list issues for many purls internal server error response has a 5xx status code

func (*ListIssuesForManyPurlsInternalServerError) IsSuccess

IsSuccess returns true when this list issues for many purls internal server error response has a 2xx status code

func (*ListIssuesForManyPurlsInternalServerError) String

type ListIssuesForManyPurlsInternalServerErrorBody

type ListIssuesForManyPurlsInternalServerErrorBody struct {

	// errors
	// Example: [{"detail":"Permission denied for this resource","status":"403"}]
	// Required: true
	// Min Items: 1
	Errors []*ListIssuesForManyPurlsInternalServerErrorBodyErrorsItems0 `json:"errors"`

	// jsonapi
	// Required: true
	Jsonapi *ListIssuesForManyPurlsInternalServerErrorBodyJsonapi `json:"jsonapi"`
}

ListIssuesForManyPurlsInternalServerErrorBody list issues for many purls internal server error body // Example: {"errors":[{"detail":"Permission denied for this resource","status":"403"}],"jsonapi":{"version":"1.0"}} swagger:model ListIssuesForManyPurlsInternalServerErrorBody

func (*ListIssuesForManyPurlsInternalServerErrorBody) ContextValidate

ContextValidate validate this list issues for many purls internal server error body based on the context it is used

func (*ListIssuesForManyPurlsInternalServerErrorBody) MarshalBinary

MarshalBinary interface implementation

func (*ListIssuesForManyPurlsInternalServerErrorBody) UnmarshalBinary

UnmarshalBinary interface implementation

func (*ListIssuesForManyPurlsInternalServerErrorBody) Validate

Validate validates this list issues for many purls internal server error body

type ListIssuesForManyPurlsInternalServerErrorBodyErrorsItems0

type ListIssuesForManyPurlsInternalServerErrorBodyErrorsItems0 struct {

	// An application-specific error code, expressed as a string value.
	// Example: entity-not-found
	Code string `json:"code,omitempty"`

	// A human-readable explanation specific to this occurrence of the problem.
	// Example: The request was missing these required fields: ...
	// Required: true
	Detail *string `json:"detail"`

	// A unique identifier for this particular occurrence of the problem.
	// Example: f16c31b5-6129-4571-add8-d589da9be524
	// Format: uuid
	ID strfmt.UUID `json:"id,omitempty"`

	// links
	Links *ListIssuesForManyPurlsInternalServerErrorBodyErrorsItems0Links `json:"links,omitempty"`

	// meta
	// Example: {"key":"value"}
	Meta interface{} `json:"meta,omitempty"`

	// source
	Source *ListIssuesForManyPurlsInternalServerErrorBodyErrorsItems0Source `json:"source,omitempty"`

	// The HTTP status code applicable to this problem, expressed as a string value.
	// Example: 400
	// Required: true
	// Pattern: ^[45]\d\d$
	Status *string `json:"status"`

	// A short, human-readable summary of the problem that SHOULD NOT change from occurrence to occurrence of the problem, except for purposes of localization.
	// Example: Bad request
	Title string `json:"title,omitempty"`
}

ListIssuesForManyPurlsInternalServerErrorBodyErrorsItems0 list issues for many purls internal server error body errors items0 // Example: {"detail":"Not Found","status":"404"} swagger:model ListIssuesForManyPurlsInternalServerErrorBodyErrorsItems0

func (*ListIssuesForManyPurlsInternalServerErrorBodyErrorsItems0) ContextValidate

ContextValidate validate this list issues for many purls internal server error body errors items0 based on the context it is used

func (*ListIssuesForManyPurlsInternalServerErrorBodyErrorsItems0) MarshalBinary

MarshalBinary interface implementation

func (*ListIssuesForManyPurlsInternalServerErrorBodyErrorsItems0) UnmarshalBinary

UnmarshalBinary interface implementation

func (*ListIssuesForManyPurlsInternalServerErrorBodyErrorsItems0) Validate

Validate validates this list issues for many purls internal server error body errors items0

type ListIssuesForManyPurlsInternalServerErrorBodyErrorsItems0Links struct {

	// about
	// Example: https://example.com/api/resource
	About interface{} `json:"about,omitempty"`
}

ListIssuesForManyPurlsInternalServerErrorBodyErrorsItems0Links A link that leads to further details about this particular occurrance of the problem. // Example: {"about":"https://example.com/about_this_error"} swagger:model ListIssuesForManyPurlsInternalServerErrorBodyErrorsItems0Links

func (*ListIssuesForManyPurlsInternalServerErrorBodyErrorsItems0Links) ContextValidate

ContextValidate validates this list issues for many purls internal server error body errors items0 links based on context it is used

func (*ListIssuesForManyPurlsInternalServerErrorBodyErrorsItems0Links) MarshalBinary

MarshalBinary interface implementation

func (*ListIssuesForManyPurlsInternalServerErrorBodyErrorsItems0Links) UnmarshalBinary

UnmarshalBinary interface implementation

func (*ListIssuesForManyPurlsInternalServerErrorBodyErrorsItems0Links) Validate

Validate validates this list issues for many purls internal server error body errors items0 links

type ListIssuesForManyPurlsInternalServerErrorBodyErrorsItems0Source

type ListIssuesForManyPurlsInternalServerErrorBodyErrorsItems0Source struct {

	// A string indicating which URI query parameter caused the error.
	// Example: param1
	Parameter string `json:"parameter,omitempty"`

	// A JSON Pointer [RFC6901] to the associated entity in the request document.
	// Example: /data/attributes
	Pointer string `json:"pointer,omitempty"`
}

ListIssuesForManyPurlsInternalServerErrorBodyErrorsItems0Source list issues for many purls internal server error body errors items0 source // Example: {"pointer":"/data/attributes"} swagger:model ListIssuesForManyPurlsInternalServerErrorBodyErrorsItems0Source

func (*ListIssuesForManyPurlsInternalServerErrorBodyErrorsItems0Source) ContextValidate

ContextValidate validates this list issues for many purls internal server error body errors items0 source based on context it is used

func (*ListIssuesForManyPurlsInternalServerErrorBodyErrorsItems0Source) MarshalBinary

MarshalBinary interface implementation

func (*ListIssuesForManyPurlsInternalServerErrorBodyErrorsItems0Source) UnmarshalBinary

UnmarshalBinary interface implementation

func (*ListIssuesForManyPurlsInternalServerErrorBodyErrorsItems0Source) Validate

Validate validates this list issues for many purls internal server error body errors items0 source

type ListIssuesForManyPurlsInternalServerErrorBodyJsonapi

type ListIssuesForManyPurlsInternalServerErrorBodyJsonapi struct {

	// Version of the JSON API specification this server supports.
	// Example: 1.0
	// Required: true
	// Pattern: ^(0|[1-9]\d*)\.(0|[1-9]\d*)$
	Version *string `json:"version"`
}

ListIssuesForManyPurlsInternalServerErrorBodyJsonapi list issues for many purls internal server error body jsonapi // Example: {"version":"1.0"} swagger:model ListIssuesForManyPurlsInternalServerErrorBodyJsonapi

func (*ListIssuesForManyPurlsInternalServerErrorBodyJsonapi) ContextValidate

ContextValidate validates this list issues for many purls internal server error body jsonapi based on context it is used

func (*ListIssuesForManyPurlsInternalServerErrorBodyJsonapi) MarshalBinary

MarshalBinary interface implementation

func (*ListIssuesForManyPurlsInternalServerErrorBodyJsonapi) UnmarshalBinary

UnmarshalBinary interface implementation

func (*ListIssuesForManyPurlsInternalServerErrorBodyJsonapi) Validate

Validate validates this list issues for many purls internal server error body jsonapi

type ListIssuesForManyPurlsNotFound

type ListIssuesForManyPurlsNotFound struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *ListIssuesForManyPurlsNotFoundBody
}

ListIssuesForManyPurlsNotFound describes a response with status code 404, with default header values.

Not Found: The resource being operated on could not be found.

func NewListIssuesForManyPurlsNotFound

func NewListIssuesForManyPurlsNotFound() *ListIssuesForManyPurlsNotFound

NewListIssuesForManyPurlsNotFound creates a ListIssuesForManyPurlsNotFound with default headers values

func (*ListIssuesForManyPurlsNotFound) Code

Code gets the status code for the list issues for many purls not found response

func (*ListIssuesForManyPurlsNotFound) Error

func (*ListIssuesForManyPurlsNotFound) GetPayload

func (*ListIssuesForManyPurlsNotFound) IsClientError

func (o *ListIssuesForManyPurlsNotFound) IsClientError() bool

IsClientError returns true when this list issues for many purls not found response has a 4xx status code

func (*ListIssuesForManyPurlsNotFound) IsCode

func (o *ListIssuesForManyPurlsNotFound) IsCode(code int) bool

IsCode returns true when this list issues for many purls not found response a status code equal to that given

func (*ListIssuesForManyPurlsNotFound) IsRedirect

func (o *ListIssuesForManyPurlsNotFound) IsRedirect() bool

IsRedirect returns true when this list issues for many purls not found response has a 3xx status code

func (*ListIssuesForManyPurlsNotFound) IsServerError

func (o *ListIssuesForManyPurlsNotFound) IsServerError() bool

IsServerError returns true when this list issues for many purls not found response has a 5xx status code

func (*ListIssuesForManyPurlsNotFound) IsSuccess

func (o *ListIssuesForManyPurlsNotFound) IsSuccess() bool

IsSuccess returns true when this list issues for many purls not found response has a 2xx status code

func (*ListIssuesForManyPurlsNotFound) String

type ListIssuesForManyPurlsNotFoundBody

type ListIssuesForManyPurlsNotFoundBody struct {

	// errors
	// Example: [{"detail":"Permission denied for this resource","status":"403"}]
	// Required: true
	// Min Items: 1
	Errors []*ListIssuesForManyPurlsNotFoundBodyErrorsItems0 `json:"errors"`

	// jsonapi
	// Required: true
	Jsonapi *ListIssuesForManyPurlsNotFoundBodyJsonapi `json:"jsonapi"`
}

ListIssuesForManyPurlsNotFoundBody list issues for many purls not found body // Example: {"errors":[{"detail":"Permission denied for this resource","status":"403"}],"jsonapi":{"version":"1.0"}} swagger:model ListIssuesForManyPurlsNotFoundBody

func (*ListIssuesForManyPurlsNotFoundBody) ContextValidate

func (o *ListIssuesForManyPurlsNotFoundBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this list issues for many purls not found body based on the context it is used

func (*ListIssuesForManyPurlsNotFoundBody) MarshalBinary

func (o *ListIssuesForManyPurlsNotFoundBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ListIssuesForManyPurlsNotFoundBody) UnmarshalBinary

func (o *ListIssuesForManyPurlsNotFoundBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ListIssuesForManyPurlsNotFoundBody) Validate

Validate validates this list issues for many purls not found body

type ListIssuesForManyPurlsNotFoundBodyErrorsItems0

type ListIssuesForManyPurlsNotFoundBodyErrorsItems0 struct {

	// An application-specific error code, expressed as a string value.
	// Example: entity-not-found
	Code string `json:"code,omitempty"`

	// A human-readable explanation specific to this occurrence of the problem.
	// Example: The request was missing these required fields: ...
	// Required: true
	Detail *string `json:"detail"`

	// A unique identifier for this particular occurrence of the problem.
	// Example: f16c31b5-6129-4571-add8-d589da9be524
	// Format: uuid
	ID strfmt.UUID `json:"id,omitempty"`

	// links
	Links *ListIssuesForManyPurlsNotFoundBodyErrorsItems0Links `json:"links,omitempty"`

	// meta
	// Example: {"key":"value"}
	Meta interface{} `json:"meta,omitempty"`

	// source
	Source *ListIssuesForManyPurlsNotFoundBodyErrorsItems0Source `json:"source,omitempty"`

	// The HTTP status code applicable to this problem, expressed as a string value.
	// Example: 400
	// Required: true
	// Pattern: ^[45]\d\d$
	Status *string `json:"status"`

	// A short, human-readable summary of the problem that SHOULD NOT change from occurrence to occurrence of the problem, except for purposes of localization.
	// Example: Bad request
	Title string `json:"title,omitempty"`
}

ListIssuesForManyPurlsNotFoundBodyErrorsItems0 list issues for many purls not found body errors items0 // Example: {"detail":"Not Found","status":"404"} swagger:model ListIssuesForManyPurlsNotFoundBodyErrorsItems0

func (*ListIssuesForManyPurlsNotFoundBodyErrorsItems0) ContextValidate

ContextValidate validate this list issues for many purls not found body errors items0 based on the context it is used

func (*ListIssuesForManyPurlsNotFoundBodyErrorsItems0) MarshalBinary

MarshalBinary interface implementation

func (*ListIssuesForManyPurlsNotFoundBodyErrorsItems0) UnmarshalBinary

UnmarshalBinary interface implementation

func (*ListIssuesForManyPurlsNotFoundBodyErrorsItems0) Validate

Validate validates this list issues for many purls not found body errors items0

type ListIssuesForManyPurlsNotFoundBodyErrorsItems0Links struct {

	// about
	// Example: https://example.com/api/resource
	About interface{} `json:"about,omitempty"`
}

ListIssuesForManyPurlsNotFoundBodyErrorsItems0Links A link that leads to further details about this particular occurrance of the problem. // Example: {"about":"https://example.com/about_this_error"} swagger:model ListIssuesForManyPurlsNotFoundBodyErrorsItems0Links

func (*ListIssuesForManyPurlsNotFoundBodyErrorsItems0Links) ContextValidate

ContextValidate validates this list issues for many purls not found body errors items0 links based on context it is used

func (*ListIssuesForManyPurlsNotFoundBodyErrorsItems0Links) MarshalBinary

MarshalBinary interface implementation

func (*ListIssuesForManyPurlsNotFoundBodyErrorsItems0Links) UnmarshalBinary

UnmarshalBinary interface implementation

func (*ListIssuesForManyPurlsNotFoundBodyErrorsItems0Links) Validate

Validate validates this list issues for many purls not found body errors items0 links

type ListIssuesForManyPurlsNotFoundBodyErrorsItems0Source

type ListIssuesForManyPurlsNotFoundBodyErrorsItems0Source struct {

	// A string indicating which URI query parameter caused the error.
	// Example: param1
	Parameter string `json:"parameter,omitempty"`

	// A JSON Pointer [RFC6901] to the associated entity in the request document.
	// Example: /data/attributes
	Pointer string `json:"pointer,omitempty"`
}

ListIssuesForManyPurlsNotFoundBodyErrorsItems0Source list issues for many purls not found body errors items0 source // Example: {"pointer":"/data/attributes"} swagger:model ListIssuesForManyPurlsNotFoundBodyErrorsItems0Source

func (*ListIssuesForManyPurlsNotFoundBodyErrorsItems0Source) ContextValidate

ContextValidate validates this list issues for many purls not found body errors items0 source based on context it is used

func (*ListIssuesForManyPurlsNotFoundBodyErrorsItems0Source) MarshalBinary

MarshalBinary interface implementation

func (*ListIssuesForManyPurlsNotFoundBodyErrorsItems0Source) UnmarshalBinary

UnmarshalBinary interface implementation

func (*ListIssuesForManyPurlsNotFoundBodyErrorsItems0Source) Validate

Validate validates this list issues for many purls not found body errors items0 source

type ListIssuesForManyPurlsNotFoundBodyJsonapi

type ListIssuesForManyPurlsNotFoundBodyJsonapi struct {

	// Version of the JSON API specification this server supports.
	// Example: 1.0
	// Required: true
	// Pattern: ^(0|[1-9]\d*)\.(0|[1-9]\d*)$
	Version *string `json:"version"`
}

ListIssuesForManyPurlsNotFoundBodyJsonapi list issues for many purls not found body jsonapi // Example: {"version":"1.0"} swagger:model ListIssuesForManyPurlsNotFoundBodyJsonapi

func (*ListIssuesForManyPurlsNotFoundBodyJsonapi) ContextValidate

ContextValidate validates this list issues for many purls not found body jsonapi based on context it is used

func (*ListIssuesForManyPurlsNotFoundBodyJsonapi) MarshalBinary

func (o *ListIssuesForManyPurlsNotFoundBodyJsonapi) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ListIssuesForManyPurlsNotFoundBodyJsonapi) UnmarshalBinary

func (o *ListIssuesForManyPurlsNotFoundBodyJsonapi) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ListIssuesForManyPurlsNotFoundBodyJsonapi) Validate

Validate validates this list issues for many purls not found body jsonapi

type ListIssuesForManyPurlsOK

type ListIssuesForManyPurlsOK struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime
	Location    string

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *models.IssuesWithPurlsResponse
}

ListIssuesForManyPurlsOK describes a response with status code 200, with default header values.

Returns an array of issues with the purl identifier of the package that caused them

func NewListIssuesForManyPurlsOK

func NewListIssuesForManyPurlsOK() *ListIssuesForManyPurlsOK

NewListIssuesForManyPurlsOK creates a ListIssuesForManyPurlsOK with default headers values

func (*ListIssuesForManyPurlsOK) Code

func (o *ListIssuesForManyPurlsOK) Code() int

Code gets the status code for the list issues for many purls o k response

func (*ListIssuesForManyPurlsOK) Error

func (o *ListIssuesForManyPurlsOK) Error() string

func (*ListIssuesForManyPurlsOK) GetPayload

func (*ListIssuesForManyPurlsOK) IsClientError

func (o *ListIssuesForManyPurlsOK) IsClientError() bool

IsClientError returns true when this list issues for many purls o k response has a 4xx status code

func (*ListIssuesForManyPurlsOK) IsCode

func (o *ListIssuesForManyPurlsOK) IsCode(code int) bool

IsCode returns true when this list issues for many purls o k response a status code equal to that given

func (*ListIssuesForManyPurlsOK) IsRedirect

func (o *ListIssuesForManyPurlsOK) IsRedirect() bool

IsRedirect returns true when this list issues for many purls o k response has a 3xx status code

func (*ListIssuesForManyPurlsOK) IsServerError

func (o *ListIssuesForManyPurlsOK) IsServerError() bool

IsServerError returns true when this list issues for many purls o k response has a 5xx status code

func (*ListIssuesForManyPurlsOK) IsSuccess

func (o *ListIssuesForManyPurlsOK) IsSuccess() bool

IsSuccess returns true when this list issues for many purls o k response has a 2xx status code

func (*ListIssuesForManyPurlsOK) String

func (o *ListIssuesForManyPurlsOK) String() string

type ListIssuesForManyPurlsParams

type ListIssuesForManyPurlsParams struct {

	// Body.
	Body *models.BulkPackageUrlsRequestBody

	/* OrgID.

	   Unique identifier for an organization

	   Format: uuid
	*/
	OrgID strfmt.UUID

	/* Version.

	   The requested version of the endpoint to process the request
	*/
	Version string

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

ListIssuesForManyPurlsParams contains all the parameters to send to the API endpoint

for the list issues for many purls operation.

Typically these are written to a http.Request.

func NewListIssuesForManyPurlsParams

func NewListIssuesForManyPurlsParams() *ListIssuesForManyPurlsParams

NewListIssuesForManyPurlsParams creates a new ListIssuesForManyPurlsParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewListIssuesForManyPurlsParamsWithContext

func NewListIssuesForManyPurlsParamsWithContext(ctx context.Context) *ListIssuesForManyPurlsParams

NewListIssuesForManyPurlsParamsWithContext creates a new ListIssuesForManyPurlsParams object with the ability to set a context for a request.

func NewListIssuesForManyPurlsParamsWithHTTPClient

func NewListIssuesForManyPurlsParamsWithHTTPClient(client *http.Client) *ListIssuesForManyPurlsParams

NewListIssuesForManyPurlsParamsWithHTTPClient creates a new ListIssuesForManyPurlsParams object with the ability to set a custom HTTPClient for a request.

func NewListIssuesForManyPurlsParamsWithTimeout

func NewListIssuesForManyPurlsParamsWithTimeout(timeout time.Duration) *ListIssuesForManyPurlsParams

NewListIssuesForManyPurlsParamsWithTimeout creates a new ListIssuesForManyPurlsParams object with the ability to set a timeout on a request.

func (*ListIssuesForManyPurlsParams) SetBody

SetBody adds the body to the list issues for many purls params

func (*ListIssuesForManyPurlsParams) SetContext

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

SetContext adds the context to the list issues for many purls params

func (*ListIssuesForManyPurlsParams) SetDefaults

func (o *ListIssuesForManyPurlsParams) SetDefaults()

SetDefaults hydrates default values in the list issues for many purls params (not the query body).

All values with no default are reset to their zero value.

func (*ListIssuesForManyPurlsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the list issues for many purls params

func (*ListIssuesForManyPurlsParams) SetOrgID

func (o *ListIssuesForManyPurlsParams) SetOrgID(orgID strfmt.UUID)

SetOrgID adds the orgId to the list issues for many purls params

func (*ListIssuesForManyPurlsParams) SetTimeout

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

SetTimeout adds the timeout to the list issues for many purls params

func (*ListIssuesForManyPurlsParams) SetVersion

func (o *ListIssuesForManyPurlsParams) SetVersion(version string)

SetVersion adds the version to the list issues for many purls params

func (*ListIssuesForManyPurlsParams) WithBody

WithBody adds the body to the list issues for many purls params

func (*ListIssuesForManyPurlsParams) WithContext

WithContext adds the context to the list issues for many purls params

func (*ListIssuesForManyPurlsParams) WithDefaults

WithDefaults hydrates default values in the list issues for many purls params (not the query body).

All values with no default are reset to their zero value.

func (*ListIssuesForManyPurlsParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the list issues for many purls params

func (*ListIssuesForManyPurlsParams) WithOrgID

WithOrgID adds the orgID to the list issues for many purls params

func (*ListIssuesForManyPurlsParams) WithTimeout

WithTimeout adds the timeout to the list issues for many purls params

func (*ListIssuesForManyPurlsParams) WithVersion

WithVersion adds the version to the list issues for many purls params

func (*ListIssuesForManyPurlsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ListIssuesForManyPurlsReader

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

ListIssuesForManyPurlsReader is a Reader for the ListIssuesForManyPurls structure.

func (*ListIssuesForManyPurlsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ListIssuesForManyPurlsUnauthorized

type ListIssuesForManyPurlsUnauthorized struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *ListIssuesForManyPurlsUnauthorizedBody
}

ListIssuesForManyPurlsUnauthorized describes a response with status code 401, with default header values.

Unauthorized: the request requires an authentication token.

func NewListIssuesForManyPurlsUnauthorized

func NewListIssuesForManyPurlsUnauthorized() *ListIssuesForManyPurlsUnauthorized

NewListIssuesForManyPurlsUnauthorized creates a ListIssuesForManyPurlsUnauthorized with default headers values

func (*ListIssuesForManyPurlsUnauthorized) Code

Code gets the status code for the list issues for many purls unauthorized response

func (*ListIssuesForManyPurlsUnauthorized) Error

func (*ListIssuesForManyPurlsUnauthorized) GetPayload

func (*ListIssuesForManyPurlsUnauthorized) IsClientError

func (o *ListIssuesForManyPurlsUnauthorized) IsClientError() bool

IsClientError returns true when this list issues for many purls unauthorized response has a 4xx status code

func (*ListIssuesForManyPurlsUnauthorized) IsCode

IsCode returns true when this list issues for many purls unauthorized response a status code equal to that given

func (*ListIssuesForManyPurlsUnauthorized) IsRedirect

func (o *ListIssuesForManyPurlsUnauthorized) IsRedirect() bool

IsRedirect returns true when this list issues for many purls unauthorized response has a 3xx status code

func (*ListIssuesForManyPurlsUnauthorized) IsServerError

func (o *ListIssuesForManyPurlsUnauthorized) IsServerError() bool

IsServerError returns true when this list issues for many purls unauthorized response has a 5xx status code

func (*ListIssuesForManyPurlsUnauthorized) IsSuccess

IsSuccess returns true when this list issues for many purls unauthorized response has a 2xx status code

func (*ListIssuesForManyPurlsUnauthorized) String

type ListIssuesForManyPurlsUnauthorizedBody

type ListIssuesForManyPurlsUnauthorizedBody struct {

	// errors
	// Example: [{"detail":"Permission denied for this resource","status":"403"}]
	// Required: true
	// Min Items: 1
	Errors []*ListIssuesForManyPurlsUnauthorizedBodyErrorsItems0 `json:"errors"`

	// jsonapi
	// Required: true
	Jsonapi *ListIssuesForManyPurlsUnauthorizedBodyJsonapi `json:"jsonapi"`
}

ListIssuesForManyPurlsUnauthorizedBody list issues for many purls unauthorized body // Example: {"errors":[{"detail":"Permission denied for this resource","status":"403"}],"jsonapi":{"version":"1.0"}} swagger:model ListIssuesForManyPurlsUnauthorizedBody

func (*ListIssuesForManyPurlsUnauthorizedBody) ContextValidate

ContextValidate validate this list issues for many purls unauthorized body based on the context it is used

func (*ListIssuesForManyPurlsUnauthorizedBody) MarshalBinary

func (o *ListIssuesForManyPurlsUnauthorizedBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ListIssuesForManyPurlsUnauthorizedBody) UnmarshalBinary

func (o *ListIssuesForManyPurlsUnauthorizedBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ListIssuesForManyPurlsUnauthorizedBody) Validate

Validate validates this list issues for many purls unauthorized body

type ListIssuesForManyPurlsUnauthorizedBodyErrorsItems0

type ListIssuesForManyPurlsUnauthorizedBodyErrorsItems0 struct {

	// An application-specific error code, expressed as a string value.
	// Example: entity-not-found
	Code string `json:"code,omitempty"`

	// A human-readable explanation specific to this occurrence of the problem.
	// Example: The request was missing these required fields: ...
	// Required: true
	Detail *string `json:"detail"`

	// A unique identifier for this particular occurrence of the problem.
	// Example: f16c31b5-6129-4571-add8-d589da9be524
	// Format: uuid
	ID strfmt.UUID `json:"id,omitempty"`

	// links
	Links *ListIssuesForManyPurlsUnauthorizedBodyErrorsItems0Links `json:"links,omitempty"`

	// meta
	// Example: {"key":"value"}
	Meta interface{} `json:"meta,omitempty"`

	// source
	Source *ListIssuesForManyPurlsUnauthorizedBodyErrorsItems0Source `json:"source,omitempty"`

	// The HTTP status code applicable to this problem, expressed as a string value.
	// Example: 400
	// Required: true
	// Pattern: ^[45]\d\d$
	Status *string `json:"status"`

	// A short, human-readable summary of the problem that SHOULD NOT change from occurrence to occurrence of the problem, except for purposes of localization.
	// Example: Bad request
	Title string `json:"title,omitempty"`
}

ListIssuesForManyPurlsUnauthorizedBodyErrorsItems0 list issues for many purls unauthorized body errors items0 // Example: {"detail":"Not Found","status":"404"} swagger:model ListIssuesForManyPurlsUnauthorizedBodyErrorsItems0

func (*ListIssuesForManyPurlsUnauthorizedBodyErrorsItems0) ContextValidate

ContextValidate validate this list issues for many purls unauthorized body errors items0 based on the context it is used

func (*ListIssuesForManyPurlsUnauthorizedBodyErrorsItems0) MarshalBinary

MarshalBinary interface implementation

func (*ListIssuesForManyPurlsUnauthorizedBodyErrorsItems0) UnmarshalBinary

UnmarshalBinary interface implementation

func (*ListIssuesForManyPurlsUnauthorizedBodyErrorsItems0) Validate

Validate validates this list issues for many purls unauthorized body errors items0

type ListIssuesForManyPurlsUnauthorizedBodyErrorsItems0Links struct {

	// about
	// Example: https://example.com/api/resource
	About interface{} `json:"about,omitempty"`
}

ListIssuesForManyPurlsUnauthorizedBodyErrorsItems0Links A link that leads to further details about this particular occurrance of the problem. // Example: {"about":"https://example.com/about_this_error"} swagger:model ListIssuesForManyPurlsUnauthorizedBodyErrorsItems0Links

func (*ListIssuesForManyPurlsUnauthorizedBodyErrorsItems0Links) ContextValidate

ContextValidate validates this list issues for many purls unauthorized body errors items0 links based on context it is used

func (*ListIssuesForManyPurlsUnauthorizedBodyErrorsItems0Links) MarshalBinary

MarshalBinary interface implementation

func (*ListIssuesForManyPurlsUnauthorizedBodyErrorsItems0Links) UnmarshalBinary

UnmarshalBinary interface implementation

func (*ListIssuesForManyPurlsUnauthorizedBodyErrorsItems0Links) Validate

Validate validates this list issues for many purls unauthorized body errors items0 links

type ListIssuesForManyPurlsUnauthorizedBodyErrorsItems0Source

type ListIssuesForManyPurlsUnauthorizedBodyErrorsItems0Source struct {

	// A string indicating which URI query parameter caused the error.
	// Example: param1
	Parameter string `json:"parameter,omitempty"`

	// A JSON Pointer [RFC6901] to the associated entity in the request document.
	// Example: /data/attributes
	Pointer string `json:"pointer,omitempty"`
}

ListIssuesForManyPurlsUnauthorizedBodyErrorsItems0Source list issues for many purls unauthorized body errors items0 source // Example: {"pointer":"/data/attributes"} swagger:model ListIssuesForManyPurlsUnauthorizedBodyErrorsItems0Source

func (*ListIssuesForManyPurlsUnauthorizedBodyErrorsItems0Source) ContextValidate

ContextValidate validates this list issues for many purls unauthorized body errors items0 source based on context it is used

func (*ListIssuesForManyPurlsUnauthorizedBodyErrorsItems0Source) MarshalBinary

MarshalBinary interface implementation

func (*ListIssuesForManyPurlsUnauthorizedBodyErrorsItems0Source) UnmarshalBinary

UnmarshalBinary interface implementation

func (*ListIssuesForManyPurlsUnauthorizedBodyErrorsItems0Source) Validate

Validate validates this list issues for many purls unauthorized body errors items0 source

type ListIssuesForManyPurlsUnauthorizedBodyJsonapi

type ListIssuesForManyPurlsUnauthorizedBodyJsonapi struct {

	// Version of the JSON API specification this server supports.
	// Example: 1.0
	// Required: true
	// Pattern: ^(0|[1-9]\d*)\.(0|[1-9]\d*)$
	Version *string `json:"version"`
}

ListIssuesForManyPurlsUnauthorizedBodyJsonapi list issues for many purls unauthorized body jsonapi // Example: {"version":"1.0"} swagger:model ListIssuesForManyPurlsUnauthorizedBodyJsonapi

func (*ListIssuesForManyPurlsUnauthorizedBodyJsonapi) ContextValidate

ContextValidate validates this list issues for many purls unauthorized body jsonapi based on context it is used

func (*ListIssuesForManyPurlsUnauthorizedBodyJsonapi) MarshalBinary

MarshalBinary interface implementation

func (*ListIssuesForManyPurlsUnauthorizedBodyJsonapi) UnmarshalBinary

UnmarshalBinary interface implementation

func (*ListIssuesForManyPurlsUnauthorizedBodyJsonapi) Validate

Validate validates this list issues for many purls unauthorized body jsonapi

type ListOrgIssuesForbidden

type ListOrgIssuesForbidden struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *models.ErrorDocument
}

ListOrgIssuesForbidden describes a response with status code 403, with default header values.

Unauthorized: the request requires an authentication token or a token with more permissions.

func NewListOrgIssuesForbidden

func NewListOrgIssuesForbidden() *ListOrgIssuesForbidden

NewListOrgIssuesForbidden creates a ListOrgIssuesForbidden with default headers values

func (*ListOrgIssuesForbidden) Code

func (o *ListOrgIssuesForbidden) Code() int

Code gets the status code for the list org issues forbidden response

func (*ListOrgIssuesForbidden) Error

func (o *ListOrgIssuesForbidden) Error() string

func (*ListOrgIssuesForbidden) GetPayload

func (o *ListOrgIssuesForbidden) GetPayload() *models.ErrorDocument

func (*ListOrgIssuesForbidden) IsClientError

func (o *ListOrgIssuesForbidden) IsClientError() bool

IsClientError returns true when this list org issues forbidden response has a 4xx status code

func (*ListOrgIssuesForbidden) IsCode

func (o *ListOrgIssuesForbidden) IsCode(code int) bool

IsCode returns true when this list org issues forbidden response a status code equal to that given

func (*ListOrgIssuesForbidden) IsRedirect

func (o *ListOrgIssuesForbidden) IsRedirect() bool

IsRedirect returns true when this list org issues forbidden response has a 3xx status code

func (*ListOrgIssuesForbidden) IsServerError

func (o *ListOrgIssuesForbidden) IsServerError() bool

IsServerError returns true when this list org issues forbidden response has a 5xx status code

func (*ListOrgIssuesForbidden) IsSuccess

func (o *ListOrgIssuesForbidden) IsSuccess() bool

IsSuccess returns true when this list org issues forbidden response has a 2xx status code

func (*ListOrgIssuesForbidden) String

func (o *ListOrgIssuesForbidden) String() string

type ListOrgIssuesInternalServerError

type ListOrgIssuesInternalServerError struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *models.ErrorDocument
}

ListOrgIssuesInternalServerError describes a response with status code 500, with default header values.

Internal Server Error: An error was encountered while attempting to process the request.

func NewListOrgIssuesInternalServerError

func NewListOrgIssuesInternalServerError() *ListOrgIssuesInternalServerError

NewListOrgIssuesInternalServerError creates a ListOrgIssuesInternalServerError with default headers values

func (*ListOrgIssuesInternalServerError) Code

Code gets the status code for the list org issues internal server error response

func (*ListOrgIssuesInternalServerError) Error

func (*ListOrgIssuesInternalServerError) GetPayload

func (*ListOrgIssuesInternalServerError) IsClientError

func (o *ListOrgIssuesInternalServerError) IsClientError() bool

IsClientError returns true when this list org issues internal server error response has a 4xx status code

func (*ListOrgIssuesInternalServerError) IsCode

func (o *ListOrgIssuesInternalServerError) IsCode(code int) bool

IsCode returns true when this list org issues internal server error response a status code equal to that given

func (*ListOrgIssuesInternalServerError) IsRedirect

func (o *ListOrgIssuesInternalServerError) IsRedirect() bool

IsRedirect returns true when this list org issues internal server error response has a 3xx status code

func (*ListOrgIssuesInternalServerError) IsServerError

func (o *ListOrgIssuesInternalServerError) IsServerError() bool

IsServerError returns true when this list org issues internal server error response has a 5xx status code

func (*ListOrgIssuesInternalServerError) IsSuccess

func (o *ListOrgIssuesInternalServerError) IsSuccess() bool

IsSuccess returns true when this list org issues internal server error response has a 2xx status code

func (*ListOrgIssuesInternalServerError) String

type ListOrgIssuesNotFound

type ListOrgIssuesNotFound struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *models.ErrorDocument
}

ListOrgIssuesNotFound describes a response with status code 404, with default header values.

Not Found: The resource being operated on could not be found.

func NewListOrgIssuesNotFound

func NewListOrgIssuesNotFound() *ListOrgIssuesNotFound

NewListOrgIssuesNotFound creates a ListOrgIssuesNotFound with default headers values

func (*ListOrgIssuesNotFound) Code

func (o *ListOrgIssuesNotFound) Code() int

Code gets the status code for the list org issues not found response

func (*ListOrgIssuesNotFound) Error

func (o *ListOrgIssuesNotFound) Error() string

func (*ListOrgIssuesNotFound) GetPayload

func (o *ListOrgIssuesNotFound) GetPayload() *models.ErrorDocument

func (*ListOrgIssuesNotFound) IsClientError

func (o *ListOrgIssuesNotFound) IsClientError() bool

IsClientError returns true when this list org issues not found response has a 4xx status code

func (*ListOrgIssuesNotFound) IsCode

func (o *ListOrgIssuesNotFound) IsCode(code int) bool

IsCode returns true when this list org issues not found response a status code equal to that given

func (*ListOrgIssuesNotFound) IsRedirect

func (o *ListOrgIssuesNotFound) IsRedirect() bool

IsRedirect returns true when this list org issues not found response has a 3xx status code

func (*ListOrgIssuesNotFound) IsServerError

func (o *ListOrgIssuesNotFound) IsServerError() bool

IsServerError returns true when this list org issues not found response has a 5xx status code

func (*ListOrgIssuesNotFound) IsSuccess

func (o *ListOrgIssuesNotFound) IsSuccess() bool

IsSuccess returns true when this list org issues not found response has a 2xx status code

func (*ListOrgIssuesNotFound) String

func (o *ListOrgIssuesNotFound) String() string

type ListOrgIssuesOK

type ListOrgIssuesOK struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *ListOrgIssuesOKBody
}

ListOrgIssuesOK describes a response with status code 200, with default header values.

Returns a collection of issues.

func NewListOrgIssuesOK

func NewListOrgIssuesOK() *ListOrgIssuesOK

NewListOrgIssuesOK creates a ListOrgIssuesOK with default headers values

func (*ListOrgIssuesOK) Code

func (o *ListOrgIssuesOK) Code() int

Code gets the status code for the list org issues o k response

func (*ListOrgIssuesOK) Error

func (o *ListOrgIssuesOK) Error() string

func (*ListOrgIssuesOK) GetPayload

func (o *ListOrgIssuesOK) GetPayload() *ListOrgIssuesOKBody

func (*ListOrgIssuesOK) IsClientError

func (o *ListOrgIssuesOK) IsClientError() bool

IsClientError returns true when this list org issues o k response has a 4xx status code

func (*ListOrgIssuesOK) IsCode

func (o *ListOrgIssuesOK) IsCode(code int) bool

IsCode returns true when this list org issues o k response a status code equal to that given

func (*ListOrgIssuesOK) IsRedirect

func (o *ListOrgIssuesOK) IsRedirect() bool

IsRedirect returns true when this list org issues o k response has a 3xx status code

func (*ListOrgIssuesOK) IsServerError

func (o *ListOrgIssuesOK) IsServerError() bool

IsServerError returns true when this list org issues o k response has a 5xx status code

func (*ListOrgIssuesOK) IsSuccess

func (o *ListOrgIssuesOK) IsSuccess() bool

IsSuccess returns true when this list org issues o k response has a 2xx status code

func (*ListOrgIssuesOK) String

func (o *ListOrgIssuesOK) String() string

type ListOrgIssuesOKBody

type ListOrgIssuesOKBody struct {

	// data
	// Required: true
	Data []*models.Issue `json:"data"`

	// jsonapi
	// Required: true
	Jsonapi *models.JSONAPI `json:"jsonapi"`

	// links
	Links *models.PaginatedLinks `json:"links,omitempty"`
}

ListOrgIssuesOKBody list org issues o k body swagger:model ListOrgIssuesOKBody

func (*ListOrgIssuesOKBody) ContextValidate

func (o *ListOrgIssuesOKBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this list org issues o k body based on the context it is used

func (*ListOrgIssuesOKBody) MarshalBinary

func (o *ListOrgIssuesOKBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ListOrgIssuesOKBody) UnmarshalBinary

func (o *ListOrgIssuesOKBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ListOrgIssuesOKBody) Validate

func (o *ListOrgIssuesOKBody) Validate(formats strfmt.Registry) error

Validate validates this list org issues o k body

type ListOrgIssuesParams

type ListOrgIssuesParams struct {

	/* CreatedAfter.

	   A filter to select issues created after this date.

	   Format: date-time
	*/
	CreatedAfter *strfmt.DateTime

	/* CreatedBefore.

	   A filter to select issues created before this date.

	   Format: date-time
	*/
	CreatedBefore *strfmt.DateTime

	/* EffectiveSeverityLevel.

	   One or more effective severity levels to filter issues.
	*/
	EffectiveSeverityLevel []string

	/* EndingBefore.

	   Return the page of results immediately before this cursor
	*/
	EndingBefore *string

	/* Ignored.

	   Whether an issue is ignored or not.
	*/
	Ignored *bool

	/* Limit.

	   Number of results to return per page

	   Format: int32
	   Default: 10
	*/
	Limit *int32

	/* OrgID.

	   Org ID

	   Format: uuid
	*/
	OrgID strfmt.UUID

	/* ScanItemID.

	   A scan item id to filter issues through their scan item relationship.

	   Format: uuid
	*/
	ScanItemID *strfmt.UUID

	/* ScanItemType.

	   A scan item types to filter issues through their scan item relationship.
	*/
	ScanItemType *string

	/* StartingAfter.

	   Return the page of results immediately after this cursor
	*/
	StartingAfter *string

	/* Status.

	   An issue's status
	*/
	Status []string

	/* Type.

	   An issue type to filter issues.
	*/
	Type *string

	/* UpdatedAfter.

	   A filter to select issues updated after this date.

	   Format: date-time
	*/
	UpdatedAfter *strfmt.DateTime

	/* UpdatedBefore.

	   A filter to select issues updated before this date.

	   Format: date-time
	*/
	UpdatedBefore *strfmt.DateTime

	/* Version.

	   The requested version of the endpoint to process the request
	*/
	Version string

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

ListOrgIssuesParams contains all the parameters to send to the API endpoint

for the list org issues operation.

Typically these are written to a http.Request.

func NewListOrgIssuesParams

func NewListOrgIssuesParams() *ListOrgIssuesParams

NewListOrgIssuesParams creates a new ListOrgIssuesParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewListOrgIssuesParamsWithContext

func NewListOrgIssuesParamsWithContext(ctx context.Context) *ListOrgIssuesParams

NewListOrgIssuesParamsWithContext creates a new ListOrgIssuesParams object with the ability to set a context for a request.

func NewListOrgIssuesParamsWithHTTPClient

func NewListOrgIssuesParamsWithHTTPClient(client *http.Client) *ListOrgIssuesParams

NewListOrgIssuesParamsWithHTTPClient creates a new ListOrgIssuesParams object with the ability to set a custom HTTPClient for a request.

func NewListOrgIssuesParamsWithTimeout

func NewListOrgIssuesParamsWithTimeout(timeout time.Duration) *ListOrgIssuesParams

NewListOrgIssuesParamsWithTimeout creates a new ListOrgIssuesParams object with the ability to set a timeout on a request.

func (*ListOrgIssuesParams) SetContext

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

SetContext adds the context to the list org issues params

func (*ListOrgIssuesParams) SetCreatedAfter

func (o *ListOrgIssuesParams) SetCreatedAfter(createdAfter *strfmt.DateTime)

SetCreatedAfter adds the createdAfter to the list org issues params

func (*ListOrgIssuesParams) SetCreatedBefore

func (o *ListOrgIssuesParams) SetCreatedBefore(createdBefore *strfmt.DateTime)

SetCreatedBefore adds the createdBefore to the list org issues params

func (*ListOrgIssuesParams) SetDefaults

func (o *ListOrgIssuesParams) SetDefaults()

SetDefaults hydrates default values in the list org issues params (not the query body).

All values with no default are reset to their zero value.

func (*ListOrgIssuesParams) SetEffectiveSeverityLevel

func (o *ListOrgIssuesParams) SetEffectiveSeverityLevel(effectiveSeverityLevel []string)

SetEffectiveSeverityLevel adds the effectiveSeverityLevel to the list org issues params

func (*ListOrgIssuesParams) SetEndingBefore

func (o *ListOrgIssuesParams) SetEndingBefore(endingBefore *string)

SetEndingBefore adds the endingBefore to the list org issues params

func (*ListOrgIssuesParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the list org issues params

func (*ListOrgIssuesParams) SetIgnored

func (o *ListOrgIssuesParams) SetIgnored(ignored *bool)

SetIgnored adds the ignored to the list org issues params

func (*ListOrgIssuesParams) SetLimit

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

SetLimit adds the limit to the list org issues params

func (*ListOrgIssuesParams) SetOrgID

func (o *ListOrgIssuesParams) SetOrgID(orgID strfmt.UUID)

SetOrgID adds the orgId to the list org issues params

func (*ListOrgIssuesParams) SetScanItemID

func (o *ListOrgIssuesParams) SetScanItemID(scanItemID *strfmt.UUID)

SetScanItemID adds the scanItemId to the list org issues params

func (*ListOrgIssuesParams) SetScanItemType

func (o *ListOrgIssuesParams) SetScanItemType(scanItemType *string)

SetScanItemType adds the scanItemType to the list org issues params

func (*ListOrgIssuesParams) SetStartingAfter

func (o *ListOrgIssuesParams) SetStartingAfter(startingAfter *string)

SetStartingAfter adds the startingAfter to the list org issues params

func (*ListOrgIssuesParams) SetStatus

func (o *ListOrgIssuesParams) SetStatus(status []string)

SetStatus adds the status to the list org issues params

func (*ListOrgIssuesParams) SetTimeout

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

SetTimeout adds the timeout to the list org issues params

func (*ListOrgIssuesParams) SetType

func (o *ListOrgIssuesParams) SetType(typeVar *string)

SetType adds the type to the list org issues params

func (*ListOrgIssuesParams) SetUpdatedAfter

func (o *ListOrgIssuesParams) SetUpdatedAfter(updatedAfter *strfmt.DateTime)

SetUpdatedAfter adds the updatedAfter to the list org issues params

func (*ListOrgIssuesParams) SetUpdatedBefore

func (o *ListOrgIssuesParams) SetUpdatedBefore(updatedBefore *strfmt.DateTime)

SetUpdatedBefore adds the updatedBefore to the list org issues params

func (*ListOrgIssuesParams) SetVersion

func (o *ListOrgIssuesParams) SetVersion(version string)

SetVersion adds the version to the list org issues params

func (*ListOrgIssuesParams) WithContext

WithContext adds the context to the list org issues params

func (*ListOrgIssuesParams) WithCreatedAfter

func (o *ListOrgIssuesParams) WithCreatedAfter(createdAfter *strfmt.DateTime) *ListOrgIssuesParams

WithCreatedAfter adds the createdAfter to the list org issues params

func (*ListOrgIssuesParams) WithCreatedBefore

func (o *ListOrgIssuesParams) WithCreatedBefore(createdBefore *strfmt.DateTime) *ListOrgIssuesParams

WithCreatedBefore adds the createdBefore to the list org issues params

func (*ListOrgIssuesParams) WithDefaults

func (o *ListOrgIssuesParams) WithDefaults() *ListOrgIssuesParams

WithDefaults hydrates default values in the list org issues params (not the query body).

All values with no default are reset to their zero value.

func (*ListOrgIssuesParams) WithEffectiveSeverityLevel

func (o *ListOrgIssuesParams) WithEffectiveSeverityLevel(effectiveSeverityLevel []string) *ListOrgIssuesParams

WithEffectiveSeverityLevel adds the effectiveSeverityLevel to the list org issues params

func (*ListOrgIssuesParams) WithEndingBefore

func (o *ListOrgIssuesParams) WithEndingBefore(endingBefore *string) *ListOrgIssuesParams

WithEndingBefore adds the endingBefore to the list org issues params

func (*ListOrgIssuesParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the list org issues params

func (*ListOrgIssuesParams) WithIgnored

func (o *ListOrgIssuesParams) WithIgnored(ignored *bool) *ListOrgIssuesParams

WithIgnored adds the ignored to the list org issues params

func (*ListOrgIssuesParams) WithLimit

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

WithLimit adds the limit to the list org issues params

func (*ListOrgIssuesParams) WithOrgID

func (o *ListOrgIssuesParams) WithOrgID(orgID strfmt.UUID) *ListOrgIssuesParams

WithOrgID adds the orgID to the list org issues params

func (*ListOrgIssuesParams) WithScanItemID

func (o *ListOrgIssuesParams) WithScanItemID(scanItemID *strfmt.UUID) *ListOrgIssuesParams

WithScanItemID adds the scanItemID to the list org issues params

func (*ListOrgIssuesParams) WithScanItemType

func (o *ListOrgIssuesParams) WithScanItemType(scanItemType *string) *ListOrgIssuesParams

WithScanItemType adds the scanItemType to the list org issues params

func (*ListOrgIssuesParams) WithStartingAfter

func (o *ListOrgIssuesParams) WithStartingAfter(startingAfter *string) *ListOrgIssuesParams

WithStartingAfter adds the startingAfter to the list org issues params

func (*ListOrgIssuesParams) WithStatus

func (o *ListOrgIssuesParams) WithStatus(status []string) *ListOrgIssuesParams

WithStatus adds the status to the list org issues params

func (*ListOrgIssuesParams) WithTimeout

func (o *ListOrgIssuesParams) WithTimeout(timeout time.Duration) *ListOrgIssuesParams

WithTimeout adds the timeout to the list org issues params

func (*ListOrgIssuesParams) WithType

func (o *ListOrgIssuesParams) WithType(typeVar *string) *ListOrgIssuesParams

WithType adds the typeVar to the list org issues params

func (*ListOrgIssuesParams) WithUpdatedAfter

func (o *ListOrgIssuesParams) WithUpdatedAfter(updatedAfter *strfmt.DateTime) *ListOrgIssuesParams

WithUpdatedAfter adds the updatedAfter to the list org issues params

func (*ListOrgIssuesParams) WithUpdatedBefore

func (o *ListOrgIssuesParams) WithUpdatedBefore(updatedBefore *strfmt.DateTime) *ListOrgIssuesParams

WithUpdatedBefore adds the updatedBefore to the list org issues params

func (*ListOrgIssuesParams) WithVersion

func (o *ListOrgIssuesParams) WithVersion(version string) *ListOrgIssuesParams

WithVersion adds the version to the list org issues params

func (*ListOrgIssuesParams) WriteToRequest

func (o *ListOrgIssuesParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type ListOrgIssuesReader

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

ListOrgIssuesReader is a Reader for the ListOrgIssues structure.

func (*ListOrgIssuesReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ListOrgIssuesUnauthorized

type ListOrgIssuesUnauthorized struct {

	/* A header containing the deprecation date of the underlying endpoint. For more information, please refer to the deprecation header RFC:
	https://tools.ietf.org/id/draft-dalal-deprecation-header-01.html


	     Format: date-time
	*/
	Deprecation strfmt.DateTime

	/* A header containing a unique id used for tracking this request. If you are reporting an issue to Snyk it's very helpful to provide this ID.


	   Format: uuid
	*/
	SnykRequestID strfmt.UUID

	/* A header containing the version stage of the endpoint. This stage describes the guarantees snyk provides surrounding stability of the endpoint.

	 */
	SnykVersionLifecycleStage string

	/* A header containing the version of the endpoint requested by the caller.
	 */
	SnykVersionRequested string

	/* A header containing the version of the endpoint that was served by the API.
	 */
	SnykVersionServed string

	/* A header containing the date of when the underlying endpoint will be removed. This header is only present if the endpoint has been deprecated. Please refer to the RFC for more information:
	https://datatracker.ietf.org/doc/html/rfc8594


	     Format: date-time
	*/
	Sunset strfmt.DateTime

	Payload *models.ErrorDocument
}

ListOrgIssuesUnauthorized describes a response with status code 401, with default header values.

Unauthorized: the request requires an authentication token or a token with more permissions.

func NewListOrgIssuesUnauthorized

func NewListOrgIssuesUnauthorized() *ListOrgIssuesUnauthorized

NewListOrgIssuesUnauthorized creates a ListOrgIssuesUnauthorized with default headers values

func (*ListOrgIssuesUnauthorized) Code

func (o *ListOrgIssuesUnauthorized) Code() int

Code gets the status code for the list org issues unauthorized response

func (*ListOrgIssuesUnauthorized) Error

func (o *ListOrgIssuesUnauthorized) Error() string

func (*ListOrgIssuesUnauthorized) GetPayload

func (*ListOrgIssuesUnauthorized) IsClientError

func (o *ListOrgIssuesUnauthorized) IsClientError() bool

IsClientError returns true when this list org issues unauthorized response has a 4xx status code

func (*ListOrgIssuesUnauthorized) IsCode

func (o *ListOrgIssuesUnauthorized) IsCode(code int) bool

IsCode returns true when this list org issues unauthorized response a status code equal to that given

func (*ListOrgIssuesUnauthorized) IsRedirect

func (o *ListOrgIssuesUnauthorized) IsRedirect() bool

IsRedirect returns true when this list org issues unauthorized response has a 3xx status code

func (*ListOrgIssuesUnauthorized) IsServerError

func (o *ListOrgIssuesUnauthorized) IsServerError() bool

IsServerError returns true when this list org issues unauthorized response has a 5xx status code

func (*ListOrgIssuesUnauthorized) IsSuccess

func (o *ListOrgIssuesUnauthorized) IsSuccess() bool

IsSuccess returns true when this list org issues unauthorized response has a 2xx status code

func (*ListOrgIssuesUnauthorized) String

func (o *ListOrgIssuesUnauthorized) String() string

Jump to

Keyboard shortcuts

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