games.mythical.saga.sdk.proto.api.item.TransferItemBulkRequestOrBuilder 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 TransferItemBulkRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:saga.api.item.TransferItemBulkRequest)
com.google.protobuf.MessageOrBuilder {
/**
* string game_title_id = 1;
* @return The gameTitleId.
*/
java.lang.String getGameTitleId();
/**
* string game_title_id = 1;
* @return The bytes for gameTitleId.
*/
com.google.protobuf.ByteString
getGameTitleIdBytes();
/**
*
* Game's ids for the Item to transfer
*
*
* repeated string inventory_ids = 2;
* @return A list containing the inventoryIds.
*/
java.util.List
getInventoryIdsList();
/**
*
* Game's ids for the Item to transfer
*
*
* repeated string inventory_ids = 2;
* @return The count of inventoryIds.
*/
int getInventoryIdsCount();
/**
*
* Game's ids for the Item to transfer
*
*
* repeated string inventory_ids = 2;
* @param index The index of the element to return.
* @return The inventoryIds at the given index.
*/
java.lang.String getInventoryIds(int index);
/**
*
* Game's ids for the Item to transfer
*
*
* repeated string inventory_ids = 2;
* @param index The index of the value to return.
* @return The bytes of the inventoryIds at the given index.
*/
com.google.protobuf.ByteString
getInventoryIdsBytes(int index);
/**
*
* User of Item to transfer to
*
*
* string destination_oauth_id = 3;
* @return The destinationOauthId.
*/
java.lang.String getDestinationOauthId();
/**
*
* User of Item to transfer to
*
*
* string destination_oauth_id = 3;
* @return The bytes for destinationOauthId.
*/
com.google.protobuf.ByteString
getDestinationOauthIdBytes();
/**
* string idempotency_id = 4;
* @return The idempotencyId.
*/
java.lang.String getIdempotencyId();
/**
* string idempotency_id = 4;
* @return The bytes for idempotencyId.
*/
com.google.protobuf.ByteString
getIdempotencyIdBytes();
}