Packages

Webhook delivery, monitoring, and management API. All endpoints under `/v1` require authentication via `Authorization: Bearer <api_key>` header unless marked as **Public**.

Current section

Files

Jump to
hooksniff lib hook_sniff_api model invoice_list_response.ex
Raw

lib/hook_sniff_api/model/invoice_list_response.ex

# NOTE: This file is auto generated by OpenAPI Generator 7.22.0 (https://openapi-generator.tech).
# Do not edit this file manually.
defmodule HookSniffAPI.Model.InvoiceListResponse do
@moduledoc """
Paginated list of invoices
"""
@derive JSON.Encoder
defstruct [
:data,
:has_more,
:total
]
@type t :: %__MODULE__{
:data => [HookSniffAPI.Model.InvoiceResponse.t],
:has_more => boolean(),
:total => integer()
}
alias HookSniffAPI.Deserializer
def decode(value) do
value
|> Deserializer.deserialize(:data, :list, HookSniffAPI.Model.InvoiceResponse)
end
end