games.mythical.saga.sdk.proto.api.item.TransferItemRequestOrBuilder 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 TransferItemRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:saga.api.item.TransferItemRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
* Game's id for the Item to transfer
*
*
* string inventory_id = 1;
* @return The inventoryId.
*/
java.lang.String getInventoryId();
/**
*
* Game's id for the Item to transfer
*
*
* string inventory_id = 1;
* @return The bytes for inventoryId.
*/
com.google.protobuf.ByteString
getInventoryIdBytes();
/**
*
* 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();
/**
* bool prefund_gas = 5;
* @return The prefundGas.
*/
boolean getPrefundGas();
}