games.mythical.saga.sdk.proto.api.item.ItemProtoOrBuilder 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 ItemProtoOrBuilder extends
// @@protoc_insertion_point(interface_extends:saga.api.item.ItemProto)
com.google.protobuf.MessageOrBuilder {
/**
* string trace_id = 1;
* @return The traceId.
*/
java.lang.String getTraceId();
/**
* string trace_id = 1;
* @return The bytes for traceId.
*/
com.google.protobuf.ByteString
getTraceIdBytes();
/**
*
* The game's unique id for this Item
*
*
* string inventory_id = 2;
* @return The inventoryId.
*/
java.lang.String getInventoryId();
/**
*
* The game's unique id for this Item
*
*
* string inventory_id = 2;
* @return The bytes for inventoryId.
*/
com.google.protobuf.ByteString
getInventoryIdBytes();
/**
* string oauth_id = 3;
* @return The oauthId.
*/
java.lang.String getOauthId();
/**
* string oauth_id = 3;
* @return The bytes for oauthId.
*/
com.google.protobuf.ByteString
getOauthIdBytes();
/**
* int64 token_id = 4;
* @return The tokenId.
*/
long getTokenId();
/**
* bool finalized = 5;
* @return The finalized.
*/
boolean getFinalized();
/**
* string block_explorer_url = 6;
* @return The blockExplorerUrl.
*/
java.lang.String getBlockExplorerUrl();
/**
* string block_explorer_url = 6;
* @return The bytes for blockExplorerUrl.
*/
com.google.protobuf.ByteString
getBlockExplorerUrlBytes();
/**
* string metadata_url = 7;
* @return The metadataUrl.
*/
java.lang.String getMetadataUrl();
/**
* string metadata_url = 7;
* @return The bytes for metadataUrl.
*/
com.google.protobuf.ByteString
getMetadataUrlBytes();
/**
*
* When was this Item created
*
*
* .google.protobuf.Timestamp created_at = 8;
* @return Whether the createdAt field is set.
*/
boolean hasCreatedAt();
/**
*
* When was this Item created
*
*
* .google.protobuf.Timestamp created_at = 8;
* @return The createdAt.
*/
com.google.protobuf.Timestamp getCreatedAt();
/**
*
* When was this Item created
*
*
* .google.protobuf.Timestamp created_at = 8;
*/
com.google.protobuf.TimestampOrBuilder getCreatedAtOrBuilder();
/**
*
* When was this Item last updated
*
*
* .google.protobuf.Timestamp updated_at = 9;
* @return Whether the updatedAt field is set.
*/
boolean hasUpdatedAt();
/**
*
* When was this Item last updated
*
*
* .google.protobuf.Timestamp updated_at = 9;
* @return The updatedAt.
*/
com.google.protobuf.Timestamp getUpdatedAt();
/**
*
* When was this Item last updated
*
*
* .google.protobuf.Timestamp updated_at = 9;
*/
com.google.protobuf.TimestampOrBuilder getUpdatedAtOrBuilder();
/**
* string state = 10;
* @return The state.
*/
java.lang.String getState();
/**
* string state = 10;
* @return The bytes for state.
*/
com.google.protobuf.ByteString
getStateBytes();
}