Skip to content

Commit

Permalink
add lost id api changes
Browse files Browse the repository at this point in the history
  • Loading branch information
pitabwire committed Apr 6, 2024
1 parent e222238 commit dc3ae68
Show file tree
Hide file tree
Showing 31 changed files with 15,286 additions and 0 deletions.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
// Copyright 2023-2024 Ant Investor Ltd
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: lostid/v1/lostid.proto

// Protobuf Java Version: 4.26.1
package com.antinvestor.apis.lostid.v1;

public interface CollectibleRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:lostid.v1.CollectibleRequest)
com.google.protobuf.MessageOrBuilder {

/**
* <code>repeated string file_id = 1 [json_name = "fileId", (.buf.validate.field) = { ... }</code>
* @return A list containing the fileId.
*/
java.util.List<java.lang.String>
getFileIdList();
/**
* <code>repeated string file_id = 1 [json_name = "fileId", (.buf.validate.field) = { ... }</code>
* @return The count of fileId.
*/
int getFileIdCount();
/**
* <code>repeated string file_id = 1 [json_name = "fileId", (.buf.validate.field) = { ... }</code>
* @param index The index of the element to return.
* @return The fileId at the given index.
*/
java.lang.String getFileId(int index);
/**
* <code>repeated string file_id = 1 [json_name = "fileId", (.buf.validate.field) = { ... }</code>
* @param index The index of the value to return.
* @return The bytes of the fileId at the given index.
*/
com.google.protobuf.ByteString
getFileIdBytes(int index);

/**
* <code>map&lt;string, string&gt; properties = 2 [json_name = "properties"];</code>
*/
int getPropertiesCount();
/**
* <code>map&lt;string, string&gt; properties = 2 [json_name = "properties"];</code>
*/
boolean containsProperties(
java.lang.String key);
/**
* Use {@link #getPropertiesMap()} instead.
*/
@java.lang.Deprecated
java.util.Map<java.lang.String, java.lang.String>
getProperties();
/**
* <code>map&lt;string, string&gt; properties = 2 [json_name = "properties"];</code>
*/
java.util.Map<java.lang.String, java.lang.String>
getPropertiesMap();
/**
* <code>map&lt;string, string&gt; properties = 2 [json_name = "properties"];</code>
*/
/* nullable */
java.lang.String getPropertiesOrDefault(
java.lang.String key,
/* nullable */
java.lang.String defaultValue);
/**
* <code>map&lt;string, string&gt; properties = 2 [json_name = "properties"];</code>
*/
java.lang.String getPropertiesOrThrow(
java.lang.String key);
}
Loading

0 comments on commit dc3ae68

Please sign in to comment.