Current section

Files

Jump to
craftgate lib craftgate response wallet_transaction_list_response.ex
Raw

lib/craftgate/response/wallet_transaction_list_response.ex

defmodule Craftgate.Response.WalletTransactionListResponse do
@moduledoc """
Elixir equivalent of the Java data class [io.craftgate.response.WalletTransactionListResponse](https://github.com/craftgate/craftgate-java-client/blob/master/src/main/java/io/craftgate/response/WalletTransactionListResponse.java)
"""
use Craftgate.Serializable, [
items: Craftgate.Response.WalletTransactionResponse,
page: :integer,
size: :integer,
total_size: :integer
]
end