games.mythical.saga.sdk.proto.api.currency.GetCurrencyForPlayerRequestKt.kt 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/currency/definition.proto
package games.mythical.saga.sdk.proto.api.currency;
@kotlin.jvm.JvmName("-initializegetCurrencyForPlayerRequest")
inline fun getCurrencyForPlayerRequest(block: games.mythical.saga.sdk.proto.api.currency.GetCurrencyForPlayerRequestKt.Dsl.() -> kotlin.Unit): games.mythical.saga.sdk.proto.api.currency.GetCurrencyForPlayerRequest =
games.mythical.saga.sdk.proto.api.currency.GetCurrencyForPlayerRequestKt.Dsl._create(games.mythical.saga.sdk.proto.api.currency.GetCurrencyForPlayerRequest.newBuilder()).apply { block() }._build()
object GetCurrencyForPlayerRequestKt {
@kotlin.OptIn(com.google.protobuf.kotlin.OnlyForUseByGeneratedProtoCode::class)
@com.google.protobuf.kotlin.ProtoDslMarker
class Dsl private constructor(
private val _builder: games.mythical.saga.sdk.proto.api.currency.GetCurrencyForPlayerRequest.Builder
) {
companion object {
@kotlin.jvm.JvmSynthetic
@kotlin.PublishedApi
internal fun _create(builder: games.mythical.saga.sdk.proto.api.currency.GetCurrencyForPlayerRequest.Builder): Dsl = Dsl(builder)
}
@kotlin.jvm.JvmSynthetic
@kotlin.PublishedApi
internal fun _build(): games.mythical.saga.sdk.proto.api.currency.GetCurrencyForPlayerRequest = _builder.build()
/**
*
* User to get currency for
*
*
* string oauth_id = 1;
*/
var oauthId: kotlin.String
@JvmName("getOauthId")
get() = _builder.getOauthId()
@JvmName("setOauthId")
set(value) {
_builder.setOauthId(value)
}
/**
*
* User to get currency for
*
*
* string oauth_id = 1;
*/
fun clearOauthId() {
_builder.clearOauthId()
}
/**
* string currency_type_id = 2;
*/
var currencyTypeId: kotlin.String
@JvmName("getCurrencyTypeId")
get() = _builder.getCurrencyTypeId()
@JvmName("setCurrencyTypeId")
set(value) {
_builder.setCurrencyTypeId(value)
}
/**
* string currency_type_id = 2;
*/
fun clearCurrencyTypeId() {
_builder.clearCurrencyTypeId()
}
}
}
@kotlin.jvm.JvmSynthetic
inline fun games.mythical.saga.sdk.proto.api.currency.GetCurrencyForPlayerRequest.copy(block: games.mythical.saga.sdk.proto.api.currency.GetCurrencyForPlayerRequestKt.Dsl.() -> kotlin.Unit): games.mythical.saga.sdk.proto.api.currency.GetCurrencyForPlayerRequest =
games.mythical.saga.sdk.proto.api.currency.GetCurrencyForPlayerRequestKt.Dsl._create(this.toBuilder()).apply { block() }._build()