Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BodyParams ¶
type BodyParams struct { Name string `json:"name" url:"name"` ExampleValues []string `json:"exampleValues,omitempty" url:"exampleValues,omitempty"` // contains filtered or unexported fields }
func (*BodyParams) GetExtraProperties ¶
func (b *BodyParams) GetExtraProperties() map[string]interface{}
func (*BodyParams) String ¶
func (b *BodyParams) String() string
func (*BodyParams) UnmarshalJSON ¶
func (b *BodyParams) UnmarshalJSON(data []byte) error
type PageCaptureMethod ¶
type PageCaptureMethod string
const ( PageCaptureMethodRequest PageCaptureMethod = "REQUEST" PageCaptureMethodBrowser PageCaptureMethod = "BROWSER" PageCaptureMethodBrowserbase PageCaptureMethod = "BROWSERBASE" )
func NewPageCaptureMethodFromString ¶
func NewPageCaptureMethodFromString(s string) (PageCaptureMethod, error)
func (PageCaptureMethod) Ptr ¶
func (p PageCaptureMethod) Ptr() *PageCaptureMethod
type QueryParams ¶
type QueryParams struct { Name string `json:"name" url:"name"` ExampleValues []string `json:"exampleValues,omitempty" url:"exampleValues,omitempty"` // contains filtered or unexported fields }
func (*QueryParams) GetExtraProperties ¶
func (q *QueryParams) GetExtraProperties() map[string]interface{}
func (*QueryParams) String ¶
func (q *QueryParams) String() string
func (*QueryParams) UnmarshalJSON ¶
func (q *QueryParams) UnmarshalJSON(data []byte) error
type RouteCaptureReport ¶
type RouteCaptureReport struct { Target string `json:"target" url:"target"` Routes []*WebRoute `json:"routes,omitempty" url:"routes,omitempty"` Urls []string `json:"urls,omitempty" url:"urls,omitempty"` Errors []string `json:"errors,omitempty" url:"errors,omitempty"` // contains filtered or unexported fields }
func (*RouteCaptureReport) GetExtraProperties ¶
func (r *RouteCaptureReport) GetExtraProperties() map[string]interface{}
func (*RouteCaptureReport) String ¶
func (r *RouteCaptureReport) String() string
func (*RouteCaptureReport) UnmarshalJSON ¶
func (r *RouteCaptureReport) UnmarshalJSON(data []byte) error
type WebRoute ¶
type WebRoute struct { Url string `json:"url" url:"url"` Path *string `json:"path,omitempty" url:"path,omitempty"` Method *common.HttpMethod `json:"method,omitempty" url:"method,omitempty"` QueryParams []*QueryParams `json:"queryParams,omitempty" url:"queryParams,omitempty"` BodyParams []*BodyParams `json:"bodyParams,omitempty" url:"bodyParams,omitempty"` // contains filtered or unexported fields }
func (*WebRoute) GetExtraProperties ¶
func (*WebRoute) UnmarshalJSON ¶
Click to show internal directories.
Click to hide internal directories.