games.mythical.saga.sdk.proto.api.offer.OfferProtoOrBuilder 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/offer/definition.proto
package games.mythical.saga.sdk.proto.api.offer;
public interface OfferProtoOrBuilder extends
// @@protoc_insertion_point(interface_extends:saga.api.offer.OfferProto)
com.google.protobuf.MessageOrBuilder {
/**
*
* User of the Offer
*
*
* string oauth_id = 1;
* @return The oauthId.
*/
java.lang.String getOauthId();
/**
*
* User of the Offer
*
*
* string oauth_id = 1;
* @return The bytes for oauthId.
*/
com.google.protobuf.ByteString
getOauthIdBytes();
/**
*
* GameInventory Id of the Offer
*
*
* string inventory_id = 2;
* @return The inventoryId.
*/
java.lang.String getInventoryId();
/**
*
* GameInventory Id of the Offer
*
*
* string inventory_id = 2;
* @return The bytes for inventoryId.
*/
com.google.protobuf.ByteString
getInventoryIdBytes();
/**
*
* Currency of the total
*
*
* string currency = 3;
* @return The currency.
*/
java.lang.String getCurrency();
/**
*
* Currency of the total
*
*
* string currency = 3;
* @return The bytes for currency.
*/
com.google.protobuf.ByteString
getCurrencyBytes();
/**
*
* Total cost of the offer
*
*
* string total = 4;
* @return The total.
*/
java.lang.String getTotal();
/**
*
* Total cost of the offer
*
*
* string total = 4;
* @return The bytes for total.
*/
com.google.protobuf.ByteString
getTotalBytes();
/**
*
* When the offer was created
*
*
* .google.protobuf.Timestamp created_at = 5;
* @return Whether the createdAt field is set.
*/
boolean hasCreatedAt();
/**
*
* When the offer was created
*
*
* .google.protobuf.Timestamp created_at = 5;
* @return The createdAt.
*/
com.google.protobuf.Timestamp getCreatedAt();
/**
*
* When the offer was created
*
*
* .google.protobuf.Timestamp created_at = 5;
*/
com.google.protobuf.TimestampOrBuilder getCreatedAtOrBuilder();
}