games.mythical.saga.sdk.proto.api.reservation.ReleaseReservationRequestKt.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/reservation/definition.proto
package games.mythical.saga.sdk.proto.api.reservation;
@kotlin.jvm.JvmName("-initializereleaseReservationRequest")
inline fun releaseReservationRequest(block: games.mythical.saga.sdk.proto.api.reservation.ReleaseReservationRequestKt.Dsl.() -> kotlin.Unit): games.mythical.saga.sdk.proto.api.reservation.ReleaseReservationRequest =
games.mythical.saga.sdk.proto.api.reservation.ReleaseReservationRequestKt.Dsl._create(games.mythical.saga.sdk.proto.api.reservation.ReleaseReservationRequest.newBuilder()).apply { block() }._build()
object ReleaseReservationRequestKt {
@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.reservation.ReleaseReservationRequest.Builder
) {
companion object {
@kotlin.jvm.JvmSynthetic
@kotlin.PublishedApi
internal fun _create(builder: games.mythical.saga.sdk.proto.api.reservation.ReleaseReservationRequest.Builder): Dsl = Dsl(builder)
}
@kotlin.jvm.JvmSynthetic
@kotlin.PublishedApi
internal fun _build(): games.mythical.saga.sdk.proto.api.reservation.ReleaseReservationRequest = _builder.build()
/**
* string reservation_id = 1;
*/
var reservationId: kotlin.String
@JvmName("getReservationId")
get() = _builder.getReservationId()
@JvmName("setReservationId")
set(value) {
_builder.setReservationId(value)
}
/**
* string reservation_id = 1;
*/
fun clearReservationId() {
_builder.clearReservationId()
}
/**
* string oauth_id = 2;
*/
var oauthId: kotlin.String
@JvmName("getOauthId")
get() = _builder.getOauthId()
@JvmName("setOauthId")
set(value) {
_builder.setOauthId(value)
}
/**
* string oauth_id = 2;
*/
fun clearOauthId() {
_builder.clearOauthId()
}
}
}
@kotlin.jvm.JvmSynthetic
inline fun games.mythical.saga.sdk.proto.api.reservation.ReleaseReservationRequest.copy(block: games.mythical.saga.sdk.proto.api.reservation.ReleaseReservationRequestKt.Dsl.() -> kotlin.Unit): games.mythical.saga.sdk.proto.api.reservation.ReleaseReservationRequest =
games.mythical.saga.sdk.proto.api.reservation.ReleaseReservationRequestKt.Dsl._create(this.toBuilder()).apply { block() }._build()