ref: 7c6f17336616581db4f16514e16c16276c21ba94
yats-connector-kotlin/com/kevwe/yats/protobuf/CreateEventRequestKt.kt
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
//Generated by the protocol buffer compiler. DO NOT EDIT! // source: yats-grpc.proto package com.kevwe.yats.protobuf; @kotlin.jvm.JvmName("-initializecreateEventRequest") public inline fun createEventRequest(block: com.kevwe.yats.protobuf.CreateEventRequestKt.Dsl.() -> kotlin.Unit): com.kevwe.yats.protobuf.CreateEventRequest = com.kevwe.yats.protobuf.CreateEventRequestKt.Dsl._create(com.kevwe.yats.protobuf.CreateEventRequest.newBuilder()).apply { block() }._build() public object CreateEventRequestKt { @kotlin.OptIn(com.google.protobuf.kotlin.OnlyForUseByGeneratedProtoCode::class) @com.google.protobuf.kotlin.ProtoDslMarker public class Dsl private constructor( private val _builder: com.kevwe.yats.protobuf.CreateEventRequest.Builder ) { public companion object { @kotlin.jvm.JvmSynthetic @kotlin.PublishedApi internal fun _create(builder: com.kevwe.yats.protobuf.CreateEventRequest.Builder): Dsl = Dsl(builder) } @kotlin.jvm.JvmSynthetic @kotlin.PublishedApi internal fun _build(): com.kevwe.yats.protobuf.CreateEventRequest = _builder.build() /** * <code>.yats.Event event = 1;</code> */ public var event: com.kevwe.yats.protobuf.Event @JvmName("getEvent") get() = _builder.getEvent() @JvmName("setEvent") set(value) { _builder.setEvent(value) } /** * <code>.yats.Event event = 1;</code> */ public fun clearEvent() { _builder.clearEvent() } /** * <code>.yats.Event event = 1;</code> * @return Whether the event field is set. */ public fun hasEvent(): kotlin.Boolean { return _builder.hasEvent() } } } @kotlin.jvm.JvmSynthetic public inline fun com.kevwe.yats.protobuf.CreateEventRequest.copy(block: com.kevwe.yats.protobuf.CreateEventRequestKt.Dsl.() -> kotlin.Unit): com.kevwe.yats.protobuf.CreateEventRequest = com.kevwe.yats.protobuf.CreateEventRequestKt.Dsl._create(this.toBuilder()).apply { block() }._build() public val com.kevwe.yats.protobuf.CreateEventRequestOrBuilder.eventOrNull: com.kevwe.yats.protobuf.Event? get() = if (hasEvent()) getEvent() else null |