games.mythical.saga.sdk.proto.streams.item.ItemStatusUpdateOrBuilder 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: streams/item/definition.proto
package games.mythical.saga.sdk.proto.streams.item;
public interface ItemStatusUpdateOrBuilder extends
// @@protoc_insertion_point(interface_extends:saga.rpc.streams.item.ItemStatusUpdate)
com.google.protobuf.MessageOrBuilder {
/**
*
* Game's unique Id for the Item
*
*
* string inventory_id = 1;
* @return The inventoryId.
*/
java.lang.String getInventoryId();
/**
*
* Game's unique Id for the Item
*
*
* string inventory_id = 1;
* @return The bytes for inventoryId.
*/
com.google.protobuf.ByteString
getInventoryIdBytes();
/**
*
* Game's ItemTypeId for the ItemType for this Item
*
*
* string item_type_id = 2;
* @return The itemTypeId.
*/
java.lang.String getItemTypeId();
/**
*
* Game's ItemTypeId for the ItemType for this Item
*
*
* string item_type_id = 2;
* @return The bytes for itemTypeId.
*/
com.google.protobuf.ByteString
getItemTypeIdBytes();
/**
*
* User for this Item
*
*
* string oauth_id = 3;
* @return The oauthId.
*/
java.lang.String getOauthId();
/**
*
* User for this Item
*
*
* string oauth_id = 3;
* @return The bytes for oauthId.
*/
com.google.protobuf.ByteString
getOauthIdBytes();
/**
* int64 token_id = 4;
* @return The tokenId.
*/
long getTokenId();
/**
*
* Metadata address
*
*
* string metadata_url = 5;
* @return The metadataUrl.
*/
java.lang.String getMetadataUrl();
/**
*
* Metadata address
*
*
* string metadata_url = 5;
* @return The bytes for metadataUrl.
*/
com.google.protobuf.ByteString
getMetadataUrlBytes();
/**
*
* State of the Item, see ItemState
*
*
* .saga.proto.common.item.ItemState item_state = 8;
* @return The enum numeric value on the wire for itemState.
*/
int getItemStateValue();
/**
*
* State of the Item, see ItemState
*
*
* .saga.proto.common.item.ItemState item_state = 8;
* @return The itemState.
*/
games.mythical.saga.sdk.proto.common.item.ItemState getItemState();
}