Kayrock.SaslAuthenticate.V0.Response (kayrock v0.1.12) View Source

Kayrock-generated response struct for Kafka sasl_authenticate v0 API messages

The schema of this API is

[error_code: :int16, error_message: :nullable_string, sasl_auth_bytes: :bytes]

Link to this section Summary

Types

t()

Response struct for the Kafka sasl_authenticate API v0

Functions

Returns the Kafka API key for this API

Returns the API version (0) implemented by this module

Deserialize data for this version of this API

Returns the schema of this message

Link to this section Types

Specs

t() :: %Kayrock.SaslAuthenticate.V0.Response{
  correlation_id: integer(),
  error_code: nil | integer(),
  error_message: nil | binary(),
  sasl_auth_bytes: nil | bitstring()
}

Response struct for the Kafka sasl_authenticate API v0

Link to this section Functions

Specs

api_key() :: integer()

Returns the Kafka API key for this API

Specs

api_vsn() :: integer()

Returns the API version (0) implemented by this module

Specs

deserialize(binary()) :: {t(), binary()}

Deserialize data for this version of this API

Specs

schema() :: term()

Returns the schema of this message

See above.