petstorev2

package
v0.1.0 Latest Latest
Warning

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

Go to latest
Published: Oct 25, 2023 License: Apache-2.0 Imports: 6 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	Status_name = map[int32]string{
		0: "unknown",
		1: "available",
		2: "pending",
		3: "sold",
	}
	Status_value = map[string]int32{
		"unknown":   0,
		"available": 1,
		"pending":   2,
		"sold":      3,
	}
)

Enum value maps for Status.

View Source
var File_io_swagger_petstore_v2_pets_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type ApiResponse

type ApiResponse struct {
	Code    int32  `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
	Type    string `protobuf:"bytes,2,opt,name=type,proto3" json:"type,omitempty"`
	Message string `protobuf:"bytes,3,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*ApiResponse) Descriptor deprecated

func (*ApiResponse) Descriptor() ([]byte, []int)

Deprecated: Use ApiResponse.ProtoReflect.Descriptor instead.

func (*ApiResponse) GetCode

func (x *ApiResponse) GetCode() int32

func (*ApiResponse) GetMessage

func (x *ApiResponse) GetMessage() string

func (*ApiResponse) GetType

func (x *ApiResponse) GetType() string

func (*ApiResponse) ProtoMessage

func (*ApiResponse) ProtoMessage()

func (*ApiResponse) ProtoReflect

func (x *ApiResponse) ProtoReflect() protoreflect.Message

func (*ApiResponse) Reset

func (x *ApiResponse) Reset()

func (*ApiResponse) String

func (x *ApiResponse) String() string

type Category

type Category struct {
	Id   int64  `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

func (*Category) Descriptor deprecated

func (*Category) Descriptor() ([]byte, []int)

Deprecated: Use Category.ProtoReflect.Descriptor instead.

func (*Category) GetId

func (x *Category) GetId() int64

func (*Category) GetName

func (x *Category) GetName() string

func (*Category) ProtoMessage

func (*Category) ProtoMessage()

func (*Category) ProtoReflect

func (x *Category) ProtoReflect() protoreflect.Message

func (*Category) Reset

func (x *Category) Reset()

func (*Category) String

func (x *Category) String() string

type Pet

type Pet struct {
	Id        int64     `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	Category  *Category `protobuf:"bytes,2,opt,name=category,proto3" json:"category,omitempty"`
	Name      string    `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
	PhotoUrls []string  `protobuf:"bytes,4,rep,name=photo_urls,json=photoUrls,proto3" json:"photo_urls,omitempty"`
	Tags      []*Tag    `protobuf:"bytes,5,rep,name=tags,proto3" json:"tags,omitempty"`
	Status    string    `protobuf:"bytes,6,opt,name=status,proto3" json:"status,omitempty"`
	// contains filtered or unexported fields
}

func (*Pet) Descriptor deprecated

func (*Pet) Descriptor() ([]byte, []int)

Deprecated: Use Pet.ProtoReflect.Descriptor instead.

func (*Pet) GetCategory

func (x *Pet) GetCategory() *Category

func (*Pet) GetId

func (x *Pet) GetId() int64

func (*Pet) GetName

func (x *Pet) GetName() string

func (*Pet) GetPhotoUrls

func (x *Pet) GetPhotoUrls() []string

func (*Pet) GetStatus

func (x *Pet) GetStatus() string

func (*Pet) GetTags

func (x *Pet) GetTags() []*Tag

func (*Pet) ProtoMessage

func (*Pet) ProtoMessage()

func (*Pet) ProtoReflect

func (x *Pet) ProtoReflect() protoreflect.Message

func (*Pet) Reset

func (x *Pet) Reset()

func (*Pet) String

func (x *Pet) String() string

type PetBody

type PetBody struct {
	PetId int64  `protobuf:"varint,1,opt,name=pet_id,json=petId,proto3" json:"pet_id,omitempty"`
	Body  string `protobuf:"bytes,2,opt,name=body,proto3" json:"body,omitempty"`
	// contains filtered or unexported fields
}

func (*PetBody) Descriptor deprecated

func (*PetBody) Descriptor() ([]byte, []int)

Deprecated: Use PetBody.ProtoReflect.Descriptor instead.

func (*PetBody) GetBody

func (x *PetBody) GetBody() string

func (*PetBody) GetPetId

func (x *PetBody) GetPetId() int64

func (*PetBody) ProtoMessage

func (*PetBody) ProtoMessage()

func (*PetBody) ProtoReflect

func (x *PetBody) ProtoReflect() protoreflect.Message

func (*PetBody) Reset

func (x *PetBody) Reset()

func (*PetBody) String

func (x *PetBody) String() string

type PetID

type PetID struct {
	PetId int64 `protobuf:"varint,1,opt,name=pet_id,json=petId,proto3" json:"pet_id,omitempty"`
	// contains filtered or unexported fields
}

func (*PetID) Descriptor deprecated

func (*PetID) Descriptor() ([]byte, []int)

Deprecated: Use PetID.ProtoReflect.Descriptor instead.

func (*PetID) GetPetId

func (x *PetID) GetPetId() int64

func (*PetID) ProtoMessage

func (*PetID) ProtoMessage()

func (*PetID) ProtoReflect

func (x *PetID) ProtoReflect() protoreflect.Message

func (*PetID) Reset

func (x *PetID) Reset()

func (*PetID) String

func (x *PetID) String() string

type Pets

type Pets struct {
	Pets []*Pet `protobuf:"bytes,1,rep,name=pets,proto3" json:"pets,omitempty"`
	// contains filtered or unexported fields
}

func (*Pets) Descriptor deprecated

func (*Pets) Descriptor() ([]byte, []int)

Deprecated: Use Pets.ProtoReflect.Descriptor instead.

func (*Pets) GetPets

func (x *Pets) GetPets() []*Pet

func (*Pets) ProtoMessage

func (*Pets) ProtoMessage()

func (*Pets) ProtoReflect

func (x *Pets) ProtoReflect() protoreflect.Message

func (*Pets) Reset

func (x *Pets) Reset()

func (*Pets) String

func (x *Pets) String() string

type Status

type Status int32
const (
	Status_unknown   Status = 0
	Status_available Status = 1
	Status_pending   Status = 2
	Status_sold      Status = 3
)

func (Status) Descriptor

func (Status) Descriptor() protoreflect.EnumDescriptor

func (Status) Enum

func (x Status) Enum() *Status

func (Status) EnumDescriptor deprecated

func (Status) EnumDescriptor() ([]byte, []int)

Deprecated: Use Status.Descriptor instead.

func (Status) Number

func (x Status) Number() protoreflect.EnumNumber

func (Status) String

func (x Status) String() string

func (Status) Type

func (Status) Type() protoreflect.EnumType

type StatusReq

type StatusReq struct {
	Status []string `protobuf:"bytes,1,rep,name=status,proto3" json:"status,omitempty"`
	// contains filtered or unexported fields
}

func (*StatusReq) Descriptor deprecated

func (*StatusReq) Descriptor() ([]byte, []int)

Deprecated: Use StatusReq.ProtoReflect.Descriptor instead.

func (*StatusReq) GetStatus

func (x *StatusReq) GetStatus() []string

func (*StatusReq) ProtoMessage

func (*StatusReq) ProtoMessage()

func (*StatusReq) ProtoReflect

func (x *StatusReq) ProtoReflect() protoreflect.Message

func (*StatusReq) Reset

func (x *StatusReq) Reset()

func (*StatusReq) String

func (x *StatusReq) String() string

type Tag

type Tag struct {
	Id   int64  `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

func (*Tag) Descriptor deprecated

func (*Tag) Descriptor() ([]byte, []int)

Deprecated: Use Tag.ProtoReflect.Descriptor instead.

func (*Tag) GetId

func (x *Tag) GetId() int64

func (*Tag) GetName

func (x *Tag) GetName() string

func (*Tag) ProtoMessage

func (*Tag) ProtoMessage()

func (*Tag) ProtoReflect

func (x *Tag) ProtoReflect() protoreflect.Message

func (*Tag) Reset

func (x *Tag) Reset()

func (*Tag) String

func (x *Tag) String() string

type TagReq

type TagReq struct {
	Tag []string `protobuf:"bytes,1,rep,name=tag,proto3" json:"tag,omitempty"`
	// contains filtered or unexported fields
}

func (*TagReq) Descriptor deprecated

func (*TagReq) Descriptor() ([]byte, []int)

Deprecated: Use TagReq.ProtoReflect.Descriptor instead.

func (*TagReq) GetTag

func (x *TagReq) GetTag() []string

func (*TagReq) ProtoMessage

func (*TagReq) ProtoMessage()

func (*TagReq) ProtoReflect

func (x *TagReq) ProtoReflect() protoreflect.Message

func (*TagReq) Reset

func (x *TagReq) Reset()

func (*TagReq) String

func (x *TagReq) String() string

type UpdatePetWithFormReq

type UpdatePetWithFormReq struct {
	PetId  int64  `protobuf:"varint,1,opt,name=pet_id,json=petId,proto3" json:"pet_id,omitempty"`
	Name   string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Status string `protobuf:"bytes,3,opt,name=status,proto3" json:"status,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdatePetWithFormReq) Descriptor deprecated

func (*UpdatePetWithFormReq) Descriptor() ([]byte, []int)

Deprecated: Use UpdatePetWithFormReq.ProtoReflect.Descriptor instead.

func (*UpdatePetWithFormReq) GetName

func (x *UpdatePetWithFormReq) GetName() string

func (*UpdatePetWithFormReq) GetPetId

func (x *UpdatePetWithFormReq) GetPetId() int64

func (*UpdatePetWithFormReq) GetStatus

func (x *UpdatePetWithFormReq) GetStatus() string

func (*UpdatePetWithFormReq) ProtoMessage

func (*UpdatePetWithFormReq) ProtoMessage()

func (*UpdatePetWithFormReq) ProtoReflect

func (x *UpdatePetWithFormReq) ProtoReflect() protoreflect.Message

func (*UpdatePetWithFormReq) Reset

func (x *UpdatePetWithFormReq) Reset()

func (*UpdatePetWithFormReq) String

func (x *UpdatePetWithFormReq) String() string

type UploadFileReq

type UploadFileReq struct {
	PetId              int64  `protobuf:"varint,1,opt,name=pet_id,json=petId,proto3" json:"pet_id,omitempty"`
	AdditionalMetadata string `protobuf:"bytes,2,opt,name=additional_metadata,json=additionalMetadata,proto3" json:"additional_metadata,omitempty"`
	File               string `protobuf:"bytes,3,opt,name=file,proto3" json:"file,omitempty"`
	// contains filtered or unexported fields
}

func (*UploadFileReq) Descriptor deprecated

func (*UploadFileReq) Descriptor() ([]byte, []int)

Deprecated: Use UploadFileReq.ProtoReflect.Descriptor instead.

func (*UploadFileReq) GetAdditionalMetadata

func (x *UploadFileReq) GetAdditionalMetadata() string

func (*UploadFileReq) GetFile

func (x *UploadFileReq) GetFile() string

func (*UploadFileReq) GetPetId

func (x *UploadFileReq) GetPetId() int64

func (*UploadFileReq) ProtoMessage

func (*UploadFileReq) ProtoMessage()

func (*UploadFileReq) ProtoReflect

func (x *UploadFileReq) ProtoReflect() protoreflect.Message

func (*UploadFileReq) Reset

func (x *UploadFileReq) Reset()

func (*UploadFileReq) String

func (x *UploadFileReq) String() string

Directories

Path Synopsis
The service defined herein comes from v2 of the Petstore service, which is used as an example for Swagger/OpenAPI.
The service defined herein comes from v2 of the Petstore service, which is used as an example for Swagger/OpenAPI.

Jump to

Keyboard shortcuts

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