Implement float, boolean and reference types for attributes keyValueInput

This commit is contained in:
2022-04-19 08:58:10 +05:30
parent f7623b26f9
commit 8477b3d9cb
4 changed files with 579 additions and 95 deletions
@@ -68,9 +68,17 @@ message QueryParamsResponse{
// QueryListRecordsRequest is request type for nameservice records list
message QueryListRecordsRequest{
message ReferenceInput {
string id = 1;
}
message ValueInput {
string string = 1;
int64 int = 2;
string type = 1;
string string = 2;
int64 int = 3;
double float = 4;
bool boolean = 5;
ReferenceInput reference = 6;
repeated ValueInput values = 7;
}
message KeyValueInput {
string key = 1;