games.mythical.saga.sdk.proto.api.item.IssueItemRequestOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of saga-sdk-proto Show documentation
Show all versions of saga-sdk-proto Show documentation
Saga SDK for Java game servers
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: api/item/definition.proto
package games.mythical.saga.sdk.proto.api.item;
public interface IssueItemRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:saga.api.item.IssueItemRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
* Repeated items so that metadata is unique per item
*
*
* repeated .saga.api.item.IssueItemProto items = 1;
*/
java.util.List
getItemsList();
/**
*
* Repeated items so that metadata is unique per item
*
*
* repeated .saga.api.item.IssueItemProto items = 1;
*/
games.mythical.saga.sdk.proto.api.item.IssueItemProto getItems(int index);
/**
*
* Repeated items so that metadata is unique per item
*
*
* repeated .saga.api.item.IssueItemProto items = 1;
*/
int getItemsCount();
/**
*
* Repeated items so that metadata is unique per item
*
*
* repeated .saga.api.item.IssueItemProto items = 1;
*/
java.util.List extends games.mythical.saga.sdk.proto.api.item.IssueItemProtoOrBuilder>
getItemsOrBuilderList();
/**
*
* Repeated items so that metadata is unique per item
*
*
* repeated .saga.api.item.IssueItemProto items = 1;
*/
games.mythical.saga.sdk.proto.api.item.IssueItemProtoOrBuilder getItemsOrBuilder(
int index);
/**
*
* Oauth id of wallet accepting items
*
*
* string recipient_oauth_id = 2;
* @return The recipientOauthId.
*/
java.lang.String getRecipientOauthId();
/**
*
* Oauth id of wallet accepting items
*
*
* string recipient_oauth_id = 2;
* @return The bytes for recipientOauthId.
*/
com.google.protobuf.ByteString
getRecipientOauthIdBytes();
/**
*
* Unique id set for your game of the Item being issued
*
*
* string item_type_id = 3;
* @return The itemTypeId.
*/
java.lang.String getItemTypeId();
/**
*
* Unique id set for your game of the Item being issued
*
*
* string item_type_id = 3;
* @return The bytes for itemTypeId.
*/
com.google.protobuf.ByteString
getItemTypeIdBytes();
}