All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.socket.plugin.EnablePluginResponse.kt Maven / Gradle / Ivy

Go to download

KMP package which exports compiled protobuf entities to be used by other repos

There is a newer version: 2.89.0
Show newest version
// Code generated by Wire protocol buffer compiler, do not edit.
// Source: socket.plugin.EnablePluginResponse in socket/plugin.proto
package socket.plugin

import com.squareup.wire.FieldEncoding
import com.squareup.wire.Message
import com.squareup.wire.ProtoAdapter
import com.squareup.wire.ProtoReader
import com.squareup.wire.ProtoWriter
import com.squareup.wire.ReverseProtoWriter
import com.squareup.wire.Syntax.PROTO_3
import com.squareup.wire.WireField
import com.squareup.wire.`internal`.sanitize
import kotlin.Any
import kotlin.AssertionError
import kotlin.Boolean
import kotlin.Deprecated
import kotlin.DeprecationLevel
import kotlin.Int
import kotlin.Long
import kotlin.Nothing
import kotlin.String
import kotlin.Unit
import okio.ByteString

/**
 * *****************************************************************************************
 * *********************************** Message Responses ***********************************
 * *****************************************************************************************
 * Response sent whenever a plugin is enabled.
 * Applicable for all requests that enable a plugin.
 */
public class EnablePluginResponse(
  @field:WireField(
    tag = 1,
    adapter = "com.squareup.wire.ProtoAdapter#STRING",
    label = WireField.Label.OMIT_IDENTITY,
    jsonName = "pluginId",
  )
  public val plugin_id: String = "",
  @field:WireField(
    tag = 2,
    adapter = "com.squareup.wire.ProtoAdapter#STRING",
    label = WireField.Label.OMIT_IDENTITY,
    jsonName = "enabledBy",
  )
  public val enabled_by: String = "",
  unknownFields: ByteString = ByteString.EMPTY,
) : Message(ADAPTER, unknownFields) {
  @Deprecated(
    message = "Shouldn't be used in Kotlin",
    level = DeprecationLevel.HIDDEN,
  )
  public override fun newBuilder(): Nothing = throw
      AssertionError("Builders are deprecated and only available in a javaInterop build; see https://square.github.io/wire/wire_compiler/#kotlin")

  public override fun equals(other: Any?): Boolean {
    if (other === this) return true
    if (other !is EnablePluginResponse) return false
    if (unknownFields != other.unknownFields) return false
    if (plugin_id != other.plugin_id) return false
    if (enabled_by != other.enabled_by) return false
    return true
  }

  public override fun hashCode(): Int {
    var result = super.hashCode
    if (result == 0) {
      result = unknownFields.hashCode()
      result = result * 37 + plugin_id.hashCode()
      result = result * 37 + enabled_by.hashCode()
      super.hashCode = result
    }
    return result
  }

  public override fun toString(): String {
    val result = mutableListOf()
    result += """plugin_id=${sanitize(plugin_id)}"""
    result += """enabled_by=${sanitize(enabled_by)}"""
    return result.joinToString(prefix = "EnablePluginResponse{", separator = ", ", postfix = "}")
  }

  public fun copy(
    plugin_id: String = this.plugin_id,
    enabled_by: String = this.enabled_by,
    unknownFields: ByteString = this.unknownFields,
  ): EnablePluginResponse = EnablePluginResponse(plugin_id, enabled_by, unknownFields)

  public companion object {
    public val ADAPTER: ProtoAdapter = object :
        ProtoAdapter(
      FieldEncoding.LENGTH_DELIMITED, 
      EnablePluginResponse::class, 
      "type.googleapis.com/socket.plugin.EnablePluginResponse", 
      PROTO_3, 
      null, 
      "socket/plugin.proto"
    ) {
      public override fun encodedSize(`value`: EnablePluginResponse): Int {
        var size = value.unknownFields.size
        if (value.plugin_id != "") size += ProtoAdapter.STRING.encodedSizeWithTag(1,
            value.plugin_id)
        if (value.enabled_by != "") size += ProtoAdapter.STRING.encodedSizeWithTag(2,
            value.enabled_by)
        return size
      }

      public override fun encode(writer: ProtoWriter, `value`: EnablePluginResponse): Unit {
        if (value.plugin_id != "") ProtoAdapter.STRING.encodeWithTag(writer, 1, value.plugin_id)
        if (value.enabled_by != "") ProtoAdapter.STRING.encodeWithTag(writer, 2, value.enabled_by)
        writer.writeBytes(value.unknownFields)
      }

      public override fun encode(writer: ReverseProtoWriter, `value`: EnablePluginResponse): Unit {
        writer.writeBytes(value.unknownFields)
        if (value.enabled_by != "") ProtoAdapter.STRING.encodeWithTag(writer, 2, value.enabled_by)
        if (value.plugin_id != "") ProtoAdapter.STRING.encodeWithTag(writer, 1, value.plugin_id)
      }

      public override fun decode(reader: ProtoReader): EnablePluginResponse {
        var plugin_id: String = ""
        var enabled_by: String = ""
        val unknownFields = reader.forEachTag { tag ->
          when (tag) {
            1 -> plugin_id = ProtoAdapter.STRING.decode(reader)
            2 -> enabled_by = ProtoAdapter.STRING.decode(reader)
            else -> reader.readUnknownField(tag)
          }
        }
        return EnablePluginResponse(
          plugin_id = plugin_id,
          enabled_by = enabled_by,
          unknownFields = unknownFields
        )
      }

      public override fun redact(`value`: EnablePluginResponse): EnablePluginResponse = value.copy(
        unknownFields = ByteString.EMPTY
      )
    }

    private const val serialVersionUID: Long = 0L
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy