// Protocol Buffers - Google's data interchange format
// Copyright 2008 Google Inc.  All rights reserved.
// https://developers.google.com/protocol-buffers/
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
//     * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
//     * Redistributions in binary form must reproduce the above
// copyright notice, this list of conditions and the following disclaimer
// in the documentation and/or other materials provided with the
// distribution.
//     * Neither the name of Google Inc. nor the names of its
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
// Wrappers for primitive (non-message) types. These types were needed
// for legacy reasons and are not recommended for use in new APIs.
//
// Historically these wrappers were useful to have presence on proto3 primitive
// fields, but proto3 syntax has been updated to support the `optional` keyword.
// Using that keyword is now the strongly preferred way to add presence to
// proto3 primitive fields.
//
// A secondary usecase was to embed primitives in the `google.protobuf.Any`
// type: it is now recommended that you embed your value in your own wrapper
// message which can be specifically documented.
//
// These wrappers have no meaningful use within repeated fields as they lack
// the ability to detect presence on individual elements.
// These wrappers have no meaningful use within a map or a oneof since
// individual entries of a map or fields of a oneof can already detect presence.

// Code generated by protoc-gen-go. DO NOT EDIT.
// source: google/protobuf/wrappers.proto

package wrapperspb

import (
	protoreflect 
	protoimpl 
	reflect 
	sync 
	unsafe 
)

// Wrapper message for `double`.
//
// The JSON representation for `DoubleValue` is JSON number.
//
// Not recommended for use in new APIs, but still useful for legacy APIs and
// has no plan to be removed.
type DoubleValue struct {
	state protoimpl.MessageState `protogen:"open.v1"`
	// The double value.
	Value         float64 `protobuf:"fixed64,1,opt,name=value,proto3" json:"value,omitempty"`
	unknownFields protoimpl.UnknownFields
	sizeCache     protoimpl.SizeCache
}

// Double stores v in a new DoubleValue and returns a pointer to it.
func ( float64) *DoubleValue {
	return &DoubleValue{Value: }
}

func ( *DoubleValue) () {
	* = DoubleValue{}
	 := &file_google_protobuf_wrappers_proto_msgTypes[0]
	 := protoimpl.X.MessageStateOf(protoimpl.Pointer())
	.StoreMessageInfo()
}

func ( *DoubleValue) () string {
	return protoimpl.X.MessageStringOf()
}

func (*DoubleValue) () {}

func ( *DoubleValue) () protoreflect.Message {
	 := &file_google_protobuf_wrappers_proto_msgTypes[0]
	if  != nil {
		 := protoimpl.X.MessageStateOf(protoimpl.Pointer())
		if .LoadMessageInfo() == nil {
			.StoreMessageInfo()
		}
		return 
	}
	return .MessageOf()
}

// Deprecated: Use DoubleValue.ProtoReflect.Descriptor instead.
func (*DoubleValue) () ([]byte, []int) {
	return file_google_protobuf_wrappers_proto_rawDescGZIP(), []int{0}
}

func ( *DoubleValue) () float64 {
	if  != nil {
		return .Value
	}
	return 0
}

// Wrapper message for `float`.
//
// The JSON representation for `FloatValue` is JSON number.
//
// Not recommended for use in new APIs, but still useful for legacy APIs and
// has no plan to be removed.
type FloatValue struct {
	state protoimpl.MessageState `protogen:"open.v1"`
	// The float value.
	Value         float32 `protobuf:"fixed32,1,opt,name=value,proto3" json:"value,omitempty"`
	unknownFields protoimpl.UnknownFields
	sizeCache     protoimpl.SizeCache
}

// Float stores v in a new FloatValue and returns a pointer to it.
func ( float32) *FloatValue {
	return &FloatValue{Value: }
}

func ( *FloatValue) () {
	* = FloatValue{}
	 := &file_google_protobuf_wrappers_proto_msgTypes[1]
	 := protoimpl.X.MessageStateOf(protoimpl.Pointer())
	.StoreMessageInfo()
}

func ( *FloatValue) () string {
	return protoimpl.X.MessageStringOf()
}

func (*FloatValue) () {}

func ( *FloatValue) () protoreflect.Message {
	 := &file_google_protobuf_wrappers_proto_msgTypes[1]
	if  != nil {
		 := protoimpl.X.MessageStateOf(protoimpl.Pointer())
		if .LoadMessageInfo() == nil {
			.StoreMessageInfo()
		}
		return 
	}
	return .MessageOf()
}

// Deprecated: Use FloatValue.ProtoReflect.Descriptor instead.
func (*FloatValue) () ([]byte, []int) {
	return file_google_protobuf_wrappers_proto_rawDescGZIP(), []int{1}
}

func ( *FloatValue) () float32 {
	if  != nil {
		return .Value
	}
	return 0
}

// Wrapper message for `int64`.
//
// The JSON representation for `Int64Value` is JSON string.
//
// Not recommended for use in new APIs, but still useful for legacy APIs and
// has no plan to be removed.
type Int64Value struct {
	state protoimpl.MessageState `protogen:"open.v1"`
	// The int64 value.
	Value         int64 `protobuf:"varint,1,opt,name=value,proto3" json:"value,omitempty"`
	unknownFields protoimpl.UnknownFields
	sizeCache     protoimpl.SizeCache
}

// Int64 stores v in a new Int64Value and returns a pointer to it.
func ( int64) *Int64Value {
	return &Int64Value{Value: }
}

func ( *Int64Value) () {
	* = Int64Value{}
	 := &file_google_protobuf_wrappers_proto_msgTypes[2]
	 := protoimpl.X.MessageStateOf(protoimpl.Pointer())
	.StoreMessageInfo()
}

func ( *Int64Value) () string {
	return protoimpl.X.MessageStringOf()
}

func (*Int64Value) () {}

func ( *Int64Value) () protoreflect.Message {
	 := &file_google_protobuf_wrappers_proto_msgTypes[2]
	if  != nil {
		 := protoimpl.X.MessageStateOf(protoimpl.Pointer())
		if .LoadMessageInfo() == nil {
			.StoreMessageInfo()
		}
		return 
	}
	return .MessageOf()
}

// Deprecated: Use Int64Value.ProtoReflect.Descriptor instead.
func (*Int64Value) () ([]byte, []int) {
	return file_google_protobuf_wrappers_proto_rawDescGZIP(), []int{2}
}

func ( *Int64Value) () int64 {
	if  != nil {
		return .Value
	}
	return 0
}

// Wrapper message for `uint64`.
//
// The JSON representation for `UInt64Value` is JSON string.
//
// Not recommended for use in new APIs, but still useful for legacy APIs and
// has no plan to be removed.
type UInt64Value struct {
	state protoimpl.MessageState `protogen:"open.v1"`
	// The uint64 value.
	Value         uint64 `protobuf:"varint,1,opt,name=value,proto3" json:"value,omitempty"`
	unknownFields protoimpl.UnknownFields
	sizeCache     protoimpl.SizeCache
}

// UInt64 stores v in a new UInt64Value and returns a pointer to it.
func ( uint64) *UInt64Value {
	return &UInt64Value{Value: }
}

func ( *UInt64Value) () {
	* = UInt64Value{}
	 := &file_google_protobuf_wrappers_proto_msgTypes[3]
	 := protoimpl.X.MessageStateOf(protoimpl.Pointer())
	.StoreMessageInfo()
}

func ( *UInt64Value) () string {
	return protoimpl.X.MessageStringOf()
}

func (*UInt64Value) () {}

func ( *UInt64Value) () protoreflect.Message {
	 := &file_google_protobuf_wrappers_proto_msgTypes[3]
	if  != nil {
		 := protoimpl.X.MessageStateOf(protoimpl.Pointer())
		if .LoadMessageInfo() == nil {
			.StoreMessageInfo()
		}
		return 
	}
	return .MessageOf()
}

// Deprecated: Use UInt64Value.ProtoReflect.Descriptor instead.
func (*UInt64Value) () ([]byte, []int) {
	return file_google_protobuf_wrappers_proto_rawDescGZIP(), []int{3}
}

func ( *UInt64Value) () uint64 {
	if  != nil {
		return .Value
	}
	return 0
}

// Wrapper message for `int32`.
//
// The JSON representation for `Int32Value` is JSON number.
//
// Not recommended for use in new APIs, but still useful for legacy APIs and
// has no plan to be removed.
type Int32Value struct {
	state protoimpl.MessageState `protogen:"open.v1"`
	// The int32 value.
	Value         int32 `protobuf:"varint,1,opt,name=value,proto3" json:"value,omitempty"`
	unknownFields protoimpl.UnknownFields
	sizeCache     protoimpl.SizeCache
}

// Int32 stores v in a new Int32Value and returns a pointer to it.
func ( int32) *Int32Value {
	return &Int32Value{Value: }
}

func ( *Int32Value) () {
	* = Int32Value{}
	 := &file_google_protobuf_wrappers_proto_msgTypes[4]
	 := protoimpl.X.MessageStateOf(protoimpl.Pointer())
	.StoreMessageInfo()
}

func ( *Int32Value) () string {
	return protoimpl.X.MessageStringOf()
}

func (*Int32Value) () {}

func ( *Int32Value) () protoreflect.Message {
	 := &file_google_protobuf_wrappers_proto_msgTypes[4]
	if  != nil {
		 := protoimpl.X.MessageStateOf(protoimpl.Pointer())
		if .LoadMessageInfo() == nil {
			.StoreMessageInfo()
		}
		return 
	}
	return .MessageOf()
}

// Deprecated: Use Int32Value.ProtoReflect.Descriptor instead.
func (*Int32Value) () ([]byte, []int) {
	return file_google_protobuf_wrappers_proto_rawDescGZIP(), []int{4}
}

func ( *Int32Value) () int32 {
	if  != nil {
		return .Value
	}
	return 0
}

// Wrapper message for `uint32`.
//
// The JSON representation for `UInt32Value` is JSON number.
//
// Not recommended for use in new APIs, but still useful for legacy APIs and
// has no plan to be removed.
type UInt32Value struct {
	state protoimpl.MessageState `protogen:"open.v1"`
	// The uint32 value.
	Value         uint32 `protobuf:"varint,1,opt,name=value,proto3" json:"value,omitempty"`
	unknownFields protoimpl.UnknownFields
	sizeCache     protoimpl.SizeCache
}

// UInt32 stores v in a new UInt32Value and returns a pointer to it.
func ( uint32) *UInt32Value {
	return &UInt32Value{Value: }
}

func ( *UInt32Value) () {
	* = UInt32Value{}
	 := &file_google_protobuf_wrappers_proto_msgTypes[5]
	 := protoimpl.X.MessageStateOf(protoimpl.Pointer())
	.StoreMessageInfo()
}

func ( *UInt32Value) () string {
	return protoimpl.X.MessageStringOf()
}

func (*UInt32Value) () {}

func ( *UInt32Value) () protoreflect.Message {
	 := &file_google_protobuf_wrappers_proto_msgTypes[5]
	if  != nil {
		 := protoimpl.X.MessageStateOf(protoimpl.Pointer())
		if .LoadMessageInfo() == nil {
			.StoreMessageInfo()
		}
		return 
	}
	return .MessageOf()
}

// Deprecated: Use UInt32Value.ProtoReflect.Descriptor instead.
func (*UInt32Value) () ([]byte, []int) {
	return file_google_protobuf_wrappers_proto_rawDescGZIP(), []int{5}
}

func ( *UInt32Value) () uint32 {
	if  != nil {
		return .Value
	}
	return 0
}

// Wrapper message for `bool`.
//
// The JSON representation for `BoolValue` is JSON `true` and `false`.
//
// Not recommended for use in new APIs, but still useful for legacy APIs and
// has no plan to be removed.
type BoolValue struct {
	state protoimpl.MessageState `protogen:"open.v1"`
	// The bool value.
	Value         bool `protobuf:"varint,1,opt,name=value,proto3" json:"value,omitempty"`
	unknownFields protoimpl.UnknownFields
	sizeCache     protoimpl.SizeCache
}

// Bool stores v in a new BoolValue and returns a pointer to it.
func ( bool) *BoolValue {
	return &BoolValue{Value: }
}

func ( *BoolValue) () {
	* = BoolValue{}
	 := &file_google_protobuf_wrappers_proto_msgTypes[6]
	 := protoimpl.X.MessageStateOf(protoimpl.Pointer())
	.StoreMessageInfo()
}

func ( *BoolValue) () string {
	return protoimpl.X.MessageStringOf()
}

func (*BoolValue) () {}

func ( *BoolValue) () protoreflect.Message {
	 := &file_google_protobuf_wrappers_proto_msgTypes[6]
	if  != nil {
		 := protoimpl.X.MessageStateOf(protoimpl.Pointer())
		if .LoadMessageInfo() == nil {
			.StoreMessageInfo()
		}
		return 
	}
	return .MessageOf()
}

// Deprecated: Use BoolValue.ProtoReflect.Descriptor instead.
func (*BoolValue) () ([]byte, []int) {
	return file_google_protobuf_wrappers_proto_rawDescGZIP(), []int{6}
}

func ( *BoolValue) () bool {
	if  != nil {
		return .Value
	}
	return false
}

// Wrapper message for `string`.
//
// The JSON representation for `StringValue` is JSON string.
//
// Not recommended for use in new APIs, but still useful for legacy APIs and
// has no plan to be removed.
type StringValue struct {
	state protoimpl.MessageState `protogen:"open.v1"`
	// The string value.
	Value         string `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
	unknownFields protoimpl.UnknownFields
	sizeCache     protoimpl.SizeCache
}

// String stores v in a new StringValue and returns a pointer to it.
func ( string) *StringValue {
	return &StringValue{Value: }
}

func ( *StringValue) () {
	* = StringValue{}
	 := &file_google_protobuf_wrappers_proto_msgTypes[7]
	 := protoimpl.X.MessageStateOf(protoimpl.Pointer())
	.StoreMessageInfo()
}

func ( *StringValue) () string {
	return protoimpl.X.MessageStringOf()
}

func (*StringValue) () {}

func ( *StringValue) () protoreflect.Message {
	 := &file_google_protobuf_wrappers_proto_msgTypes[7]
	if  != nil {
		 := protoimpl.X.MessageStateOf(protoimpl.Pointer())
		if .LoadMessageInfo() == nil {
			.StoreMessageInfo()
		}
		return 
	}
	return .MessageOf()
}

// Deprecated: Use StringValue.ProtoReflect.Descriptor instead.
func (*StringValue) () ([]byte, []int) {
	return file_google_protobuf_wrappers_proto_rawDescGZIP(), []int{7}
}

func ( *StringValue) () string {
	if  != nil {
		return .Value
	}
	return ""
}

// Wrapper message for `bytes`.
//
// The JSON representation for `BytesValue` is JSON string.
//
// Not recommended for use in new APIs, but still useful for legacy APIs and
// has no plan to be removed.
type BytesValue struct {
	state protoimpl.MessageState `protogen:"open.v1"`
	// The bytes value.
	Value         []byte `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
	unknownFields protoimpl.UnknownFields
	sizeCache     protoimpl.SizeCache
}

// Bytes stores v in a new BytesValue and returns a pointer to it.
func ( []byte) *BytesValue {
	return &BytesValue{Value: }
}

func ( *BytesValue) () {
	* = BytesValue{}
	 := &file_google_protobuf_wrappers_proto_msgTypes[8]
	 := protoimpl.X.MessageStateOf(protoimpl.Pointer())
	.StoreMessageInfo()
}

func ( *BytesValue) () string {
	return protoimpl.X.MessageStringOf()
}

func (*BytesValue) () {}

func ( *BytesValue) () protoreflect.Message {
	 := &file_google_protobuf_wrappers_proto_msgTypes[8]
	if  != nil {
		 := protoimpl.X.MessageStateOf(protoimpl.Pointer())
		if .LoadMessageInfo() == nil {
			.StoreMessageInfo()
		}
		return 
	}
	return .MessageOf()
}

// Deprecated: Use BytesValue.ProtoReflect.Descriptor instead.
func (*BytesValue) () ([]byte, []int) {
	return file_google_protobuf_wrappers_proto_rawDescGZIP(), []int{8}
}

func ( *BytesValue) () []byte {
	if  != nil {
		return .Value
	}
	return nil
}

var File_google_protobuf_wrappers_proto protoreflect.FileDescriptor

const file_google_protobuf_wrappers_proto_rawDesc = "" +
	"\n" +
	"\x1egoogle/protobuf/wrappers.proto\x12\x0fgoogle.protobuf\"#\n" +
	"\vDoubleValue\x12\x14\n" +
	"\x05value\x18\x01 \x01(\x01R\x05value\"\"\n" +
	"\n" +
	"FloatValue\x12\x14\n" +
	"\x05value\x18\x01 \x01(\x02R\x05value\"\"\n" +
	"\n" +
	"Int64Value\x12\x14\n" +
	"\x05value\x18\x01 \x01(\x03R\x05value\"#\n" +
	"\vUInt64Value\x12\x14\n" +
	"\x05value\x18\x01 \x01(\x04R\x05value\"\"\n" +
	"\n" +
	"Int32Value\x12\x14\n" +
	"\x05value\x18\x01 \x01(\x05R\x05value\"#\n" +
	"\vUInt32Value\x12\x14\n" +
	"\x05value\x18\x01 \x01(\rR\x05value\"!\n" +
	"\tBoolValue\x12\x14\n" +
	"\x05value\x18\x01 \x01(\bR\x05value\"#\n" +
	"\vStringValue\x12\x14\n" +
	"\x05value\x18\x01 \x01(\tR\x05value\"\"\n" +
	"\n" +
	"BytesValue\x12\x14\n" +
	"\x05value\x18\x01 \x01(\fR\x05valueB\x83\x01\n" +
	"\x13com.google.protobufB\rWrappersProtoP\x01Z1google.golang.org/protobuf/types/known/wrapperspb\xf8\x01\x01\xa2\x02\x03GPB\xaa\x02\x1eGoogle.Protobuf.WellKnownTypesb\x06proto3"

var (
	file_google_protobuf_wrappers_proto_rawDescOnce sync.Once
	file_google_protobuf_wrappers_proto_rawDescData []byte
)

func file_google_protobuf_wrappers_proto_rawDescGZIP() []byte {
	file_google_protobuf_wrappers_proto_rawDescOnce.Do(func() {
		file_google_protobuf_wrappers_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_protobuf_wrappers_proto_rawDesc), len(file_google_protobuf_wrappers_proto_rawDesc)))
	})
	return file_google_protobuf_wrappers_proto_rawDescData
}

var file_google_protobuf_wrappers_proto_msgTypes = make([]protoimpl.MessageInfo, 9)
var file_google_protobuf_wrappers_proto_goTypes = []any{
	(*DoubleValue)(nil), // 0: google.protobuf.DoubleValue
	(*FloatValue)(nil),  // 1: google.protobuf.FloatValue
	(*Int64Value)(nil),  // 2: google.protobuf.Int64Value
	(*UInt64Value)(nil), // 3: google.protobuf.UInt64Value
	(*Int32Value)(nil),  // 4: google.protobuf.Int32Value
	(*UInt32Value)(nil), // 5: google.protobuf.UInt32Value
	(*BoolValue)(nil),   // 6: google.protobuf.BoolValue
	(*StringValue)(nil), // 7: google.protobuf.StringValue
	(*BytesValue)(nil),  // 8: google.protobuf.BytesValue
}
var file_google_protobuf_wrappers_proto_depIdxs = []int32{
	0, // [0:0] is the sub-list for method output_type
	0, // [0:0] is the sub-list for method input_type
	0, // [0:0] is the sub-list for extension type_name
	0, // [0:0] is the sub-list for extension extendee
	0, // [0:0] is the sub-list for field type_name
}

func init() { file_google_protobuf_wrappers_proto_init() }
func file_google_protobuf_wrappers_proto_init() {
	if File_google_protobuf_wrappers_proto != nil {
		return
	}
	type  struct{}
	 := protoimpl.TypeBuilder{
		File: protoimpl.DescBuilder{
			GoPackagePath: reflect.TypeOf({}).PkgPath(),
			RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_protobuf_wrappers_proto_rawDesc), len(file_google_protobuf_wrappers_proto_rawDesc)),
			NumEnums:      0,
			NumMessages:   9,
			NumExtensions: 0,
			NumServices:   0,
		},
		GoTypes:           file_google_protobuf_wrappers_proto_goTypes,
		DependencyIndexes: file_google_protobuf_wrappers_proto_depIdxs,
		MessageInfos:      file_google_protobuf_wrappers_proto_msgTypes,
	}.Build()
	File_google_protobuf_wrappers_proto = .File
	file_google_protobuf_wrappers_proto_goTypes = nil
	file_google_protobuf_wrappers_proto_depIdxs = nil
}