fixed typo

This commit is contained in:
Kofo Okesola 2025-05-08 16:15:05 +01:00
parent 502bdb5c74
commit c86ccdae86
2 changed files with 6 additions and 6 deletions

View File

@ -71,7 +71,7 @@ type GetAvailableQuotaRequest struct {
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Identified string `protobuf:"bytes,1,opt,name=identified,proto3" json:"identified,omitempty"`
Identifier string `protobuf:"bytes,1,opt,name=identifier,proto3" json:"identifier,omitempty"`
}
func (x *GetAvailableQuotaRequest) Reset() {
@ -106,9 +106,9 @@ func (*GetAvailableQuotaRequest) Descriptor() ([]byte, []int) {
return file_workflow_proto_rawDescGZIP(), []int{0}
}
func (x *GetAvailableQuotaRequest) GetIdentified() string {
func (x *GetAvailableQuotaRequest) GetIdentifier() string {
if x != nil {
return x.Identified
return x.Identifier
}
return ""
}
@ -875,8 +875,8 @@ var file_workflow_proto_rawDesc = []byte{
0x12, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x3a, 0x0a, 0x18, 0x47, 0x65, 0x74, 0x41, 0x76,
0x61, 0x69, 0x6c, 0x61, 0x62, 0x6c, 0x65, 0x51, 0x75, 0x6f, 0x74, 0x61, 0x52, 0x65, 0x71, 0x75,
0x65, 0x73, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65,
0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66,
0x69, 0x65, 0x64, 0x22, 0x78, 0x0a, 0x10, 0x51, 0x75, 0x6f, 0x74, 0x61, 0x49, 0x6e, 0x66, 0x6f,
0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66,
0x69, 0x65, 0x72, 0x22, 0x78, 0x0a, 0x10, 0x51, 0x75, 0x6f, 0x74, 0x61, 0x49, 0x6e, 0x66, 0x6f,
0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x2d, 0x0a, 0x12, 0x61, 0x76, 0x61, 0x69, 0x6c,
0x61, 0x62, 0x6c, 0x65, 0x5f, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x73, 0x18, 0x01, 0x20,
0x01, 0x28, 0x03, 0x52, 0x11, 0x61, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65,

View File

@ -12,7 +12,7 @@ service WorkflowService {
}
message GetAvailableQuotaRequest {
string identified =1;
string identifier =1;
}
message QuotaInformation {