// 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("-initializedeleteCameraRequest") public inline fun deleteCameraRequest(block: ru.keyapis.vc.v1.DeleteCameraRequestKt.Dsl.() -> kotlin.Unit): ru.keyapis.vc.v1.KeyapisVcV1Proto.DeleteCameraRequest = ru.keyapis.vc.v1.DeleteCameraRequestKt.Dsl._create(ru.keyapis.vc.v1.KeyapisVcV1Proto.DeleteCameraRequest.newBuilder()).apply { block() }._build() /** * ``` * Запрос удаления камеры * ``` * * Protobuf type `keyapis.vc.v1.DeleteCameraRequest` */ public object DeleteCameraRequestKt { @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.DeleteCameraRequest.Builder ) { public companion object { @kotlin.jvm.JvmSynthetic @kotlin.PublishedApi internal fun _create(builder: ru.keyapis.vc.v1.KeyapisVcV1Proto.DeleteCameraRequest.Builder): Dsl = Dsl(builder) } @kotlin.jvm.JvmSynthetic @kotlin.PublishedApi internal fun _build(): ru.keyapis.vc.v1.KeyapisVcV1Proto.DeleteCameraRequest = _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() } /** * ``` * Флаг полного (безвозвратного) удаления камеры * ``` * * `bool is_delete_permanently = 2;` */ public var isDeletePermanently: kotlin.Boolean @JvmName("getIsDeletePermanently") get() = _builder.getIsDeletePermanently() @JvmName("setIsDeletePermanently") set(value) { _builder.setIsDeletePermanently(value) } /** * ``` * Флаг полного (безвозвратного) удаления камеры * ``` * * `bool is_delete_permanently = 2;` */ public fun clearIsDeletePermanently() { _builder.clearIsDeletePermanently() } } } @kotlin.jvm.JvmSynthetic public inline fun ru.keyapis.vc.v1.KeyapisVcV1Proto.DeleteCameraRequest.copy(block: ru.keyapis.vc.v1.DeleteCameraRequestKt.Dsl.() -> kotlin.Unit): ru.keyapis.vc.v1.KeyapisVcV1Proto.DeleteCameraRequest = ru.keyapis.vc.v1.DeleteCameraRequestKt.Dsl._create(this.toBuilder()).apply { block() }._build()