Current section
Files
Jump to
Current section
Files
lib/ex_stream_client/model/reactivate_users_response.ex
defmodule ExStreamClient.Model.ReactivateUsersResponse do
@moduledoc "Schema representing a ReactivateUsersResponse"
use ExStreamClient.JSON
use ExStreamClient.TypeInterner
@enforce_keys [:duration, :task_id]
defstruct [:duration, :task_id]
@nested_components []
def nested_components do
@nested_components
end
@type t :: %__MODULE__{duration: String.t(), task_id: String.t()}
end