games.mythical.saga.sdk.proto.api.metadata.UpdateItemMetadataRequestOrBuilder 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/metadata/definition.proto
package games.mythical.saga.sdk.proto.api.metadata;
public interface UpdateItemMetadataRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:saga.api.metadata.UpdateItemMetadataRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
* Update Metadata for the Item with this id
*
*
* string inventory_id = 1;
* @return The inventoryId.
*/
java.lang.String getInventoryId();
/**
*
* Update Metadata for the Item with this id
*
*
* string inventory_id = 1;
* @return The bytes for inventoryId.
*/
com.google.protobuf.ByteString
getInventoryIdBytes();
/**
*
* Metadata to update with
*
*
* .saga.common.Metadata metadata = 2;
* @return Whether the metadata field is set.
*/
boolean hasMetadata();
/**
*
* Metadata to update with
*
*
* .saga.common.Metadata metadata = 2;
* @return The metadata.
*/
games.mythical.saga.sdk.proto.common.Metadata getMetadata();
/**
*
* Metadata to update with
*
*
* .saga.common.Metadata metadata = 2;
*/
games.mythical.saga.sdk.proto.common.MetadataOrBuilder getMetadataOrBuilder();
}