// Generated by the protocol buffer compiler. DO NOT EDIT! // source: keyapis/vc/v1/keyapis_vc_camera_v1.proto // Generated files should ignore deprecation warnings @file:Suppress("DEPRECATION") package ru.keyapis.vc.v1; @kotlin.jvm.JvmName("-initializegetCameraIntervalsRequest") public inline fun getCameraIntervalsRequest(block: ru.keyapis.vc.v1.GetCameraIntervalsRequestKt.Dsl.() -> kotlin.Unit): ru.keyapis.vc.v1.KeyapisVcV1Proto.GetCameraIntervalsRequest = ru.keyapis.vc.v1.GetCameraIntervalsRequestKt.Dsl._create(ru.keyapis.vc.v1.KeyapisVcV1Proto.GetCameraIntervalsRequest.newBuilder()).apply { block() }._build() /** * ``` * Запрос получения интервалов, когда доступны записи * ``` * * Protobuf type `keyapis.vc.v1.GetCameraIntervalsRequest` */ public object GetCameraIntervalsRequestKt { @kotlin.OptIn(com.google.protobuf.kotlin.OnlyForUseByGeneratedProtoCode::class) @com.google.protobuf.kotlin.ProtoDslMarker public class Dsl private constructor( private val _builder: ru.keyapis.vc.v1.KeyapisVcV1Proto.GetCameraIntervalsRequest.Builder ) { public companion object { @kotlin.jvm.JvmSynthetic @kotlin.PublishedApi internal fun _create(builder: ru.keyapis.vc.v1.KeyapisVcV1Proto.GetCameraIntervalsRequest.Builder): Dsl = Dsl(builder) } @kotlin.jvm.JvmSynthetic @kotlin.PublishedApi internal fun _build(): ru.keyapis.vc.v1.KeyapisVcV1Proto.GetCameraIntervalsRequest = _builder.build() /** * ``` * Идентификатор камеры в vcfront. * # Тип: Guid * ``` * * `string uid = 1 [(.google.api.field_behavior) = REQUIRED];` */ public var uid: kotlin.String @JvmName("getUid") get() = _builder.getUid() @JvmName("setUid") set(value) { _builder.setUid(value) } /** * ``` * Идентификатор камеры в vcfront. * # Тип: Guid * ``` * * `string uid = 1 [(.google.api.field_behavior) = REQUIRED];` */ public fun clearUid() { _builder.clearUid() } /** * ``` * Смещение от UTC в минутах * ``` * * `.google.protobuf.Int32Value offset = 2;` */ public var offset: com.google.protobuf.Int32Value @JvmName("getOffset") get() = _builder.getOffset() @JvmName("setOffset") set(value) { _builder.setOffset(value) } /** * ``` * Смещение от UTC в минутах * ``` * * `.google.protobuf.Int32Value offset = 2;` */ public fun clearOffset() { _builder.clearOffset() } /** * ``` * Смещение от UTC в минутах * ``` * * `.google.protobuf.Int32Value offset = 2;` * @return Whether the offset field is set. */ public fun hasOffset(): kotlin.Boolean { return _builder.hasOffset() } } } @kotlin.jvm.JvmSynthetic public inline fun ru.keyapis.vc.v1.KeyapisVcV1Proto.GetCameraIntervalsRequest.copy(block: ru.keyapis.vc.v1.GetCameraIntervalsRequestKt.Dsl.() -> kotlin.Unit): ru.keyapis.vc.v1.KeyapisVcV1Proto.GetCameraIntervalsRequest = ru.keyapis.vc.v1.GetCameraIntervalsRequestKt.Dsl._create(this.toBuilder()).apply { block() }._build() public val ru.keyapis.vc.v1.KeyapisVcV1Proto.GetCameraIntervalsRequestOrBuilder.offsetOrNull: com.google.protobuf.Int32Value? get() = if (hasOffset()) getOffset() else null