//
//Сервис реализует функционал управления способами оплаты

// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
// 	protoc-gen-go v1.30.0
// 	protoc        v4.23.1
// source: keyapis/invoice/v1/keyapis_invoice_paymethod_v1.proto

package keyapis_invoice_v1

import (
	_ "google.golang.org/genproto/googleapis/api/annotations"
	protoreflect "google.golang.org/protobuf/reflect/protoreflect"
	protoimpl "google.golang.org/protobuf/runtime/protoimpl"
	_ "google.golang.org/protobuf/types/known/fieldmaskpb"
	timestamppb "google.golang.org/protobuf/types/known/timestamppb"
	reflect "reflect"
	sync "sync"
)

const (
	// Verify that this generated code is sufficiently up-to-date.
	_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
	// Verify that runtime/protoimpl is sufficiently up-to-date.
	_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)

// Справочник типов способов оплаты
type PayMethod_Type int32

const (
	// Значение не указано
	PayMethod_TYPE_UNKNOWN PayMethod_Type = 0
	// Банковская карта
	PayMethod_BANK_CARD PayMethod_Type = 1
	// Сервис быстрых платежей
	PayMethod_SBP PayMethod_Type = 2
	// Связка Сбербанка
	PayMethod_SBER_BIND PayMethod_Type = 3
)

// Enum value maps for PayMethod_Type.
var (
	PayMethod_Type_name = map[int32]string{
		0: "TYPE_UNKNOWN",
		1: "BANK_CARD",
		2: "SBP",
		3: "SBER_BIND",
	}
	PayMethod_Type_value = map[string]int32{
		"TYPE_UNKNOWN": 0,
		"BANK_CARD":    1,
		"SBP":          2,
		"SBER_BIND":    3,
	}
)

func (x PayMethod_Type) Enum() *PayMethod_Type {
	p := new(PayMethod_Type)
	*p = x
	return p
}

func (x PayMethod_Type) String() string {
	return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
}

func (PayMethod_Type) Descriptor() protoreflect.EnumDescriptor {
	return file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_enumTypes[0].Descriptor()
}

func (PayMethod_Type) Type() protoreflect.EnumType {
	return &file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_enumTypes[0]
}

func (x PayMethod_Type) Number() protoreflect.EnumNumber {
	return protoreflect.EnumNumber(x)
}

// Deprecated: Use PayMethod_Type.Descriptor instead.
func (PayMethod_Type) EnumDescriptor() ([]byte, []int) {
	return file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_rawDescGZIP(), []int{0, 0}
}

// Справочник типов банковских карт
type PayMethod_CardType int32

const (
	// Значение не указано
	PayMethod_CARD_TYPE_UNKNOWN PayMethod_CardType = 0
	// Карта VISA
	PayMethod_VISA PayMethod_CardType = 1
	// Карта EuroCard/MasterCard
	PayMethod_EC_MC PayMethod_CardType = 2
	// Карта DinersClub
	PayMethod_DCL PayMethod_CardType = 3
	// Карта JCB
	PayMethod_JCB PayMethod_CardType = 4
	// Карта American Express
	PayMethod_AMEX PayMethod_CardType = 5
	// Платежная система "Мир"
	PayMethod_MIR PayMethod_CardType = 6
)

// Enum value maps for PayMethod_CardType.
var (
	PayMethod_CardType_name = map[int32]string{
		0: "CARD_TYPE_UNKNOWN",
		1: "VISA",
		2: "EC_MC",
		3: "DCL",
		4: "JCB",
		5: "AMEX",
		6: "MIR",
	}
	PayMethod_CardType_value = map[string]int32{
		"CARD_TYPE_UNKNOWN": 0,
		"VISA":              1,
		"EC_MC":             2,
		"DCL":               3,
		"JCB":               4,
		"AMEX":              5,
		"MIR":               6,
	}
)

func (x PayMethod_CardType) Enum() *PayMethod_CardType {
	p := new(PayMethod_CardType)
	*p = x
	return p
}

func (x PayMethod_CardType) String() string {
	return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
}

func (PayMethod_CardType) Descriptor() protoreflect.EnumDescriptor {
	return file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_enumTypes[1].Descriptor()
}

func (PayMethod_CardType) Type() protoreflect.EnumType {
	return &file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_enumTypes[1]
}

func (x PayMethod_CardType) Number() protoreflect.EnumNumber {
	return protoreflect.EnumNumber(x)
}

// Deprecated: Use PayMethod_CardType.Descriptor instead.
func (PayMethod_CardType) EnumDescriptor() ([]byte, []int) {
	return file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_rawDescGZIP(), []int{0, 1}
}

// Статус способа оплаты
type PayMethod_StatusType int32

const (
	// Значение не указано
	PayMethod_STATUS_TYPE_UNKNOWN PayMethod_StatusType = 0
	// Исправный
	PayMethod_VALID PayMethod_StatusType = 1
	// Истекший
	PayMethod_EXPIRED PayMethod_StatusType = 2
	// Заблокированный
	PayMethod_BLOCKED PayMethod_StatusType = 3
)

// Enum value maps for PayMethod_StatusType.
var (
	PayMethod_StatusType_name = map[int32]string{
		0: "STATUS_TYPE_UNKNOWN",
		1: "VALID",
		2: "EXPIRED",
		3: "BLOCKED",
	}
	PayMethod_StatusType_value = map[string]int32{
		"STATUS_TYPE_UNKNOWN": 0,
		"VALID":               1,
		"EXPIRED":             2,
		"BLOCKED":             3,
	}
)

func (x PayMethod_StatusType) Enum() *PayMethod_StatusType {
	p := new(PayMethod_StatusType)
	*p = x
	return p
}

func (x PayMethod_StatusType) String() string {
	return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
}

func (PayMethod_StatusType) Descriptor() protoreflect.EnumDescriptor {
	return file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_enumTypes[2].Descriptor()
}

func (PayMethod_StatusType) Type() protoreflect.EnumType {
	return &file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_enumTypes[2]
}

func (x PayMethod_StatusType) Number() protoreflect.EnumNumber {
	return protoreflect.EnumNumber(x)
}

// Deprecated: Use PayMethod_StatusType.Descriptor instead.
func (PayMethod_StatusType) EnumDescriptor() ([]byte, []int) {
	return file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_rawDescGZIP(), []int{0, 2}
}

// Способ оплаты
type PayMethod struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	// Идентификатор способа оплаты
	PayMethodId string `protobuf:"bytes,1,opt,name=pay_method_id,json=payMethodId,proto3" json:"pay_method_id,omitempty"`
	// Идентификатор пользователя
	UserId int32 `protobuf:"varint,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	// Тип способа оплаты
	Type PayMethod_Type `protobuf:"varint,3,opt,name=type,proto3,enum=keyapis.invoice.v1.PayMethod_Type" json:"type,omitempty"`
	// Признак активной записи
	IsActive bool `protobuf:"varint,4,opt,name=is_active,json=isActive,proto3" json:"is_active,omitempty"`
	// Способ оплаты по умолчанию
	IsDefault bool `protobuf:"varint,5,opt,name=is_default,json=isDefault,proto3" json:"is_default,omitempty"`
	// Мобильный телефон, на который будут отправляться уведомления
	PayMethodContact string `protobuf:"bytes,6,opt,name=pay_method_contact,json=payMethodContact,proto3" json:"pay_method_contact,omitempty"`
	// Описание способа оплаты
	PayMethodDescription string `protobuf:"bytes,7,opt,name=pay_method_description,json=payMethodDescription,proto3" json:"pay_method_description,omitempty"`
	// Псевдоним способа оплаты
	PayMethodAlias string `protobuf:"bytes,8,opt,name=pay_method_alias,json=payMethodAlias,proto3" json:"pay_method_alias,omitempty"`
	// Тип банковской карты
	CardType PayMethod_CardType `protobuf:"varint,9,opt,name=card_type,json=cardType,proto3,enum=keyapis.invoice.v1.PayMethod_CardType" json:"card_type,omitempty"`
	// Маскированный номер карты или идентификатора привязки счета СБП
	MaskedNum string `protobuf:"bytes,10,opt,name=masked_num,json=maskedNum,proto3" json:"masked_num,omitempty"`
	// Наименование банка
	BankName string `protobuf:"bytes,11,opt,name=bank_name,json=bankName,proto3" json:"bank_name,omitempty"`
	// Признак авторизации БК
	IsAuth bool `protobuf:"varint,12,opt,name=is_auth,json=isAuth,proto3" json:"is_auth,omitempty"`
	// Статус способа оплаты
	StatusType PayMethod_StatusType `protobuf:"varint,13,opt,name=status_type,json=statusType,proto3,enum=keyapis.invoice.v1.PayMethod_StatusType" json:"status_type,omitempty"`
	// Дата регистрации способа оплаты.
	// # Тип: DateTime
	RegisterAt *timestamppb.Timestamp `protobuf:"bytes,14,opt,name=register_at,json=registerAt,proto3" json:"register_at,omitempty"`
}

func (x *PayMethod) Reset() {
	*x = PayMethod{}
	if protoimpl.UnsafeEnabled {
		mi := &file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes[0]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

func (x *PayMethod) String() string {
	return protoimpl.X.MessageStringOf(x)
}

func (*PayMethod) ProtoMessage() {}

func (x *PayMethod) ProtoReflect() protoreflect.Message {
	mi := &file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes[0]
	if protoimpl.UnsafeEnabled && x != nil {
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		if ms.LoadMessageInfo() == nil {
			ms.StoreMessageInfo(mi)
		}
		return ms
	}
	return mi.MessageOf(x)
}

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

func (x *PayMethod) GetPayMethodId() string {
	if x != nil {
		return x.PayMethodId
	}
	return ""
}

func (x *PayMethod) GetUserId() int32 {
	if x != nil {
		return x.UserId
	}
	return 0
}

func (x *PayMethod) GetType() PayMethod_Type {
	if x != nil {
		return x.Type
	}
	return PayMethod_TYPE_UNKNOWN
}

func (x *PayMethod) GetIsActive() bool {
	if x != nil {
		return x.IsActive
	}
	return false
}

func (x *PayMethod) GetIsDefault() bool {
	if x != nil {
		return x.IsDefault
	}
	return false
}

func (x *PayMethod) GetPayMethodContact() string {
	if x != nil {
		return x.PayMethodContact
	}
	return ""
}

func (x *PayMethod) GetPayMethodDescription() string {
	if x != nil {
		return x.PayMethodDescription
	}
	return ""
}

func (x *PayMethod) GetPayMethodAlias() string {
	if x != nil {
		return x.PayMethodAlias
	}
	return ""
}

func (x *PayMethod) GetCardType() PayMethod_CardType {
	if x != nil {
		return x.CardType
	}
	return PayMethod_CARD_TYPE_UNKNOWN
}

func (x *PayMethod) GetMaskedNum() string {
	if x != nil {
		return x.MaskedNum
	}
	return ""
}

func (x *PayMethod) GetBankName() string {
	if x != nil {
		return x.BankName
	}
	return ""
}

func (x *PayMethod) GetIsAuth() bool {
	if x != nil {
		return x.IsAuth
	}
	return false
}

func (x *PayMethod) GetStatusType() PayMethod_StatusType {
	if x != nil {
		return x.StatusType
	}
	return PayMethod_STATUS_TYPE_UNKNOWN
}

func (x *PayMethod) GetRegisterAt() *timestamppb.Timestamp {
	if x != nil {
		return x.RegisterAt
	}
	return nil
}

// Запрос на получение списка способов оплаты
type GetPayMethodListRequest struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	// Идентификатор пользователя
	UserId int32 `protobuf:"varint,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
}

func (x *GetPayMethodListRequest) Reset() {
	*x = GetPayMethodListRequest{}
	if protoimpl.UnsafeEnabled {
		mi := &file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes[1]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

func (x *GetPayMethodListRequest) String() string {
	return protoimpl.X.MessageStringOf(x)
}

func (*GetPayMethodListRequest) ProtoMessage() {}

func (x *GetPayMethodListRequest) ProtoReflect() protoreflect.Message {
	mi := &file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes[1]
	if protoimpl.UnsafeEnabled && x != nil {
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		if ms.LoadMessageInfo() == nil {
			ms.StoreMessageInfo(mi)
		}
		return ms
	}
	return mi.MessageOf(x)
}

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

func (x *GetPayMethodListRequest) GetUserId() int32 {
	if x != nil {
		return x.UserId
	}
	return 0
}

// Ответ на запрос получения списка способов оплаты
type GetPayMethodListResponse struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	// Способы оплаты
	Data []*PayMethod `protobuf:"bytes,1,rep,name=data,proto3" json:"data,omitempty"`
}

func (x *GetPayMethodListResponse) Reset() {
	*x = GetPayMethodListResponse{}
	if protoimpl.UnsafeEnabled {
		mi := &file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes[2]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

func (x *GetPayMethodListResponse) String() string {
	return protoimpl.X.MessageStringOf(x)
}

func (*GetPayMethodListResponse) ProtoMessage() {}

func (x *GetPayMethodListResponse) ProtoReflect() protoreflect.Message {
	mi := &file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes[2]
	if protoimpl.UnsafeEnabled && x != nil {
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		if ms.LoadMessageInfo() == nil {
			ms.StoreMessageInfo(mi)
		}
		return ms
	}
	return mi.MessageOf(x)
}

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

func (x *GetPayMethodListResponse) GetData() []*PayMethod {
	if x != nil {
		return x.Data
	}
	return nil
}

// Запрос на удаление способа оплаты
type DeletePayMethodRequest struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	// Идентификатор способа оплаты
	PayMethodId string `protobuf:"bytes,1,opt,name=pay_method_id,json=payMethodId,proto3" json:"pay_method_id,omitempty"`
}

func (x *DeletePayMethodRequest) Reset() {
	*x = DeletePayMethodRequest{}
	if protoimpl.UnsafeEnabled {
		mi := &file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes[3]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

func (x *DeletePayMethodRequest) String() string {
	return protoimpl.X.MessageStringOf(x)
}

func (*DeletePayMethodRequest) ProtoMessage() {}

func (x *DeletePayMethodRequest) ProtoReflect() protoreflect.Message {
	mi := &file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes[3]
	if protoimpl.UnsafeEnabled && x != nil {
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		if ms.LoadMessageInfo() == nil {
			ms.StoreMessageInfo(mi)
		}
		return ms
	}
	return mi.MessageOf(x)
}

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

func (x *DeletePayMethodRequest) GetPayMethodId() string {
	if x != nil {
		return x.PayMethodId
	}
	return ""
}

// Ответ на запрос удаления способа оплаты
type DeletePayMethodResponse struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields
}

func (x *DeletePayMethodResponse) Reset() {
	*x = DeletePayMethodResponse{}
	if protoimpl.UnsafeEnabled {
		mi := &file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes[4]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

func (x *DeletePayMethodResponse) String() string {
	return protoimpl.X.MessageStringOf(x)
}

func (*DeletePayMethodResponse) ProtoMessage() {}

func (x *DeletePayMethodResponse) ProtoReflect() protoreflect.Message {
	mi := &file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes[4]
	if protoimpl.UnsafeEnabled && x != nil {
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		if ms.LoadMessageInfo() == nil {
			ms.StoreMessageInfo(mi)
		}
		return ms
	}
	return mi.MessageOf(x)
}

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

// Запрос установки способа оплаты по умолчанию
type PostPayMethodDefaultRequest struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	// Идентификатор способа оплаты
	PayMethodId string `protobuf:"bytes,1,opt,name=pay_method_id,json=payMethodId,proto3" json:"pay_method_id,omitempty"`
}

func (x *PostPayMethodDefaultRequest) Reset() {
	*x = PostPayMethodDefaultRequest{}
	if protoimpl.UnsafeEnabled {
		mi := &file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes[5]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

func (x *PostPayMethodDefaultRequest) String() string {
	return protoimpl.X.MessageStringOf(x)
}

func (*PostPayMethodDefaultRequest) ProtoMessage() {}

func (x *PostPayMethodDefaultRequest) ProtoReflect() protoreflect.Message {
	mi := &file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes[5]
	if protoimpl.UnsafeEnabled && x != nil {
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		if ms.LoadMessageInfo() == nil {
			ms.StoreMessageInfo(mi)
		}
		return ms
	}
	return mi.MessageOf(x)
}

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

func (x *PostPayMethodDefaultRequest) GetPayMethodId() string {
	if x != nil {
		return x.PayMethodId
	}
	return ""
}

// Ответ на запрос установки способа оплаты по умолчанию
type PostPayMethodDefaultResponse struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	// Тип ответа
	//
	// Types that are assignable to Type:
	//
	//	*PostPayMethodDefaultResponse_Error_
	Type isPostPayMethodDefaultResponse_Type `protobuf_oneof:"type"`
}

func (x *PostPayMethodDefaultResponse) Reset() {
	*x = PostPayMethodDefaultResponse{}
	if protoimpl.UnsafeEnabled {
		mi := &file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes[6]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

func (x *PostPayMethodDefaultResponse) String() string {
	return protoimpl.X.MessageStringOf(x)
}

func (*PostPayMethodDefaultResponse) ProtoMessage() {}

func (x *PostPayMethodDefaultResponse) ProtoReflect() protoreflect.Message {
	mi := &file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes[6]
	if protoimpl.UnsafeEnabled && x != nil {
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		if ms.LoadMessageInfo() == nil {
			ms.StoreMessageInfo(mi)
		}
		return ms
	}
	return mi.MessageOf(x)
}

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

func (m *PostPayMethodDefaultResponse) GetType() isPostPayMethodDefaultResponse_Type {
	if m != nil {
		return m.Type
	}
	return nil
}

func (x *PostPayMethodDefaultResponse) GetError() *PostPayMethodDefaultResponse_Error {
	if x, ok := x.GetType().(*PostPayMethodDefaultResponse_Error_); ok {
		return x.Error
	}
	return nil
}

type isPostPayMethodDefaultResponse_Type interface {
	isPostPayMethodDefaultResponse_Type()
}

type PostPayMethodDefaultResponse_Error_ struct {
	// Ошибка
	Error *PostPayMethodDefaultResponse_Error `protobuf:"bytes,1,opt,name=error,proto3,oneof"`
}

func (*PostPayMethodDefaultResponse_Error_) isPostPayMethodDefaultResponse_Type() {}

// Запрос на добавления способа оплаты с типом "Банковская карта"
type PostPayMethodBankcardRequest struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	// URL для переадресации абонента в случае успешной регистрации карты
	UrlReturnOk string `protobuf:"bytes,1,opt,name=url_return_ok,json=urlReturnOk,proto3" json:"url_return_ok,omitempty"`
	// URL для переадресации абонента в случае неуспешной регистрации карты
	UrlReturnNo string `protobuf:"bytes,2,opt,name=url_return_no,json=urlReturnNo,proto3" json:"url_return_no,omitempty"`
}

func (x *PostPayMethodBankcardRequest) Reset() {
	*x = PostPayMethodBankcardRequest{}
	if protoimpl.UnsafeEnabled {
		mi := &file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes[7]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

func (x *PostPayMethodBankcardRequest) String() string {
	return protoimpl.X.MessageStringOf(x)
}

func (*PostPayMethodBankcardRequest) ProtoMessage() {}

func (x *PostPayMethodBankcardRequest) ProtoReflect() protoreflect.Message {
	mi := &file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes[7]
	if protoimpl.UnsafeEnabled && x != nil {
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		if ms.LoadMessageInfo() == nil {
			ms.StoreMessageInfo(mi)
		}
		return ms
	}
	return mi.MessageOf(x)
}

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

func (x *PostPayMethodBankcardRequest) GetUrlReturnOk() string {
	if x != nil {
		return x.UrlReturnOk
	}
	return ""
}

func (x *PostPayMethodBankcardRequest) GetUrlReturnNo() string {
	if x != nil {
		return x.UrlReturnNo
	}
	return ""
}

// Ответ на запрос добавления способа оплаты с типом "Банковская карта"
type PostPayMethodBankcardResponse struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	// Тип ответа
	//
	// Types that are assignable to Type:
	//
	//	*PostPayMethodBankcardResponse_Error_
	//	*PostPayMethodBankcardResponse_Data
	Type isPostPayMethodBankcardResponse_Type `protobuf_oneof:"type"`
}

func (x *PostPayMethodBankcardResponse) Reset() {
	*x = PostPayMethodBankcardResponse{}
	if protoimpl.UnsafeEnabled {
		mi := &file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes[8]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

func (x *PostPayMethodBankcardResponse) String() string {
	return protoimpl.X.MessageStringOf(x)
}

func (*PostPayMethodBankcardResponse) ProtoMessage() {}

func (x *PostPayMethodBankcardResponse) ProtoReflect() protoreflect.Message {
	mi := &file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes[8]
	if protoimpl.UnsafeEnabled && x != nil {
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		if ms.LoadMessageInfo() == nil {
			ms.StoreMessageInfo(mi)
		}
		return ms
	}
	return mi.MessageOf(x)
}

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

func (m *PostPayMethodBankcardResponse) GetType() isPostPayMethodBankcardResponse_Type {
	if m != nil {
		return m.Type
	}
	return nil
}

func (x *PostPayMethodBankcardResponse) GetError() *PostPayMethodBankcardResponse_Error {
	if x, ok := x.GetType().(*PostPayMethodBankcardResponse_Error_); ok {
		return x.Error
	}
	return nil
}

func (x *PostPayMethodBankcardResponse) GetData() *PostPayMethodBankcardResponse_RegisterData {
	if x, ok := x.GetType().(*PostPayMethodBankcardResponse_Data); ok {
		return x.Data
	}
	return nil
}

type isPostPayMethodBankcardResponse_Type interface {
	isPostPayMethodBankcardResponse_Type()
}

type PostPayMethodBankcardResponse_Error_ struct {
	// Ошибка валидации
	Error *PostPayMethodBankcardResponse_Error `protobuf:"bytes,1,opt,name=error,proto3,oneof"`
}

type PostPayMethodBankcardResponse_Data struct {
	// Данные регистрации
	Data *PostPayMethodBankcardResponse_RegisterData `protobuf:"bytes,2,opt,name=data,proto3,oneof"`
}

func (*PostPayMethodBankcardResponse_Error_) isPostPayMethodBankcardResponse_Type() {}

func (*PostPayMethodBankcardResponse_Data) isPostPayMethodBankcardResponse_Type() {}

// Запрос на добавления способа оплаты с типом "СБП"
type PostPayMethodSbpRequest struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	// URL для переадресации абонента в случае успешной регистрации карты
	UrlReturnOk string `protobuf:"bytes,1,opt,name=url_return_ok,json=urlReturnOk,proto3" json:"url_return_ok,omitempty"`
	// URL для переадресации абонента в случае неуспешной регистрации карты
	UrlReturnNo string `protobuf:"bytes,2,opt,name=url_return_no,json=urlReturnNo,proto3" json:"url_return_no,omitempty"`
}

func (x *PostPayMethodSbpRequest) Reset() {
	*x = PostPayMethodSbpRequest{}
	if protoimpl.UnsafeEnabled {
		mi := &file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes[9]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

func (x *PostPayMethodSbpRequest) String() string {
	return protoimpl.X.MessageStringOf(x)
}

func (*PostPayMethodSbpRequest) ProtoMessage() {}

func (x *PostPayMethodSbpRequest) ProtoReflect() protoreflect.Message {
	mi := &file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes[9]
	if protoimpl.UnsafeEnabled && x != nil {
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		if ms.LoadMessageInfo() == nil {
			ms.StoreMessageInfo(mi)
		}
		return ms
	}
	return mi.MessageOf(x)
}

// Deprecated: Use PostPayMethodSbpRequest.ProtoReflect.Descriptor instead.
func (*PostPayMethodSbpRequest) Descriptor() ([]byte, []int) {
	return file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_rawDescGZIP(), []int{9}
}

func (x *PostPayMethodSbpRequest) GetUrlReturnOk() string {
	if x != nil {
		return x.UrlReturnOk
	}
	return ""
}

func (x *PostPayMethodSbpRequest) GetUrlReturnNo() string {
	if x != nil {
		return x.UrlReturnNo
	}
	return ""
}

// Ответ на запрос добавления способа оплаты с типом "СБП"
type PostPayMethodSbpResponse struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	// Тип ответа
	//
	// Types that are assignable to Type:
	//
	//	*PostPayMethodSbpResponse_Error_
	//	*PostPayMethodSbpResponse_Data
	Type isPostPayMethodSbpResponse_Type `protobuf_oneof:"type"`
}

func (x *PostPayMethodSbpResponse) Reset() {
	*x = PostPayMethodSbpResponse{}
	if protoimpl.UnsafeEnabled {
		mi := &file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes[10]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

func (x *PostPayMethodSbpResponse) String() string {
	return protoimpl.X.MessageStringOf(x)
}

func (*PostPayMethodSbpResponse) ProtoMessage() {}

func (x *PostPayMethodSbpResponse) ProtoReflect() protoreflect.Message {
	mi := &file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes[10]
	if protoimpl.UnsafeEnabled && x != nil {
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		if ms.LoadMessageInfo() == nil {
			ms.StoreMessageInfo(mi)
		}
		return ms
	}
	return mi.MessageOf(x)
}

// Deprecated: Use PostPayMethodSbpResponse.ProtoReflect.Descriptor instead.
func (*PostPayMethodSbpResponse) Descriptor() ([]byte, []int) {
	return file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_rawDescGZIP(), []int{10}
}

func (m *PostPayMethodSbpResponse) GetType() isPostPayMethodSbpResponse_Type {
	if m != nil {
		return m.Type
	}
	return nil
}

func (x *PostPayMethodSbpResponse) GetError() *PostPayMethodSbpResponse_Error {
	if x, ok := x.GetType().(*PostPayMethodSbpResponse_Error_); ok {
		return x.Error
	}
	return nil
}

func (x *PostPayMethodSbpResponse) GetData() *PostPayMethodSbpResponse_RegisterData {
	if x, ok := x.GetType().(*PostPayMethodSbpResponse_Data); ok {
		return x.Data
	}
	return nil
}

type isPostPayMethodSbpResponse_Type interface {
	isPostPayMethodSbpResponse_Type()
}

type PostPayMethodSbpResponse_Error_ struct {
	// Ошибка валидации
	Error *PostPayMethodSbpResponse_Error `protobuf:"bytes,1,opt,name=error,proto3,oneof"`
}

type PostPayMethodSbpResponse_Data struct {
	// Данные регистрации
	Data *PostPayMethodSbpResponse_RegisterData `protobuf:"bytes,2,opt,name=data,proto3,oneof"`
}

func (*PostPayMethodSbpResponse_Error_) isPostPayMethodSbpResponse_Type() {}

func (*PostPayMethodSbpResponse_Data) isPostPayMethodSbpResponse_Type() {}

// Ошибка валидации
type ValidationError struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	// Путь к полю в формате наименования прото
	Path string `protobuf:"bytes,1,opt,name=path,proto3" json:"path,omitempty"`
	// Валидационное сообщение
	Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`
}

func (x *ValidationError) Reset() {
	*x = ValidationError{}
	if protoimpl.UnsafeEnabled {
		mi := &file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes[11]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

func (x *ValidationError) String() string {
	return protoimpl.X.MessageStringOf(x)
}

func (*ValidationError) ProtoMessage() {}

func (x *ValidationError) ProtoReflect() protoreflect.Message {
	mi := &file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes[11]
	if protoimpl.UnsafeEnabled && x != nil {
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		if ms.LoadMessageInfo() == nil {
			ms.StoreMessageInfo(mi)
		}
		return ms
	}
	return mi.MessageOf(x)
}

// Deprecated: Use ValidationError.ProtoReflect.Descriptor instead.
func (*ValidationError) Descriptor() ([]byte, []int) {
	return file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_rawDescGZIP(), []int{11}
}

func (x *ValidationError) GetPath() string {
	if x != nil {
		return x.Path
	}
	return ""
}

func (x *ValidationError) GetMessage() string {
	if x != nil {
		return x.Message
	}
	return ""
}

// Ошибка запроса
type PostPayMethodDefaultResponse_Error struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	// Причина ошибки
	//
	// Types that are assignable to Reason:
	//
	//	*PostPayMethodDefaultResponse_Error_Validation
	Reason isPostPayMethodDefaultResponse_Error_Reason `protobuf_oneof:"reason"`
}

func (x *PostPayMethodDefaultResponse_Error) Reset() {
	*x = PostPayMethodDefaultResponse_Error{}
	if protoimpl.UnsafeEnabled {
		mi := &file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes[12]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

func (x *PostPayMethodDefaultResponse_Error) String() string {
	return protoimpl.X.MessageStringOf(x)
}

func (*PostPayMethodDefaultResponse_Error) ProtoMessage() {}

func (x *PostPayMethodDefaultResponse_Error) ProtoReflect() protoreflect.Message {
	mi := &file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes[12]
	if protoimpl.UnsafeEnabled && x != nil {
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		if ms.LoadMessageInfo() == nil {
			ms.StoreMessageInfo(mi)
		}
		return ms
	}
	return mi.MessageOf(x)
}

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

func (m *PostPayMethodDefaultResponse_Error) GetReason() isPostPayMethodDefaultResponse_Error_Reason {
	if m != nil {
		return m.Reason
	}
	return nil
}

func (x *PostPayMethodDefaultResponse_Error) GetValidation() *ValidationError {
	if x, ok := x.GetReason().(*PostPayMethodDefaultResponse_Error_Validation); ok {
		return x.Validation
	}
	return nil
}

type isPostPayMethodDefaultResponse_Error_Reason interface {
	isPostPayMethodDefaultResponse_Error_Reason()
}

type PostPayMethodDefaultResponse_Error_Validation struct {
	// Ошибка валидации
	Validation *ValidationError `protobuf:"bytes,1,opt,name=validation,proto3,oneof"`
}

func (*PostPayMethodDefaultResponse_Error_Validation) isPostPayMethodDefaultResponse_Error_Reason() {}

// Ошибка запроса
type PostPayMethodBankcardResponse_Error struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	// Причина ошибки
	//
	// Types that are assignable to Reason:
	//
	//	*PostPayMethodBankcardResponse_Error_Validation
	Reason isPostPayMethodBankcardResponse_Error_Reason `protobuf_oneof:"reason"`
}

func (x *PostPayMethodBankcardResponse_Error) Reset() {
	*x = PostPayMethodBankcardResponse_Error{}
	if protoimpl.UnsafeEnabled {
		mi := &file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes[13]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

func (x *PostPayMethodBankcardResponse_Error) String() string {
	return protoimpl.X.MessageStringOf(x)
}

func (*PostPayMethodBankcardResponse_Error) ProtoMessage() {}

func (x *PostPayMethodBankcardResponse_Error) ProtoReflect() protoreflect.Message {
	mi := &file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes[13]
	if protoimpl.UnsafeEnabled && x != nil {
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		if ms.LoadMessageInfo() == nil {
			ms.StoreMessageInfo(mi)
		}
		return ms
	}
	return mi.MessageOf(x)
}

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

func (m *PostPayMethodBankcardResponse_Error) GetReason() isPostPayMethodBankcardResponse_Error_Reason {
	if m != nil {
		return m.Reason
	}
	return nil
}

func (x *PostPayMethodBankcardResponse_Error) GetValidation() *ValidationError {
	if x, ok := x.GetReason().(*PostPayMethodBankcardResponse_Error_Validation); ok {
		return x.Validation
	}
	return nil
}

type isPostPayMethodBankcardResponse_Error_Reason interface {
	isPostPayMethodBankcardResponse_Error_Reason()
}

type PostPayMethodBankcardResponse_Error_Validation struct {
	// Ошибка валидации
	Validation *ValidationError `protobuf:"bytes,1,opt,name=validation,proto3,oneof"`
}

func (*PostPayMethodBankcardResponse_Error_Validation) isPostPayMethodBankcardResponse_Error_Reason() {
}

// Данные регистрации
type PostPayMethodBankcardResponse_RegisterData struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	// Идентификатор запроса на регистрацию
	ReqId string `protobuf:"bytes,1,opt,name=req_id,json=reqId,proto3" json:"req_id,omitempty"`
	// Ссылка для переадресации клиента для продолжения регистрации
	UrlRegistration string `protobuf:"bytes,2,opt,name=url_registration,json=urlRegistration,proto3" json:"url_registration,omitempty"`
}

func (x *PostPayMethodBankcardResponse_RegisterData) Reset() {
	*x = PostPayMethodBankcardResponse_RegisterData{}
	if protoimpl.UnsafeEnabled {
		mi := &file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes[14]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

func (x *PostPayMethodBankcardResponse_RegisterData) String() string {
	return protoimpl.X.MessageStringOf(x)
}

func (*PostPayMethodBankcardResponse_RegisterData) ProtoMessage() {}

func (x *PostPayMethodBankcardResponse_RegisterData) ProtoReflect() protoreflect.Message {
	mi := &file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes[14]
	if protoimpl.UnsafeEnabled && x != nil {
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		if ms.LoadMessageInfo() == nil {
			ms.StoreMessageInfo(mi)
		}
		return ms
	}
	return mi.MessageOf(x)
}

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

func (x *PostPayMethodBankcardResponse_RegisterData) GetReqId() string {
	if x != nil {
		return x.ReqId
	}
	return ""
}

func (x *PostPayMethodBankcardResponse_RegisterData) GetUrlRegistration() string {
	if x != nil {
		return x.UrlRegistration
	}
	return ""
}

// Ошибка запроса
type PostPayMethodSbpResponse_Error struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	// Причина ошибки
	//
	// Types that are assignable to Reason:
	//
	//	*PostPayMethodSbpResponse_Error_Validation
	Reason isPostPayMethodSbpResponse_Error_Reason `protobuf_oneof:"reason"`
}

func (x *PostPayMethodSbpResponse_Error) Reset() {
	*x = PostPayMethodSbpResponse_Error{}
	if protoimpl.UnsafeEnabled {
		mi := &file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes[15]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

func (x *PostPayMethodSbpResponse_Error) String() string {
	return protoimpl.X.MessageStringOf(x)
}

func (*PostPayMethodSbpResponse_Error) ProtoMessage() {}

func (x *PostPayMethodSbpResponse_Error) ProtoReflect() protoreflect.Message {
	mi := &file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes[15]
	if protoimpl.UnsafeEnabled && x != nil {
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		if ms.LoadMessageInfo() == nil {
			ms.StoreMessageInfo(mi)
		}
		return ms
	}
	return mi.MessageOf(x)
}

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

func (m *PostPayMethodSbpResponse_Error) GetReason() isPostPayMethodSbpResponse_Error_Reason {
	if m != nil {
		return m.Reason
	}
	return nil
}

func (x *PostPayMethodSbpResponse_Error) GetValidation() *ValidationError {
	if x, ok := x.GetReason().(*PostPayMethodSbpResponse_Error_Validation); ok {
		return x.Validation
	}
	return nil
}

type isPostPayMethodSbpResponse_Error_Reason interface {
	isPostPayMethodSbpResponse_Error_Reason()
}

type PostPayMethodSbpResponse_Error_Validation struct {
	// Ошибка валидации
	Validation *ValidationError `protobuf:"bytes,1,opt,name=validation,proto3,oneof"`
}

func (*PostPayMethodSbpResponse_Error_Validation) isPostPayMethodSbpResponse_Error_Reason() {}

// Данные регистрации
type PostPayMethodSbpResponse_RegisterData struct {
	state         protoimpl.MessageState
	sizeCache     protoimpl.SizeCache
	unknownFields protoimpl.UnknownFields

	// Идентификатор запроса на регистрацию
	ReqId string `protobuf:"bytes,1,opt,name=req_id,json=reqId,proto3" json:"req_id,omitempty"`
	// Ссылка для переадресации клиента для продолжения регистрации
	UrlRegistration string `protobuf:"bytes,2,opt,name=url_registration,json=urlRegistration,proto3" json:"url_registration,omitempty"`
	// Содержимое QR кода для регистрации платежного СБП-токена
	SbpPayload string `protobuf:"bytes,3,opt,name=sbp_payload,json=sbpPayload,proto3" json:"sbp_payload,omitempty"`
}

func (x *PostPayMethodSbpResponse_RegisterData) Reset() {
	*x = PostPayMethodSbpResponse_RegisterData{}
	if protoimpl.UnsafeEnabled {
		mi := &file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes[16]
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		ms.StoreMessageInfo(mi)
	}
}

func (x *PostPayMethodSbpResponse_RegisterData) String() string {
	return protoimpl.X.MessageStringOf(x)
}

func (*PostPayMethodSbpResponse_RegisterData) ProtoMessage() {}

func (x *PostPayMethodSbpResponse_RegisterData) ProtoReflect() protoreflect.Message {
	mi := &file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes[16]
	if protoimpl.UnsafeEnabled && x != nil {
		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
		if ms.LoadMessageInfo() == nil {
			ms.StoreMessageInfo(mi)
		}
		return ms
	}
	return mi.MessageOf(x)
}

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

func (x *PostPayMethodSbpResponse_RegisterData) GetReqId() string {
	if x != nil {
		return x.ReqId
	}
	return ""
}

func (x *PostPayMethodSbpResponse_RegisterData) GetUrlRegistration() string {
	if x != nil {
		return x.UrlRegistration
	}
	return ""
}

func (x *PostPayMethodSbpResponse_RegisterData) GetSbpPayload() string {
	if x != nil {
		return x.SbpPayload
	}
	return ""
}

var File_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto protoreflect.FileDescriptor

var file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_rawDesc = []byte{
	0x0a, 0x35, 0x6b, 0x65, 0x79, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x69, 0x6e, 0x76, 0x6f, 0x69, 0x63,
	0x65, 0x2f, 0x76, 0x31, 0x2f, 0x6b, 0x65, 0x79, 0x61, 0x70, 0x69, 0x73, 0x5f, 0x69, 0x6e, 0x76,
	0x6f, 0x69, 0x63, 0x65, 0x5f, 0x70, 0x61, 0x79, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x5f, 0x76,
	0x31, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x12, 0x6b, 0x65, 0x79, 0x61, 0x70, 0x69, 0x73,
	0x2e, 0x69, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x2e, 0x76, 0x31, 0x1a, 0x1f, 0x67, 0x6f, 0x6f,
	0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x74, 0x69, 0x6d,
	0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f,
	0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74,
	0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67,
	0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x62, 0x65, 0x68,
	0x61, 0x76, 0x69, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x20, 0x67, 0x6f, 0x6f,
	0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x66, 0x69, 0x65,
	0x6c, 0x64, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x8d, 0x07,
	0x0a, 0x09, 0x50, 0x61, 0x79, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x12, 0x27, 0x0a, 0x0d, 0x70,
	0x61, 0x79, 0x5f, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
	0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0b, 0x70, 0x61, 0x79, 0x4d, 0x65, 0x74, 0x68,
	0x6f, 0x64, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18,
	0x02, 0x20, 0x01, 0x28, 0x05, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72,
	0x49, 0x64, 0x12, 0x3b, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0e,
	0x32, 0x22, 0x2e, 0x6b, 0x65, 0x79, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x69, 0x6e, 0x76, 0x6f, 0x69,
	0x63, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61, 0x79, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x2e,
	0x54, 0x79, 0x70, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12,
	0x20, 0x0a, 0x09, 0x69, 0x73, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65, 0x18, 0x04, 0x20, 0x01,
	0x28, 0x08, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x08, 0x69, 0x73, 0x41, 0x63, 0x74, 0x69, 0x76,
	0x65, 0x12, 0x22, 0x0a, 0x0a, 0x69, 0x73, 0x5f, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x18,
	0x05, 0x20, 0x01, 0x28, 0x08, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x09, 0x69, 0x73, 0x44, 0x65,
	0x66, 0x61, 0x75, 0x6c, 0x74, 0x12, 0x2c, 0x0a, 0x12, 0x70, 0x61, 0x79, 0x5f, 0x6d, 0x65, 0x74,
	0x68, 0x6f, 0x64, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28,
	0x09, 0x52, 0x10, 0x70, 0x61, 0x79, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x43, 0x6f, 0x6e, 0x74,
	0x61, 0x63, 0x74, 0x12, 0x34, 0x0a, 0x16, 0x70, 0x61, 0x79, 0x5f, 0x6d, 0x65, 0x74, 0x68, 0x6f,
	0x64, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20,
	0x01, 0x28, 0x09, 0x52, 0x14, 0x70, 0x61, 0x79, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x44, 0x65,
	0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x28, 0x0a, 0x10, 0x70, 0x61, 0x79,
	0x5f, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x5f, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x18, 0x08, 0x20,
	0x01, 0x28, 0x09, 0x52, 0x0e, 0x70, 0x61, 0x79, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x41, 0x6c,
	0x69, 0x61, 0x73, 0x12, 0x48, 0x0a, 0x09, 0x63, 0x61, 0x72, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65,
	0x18, 0x09, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x26, 0x2e, 0x6b, 0x65, 0x79, 0x61, 0x70, 0x69, 0x73,
	0x2e, 0x69, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61, 0x79, 0x4d,
	0x65, 0x74, 0x68, 0x6f, 0x64, 0x2e, 0x43, 0x61, 0x72, 0x64, 0x54, 0x79, 0x70, 0x65, 0x42, 0x03,
	0xe0, 0x41, 0x03, 0x52, 0x08, 0x63, 0x61, 0x72, 0x64, 0x54, 0x79, 0x70, 0x65, 0x12, 0x22, 0x0a,
	0x0a, 0x6d, 0x61, 0x73, 0x6b, 0x65, 0x64, 0x5f, 0x6e, 0x75, 0x6d, 0x18, 0x0a, 0x20, 0x01, 0x28,
	0x09, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x09, 0x6d, 0x61, 0x73, 0x6b, 0x65, 0x64, 0x4e, 0x75,
	0x6d, 0x12, 0x20, 0x0a, 0x09, 0x62, 0x61, 0x6e, 0x6b, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0b,
	0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x08, 0x62, 0x61, 0x6e, 0x6b, 0x4e,
	0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x07, 0x69, 0x73, 0x5f, 0x61, 0x75, 0x74, 0x68, 0x18, 0x0c,
	0x20, 0x01, 0x28, 0x08, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x06, 0x69, 0x73, 0x41, 0x75, 0x74,
	0x68, 0x12, 0x4e, 0x0a, 0x0b, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f, 0x74, 0x79, 0x70, 0x65,
	0x18, 0x0d, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x28, 0x2e, 0x6b, 0x65, 0x79, 0x61, 0x70, 0x69, 0x73,
	0x2e, 0x69, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61, 0x79, 0x4d,
	0x65, 0x74, 0x68, 0x6f, 0x64, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x54, 0x79, 0x70, 0x65,
	0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0a, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x54, 0x79, 0x70,
	0x65, 0x12, 0x40, 0x0a, 0x0b, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x5f, 0x61, 0x74,
	0x18, 0x0e, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
	0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61,
	0x6d, 0x70, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0a, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65,
	0x72, 0x41, 0x74, 0x22, 0x3f, 0x0a, 0x04, 0x54, 0x79, 0x70, 0x65, 0x12, 0x10, 0x0a, 0x0c, 0x54,
	0x59, 0x50, 0x45, 0x5f, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x00, 0x12, 0x0d, 0x0a,
	0x09, 0x42, 0x41, 0x4e, 0x4b, 0x5f, 0x43, 0x41, 0x52, 0x44, 0x10, 0x01, 0x12, 0x07, 0x0a, 0x03,
	0x53, 0x42, 0x50, 0x10, 0x02, 0x12, 0x0d, 0x0a, 0x09, 0x53, 0x42, 0x45, 0x52, 0x5f, 0x42, 0x49,
	0x4e, 0x44, 0x10, 0x03, 0x22, 0x5b, 0x0a, 0x08, 0x43, 0x61, 0x72, 0x64, 0x54, 0x79, 0x70, 0x65,
	0x12, 0x15, 0x0a, 0x11, 0x43, 0x41, 0x52, 0x44, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x55, 0x4e,
	0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x00, 0x12, 0x08, 0x0a, 0x04, 0x56, 0x49, 0x53, 0x41, 0x10,
	0x01, 0x12, 0x09, 0x0a, 0x05, 0x45, 0x43, 0x5f, 0x4d, 0x43, 0x10, 0x02, 0x12, 0x07, 0x0a, 0x03,
	0x44, 0x43, 0x4c, 0x10, 0x03, 0x12, 0x07, 0x0a, 0x03, 0x4a, 0x43, 0x42, 0x10, 0x04, 0x12, 0x08,
	0x0a, 0x04, 0x41, 0x4d, 0x45, 0x58, 0x10, 0x05, 0x12, 0x07, 0x0a, 0x03, 0x4d, 0x49, 0x52, 0x10,
	0x06, 0x22, 0x4a, 0x0a, 0x0a, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x54, 0x79, 0x70, 0x65, 0x12,
	0x17, 0x0a, 0x13, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x55,
	0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x00, 0x12, 0x09, 0x0a, 0x05, 0x56, 0x41, 0x4c, 0x49,
	0x44, 0x10, 0x01, 0x12, 0x0b, 0x0a, 0x07, 0x45, 0x58, 0x50, 0x49, 0x52, 0x45, 0x44, 0x10, 0x02,
	0x12, 0x0b, 0x0a, 0x07, 0x42, 0x4c, 0x4f, 0x43, 0x4b, 0x45, 0x44, 0x10, 0x03, 0x22, 0x32, 0x0a,
	0x17, 0x47, 0x65, 0x74, 0x50, 0x61, 0x79, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x4c, 0x69, 0x73,
	0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72,
	0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49,
	0x64, 0x22, 0x4d, 0x0a, 0x18, 0x47, 0x65, 0x74, 0x50, 0x61, 0x79, 0x4d, 0x65, 0x74, 0x68, 0x6f,
	0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x31, 0x0a,
	0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x6b, 0x65,
	0x79, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x69, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x2e, 0x76, 0x31,
	0x2e, 0x50, 0x61, 0x79, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61,
	0x22, 0x41, 0x0a, 0x16, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x50, 0x61, 0x79, 0x4d, 0x65, 0x74,
	0x68, 0x6f, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x27, 0x0a, 0x0d, 0x70, 0x61,
	0x79, 0x5f, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
	0x09, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0b, 0x70, 0x61, 0x79, 0x4d, 0x65, 0x74, 0x68, 0x6f,
	0x64, 0x49, 0x64, 0x22, 0x19, 0x0a, 0x17, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x50, 0x61, 0x79,
	0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x46,
	0x0a, 0x1b, 0x50, 0x6f, 0x73, 0x74, 0x50, 0x61, 0x79, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x44,
	0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x27, 0x0a,
	0x0d, 0x70, 0x61, 0x79, 0x5f, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x5f, 0x69, 0x64, 0x18, 0x01,
	0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0b, 0x70, 0x61, 0x79, 0x4d, 0x65,
	0x74, 0x68, 0x6f, 0x64, 0x49, 0x64, 0x22, 0xd0, 0x01, 0x0a, 0x1c, 0x50, 0x6f, 0x73, 0x74, 0x50,
	0x61, 0x79, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x52,
	0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x4e, 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72,
	0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x36, 0x2e, 0x6b, 0x65, 0x79, 0x61, 0x70, 0x69, 0x73,
	0x2e, 0x69, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x6f, 0x73, 0x74,
	0x50, 0x61, 0x79, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74,
	0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00,
	0x52, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x1a, 0x58, 0x0a, 0x05, 0x45, 0x72, 0x72, 0x6f, 0x72,
	0x12, 0x45, 0x0a, 0x0a, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01,
	0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x6b, 0x65, 0x79, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x69,
	0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61,
	0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0a, 0x76, 0x61, 0x6c,
	0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x08, 0x0a, 0x06, 0x72, 0x65, 0x61, 0x73, 0x6f,
	0x6e, 0x42, 0x06, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x22, 0x6b, 0x0a, 0x1c, 0x50, 0x6f, 0x73,
	0x74, 0x50, 0x61, 0x79, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x42, 0x61, 0x6e, 0x6b, 0x63, 0x61,
	0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x27, 0x0a, 0x0d, 0x75, 0x72, 0x6c,
	0x5f, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x5f, 0x6f, 0x6b, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
	0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0b, 0x75, 0x72, 0x6c, 0x52, 0x65, 0x74, 0x75, 0x72, 0x6e,
	0x4f, 0x6b, 0x12, 0x22, 0x0a, 0x0d, 0x75, 0x72, 0x6c, 0x5f, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e,
	0x5f, 0x6e, 0x6f, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x75, 0x72, 0x6c, 0x52, 0x65,
	0x74, 0x75, 0x72, 0x6e, 0x4e, 0x6f, 0x22, 0xfa, 0x02, 0x0a, 0x1d, 0x50, 0x6f, 0x73, 0x74, 0x50,
	0x61, 0x79, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x42, 0x61, 0x6e, 0x6b, 0x63, 0x61, 0x72, 0x64,
	0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x4f, 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f,
	0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x37, 0x2e, 0x6b, 0x65, 0x79, 0x61, 0x70, 0x69,
	0x73, 0x2e, 0x69, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x6f, 0x73,
	0x74, 0x50, 0x61, 0x79, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x42, 0x61, 0x6e, 0x6b, 0x63, 0x61,
	0x72, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72,
	0x48, 0x00, 0x52, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x54, 0x0a, 0x04, 0x64, 0x61, 0x74,
	0x61, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3e, 0x2e, 0x6b, 0x65, 0x79, 0x61, 0x70, 0x69,
	0x73, 0x2e, 0x69, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x6f, 0x73,
	0x74, 0x50, 0x61, 0x79, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x42, 0x61, 0x6e, 0x6b, 0x63, 0x61,
	0x72, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x52, 0x65, 0x67, 0x69, 0x73,
	0x74, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x48, 0x00, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x1a,
	0x58, 0x0a, 0x05, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x45, 0x0a, 0x0a, 0x76, 0x61, 0x6c, 0x69,
	0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x6b,
	0x65, 0x79, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x69, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x2e, 0x76,
	0x31, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f,
	0x72, 0x48, 0x00, 0x52, 0x0a, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42,
	0x08, 0x0a, 0x06, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x1a, 0x50, 0x0a, 0x0c, 0x52, 0x65, 0x67,
	0x69, 0x73, 0x74, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x12, 0x15, 0x0a, 0x06, 0x72, 0x65, 0x71,
	0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x72, 0x65, 0x71, 0x49, 0x64,
	0x12, 0x29, 0x0a, 0x10, 0x75, 0x72, 0x6c, 0x5f, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x61,
	0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x75, 0x72, 0x6c, 0x52,
	0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x06, 0x0a, 0x04, 0x74,
	0x79, 0x70, 0x65, 0x22, 0x66, 0x0a, 0x17, 0x50, 0x6f, 0x73, 0x74, 0x50, 0x61, 0x79, 0x4d, 0x65,
	0x74, 0x68, 0x6f, 0x64, 0x53, 0x62, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x27,
	0x0a, 0x0d, 0x75, 0x72, 0x6c, 0x5f, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x5f, 0x6f, 0x6b, 0x18,
	0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0b, 0x75, 0x72, 0x6c, 0x52,
	0x65, 0x74, 0x75, 0x72, 0x6e, 0x4f, 0x6b, 0x12, 0x22, 0x0a, 0x0d, 0x75, 0x72, 0x6c, 0x5f, 0x72,
	0x65, 0x74, 0x75, 0x72, 0x6e, 0x5f, 0x6e, 0x6f, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b,
	0x75, 0x72, 0x6c, 0x52, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x4e, 0x6f, 0x22, 0x8c, 0x03, 0x0a, 0x18,
	0x50, 0x6f, 0x73, 0x74, 0x50, 0x61, 0x79, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x53, 0x62, 0x70,
	0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x4a, 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f,
	0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x32, 0x2e, 0x6b, 0x65, 0x79, 0x61, 0x70, 0x69,
	0x73, 0x2e, 0x69, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x6f, 0x73,
	0x74, 0x50, 0x61, 0x79, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x53, 0x62, 0x70, 0x52, 0x65, 0x73,
	0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x05, 0x65,
	0x72, 0x72, 0x6f, 0x72, 0x12, 0x4f, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x02, 0x20, 0x01,
	0x28, 0x0b, 0x32, 0x39, 0x2e, 0x6b, 0x65, 0x79, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x69, 0x6e, 0x76,
	0x6f, 0x69, 0x63, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x6f, 0x73, 0x74, 0x50, 0x61, 0x79, 0x4d,
	0x65, 0x74, 0x68, 0x6f, 0x64, 0x53, 0x62, 0x70, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
	0x2e, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x48, 0x00, 0x52,
	0x04, 0x64, 0x61, 0x74, 0x61, 0x1a, 0x58, 0x0a, 0x05, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x45,
	0x0a, 0x0a, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01,
	0x28, 0x0b, 0x32, 0x23, 0x2e, 0x6b, 0x65, 0x79, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x69, 0x6e, 0x76,
	0x6f, 0x69, 0x63, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69,
	0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0a, 0x76, 0x61, 0x6c, 0x69, 0x64,
	0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x08, 0x0a, 0x06, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x1a,
	0x71, 0x0a, 0x0c, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x12,
	0x15, 0x0a, 0x06, 0x72, 0x65, 0x71, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
	0x05, 0x72, 0x65, 0x71, 0x49, 0x64, 0x12, 0x29, 0x0a, 0x10, 0x75, 0x72, 0x6c, 0x5f, 0x72, 0x65,
	0x67, 0x69, 0x73, 0x74, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
	0x52, 0x0f, 0x75, 0x72, 0x6c, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x61, 0x74, 0x69, 0x6f,
	0x6e, 0x12, 0x1f, 0x0a, 0x0b, 0x73, 0x62, 0x70, 0x5f, 0x70, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64,
	0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x73, 0x62, 0x70, 0x50, 0x61, 0x79, 0x6c, 0x6f,
	0x61, 0x64, 0x42, 0x06, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x22, 0x49, 0x0a, 0x0f, 0x56, 0x61,
	0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x17, 0x0a,
	0x04, 0x70, 0x61, 0x74, 0x68, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x02,
	0x52, 0x04, 0x70, 0x61, 0x74, 0x68, 0x12, 0x1d, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67,
	0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x07, 0x6d, 0x65,
	0x73, 0x73, 0x61, 0x67, 0x65, 0x32, 0xd1, 0x06, 0x0a, 0x10, 0x50, 0x61, 0x79, 0x4d, 0x65, 0x74,
	0x68, 0x6f, 0x64, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x96, 0x01, 0x0a, 0x10, 0x47,
	0x65, 0x74, 0x50, 0x61, 0x79, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x12,
	0x2b, 0x2e, 0x6b, 0x65, 0x79, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x69, 0x6e, 0x76, 0x6f, 0x69, 0x63,
	0x65, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x50, 0x61, 0x79, 0x4d, 0x65, 0x74, 0x68, 0x6f,
	0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x6b,
	0x65, 0x79, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x69, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x2e, 0x76,
	0x31, 0x2e, 0x47, 0x65, 0x74, 0x50, 0x61, 0x79, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x4c, 0x69,
	0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93,
	0x02, 0x21, 0x12, 0x1f, 0x2f, 0x69, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x2f, 0x61, 0x70, 0x69,
	0x2f, 0x76, 0x31, 0x2f, 0x70, 0x61, 0x79, 0x5f, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x2f, 0x6c,
	0x69, 0x73, 0x74, 0x12, 0x9e, 0x01, 0x0a, 0x0f, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x50, 0x61,
	0x79, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x12, 0x2a, 0x2e, 0x6b, 0x65, 0x79, 0x61, 0x70, 0x69,
	0x73, 0x2e, 0x69, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x44, 0x65, 0x6c,
	0x65, 0x74, 0x65, 0x50, 0x61, 0x79, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x52, 0x65, 0x71, 0x75,
	0x65, 0x73, 0x74, 0x1a, 0x2b, 0x2e, 0x6b, 0x65, 0x79, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x69, 0x6e,
	0x76, 0x6f, 0x69, 0x63, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x50,
	0x61, 0x79, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
	0x22, 0x32, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x2c, 0x2a, 0x2a, 0x2f, 0x69, 0x6e, 0x76, 0x6f, 0x69,
	0x63, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x76, 0x31, 0x2f, 0x70, 0x61, 0x79, 0x5f, 0x6d, 0x65,
	0x74, 0x68, 0x6f, 0x64, 0x2f, 0x7b, 0x70, 0x61, 0x79, 0x5f, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64,
	0x5f, 0x69, 0x64, 0x7d, 0x12, 0xb8, 0x01, 0x0a, 0x14, 0x50, 0x6f, 0x73, 0x74, 0x50, 0x61, 0x79,
	0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x12, 0x2f, 0x2e,
	0x6b, 0x65, 0x79, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x69, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x2e,
	0x76, 0x31, 0x2e, 0x50, 0x6f, 0x73, 0x74, 0x50, 0x61, 0x79, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64,
	0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x30,
	0x2e, 0x6b, 0x65, 0x79, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x69, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65,
	0x2e, 0x76, 0x31, 0x2e, 0x50, 0x6f, 0x73, 0x74, 0x50, 0x61, 0x79, 0x4d, 0x65, 0x74, 0x68, 0x6f,
	0x64, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
	0x22, 0x3d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x37, 0x3a, 0x01, 0x2a, 0x22, 0x32, 0x2f, 0x69, 0x6e,
	0x76, 0x6f, 0x69, 0x63, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x76, 0x31, 0x2f, 0x70, 0x61, 0x79,
	0x5f, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x2f, 0x7b, 0x70, 0x61, 0x79, 0x5f, 0x6d, 0x65, 0x74,
	0x68, 0x6f, 0x64, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x12,
	0xac, 0x01, 0x0a, 0x15, 0x50, 0x6f, 0x73, 0x74, 0x50, 0x61, 0x79, 0x4d, 0x65, 0x74, 0x68, 0x6f,
	0x64, 0x42, 0x61, 0x6e, 0x6b, 0x63, 0x61, 0x72, 0x64, 0x12, 0x30, 0x2e, 0x6b, 0x65, 0x79, 0x61,
	0x70, 0x69, 0x73, 0x2e, 0x69, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x50,
	0x6f, 0x73, 0x74, 0x50, 0x61, 0x79, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x42, 0x61, 0x6e, 0x6b,
	0x63, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x31, 0x2e, 0x6b, 0x65,
	0x79, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x69, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x2e, 0x76, 0x31,
	0x2e, 0x50, 0x6f, 0x73, 0x74, 0x50, 0x61, 0x79, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x42, 0x61,
	0x6e, 0x6b, 0x63, 0x61, 0x72, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x2e,
	0x82, 0xd3, 0xe4, 0x93, 0x02, 0x28, 0x3a, 0x01, 0x2a, 0x22, 0x23, 0x2f, 0x69, 0x6e, 0x76, 0x6f,
	0x69, 0x63, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x76, 0x31, 0x2f, 0x70, 0x61, 0x79, 0x5f, 0x6d,
	0x65, 0x74, 0x68, 0x6f, 0x64, 0x2f, 0x62, 0x61, 0x6e, 0x6b, 0x63, 0x61, 0x72, 0x64, 0x12, 0x98,
	0x01, 0x0a, 0x10, 0x50, 0x6f, 0x73, 0x74, 0x50, 0x61, 0x79, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64,
	0x53, 0x62, 0x70, 0x12, 0x2b, 0x2e, 0x6b, 0x65, 0x79, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x69, 0x6e,
	0x76, 0x6f, 0x69, 0x63, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x6f, 0x73, 0x74, 0x50, 0x61, 0x79,
	0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x53, 0x62, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
	0x1a, 0x2c, 0x2e, 0x6b, 0x65, 0x79, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x69, 0x6e, 0x76, 0x6f, 0x69,
	0x63, 0x65, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x6f, 0x73, 0x74, 0x50, 0x61, 0x79, 0x4d, 0x65, 0x74,
	0x68, 0x6f, 0x64, 0x53, 0x62, 0x70, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x29,
	0x82, 0xd3, 0xe4, 0x93, 0x02, 0x23, 0x3a, 0x01, 0x2a, 0x22, 0x1e, 0x2f, 0x69, 0x6e, 0x76, 0x6f,
	0x69, 0x63, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x76, 0x31, 0x2f, 0x70, 0x61, 0x79, 0x5f, 0x6d,
	0x65, 0x74, 0x68, 0x6f, 0x64, 0x2f, 0x73, 0x62, 0x70, 0x42, 0xa1, 0x01, 0x0a, 0x15, 0x72, 0x75,
	0x2e, 0x6b, 0x65, 0x79, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x69, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65,
	0x2e, 0x76, 0x31, 0x42, 0x15, 0x4b, 0x65, 0x79, 0x61, 0x70, 0x69, 0x73, 0x49, 0x6e, 0x76, 0x6f,
	0x69, 0x63, 0x65, 0x56, 0x31, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x48, 0x03, 0x50, 0x00, 0x5a, 0x13,
	0x2f, 0x6b, 0x65, 0x79, 0x61, 0x70, 0x69, 0x73, 0x5f, 0x69, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65,
	0x5f, 0x76, 0x31, 0xd8, 0x01, 0x01, 0xf8, 0x01, 0x01, 0xa2, 0x02, 0x10, 0x4b, 0x45, 0x59, 0x41,
	0x50, 0x49, 0x53, 0x49, 0x4e, 0x56, 0x4f, 0x49, 0x43, 0x45, 0x56, 0x31, 0xaa, 0x02, 0x12, 0x4b,
	0x65, 0x79, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x2e, 0x56,
	0x31, 0xca, 0x02, 0x12, 0x4b, 0x65, 0x79, 0x61, 0x70, 0x69, 0x73, 0x5c, 0x49, 0x6e, 0x76, 0x6f,
	0x69, 0x63, 0x65, 0x5c, 0x56, 0x31, 0xea, 0x02, 0x14, 0x4b, 0x65, 0x79, 0x61, 0x70, 0x69, 0x73,
	0x3a, 0x3a, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x3a, 0x3a, 0x56, 0x31, 0x62, 0x06, 0x70,
	0x72, 0x6f, 0x74, 0x6f, 0x33,
}

var (
	file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_rawDescOnce sync.Once
	file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_rawDescData = file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_rawDesc
)

func file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_rawDescGZIP() []byte {
	file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_rawDescOnce.Do(func() {
		file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_rawDescData = protoimpl.X.CompressGZIP(file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_rawDescData)
	})
	return file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_rawDescData
}

var file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_enumTypes = make([]protoimpl.EnumInfo, 3)
var file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes = make([]protoimpl.MessageInfo, 17)
var file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_goTypes = []interface{}{
	(PayMethod_Type)(0),                                // 0: keyapis.invoice.v1.PayMethod.Type
	(PayMethod_CardType)(0),                            // 1: keyapis.invoice.v1.PayMethod.CardType
	(PayMethod_StatusType)(0),                          // 2: keyapis.invoice.v1.PayMethod.StatusType
	(*PayMethod)(nil),                                  // 3: keyapis.invoice.v1.PayMethod
	(*GetPayMethodListRequest)(nil),                    // 4: keyapis.invoice.v1.GetPayMethodListRequest
	(*GetPayMethodListResponse)(nil),                   // 5: keyapis.invoice.v1.GetPayMethodListResponse
	(*DeletePayMethodRequest)(nil),                     // 6: keyapis.invoice.v1.DeletePayMethodRequest
	(*DeletePayMethodResponse)(nil),                    // 7: keyapis.invoice.v1.DeletePayMethodResponse
	(*PostPayMethodDefaultRequest)(nil),                // 8: keyapis.invoice.v1.PostPayMethodDefaultRequest
	(*PostPayMethodDefaultResponse)(nil),               // 9: keyapis.invoice.v1.PostPayMethodDefaultResponse
	(*PostPayMethodBankcardRequest)(nil),               // 10: keyapis.invoice.v1.PostPayMethodBankcardRequest
	(*PostPayMethodBankcardResponse)(nil),              // 11: keyapis.invoice.v1.PostPayMethodBankcardResponse
	(*PostPayMethodSbpRequest)(nil),                    // 12: keyapis.invoice.v1.PostPayMethodSbpRequest
	(*PostPayMethodSbpResponse)(nil),                   // 13: keyapis.invoice.v1.PostPayMethodSbpResponse
	(*ValidationError)(nil),                            // 14: keyapis.invoice.v1.ValidationError
	(*PostPayMethodDefaultResponse_Error)(nil),         // 15: keyapis.invoice.v1.PostPayMethodDefaultResponse.Error
	(*PostPayMethodBankcardResponse_Error)(nil),        // 16: keyapis.invoice.v1.PostPayMethodBankcardResponse.Error
	(*PostPayMethodBankcardResponse_RegisterData)(nil), // 17: keyapis.invoice.v1.PostPayMethodBankcardResponse.RegisterData
	(*PostPayMethodSbpResponse_Error)(nil),             // 18: keyapis.invoice.v1.PostPayMethodSbpResponse.Error
	(*PostPayMethodSbpResponse_RegisterData)(nil),      // 19: keyapis.invoice.v1.PostPayMethodSbpResponse.RegisterData
	(*timestamppb.Timestamp)(nil),                      // 20: google.protobuf.Timestamp
}
var file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_depIdxs = []int32{
	0,  // 0: keyapis.invoice.v1.PayMethod.type:type_name -> keyapis.invoice.v1.PayMethod.Type
	1,  // 1: keyapis.invoice.v1.PayMethod.card_type:type_name -> keyapis.invoice.v1.PayMethod.CardType
	2,  // 2: keyapis.invoice.v1.PayMethod.status_type:type_name -> keyapis.invoice.v1.PayMethod.StatusType
	20, // 3: keyapis.invoice.v1.PayMethod.register_at:type_name -> google.protobuf.Timestamp
	3,  // 4: keyapis.invoice.v1.GetPayMethodListResponse.data:type_name -> keyapis.invoice.v1.PayMethod
	15, // 5: keyapis.invoice.v1.PostPayMethodDefaultResponse.error:type_name -> keyapis.invoice.v1.PostPayMethodDefaultResponse.Error
	16, // 6: keyapis.invoice.v1.PostPayMethodBankcardResponse.error:type_name -> keyapis.invoice.v1.PostPayMethodBankcardResponse.Error
	17, // 7: keyapis.invoice.v1.PostPayMethodBankcardResponse.data:type_name -> keyapis.invoice.v1.PostPayMethodBankcardResponse.RegisterData
	18, // 8: keyapis.invoice.v1.PostPayMethodSbpResponse.error:type_name -> keyapis.invoice.v1.PostPayMethodSbpResponse.Error
	19, // 9: keyapis.invoice.v1.PostPayMethodSbpResponse.data:type_name -> keyapis.invoice.v1.PostPayMethodSbpResponse.RegisterData
	14, // 10: keyapis.invoice.v1.PostPayMethodDefaultResponse.Error.validation:type_name -> keyapis.invoice.v1.ValidationError
	14, // 11: keyapis.invoice.v1.PostPayMethodBankcardResponse.Error.validation:type_name -> keyapis.invoice.v1.ValidationError
	14, // 12: keyapis.invoice.v1.PostPayMethodSbpResponse.Error.validation:type_name -> keyapis.invoice.v1.ValidationError
	4,  // 13: keyapis.invoice.v1.PayMethodService.GetPayMethodList:input_type -> keyapis.invoice.v1.GetPayMethodListRequest
	6,  // 14: keyapis.invoice.v1.PayMethodService.DeletePayMethod:input_type -> keyapis.invoice.v1.DeletePayMethodRequest
	8,  // 15: keyapis.invoice.v1.PayMethodService.PostPayMethodDefault:input_type -> keyapis.invoice.v1.PostPayMethodDefaultRequest
	10, // 16: keyapis.invoice.v1.PayMethodService.PostPayMethodBankcard:input_type -> keyapis.invoice.v1.PostPayMethodBankcardRequest
	12, // 17: keyapis.invoice.v1.PayMethodService.PostPayMethodSbp:input_type -> keyapis.invoice.v1.PostPayMethodSbpRequest
	5,  // 18: keyapis.invoice.v1.PayMethodService.GetPayMethodList:output_type -> keyapis.invoice.v1.GetPayMethodListResponse
	7,  // 19: keyapis.invoice.v1.PayMethodService.DeletePayMethod:output_type -> keyapis.invoice.v1.DeletePayMethodResponse
	9,  // 20: keyapis.invoice.v1.PayMethodService.PostPayMethodDefault:output_type -> keyapis.invoice.v1.PostPayMethodDefaultResponse
	11, // 21: keyapis.invoice.v1.PayMethodService.PostPayMethodBankcard:output_type -> keyapis.invoice.v1.PostPayMethodBankcardResponse
	13, // 22: keyapis.invoice.v1.PayMethodService.PostPayMethodSbp:output_type -> keyapis.invoice.v1.PostPayMethodSbpResponse
	18, // [18:23] is the sub-list for method output_type
	13, // [13:18] is the sub-list for method input_type
	13, // [13:13] is the sub-list for extension type_name
	13, // [13:13] is the sub-list for extension extendee
	0,  // [0:13] is the sub-list for field type_name
}

func init() { file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_init() }
func file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_init() {
	if File_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto != nil {
		return
	}
	if !protoimpl.UnsafeEnabled {
		file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*PayMethod); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
		file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*GetPayMethodListRequest); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
		file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*GetPayMethodListResponse); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
		file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*DeletePayMethodRequest); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
		file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*DeletePayMethodResponse); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
		file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*PostPayMethodDefaultRequest); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
		file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*PostPayMethodDefaultResponse); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
		file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*PostPayMethodBankcardRequest); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
		file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*PostPayMethodBankcardResponse); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
		file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*PostPayMethodSbpRequest); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
		file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*PostPayMethodSbpResponse); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
		file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*ValidationError); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
		file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*PostPayMethodDefaultResponse_Error); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
		file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*PostPayMethodBankcardResponse_Error); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
		file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*PostPayMethodBankcardResponse_RegisterData); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
		file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*PostPayMethodSbpResponse_Error); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
		file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
			switch v := v.(*PostPayMethodSbpResponse_RegisterData); i {
			case 0:
				return &v.state
			case 1:
				return &v.sizeCache
			case 2:
				return &v.unknownFields
			default:
				return nil
			}
		}
	}
	file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes[6].OneofWrappers = []interface{}{
		(*PostPayMethodDefaultResponse_Error_)(nil),
	}
	file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes[8].OneofWrappers = []interface{}{
		(*PostPayMethodBankcardResponse_Error_)(nil),
		(*PostPayMethodBankcardResponse_Data)(nil),
	}
	file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes[10].OneofWrappers = []interface{}{
		(*PostPayMethodSbpResponse_Error_)(nil),
		(*PostPayMethodSbpResponse_Data)(nil),
	}
	file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes[12].OneofWrappers = []interface{}{
		(*PostPayMethodDefaultResponse_Error_Validation)(nil),
	}
	file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes[13].OneofWrappers = []interface{}{
		(*PostPayMethodBankcardResponse_Error_Validation)(nil),
	}
	file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes[15].OneofWrappers = []interface{}{
		(*PostPayMethodSbpResponse_Error_Validation)(nil),
	}
	type x struct{}
	out := protoimpl.TypeBuilder{
		File: protoimpl.DescBuilder{
			GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
			RawDescriptor: file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_rawDesc,
			NumEnums:      3,
			NumMessages:   17,
			NumExtensions: 0,
			NumServices:   1,
		},
		GoTypes:           file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_goTypes,
		DependencyIndexes: file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_depIdxs,
		EnumInfos:         file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_enumTypes,
		MessageInfos:      file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_msgTypes,
	}.Build()
	File_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto = out.File
	file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_rawDesc = nil
	file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_goTypes = nil
	file_keyapis_invoice_v1_keyapis_invoice_paymethod_v1_proto_depIdxs = nil
}
