identity_ops

package
v0.0.0-...-9aa0b92 Latest Latest
Warning

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

Go to latest
Published: Jan 2, 2022 License: MIT Imports: 12 Imported by: 0

Documentation

Index

Constants

View Source
const IdentityOpsDeletePublicTokenOKCode int = 200

IdentityOpsDeletePublicTokenOKCode is the HTTP code returned for type IdentityOpsDeletePublicTokenOK

View Source
const IdentityOpsGeneratePublicTokenOKCode int = 200

IdentityOpsGeneratePublicTokenOKCode is the HTTP code returned for type IdentityOpsGeneratePublicTokenOK

View Source
const IdentityOpsGetPrivateTokenOKCode int = 200

IdentityOpsGetPrivateTokenOKCode is the HTTP code returned for type IdentityOpsGetPrivateTokenOK

View Source
const IdentityOpsListPublicTokenOKCode int = 200

IdentityOpsListPublicTokenOKCode is the HTTP code returned for type IdentityOpsListPublicTokenOK

View Source
const IdentityOpsLoginOKCode int = 200

IdentityOpsLoginOKCode is the HTTP code returned for type IdentityOpsLoginOK

View Source
const IdentityOpsReGeneratePrivateTokenOKCode int = 200

IdentityOpsReGeneratePrivateTokenOKCode is the HTTP code returned for type IdentityOpsReGeneratePrivateTokenOK

View Source
const IdentityOpsRegisterOKCode int = 200

IdentityOpsRegisterOKCode is the HTTP code returned for type IdentityOpsRegisterOK

View Source
const IdentityOpsVerifyOKCode int = 200

IdentityOpsVerifyOKCode is the HTTP code returned for type IdentityOpsVerifyOK

Variables

This section is empty.

Functions

This section is empty.

Types

type IdentityOpsDeletePublicToken

type IdentityOpsDeletePublicToken struct {
	Context *middleware.Context
	Handler IdentityOpsDeletePublicTokenHandler
}
IdentityOpsDeletePublicToken swagger:route DELETE /user/token/public IdentityOps identityOpsDeletePublicToken

delete public_token.

func NewIdentityOpsDeletePublicToken

func NewIdentityOpsDeletePublicToken(ctx *middleware.Context, handler IdentityOpsDeletePublicTokenHandler) *IdentityOpsDeletePublicToken

NewIdentityOpsDeletePublicToken creates a new http.Handler for the identity ops delete public token operation

func (*IdentityOpsDeletePublicToken) ServeHTTP

type IdentityOpsDeletePublicTokenDefault

type IdentityOpsDeletePublicTokenDefault struct {

	/*
	  In: Body
	*/
	Payload *models.GatewayruntimeError `json:"body,omitempty"`
	// contains filtered or unexported fields
}

IdentityOpsDeletePublicTokenDefault An unexpected error response.

swagger:response identityOpsDeletePublicTokenDefault

func NewIdentityOpsDeletePublicTokenDefault

func NewIdentityOpsDeletePublicTokenDefault(code int) *IdentityOpsDeletePublicTokenDefault

NewIdentityOpsDeletePublicTokenDefault creates IdentityOpsDeletePublicTokenDefault with default headers values

func (*IdentityOpsDeletePublicTokenDefault) SetPayload

SetPayload sets the payload to the identity ops delete public token default response

func (*IdentityOpsDeletePublicTokenDefault) SetStatusCode

func (o *IdentityOpsDeletePublicTokenDefault) SetStatusCode(code int)

SetStatusCode sets the status to the identity ops delete public token default response

func (*IdentityOpsDeletePublicTokenDefault) WithPayload

WithPayload adds the payload to the identity ops delete public token default response

func (*IdentityOpsDeletePublicTokenDefault) WithStatusCode

WithStatusCode adds the status to the identity ops delete public token default response

func (*IdentityOpsDeletePublicTokenDefault) WriteResponse

WriteResponse to the client

type IdentityOpsDeletePublicTokenHandler

type IdentityOpsDeletePublicTokenHandler interface {
	Handle(IdentityOpsDeletePublicTokenParams, *models.IdentityVerifyResp) middleware.Responder
}

IdentityOpsDeletePublicTokenHandler interface for that can handle valid identity ops delete public token params

type IdentityOpsDeletePublicTokenHandlerFunc

type IdentityOpsDeletePublicTokenHandlerFunc func(IdentityOpsDeletePublicTokenParams, *models.IdentityVerifyResp) middleware.Responder

IdentityOpsDeletePublicTokenHandlerFunc turns a function with the right signature into a identity ops delete public token handler

func (IdentityOpsDeletePublicTokenHandlerFunc) Handle

Handle executing the request and returning a response

type IdentityOpsDeletePublicTokenOK

type IdentityOpsDeletePublicTokenOK struct {

	/*
	  In: Body
	*/
	Payload *models.ModelCommonResp `json:"body,omitempty"`
}

IdentityOpsDeletePublicTokenOK A successful response.

swagger:response identityOpsDeletePublicTokenOK

func NewIdentityOpsDeletePublicTokenOK

func NewIdentityOpsDeletePublicTokenOK() *IdentityOpsDeletePublicTokenOK

NewIdentityOpsDeletePublicTokenOK creates IdentityOpsDeletePublicTokenOK with default headers values

func (*IdentityOpsDeletePublicTokenOK) SetPayload

func (o *IdentityOpsDeletePublicTokenOK) SetPayload(payload *models.ModelCommonResp)

SetPayload sets the payload to the identity ops delete public token o k response

func (*IdentityOpsDeletePublicTokenOK) WithPayload

WithPayload adds the payload to the identity ops delete public token o k response

func (*IdentityOpsDeletePublicTokenOK) WriteResponse

func (o *IdentityOpsDeletePublicTokenOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

type IdentityOpsDeletePublicTokenParams

type IdentityOpsDeletePublicTokenParams struct {

	// HTTP Request Object
	HTTPRequest *http.Request `json:"-"`

	/*
	  Required: true
	  In: body
	*/
	Body *models.IdentityDeletePublicTokenReq
}

IdentityOpsDeletePublicTokenParams contains all the bound params for the identity ops delete public token operation typically these are obtained from a http.Request

swagger:parameters IdentityOps_DeletePublicToken

func NewIdentityOpsDeletePublicTokenParams

func NewIdentityOpsDeletePublicTokenParams() IdentityOpsDeletePublicTokenParams

NewIdentityOpsDeletePublicTokenParams creates a new IdentityOpsDeletePublicTokenParams object

There are no default values defined in the spec.

func (*IdentityOpsDeletePublicTokenParams) BindRequest

BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface for simple values it will use straight method calls.

To ensure default values, the struct must have been initialized with NewIdentityOpsDeletePublicTokenParams() beforehand.

type IdentityOpsDeletePublicTokenURL

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

IdentityOpsDeletePublicTokenURL generates an URL for the identity ops delete public token operation

func (*IdentityOpsDeletePublicTokenURL) Build

Build a url path and query string

func (*IdentityOpsDeletePublicTokenURL) BuildFull

func (o *IdentityOpsDeletePublicTokenURL) BuildFull(scheme, host string) (*url.URL, error)

BuildFull builds a full url with scheme, host, path and query string

func (*IdentityOpsDeletePublicTokenURL) Must

func (o *IdentityOpsDeletePublicTokenURL) Must(u *url.URL, err error) *url.URL

Must is a helper function to panic when the url builder returns an error

func (*IdentityOpsDeletePublicTokenURL) SetBasePath

func (o *IdentityOpsDeletePublicTokenURL) SetBasePath(bp string)

SetBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

func (*IdentityOpsDeletePublicTokenURL) String

String returns the string representation of the path with query string

func (*IdentityOpsDeletePublicTokenURL) StringFull

func (o *IdentityOpsDeletePublicTokenURL) StringFull(scheme, host string) string

StringFull returns the string representation of a complete url

func (*IdentityOpsDeletePublicTokenURL) WithBasePath

WithBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

type IdentityOpsGeneratePublicToken

type IdentityOpsGeneratePublicToken struct {
	Context *middleware.Context
	Handler IdentityOpsGeneratePublicTokenHandler
}
IdentityOpsGeneratePublicToken swagger:route POST /user/token/public IdentityOps identityOpsGeneratePublicToken

generate public_token.

func NewIdentityOpsGeneratePublicToken

func NewIdentityOpsGeneratePublicToken(ctx *middleware.Context, handler IdentityOpsGeneratePublicTokenHandler) *IdentityOpsGeneratePublicToken

NewIdentityOpsGeneratePublicToken creates a new http.Handler for the identity ops generate public token operation

func (*IdentityOpsGeneratePublicToken) ServeHTTP

type IdentityOpsGeneratePublicTokenDefault

type IdentityOpsGeneratePublicTokenDefault struct {

	/*
	  In: Body
	*/
	Payload *models.GatewayruntimeError `json:"body,omitempty"`
	// contains filtered or unexported fields
}

IdentityOpsGeneratePublicTokenDefault An unexpected error response.

swagger:response identityOpsGeneratePublicTokenDefault

func NewIdentityOpsGeneratePublicTokenDefault

func NewIdentityOpsGeneratePublicTokenDefault(code int) *IdentityOpsGeneratePublicTokenDefault

NewIdentityOpsGeneratePublicTokenDefault creates IdentityOpsGeneratePublicTokenDefault with default headers values

func (*IdentityOpsGeneratePublicTokenDefault) SetPayload

SetPayload sets the payload to the identity ops generate public token default response

func (*IdentityOpsGeneratePublicTokenDefault) SetStatusCode

func (o *IdentityOpsGeneratePublicTokenDefault) SetStatusCode(code int)

SetStatusCode sets the status to the identity ops generate public token default response

func (*IdentityOpsGeneratePublicTokenDefault) WithPayload

WithPayload adds the payload to the identity ops generate public token default response

func (*IdentityOpsGeneratePublicTokenDefault) WithStatusCode

WithStatusCode adds the status to the identity ops generate public token default response

func (*IdentityOpsGeneratePublicTokenDefault) WriteResponse

WriteResponse to the client

type IdentityOpsGeneratePublicTokenHandler

type IdentityOpsGeneratePublicTokenHandler interface {
	Handle(IdentityOpsGeneratePublicTokenParams, *models.IdentityVerifyResp) middleware.Responder
}

IdentityOpsGeneratePublicTokenHandler interface for that can handle valid identity ops generate public token params

type IdentityOpsGeneratePublicTokenHandlerFunc

type IdentityOpsGeneratePublicTokenHandlerFunc func(IdentityOpsGeneratePublicTokenParams, *models.IdentityVerifyResp) middleware.Responder

IdentityOpsGeneratePublicTokenHandlerFunc turns a function with the right signature into a identity ops generate public token handler

func (IdentityOpsGeneratePublicTokenHandlerFunc) Handle

Handle executing the request and returning a response

type IdentityOpsGeneratePublicTokenOK

type IdentityOpsGeneratePublicTokenOK struct {

	/*
	  In: Body
	*/
	Payload *models.ModelCommonResp `json:"body,omitempty"`
}

IdentityOpsGeneratePublicTokenOK A successful response.

swagger:response identityOpsGeneratePublicTokenOK

func NewIdentityOpsGeneratePublicTokenOK

func NewIdentityOpsGeneratePublicTokenOK() *IdentityOpsGeneratePublicTokenOK

NewIdentityOpsGeneratePublicTokenOK creates IdentityOpsGeneratePublicTokenOK with default headers values

func (*IdentityOpsGeneratePublicTokenOK) SetPayload

SetPayload sets the payload to the identity ops generate public token o k response

func (*IdentityOpsGeneratePublicTokenOK) WithPayload

WithPayload adds the payload to the identity ops generate public token o k response

func (*IdentityOpsGeneratePublicTokenOK) WriteResponse

func (o *IdentityOpsGeneratePublicTokenOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

type IdentityOpsGeneratePublicTokenParams

type IdentityOpsGeneratePublicTokenParams struct {

	// HTTP Request Object
	HTTPRequest *http.Request `json:"-"`

	/*
	  Required: true
	  In: body
	*/
	Body *models.IdentityGeneratePublicTokenReq
}

IdentityOpsGeneratePublicTokenParams contains all the bound params for the identity ops generate public token operation typically these are obtained from a http.Request

swagger:parameters IdentityOps_GeneratePublicToken

func NewIdentityOpsGeneratePublicTokenParams

func NewIdentityOpsGeneratePublicTokenParams() IdentityOpsGeneratePublicTokenParams

NewIdentityOpsGeneratePublicTokenParams creates a new IdentityOpsGeneratePublicTokenParams object

There are no default values defined in the spec.

func (*IdentityOpsGeneratePublicTokenParams) BindRequest

BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface for simple values it will use straight method calls.

To ensure default values, the struct must have been initialized with NewIdentityOpsGeneratePublicTokenParams() beforehand.

type IdentityOpsGeneratePublicTokenURL

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

IdentityOpsGeneratePublicTokenURL generates an URL for the identity ops generate public token operation

func (*IdentityOpsGeneratePublicTokenURL) Build

Build a url path and query string

func (*IdentityOpsGeneratePublicTokenURL) BuildFull

func (o *IdentityOpsGeneratePublicTokenURL) BuildFull(scheme, host string) (*url.URL, error)

BuildFull builds a full url with scheme, host, path and query string

func (*IdentityOpsGeneratePublicTokenURL) Must

Must is a helper function to panic when the url builder returns an error

func (*IdentityOpsGeneratePublicTokenURL) SetBasePath

func (o *IdentityOpsGeneratePublicTokenURL) SetBasePath(bp string)

SetBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

func (*IdentityOpsGeneratePublicTokenURL) String

String returns the string representation of the path with query string

func (*IdentityOpsGeneratePublicTokenURL) StringFull

func (o *IdentityOpsGeneratePublicTokenURL) StringFull(scheme, host string) string

StringFull returns the string representation of a complete url

func (*IdentityOpsGeneratePublicTokenURL) WithBasePath

WithBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

type IdentityOpsGetPrivateToken

type IdentityOpsGetPrivateToken struct {
	Context *middleware.Context
	Handler IdentityOpsGetPrivateTokenHandler
}
IdentityOpsGetPrivateToken swagger:route GET /user/token/private IdentityOps identityOpsGetPrivateToken

get private_token.

func NewIdentityOpsGetPrivateToken

func NewIdentityOpsGetPrivateToken(ctx *middleware.Context, handler IdentityOpsGetPrivateTokenHandler) *IdentityOpsGetPrivateToken

NewIdentityOpsGetPrivateToken creates a new http.Handler for the identity ops get private token operation

func (*IdentityOpsGetPrivateToken) ServeHTTP

type IdentityOpsGetPrivateTokenDefault

type IdentityOpsGetPrivateTokenDefault struct {

	/*
	  In: Body
	*/
	Payload *models.GatewayruntimeError `json:"body,omitempty"`
	// contains filtered or unexported fields
}

IdentityOpsGetPrivateTokenDefault An unexpected error response.

swagger:response identityOpsGetPrivateTokenDefault

func NewIdentityOpsGetPrivateTokenDefault

func NewIdentityOpsGetPrivateTokenDefault(code int) *IdentityOpsGetPrivateTokenDefault

NewIdentityOpsGetPrivateTokenDefault creates IdentityOpsGetPrivateTokenDefault with default headers values

func (*IdentityOpsGetPrivateTokenDefault) SetPayload

SetPayload sets the payload to the identity ops get private token default response

func (*IdentityOpsGetPrivateTokenDefault) SetStatusCode

func (o *IdentityOpsGetPrivateTokenDefault) SetStatusCode(code int)

SetStatusCode sets the status to the identity ops get private token default response

func (*IdentityOpsGetPrivateTokenDefault) WithPayload

WithPayload adds the payload to the identity ops get private token default response

func (*IdentityOpsGetPrivateTokenDefault) WithStatusCode

WithStatusCode adds the status to the identity ops get private token default response

func (*IdentityOpsGetPrivateTokenDefault) WriteResponse

func (o *IdentityOpsGetPrivateTokenDefault) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

type IdentityOpsGetPrivateTokenHandler

type IdentityOpsGetPrivateTokenHandler interface {
	Handle(IdentityOpsGetPrivateTokenParams, *models.IdentityVerifyResp) middleware.Responder
}

IdentityOpsGetPrivateTokenHandler interface for that can handle valid identity ops get private token params

type IdentityOpsGetPrivateTokenHandlerFunc

type IdentityOpsGetPrivateTokenHandlerFunc func(IdentityOpsGetPrivateTokenParams, *models.IdentityVerifyResp) middleware.Responder

IdentityOpsGetPrivateTokenHandlerFunc turns a function with the right signature into a identity ops get private token handler

func (IdentityOpsGetPrivateTokenHandlerFunc) Handle

Handle executing the request and returning a response

type IdentityOpsGetPrivateTokenOK

type IdentityOpsGetPrivateTokenOK struct {

	/*
	  In: Body
	*/
	Payload *models.ModelToken `json:"body,omitempty"`
}

IdentityOpsGetPrivateTokenOK A successful response.

swagger:response identityOpsGetPrivateTokenOK

func NewIdentityOpsGetPrivateTokenOK

func NewIdentityOpsGetPrivateTokenOK() *IdentityOpsGetPrivateTokenOK

NewIdentityOpsGetPrivateTokenOK creates IdentityOpsGetPrivateTokenOK with default headers values

func (*IdentityOpsGetPrivateTokenOK) SetPayload

func (o *IdentityOpsGetPrivateTokenOK) SetPayload(payload *models.ModelToken)

SetPayload sets the payload to the identity ops get private token o k response

func (*IdentityOpsGetPrivateTokenOK) WithPayload

WithPayload adds the payload to the identity ops get private token o k response

func (*IdentityOpsGetPrivateTokenOK) WriteResponse

func (o *IdentityOpsGetPrivateTokenOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

type IdentityOpsGetPrivateTokenParams

type IdentityOpsGetPrivateTokenParams struct {

	// HTTP Request Object
	HTTPRequest *http.Request `json:"-"`

	/*
	  In: query
	*/
	Email *string
	/*
	  In: query
	*/
	Name *string
}

IdentityOpsGetPrivateTokenParams contains all the bound params for the identity ops get private token operation typically these are obtained from a http.Request

swagger:parameters IdentityOps_GetPrivateToken

func NewIdentityOpsGetPrivateTokenParams

func NewIdentityOpsGetPrivateTokenParams() IdentityOpsGetPrivateTokenParams

NewIdentityOpsGetPrivateTokenParams creates a new IdentityOpsGetPrivateTokenParams object

There are no default values defined in the spec.

func (*IdentityOpsGetPrivateTokenParams) BindRequest

BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface for simple values it will use straight method calls.

To ensure default values, the struct must have been initialized with NewIdentityOpsGetPrivateTokenParams() beforehand.

type IdentityOpsGetPrivateTokenURL

type IdentityOpsGetPrivateTokenURL struct {
	Email *string
	Name  *string
	// contains filtered or unexported fields
}

IdentityOpsGetPrivateTokenURL generates an URL for the identity ops get private token operation

func (*IdentityOpsGetPrivateTokenURL) Build

func (o *IdentityOpsGetPrivateTokenURL) Build() (*url.URL, error)

Build a url path and query string

func (*IdentityOpsGetPrivateTokenURL) BuildFull

func (o *IdentityOpsGetPrivateTokenURL) BuildFull(scheme, host string) (*url.URL, error)

BuildFull builds a full url with scheme, host, path and query string

func (*IdentityOpsGetPrivateTokenURL) Must

func (o *IdentityOpsGetPrivateTokenURL) Must(u *url.URL, err error) *url.URL

Must is a helper function to panic when the url builder returns an error

func (*IdentityOpsGetPrivateTokenURL) SetBasePath

func (o *IdentityOpsGetPrivateTokenURL) SetBasePath(bp string)

SetBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

func (*IdentityOpsGetPrivateTokenURL) String

String returns the string representation of the path with query string

func (*IdentityOpsGetPrivateTokenURL) StringFull

func (o *IdentityOpsGetPrivateTokenURL) StringFull(scheme, host string) string

StringFull returns the string representation of a complete url

func (*IdentityOpsGetPrivateTokenURL) WithBasePath

WithBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

type IdentityOpsListPublicToken

type IdentityOpsListPublicToken struct {
	Context *middleware.Context
	Handler IdentityOpsListPublicTokenHandler
}
IdentityOpsListPublicToken swagger:route GET /user/token/public IdentityOps identityOpsListPublicToken

list user's public_tokens.

func NewIdentityOpsListPublicToken

func NewIdentityOpsListPublicToken(ctx *middleware.Context, handler IdentityOpsListPublicTokenHandler) *IdentityOpsListPublicToken

NewIdentityOpsListPublicToken creates a new http.Handler for the identity ops list public token operation

func (*IdentityOpsListPublicToken) ServeHTTP

type IdentityOpsListPublicTokenDefault

type IdentityOpsListPublicTokenDefault struct {

	/*
	  In: Body
	*/
	Payload *models.GatewayruntimeError `json:"body,omitempty"`
	// contains filtered or unexported fields
}

IdentityOpsListPublicTokenDefault An unexpected error response.

swagger:response identityOpsListPublicTokenDefault

func NewIdentityOpsListPublicTokenDefault

func NewIdentityOpsListPublicTokenDefault(code int) *IdentityOpsListPublicTokenDefault

NewIdentityOpsListPublicTokenDefault creates IdentityOpsListPublicTokenDefault with default headers values

func (*IdentityOpsListPublicTokenDefault) SetPayload

SetPayload sets the payload to the identity ops list public token default response

func (*IdentityOpsListPublicTokenDefault) SetStatusCode

func (o *IdentityOpsListPublicTokenDefault) SetStatusCode(code int)

SetStatusCode sets the status to the identity ops list public token default response

func (*IdentityOpsListPublicTokenDefault) WithPayload

WithPayload adds the payload to the identity ops list public token default response

func (*IdentityOpsListPublicTokenDefault) WithStatusCode

WithStatusCode adds the status to the identity ops list public token default response

func (*IdentityOpsListPublicTokenDefault) WriteResponse

func (o *IdentityOpsListPublicTokenDefault) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

type IdentityOpsListPublicTokenHandler

type IdentityOpsListPublicTokenHandler interface {
	Handle(IdentityOpsListPublicTokenParams, *models.IdentityVerifyResp) middleware.Responder
}

IdentityOpsListPublicTokenHandler interface for that can handle valid identity ops list public token params

type IdentityOpsListPublicTokenHandlerFunc

type IdentityOpsListPublicTokenHandlerFunc func(IdentityOpsListPublicTokenParams, *models.IdentityVerifyResp) middleware.Responder

IdentityOpsListPublicTokenHandlerFunc turns a function with the right signature into a identity ops list public token handler

func (IdentityOpsListPublicTokenHandlerFunc) Handle

Handle executing the request and returning a response

type IdentityOpsListPublicTokenOK

type IdentityOpsListPublicTokenOK struct {

	/*
	  In: Body
	*/
	Payload *models.IdentityListPublicTokenResp `json:"body,omitempty"`
}

IdentityOpsListPublicTokenOK A successful response.

swagger:response identityOpsListPublicTokenOK

func NewIdentityOpsListPublicTokenOK

func NewIdentityOpsListPublicTokenOK() *IdentityOpsListPublicTokenOK

NewIdentityOpsListPublicTokenOK creates IdentityOpsListPublicTokenOK with default headers values

func (*IdentityOpsListPublicTokenOK) SetPayload

SetPayload sets the payload to the identity ops list public token o k response

func (*IdentityOpsListPublicTokenOK) WithPayload

WithPayload adds the payload to the identity ops list public token o k response

func (*IdentityOpsListPublicTokenOK) WriteResponse

func (o *IdentityOpsListPublicTokenOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

type IdentityOpsListPublicTokenParams

type IdentityOpsListPublicTokenParams struct {

	// HTTP Request Object
	HTTPRequest *http.Request `json:"-"`

	/*
	  In: query
	*/
	Email *string
	/*
	  In: query
	*/
	Name *string
}

IdentityOpsListPublicTokenParams contains all the bound params for the identity ops list public token operation typically these are obtained from a http.Request

swagger:parameters IdentityOps_ListPublicToken

func NewIdentityOpsListPublicTokenParams

func NewIdentityOpsListPublicTokenParams() IdentityOpsListPublicTokenParams

NewIdentityOpsListPublicTokenParams creates a new IdentityOpsListPublicTokenParams object

There are no default values defined in the spec.

func (*IdentityOpsListPublicTokenParams) BindRequest

BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface for simple values it will use straight method calls.

To ensure default values, the struct must have been initialized with NewIdentityOpsListPublicTokenParams() beforehand.

type IdentityOpsListPublicTokenURL

type IdentityOpsListPublicTokenURL struct {
	Email *string
	Name  *string
	// contains filtered or unexported fields
}

IdentityOpsListPublicTokenURL generates an URL for the identity ops list public token operation

func (*IdentityOpsListPublicTokenURL) Build

func (o *IdentityOpsListPublicTokenURL) Build() (*url.URL, error)

Build a url path and query string

func (*IdentityOpsListPublicTokenURL) BuildFull

func (o *IdentityOpsListPublicTokenURL) BuildFull(scheme, host string) (*url.URL, error)

BuildFull builds a full url with scheme, host, path and query string

func (*IdentityOpsListPublicTokenURL) Must

func (o *IdentityOpsListPublicTokenURL) Must(u *url.URL, err error) *url.URL

Must is a helper function to panic when the url builder returns an error

func (*IdentityOpsListPublicTokenURL) SetBasePath

func (o *IdentityOpsListPublicTokenURL) SetBasePath(bp string)

SetBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

func (*IdentityOpsListPublicTokenURL) String

String returns the string representation of the path with query string

func (*IdentityOpsListPublicTokenURL) StringFull

func (o *IdentityOpsListPublicTokenURL) StringFull(scheme, host string) string

StringFull returns the string representation of a complete url

func (*IdentityOpsListPublicTokenURL) WithBasePath

WithBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

type IdentityOpsLogin

type IdentityOpsLogin struct {
	Context *middleware.Context
	Handler IdentityOpsLoginHandler
}
IdentityOpsLogin swagger:route POST /user/login IdentityOps identityOpsLogin

Login by email and password.

func NewIdentityOpsLogin

func NewIdentityOpsLogin(ctx *middleware.Context, handler IdentityOpsLoginHandler) *IdentityOpsLogin

NewIdentityOpsLogin creates a new http.Handler for the identity ops login operation

func (*IdentityOpsLogin) ServeHTTP

func (o *IdentityOpsLogin) ServeHTTP(rw http.ResponseWriter, r *http.Request)

type IdentityOpsLoginDefault

type IdentityOpsLoginDefault struct {

	/*
	  In: Body
	*/
	Payload *models.GatewayruntimeError `json:"body,omitempty"`
	// contains filtered or unexported fields
}

IdentityOpsLoginDefault An unexpected error response.

swagger:response identityOpsLoginDefault

func NewIdentityOpsLoginDefault

func NewIdentityOpsLoginDefault(code int) *IdentityOpsLoginDefault

NewIdentityOpsLoginDefault creates IdentityOpsLoginDefault with default headers values

func (*IdentityOpsLoginDefault) SetPayload

func (o *IdentityOpsLoginDefault) SetPayload(payload *models.GatewayruntimeError)

SetPayload sets the payload to the identity ops login default response

func (*IdentityOpsLoginDefault) SetStatusCode

func (o *IdentityOpsLoginDefault) SetStatusCode(code int)

SetStatusCode sets the status to the identity ops login default response

func (*IdentityOpsLoginDefault) WithPayload

WithPayload adds the payload to the identity ops login default response

func (*IdentityOpsLoginDefault) WithStatusCode

func (o *IdentityOpsLoginDefault) WithStatusCode(code int) *IdentityOpsLoginDefault

WithStatusCode adds the status to the identity ops login default response

func (*IdentityOpsLoginDefault) WriteResponse

func (o *IdentityOpsLoginDefault) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

type IdentityOpsLoginHandler

type IdentityOpsLoginHandler interface {
	Handle(IdentityOpsLoginParams) middleware.Responder
}

IdentityOpsLoginHandler interface for that can handle valid identity ops login params

type IdentityOpsLoginHandlerFunc

type IdentityOpsLoginHandlerFunc func(IdentityOpsLoginParams) middleware.Responder

IdentityOpsLoginHandlerFunc turns a function with the right signature into a identity ops login handler

func (IdentityOpsLoginHandlerFunc) Handle

Handle executing the request and returning a response

type IdentityOpsLoginOK

type IdentityOpsLoginOK struct {

	/*
	  In: Body
	*/
	Payload *models.IdentityLoginResp `json:"body,omitempty"`
}

IdentityOpsLoginOK A successful response.

swagger:response identityOpsLoginOK

func NewIdentityOpsLoginOK

func NewIdentityOpsLoginOK() *IdentityOpsLoginOK

NewIdentityOpsLoginOK creates IdentityOpsLoginOK with default headers values

func (*IdentityOpsLoginOK) SetPayload

func (o *IdentityOpsLoginOK) SetPayload(payload *models.IdentityLoginResp)

SetPayload sets the payload to the identity ops login o k response

func (*IdentityOpsLoginOK) WithPayload

WithPayload adds the payload to the identity ops login o k response

func (*IdentityOpsLoginOK) WriteResponse

func (o *IdentityOpsLoginOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

type IdentityOpsLoginParams

type IdentityOpsLoginParams struct {

	// HTTP Request Object
	HTTPRequest *http.Request `json:"-"`

	/*
	  Required: true
	  In: body
	*/
	Body *models.IdentityLoginReq
}

IdentityOpsLoginParams contains all the bound params for the identity ops login operation typically these are obtained from a http.Request

swagger:parameters IdentityOps_Login

func NewIdentityOpsLoginParams

func NewIdentityOpsLoginParams() IdentityOpsLoginParams

NewIdentityOpsLoginParams creates a new IdentityOpsLoginParams object

There are no default values defined in the spec.

func (*IdentityOpsLoginParams) BindRequest

func (o *IdentityOpsLoginParams) BindRequest(r *http.Request, route *middleware.MatchedRoute) error

BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface for simple values it will use straight method calls.

To ensure default values, the struct must have been initialized with NewIdentityOpsLoginParams() beforehand.

type IdentityOpsLoginURL

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

IdentityOpsLoginURL generates an URL for the identity ops login operation

func (*IdentityOpsLoginURL) Build

func (o *IdentityOpsLoginURL) Build() (*url.URL, error)

Build a url path and query string

func (*IdentityOpsLoginURL) BuildFull

func (o *IdentityOpsLoginURL) BuildFull(scheme, host string) (*url.URL, error)

BuildFull builds a full url with scheme, host, path and query string

func (*IdentityOpsLoginURL) Must

func (o *IdentityOpsLoginURL) Must(u *url.URL, err error) *url.URL

Must is a helper function to panic when the url builder returns an error

func (*IdentityOpsLoginURL) SetBasePath

func (o *IdentityOpsLoginURL) SetBasePath(bp string)

SetBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

func (*IdentityOpsLoginURL) String

func (o *IdentityOpsLoginURL) String() string

String returns the string representation of the path with query string

func (*IdentityOpsLoginURL) StringFull

func (o *IdentityOpsLoginURL) StringFull(scheme, host string) string

StringFull returns the string representation of a complete url

func (*IdentityOpsLoginURL) WithBasePath

func (o *IdentityOpsLoginURL) WithBasePath(bp string) *IdentityOpsLoginURL

WithBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

type IdentityOpsReGeneratePrivateToken

type IdentityOpsReGeneratePrivateToken struct {
	Context *middleware.Context
	Handler IdentityOpsReGeneratePrivateTokenHandler
}
IdentityOpsReGeneratePrivateToken swagger:route POST /user/token/private IdentityOps identityOpsReGeneratePrivateToken

generate private_token.

func NewIdentityOpsReGeneratePrivateToken

func NewIdentityOpsReGeneratePrivateToken(ctx *middleware.Context, handler IdentityOpsReGeneratePrivateTokenHandler) *IdentityOpsReGeneratePrivateToken

NewIdentityOpsReGeneratePrivateToken creates a new http.Handler for the identity ops re generate private token operation

func (*IdentityOpsReGeneratePrivateToken) ServeHTTP

type IdentityOpsReGeneratePrivateTokenDefault

type IdentityOpsReGeneratePrivateTokenDefault struct {

	/*
	  In: Body
	*/
	Payload *models.GatewayruntimeError `json:"body,omitempty"`
	// contains filtered or unexported fields
}

IdentityOpsReGeneratePrivateTokenDefault An unexpected error response.

swagger:response identityOpsReGeneratePrivateTokenDefault

func NewIdentityOpsReGeneratePrivateTokenDefault

func NewIdentityOpsReGeneratePrivateTokenDefault(code int) *IdentityOpsReGeneratePrivateTokenDefault

NewIdentityOpsReGeneratePrivateTokenDefault creates IdentityOpsReGeneratePrivateTokenDefault with default headers values

func (*IdentityOpsReGeneratePrivateTokenDefault) SetPayload

SetPayload sets the payload to the identity ops re generate private token default response

func (*IdentityOpsReGeneratePrivateTokenDefault) SetStatusCode

func (o *IdentityOpsReGeneratePrivateTokenDefault) SetStatusCode(code int)

SetStatusCode sets the status to the identity ops re generate private token default response

func (*IdentityOpsReGeneratePrivateTokenDefault) WithPayload

WithPayload adds the payload to the identity ops re generate private token default response

func (*IdentityOpsReGeneratePrivateTokenDefault) WithStatusCode

WithStatusCode adds the status to the identity ops re generate private token default response

func (*IdentityOpsReGeneratePrivateTokenDefault) WriteResponse

WriteResponse to the client

type IdentityOpsReGeneratePrivateTokenHandler

type IdentityOpsReGeneratePrivateTokenHandler interface {
	Handle(IdentityOpsReGeneratePrivateTokenParams, *models.IdentityVerifyResp) middleware.Responder
}

IdentityOpsReGeneratePrivateTokenHandler interface for that can handle valid identity ops re generate private token params

type IdentityOpsReGeneratePrivateTokenHandlerFunc

type IdentityOpsReGeneratePrivateTokenHandlerFunc func(IdentityOpsReGeneratePrivateTokenParams, *models.IdentityVerifyResp) middleware.Responder

IdentityOpsReGeneratePrivateTokenHandlerFunc turns a function with the right signature into a identity ops re generate private token handler

func (IdentityOpsReGeneratePrivateTokenHandlerFunc) Handle

Handle executing the request and returning a response

type IdentityOpsReGeneratePrivateTokenOK

type IdentityOpsReGeneratePrivateTokenOK struct {

	/*
	  In: Body
	*/
	Payload *models.ModelCommonResp `json:"body,omitempty"`
}

IdentityOpsReGeneratePrivateTokenOK A successful response.

swagger:response identityOpsReGeneratePrivateTokenOK

func NewIdentityOpsReGeneratePrivateTokenOK

func NewIdentityOpsReGeneratePrivateTokenOK() *IdentityOpsReGeneratePrivateTokenOK

NewIdentityOpsReGeneratePrivateTokenOK creates IdentityOpsReGeneratePrivateTokenOK with default headers values

func (*IdentityOpsReGeneratePrivateTokenOK) SetPayload

SetPayload sets the payload to the identity ops re generate private token o k response

func (*IdentityOpsReGeneratePrivateTokenOK) WithPayload

WithPayload adds the payload to the identity ops re generate private token o k response

func (*IdentityOpsReGeneratePrivateTokenOK) WriteResponse

WriteResponse to the client

type IdentityOpsReGeneratePrivateTokenParams

type IdentityOpsReGeneratePrivateTokenParams struct {

	// HTTP Request Object
	HTTPRequest *http.Request `json:"-"`
}

IdentityOpsReGeneratePrivateTokenParams contains all the bound params for the identity ops re generate private token operation typically these are obtained from a http.Request

swagger:parameters IdentityOps_ReGeneratePrivateToken

func NewIdentityOpsReGeneratePrivateTokenParams

func NewIdentityOpsReGeneratePrivateTokenParams() IdentityOpsReGeneratePrivateTokenParams

NewIdentityOpsReGeneratePrivateTokenParams creates a new IdentityOpsReGeneratePrivateTokenParams object

There are no default values defined in the spec.

func (*IdentityOpsReGeneratePrivateTokenParams) BindRequest

BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface for simple values it will use straight method calls.

To ensure default values, the struct must have been initialized with NewIdentityOpsReGeneratePrivateTokenParams() beforehand.

type IdentityOpsReGeneratePrivateTokenURL

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

IdentityOpsReGeneratePrivateTokenURL generates an URL for the identity ops re generate private token operation

func (*IdentityOpsReGeneratePrivateTokenURL) Build

Build a url path and query string

func (*IdentityOpsReGeneratePrivateTokenURL) BuildFull

func (o *IdentityOpsReGeneratePrivateTokenURL) BuildFull(scheme, host string) (*url.URL, error)

BuildFull builds a full url with scheme, host, path and query string

func (*IdentityOpsReGeneratePrivateTokenURL) Must

Must is a helper function to panic when the url builder returns an error

func (*IdentityOpsReGeneratePrivateTokenURL) SetBasePath

func (o *IdentityOpsReGeneratePrivateTokenURL) SetBasePath(bp string)

SetBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

func (*IdentityOpsReGeneratePrivateTokenURL) String

String returns the string representation of the path with query string

func (*IdentityOpsReGeneratePrivateTokenURL) StringFull

func (o *IdentityOpsReGeneratePrivateTokenURL) StringFull(scheme, host string) string

StringFull returns the string representation of a complete url

func (*IdentityOpsReGeneratePrivateTokenURL) WithBasePath

WithBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

type IdentityOpsRegister

type IdentityOpsRegister struct {
	Context *middleware.Context
	Handler IdentityOpsRegisterHandler
}
IdentityOpsRegister swagger:route POST /user/register IdentityOps identityOpsRegister

Register by email and password.

func NewIdentityOpsRegister

func NewIdentityOpsRegister(ctx *middleware.Context, handler IdentityOpsRegisterHandler) *IdentityOpsRegister

NewIdentityOpsRegister creates a new http.Handler for the identity ops register operation

func (*IdentityOpsRegister) ServeHTTP

func (o *IdentityOpsRegister) ServeHTTP(rw http.ResponseWriter, r *http.Request)

type IdentityOpsRegisterDefault

type IdentityOpsRegisterDefault struct {

	/*
	  In: Body
	*/
	Payload *models.GatewayruntimeError `json:"body,omitempty"`
	// contains filtered or unexported fields
}

IdentityOpsRegisterDefault An unexpected error response.

swagger:response identityOpsRegisterDefault

func NewIdentityOpsRegisterDefault

func NewIdentityOpsRegisterDefault(code int) *IdentityOpsRegisterDefault

NewIdentityOpsRegisterDefault creates IdentityOpsRegisterDefault with default headers values

func (*IdentityOpsRegisterDefault) SetPayload

func (o *IdentityOpsRegisterDefault) SetPayload(payload *models.GatewayruntimeError)

SetPayload sets the payload to the identity ops register default response

func (*IdentityOpsRegisterDefault) SetStatusCode

func (o *IdentityOpsRegisterDefault) SetStatusCode(code int)

SetStatusCode sets the status to the identity ops register default response

func (*IdentityOpsRegisterDefault) WithPayload

WithPayload adds the payload to the identity ops register default response

func (*IdentityOpsRegisterDefault) WithStatusCode

WithStatusCode adds the status to the identity ops register default response

func (*IdentityOpsRegisterDefault) WriteResponse

func (o *IdentityOpsRegisterDefault) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

type IdentityOpsRegisterHandler

type IdentityOpsRegisterHandler interface {
	Handle(IdentityOpsRegisterParams) middleware.Responder
}

IdentityOpsRegisterHandler interface for that can handle valid identity ops register params

type IdentityOpsRegisterHandlerFunc

type IdentityOpsRegisterHandlerFunc func(IdentityOpsRegisterParams) middleware.Responder

IdentityOpsRegisterHandlerFunc turns a function with the right signature into a identity ops register handler

func (IdentityOpsRegisterHandlerFunc) Handle

Handle executing the request and returning a response

type IdentityOpsRegisterOK

type IdentityOpsRegisterOK struct {

	/*
	  In: Body
	*/
	Payload *models.ModelCommonResp `json:"body,omitempty"`
}

IdentityOpsRegisterOK A successful response.

swagger:response identityOpsRegisterOK

func NewIdentityOpsRegisterOK

func NewIdentityOpsRegisterOK() *IdentityOpsRegisterOK

NewIdentityOpsRegisterOK creates IdentityOpsRegisterOK with default headers values

func (*IdentityOpsRegisterOK) SetPayload

func (o *IdentityOpsRegisterOK) SetPayload(payload *models.ModelCommonResp)

SetPayload sets the payload to the identity ops register o k response

func (*IdentityOpsRegisterOK) WithPayload

WithPayload adds the payload to the identity ops register o k response

func (*IdentityOpsRegisterOK) WriteResponse

func (o *IdentityOpsRegisterOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

type IdentityOpsRegisterParams

type IdentityOpsRegisterParams struct {

	// HTTP Request Object
	HTTPRequest *http.Request `json:"-"`

	/*
	  Required: true
	  In: body
	*/
	Body *models.IdentityRegisterReq
}

IdentityOpsRegisterParams contains all the bound params for the identity ops register operation typically these are obtained from a http.Request

swagger:parameters IdentityOps_Register

func NewIdentityOpsRegisterParams

func NewIdentityOpsRegisterParams() IdentityOpsRegisterParams

NewIdentityOpsRegisterParams creates a new IdentityOpsRegisterParams object

There are no default values defined in the spec.

func (*IdentityOpsRegisterParams) BindRequest

BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface for simple values it will use straight method calls.

To ensure default values, the struct must have been initialized with NewIdentityOpsRegisterParams() beforehand.

type IdentityOpsRegisterURL

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

IdentityOpsRegisterURL generates an URL for the identity ops register operation

func (*IdentityOpsRegisterURL) Build

func (o *IdentityOpsRegisterURL) Build() (*url.URL, error)

Build a url path and query string

func (*IdentityOpsRegisterURL) BuildFull

func (o *IdentityOpsRegisterURL) BuildFull(scheme, host string) (*url.URL, error)

BuildFull builds a full url with scheme, host, path and query string

func (*IdentityOpsRegisterURL) Must

func (o *IdentityOpsRegisterURL) Must(u *url.URL, err error) *url.URL

Must is a helper function to panic when the url builder returns an error

func (*IdentityOpsRegisterURL) SetBasePath

func (o *IdentityOpsRegisterURL) SetBasePath(bp string)

SetBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

func (*IdentityOpsRegisterURL) String

func (o *IdentityOpsRegisterURL) String() string

String returns the string representation of the path with query string

func (*IdentityOpsRegisterURL) StringFull

func (o *IdentityOpsRegisterURL) StringFull(scheme, host string) string

StringFull returns the string representation of a complete url

func (*IdentityOpsRegisterURL) WithBasePath

WithBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

type IdentityOpsVerify

type IdentityOpsVerify struct {
	Context *middleware.Context
	Handler IdentityOpsVerifyHandler
}
IdentityOpsVerify swagger:route GET /user/verify IdentityOps identityOpsVerify

Verify by session_token.

func NewIdentityOpsVerify

func NewIdentityOpsVerify(ctx *middleware.Context, handler IdentityOpsVerifyHandler) *IdentityOpsVerify

NewIdentityOpsVerify creates a new http.Handler for the identity ops verify operation

func (*IdentityOpsVerify) ServeHTTP

func (o *IdentityOpsVerify) ServeHTTP(rw http.ResponseWriter, r *http.Request)

type IdentityOpsVerifyDefault

type IdentityOpsVerifyDefault struct {

	/*
	  In: Body
	*/
	Payload *models.GatewayruntimeError `json:"body,omitempty"`
	// contains filtered or unexported fields
}

IdentityOpsVerifyDefault An unexpected error response.

swagger:response identityOpsVerifyDefault

func NewIdentityOpsVerifyDefault

func NewIdentityOpsVerifyDefault(code int) *IdentityOpsVerifyDefault

NewIdentityOpsVerifyDefault creates IdentityOpsVerifyDefault with default headers values

func (*IdentityOpsVerifyDefault) SetPayload

func (o *IdentityOpsVerifyDefault) SetPayload(payload *models.GatewayruntimeError)

SetPayload sets the payload to the identity ops verify default response

func (*IdentityOpsVerifyDefault) SetStatusCode

func (o *IdentityOpsVerifyDefault) SetStatusCode(code int)

SetStatusCode sets the status to the identity ops verify default response

func (*IdentityOpsVerifyDefault) WithPayload

WithPayload adds the payload to the identity ops verify default response

func (*IdentityOpsVerifyDefault) WithStatusCode

func (o *IdentityOpsVerifyDefault) WithStatusCode(code int) *IdentityOpsVerifyDefault

WithStatusCode adds the status to the identity ops verify default response

func (*IdentityOpsVerifyDefault) WriteResponse

func (o *IdentityOpsVerifyDefault) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

type IdentityOpsVerifyHandler

type IdentityOpsVerifyHandler interface {
	Handle(IdentityOpsVerifyParams, *models.IdentityVerifyResp) middleware.Responder
}

IdentityOpsVerifyHandler interface for that can handle valid identity ops verify params

type IdentityOpsVerifyHandlerFunc

type IdentityOpsVerifyHandlerFunc func(IdentityOpsVerifyParams, *models.IdentityVerifyResp) middleware.Responder

IdentityOpsVerifyHandlerFunc turns a function with the right signature into a identity ops verify handler

func (IdentityOpsVerifyHandlerFunc) Handle

Handle executing the request and returning a response

type IdentityOpsVerifyOK

type IdentityOpsVerifyOK struct {

	/*
	  In: Body
	*/
	Payload *models.IdentityVerifyResp `json:"body,omitempty"`
}

IdentityOpsVerifyOK A successful response.

swagger:response identityOpsVerifyOK

func NewIdentityOpsVerifyOK

func NewIdentityOpsVerifyOK() *IdentityOpsVerifyOK

NewIdentityOpsVerifyOK creates IdentityOpsVerifyOK with default headers values

func (*IdentityOpsVerifyOK) SetPayload

func (o *IdentityOpsVerifyOK) SetPayload(payload *models.IdentityVerifyResp)

SetPayload sets the payload to the identity ops verify o k response

func (*IdentityOpsVerifyOK) WithPayload

WithPayload adds the payload to the identity ops verify o k response

func (*IdentityOpsVerifyOK) WriteResponse

func (o *IdentityOpsVerifyOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

type IdentityOpsVerifyParams

type IdentityOpsVerifyParams struct {

	// HTTP Request Object
	HTTPRequest *http.Request `json:"-"`

	/*
	  In: query
	*/
	Token *string
}

IdentityOpsVerifyParams contains all the bound params for the identity ops verify operation typically these are obtained from a http.Request

swagger:parameters IdentityOps_Verify

func NewIdentityOpsVerifyParams

func NewIdentityOpsVerifyParams() IdentityOpsVerifyParams

NewIdentityOpsVerifyParams creates a new IdentityOpsVerifyParams object

There are no default values defined in the spec.

func (*IdentityOpsVerifyParams) BindRequest

func (o *IdentityOpsVerifyParams) BindRequest(r *http.Request, route *middleware.MatchedRoute) error

BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface for simple values it will use straight method calls.

To ensure default values, the struct must have been initialized with NewIdentityOpsVerifyParams() beforehand.

type IdentityOpsVerifyURL

type IdentityOpsVerifyURL struct {
	Token *string
	// contains filtered or unexported fields
}

IdentityOpsVerifyURL generates an URL for the identity ops verify operation

func (*IdentityOpsVerifyURL) Build

func (o *IdentityOpsVerifyURL) Build() (*url.URL, error)

Build a url path and query string

func (*IdentityOpsVerifyURL) BuildFull

func (o *IdentityOpsVerifyURL) BuildFull(scheme, host string) (*url.URL, error)

BuildFull builds a full url with scheme, host, path and query string

func (*IdentityOpsVerifyURL) Must

func (o *IdentityOpsVerifyURL) Must(u *url.URL, err error) *url.URL

Must is a helper function to panic when the url builder returns an error

func (*IdentityOpsVerifyURL) SetBasePath

func (o *IdentityOpsVerifyURL) SetBasePath(bp string)

SetBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

func (*IdentityOpsVerifyURL) String

func (o *IdentityOpsVerifyURL) String() string

String returns the string representation of the path with query string

func (*IdentityOpsVerifyURL) StringFull

func (o *IdentityOpsVerifyURL) StringFull(scheme, host string) string

StringFull returns the string representation of a complete url

func (*IdentityOpsVerifyURL) WithBasePath

func (o *IdentityOpsVerifyURL) WithBasePath(bp string) *IdentityOpsVerifyURL

WithBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

Jump to

Keyboard shortcuts

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