Merge branch 'dev' into 'main'

This commit is contained in:
stSolo
2022-08-22 11:28:53 +03:00
parent c33e0cc5fc
commit 6271fa6d45
2 changed files with 5 additions and 5 deletions

View File

@@ -9,9 +9,9 @@ import (
)
type ListRequest struct {
IncludeDeleted bool `json:"includedeleted"`
Page uint64 `json:"page"`
Size uint64 `json:"size"`
IncludeDeleted bool `url:"includedeleted"`
Page uint64 `url:"page"`
Size uint64 `url:"size"`
}
func (k8s K8S) List(ctx context.Context, req ListRequest, options ...opts.DecortOpts) (K8SList, error) {

View File

@@ -9,8 +9,8 @@ import (
)
type ListDeletedRequest struct {
Page uint64 `json:"page"`
Size uint64 `json:"size"`
Page uint64 `url:"page"`
Size uint64 `url:"size"`
}
func (k8s K8S) ListDeleted(ctx context.Context, req ListDeletedRequest, options ...opts.DecortOpts) (K8SList, error) {