games.mythical.saga.sdk.proto.api.item.IssueItemProtoOrBuilder 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 IssueItemProtoOrBuilder extends
// @@protoc_insertion_point(interface_extends:saga.api.item.IssueItemProto)
com.google.protobuf.MessageOrBuilder {
/**
*
* GameInventory Ids of Items being issued
*
*
* string inventory_id = 1;
* @return The inventoryId.
*/
java.lang.String getInventoryId();
/**
*
* GameInventory Ids of Items being issued
*
*
* string inventory_id = 1;
* @return The bytes for inventoryId.
*/
com.google.protobuf.ByteString
getInventoryIdBytes();
/**
*
* Metadata associated to Item being issued
*
*
* .saga.common.Metadata metadata = 2;
* @return Whether the metadata field is set.
*/
boolean hasMetadata();
/**
*
* Metadata associated to Item being issued
*
*
* .saga.common.Metadata metadata = 2;
* @return The metadata.
*/
games.mythical.saga.sdk.proto.common.Metadata getMetadata();
/**
*
* Metadata associated to Item being issued
*
*
* .saga.common.Metadata metadata = 2;
*/
games.mythical.saga.sdk.proto.common.MetadataOrBuilder getMetadataOrBuilder();
/**
*
* TokenId associated to Item being issued
*
*
* uint64 token_id = 4;
* @return The tokenId.
*/
long getTokenId();
}