(Feat): Initial Commit
Some checks failed
Build & Test / build-test (push) Has been cancelled
Build & Test / swagger-codegen-cli (push) Has been cancelled
CodeQL / Analyze (go) (push) Has been cancelled

This commit is contained in:
2026-07-03 19:41:31 +05:30
commit 7e940c83a7
461 changed files with 45002 additions and 0 deletions

View File

@@ -0,0 +1,87 @@
// Code generated by go-swagger; DO NOT EDIT.
package push
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the swagger generate command
import (
"net/http"
"github.com/go-openapi/errors"
"github.com/go-openapi/runtime"
"github.com/go-openapi/runtime/middleware"
"github.com/go-openapi/strfmt"
"allaboutapps.dev/aw/go-starter/internal/types"
)
// NewPutUpdatePushTokenRouteParams creates a new PutUpdatePushTokenRouteParams object
// no default values defined in spec.
func NewPutUpdatePushTokenRouteParams() PutUpdatePushTokenRouteParams {
return PutUpdatePushTokenRouteParams{}
}
// PutUpdatePushTokenRouteParams contains all the bound params for the put update push token route operation
// typically these are obtained from a http.Request
//
// swagger:parameters PutUpdatePushTokenRoute
type PutUpdatePushTokenRouteParams struct {
// HTTP Request Object
HTTPRequest *http.Request `json:"-"`
/*
In: body
*/
Payload *types.PutUpdatePushTokenPayload
}
// 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 NewPutUpdatePushTokenRouteParams() beforehand.
func (o *PutUpdatePushTokenRouteParams) BindRequest(r *http.Request, route *middleware.MatchedRoute) error {
var res []error
o.HTTPRequest = r
if runtime.HasBody(r) {
defer r.Body.Close()
var body types.PutUpdatePushTokenPayload
if err := route.Consumer.Consume(r.Body, &body); err != nil {
res = append(res, errors.NewParseError("payload", "body", "", err))
} else {
// validate body object
if err := body.Validate(route.Formats); err != nil {
res = append(res, err)
}
if len(res) == 0 {
o.Payload = &body
}
}
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
func (o *PutUpdatePushTokenRouteParams) Validate(formats strfmt.Registry) error {
var res []error
// Payload
// Required: false
// body is validated in endpoint
//if err := o.Payload.Validate(formats); err != nil {
// res = append(res, err)
//}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}