This repository has been archived by the owner on Jul 26, 2023. It is now read-only.
forked from beam-community/stripity-stripe
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add reporting entities (beam-community#751)
* Add reporting entities * Add tests for report runs
- Loading branch information
1 parent
879338a
commit 1c34ec9
Showing
23 changed files
with
233 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
defmodule Stripe.Reporting.ReportRun do | ||
@moduledoc """ | ||
Work with Stripe Report Run objects. | ||
You can: | ||
- Create a report run | ||
- Retrieve a report run | ||
- List all report runs | ||
Stripe API reference: https://stripe.com/docs/api/reporting/report_run | ||
""" | ||
|
||
use Stripe.Entity | ||
import Stripe.Request | ||
|
||
@typedoc """ | ||
One of `"pending"`, `"succeeded"`, or `"failed"`. | ||
""" | ||
@type status :: String.t() | ||
|
||
@type t :: %__MODULE__{ | ||
id: Stripe.id(), | ||
object: String.t(), | ||
parameters: map(), | ||
report_type: String.t(), | ||
result: map(), | ||
status: status(), | ||
created: Stripe.timestamp(), | ||
error: String.t(), | ||
livemode: boolean(), | ||
succeeded_at: Stripe.timestamp() | ||
} | ||
|
||
defstruct [ | ||
:id, | ||
:object, | ||
:parameters, | ||
:report_type, | ||
:result, | ||
:status, | ||
:created, | ||
:error, | ||
:livemode, | ||
:succeeded_at | ||
] | ||
|
||
@plural_endpoint "reporting/report_runs" | ||
|
||
@spec create(params, Stripe.options()) :: {:ok, t} | {:error, Stripe.Error.t()} | ||
when params: | ||
%{ | ||
:report_type => String.t(), | ||
optional(:parameters) => map() | ||
} | ||
| %{} | ||
def create(params, opts \\ []) do | ||
new_request(opts) | ||
|> put_endpoint(@plural_endpoint) | ||
|> put_params(params) | ||
|> put_method(:post) | ||
|> make_request() | ||
end | ||
|
||
@spec retrieve(Stripe.id() | t, Stripe.options()) :: {:ok, t} | {:error, Stripe.Error.t()} | ||
def retrieve(id, opts \\ []) do | ||
new_request(opts) | ||
|> put_endpoint(@plural_endpoint <> "/#{get_id!(id)}") | ||
|> put_method(:get) | ||
|> make_request() | ||
end | ||
|
||
@spec list(params, Stripe.options()) :: {:ok, Stripe.List.t(t)} | {:error, Stripe.Error.t()} | ||
when params: %{ | ||
optional(:created) => Stripe.date_query(), | ||
optional(:ending_before) => t | Stripe.id(), | ||
optional(:limit) => 1..100, | ||
optional(:starting_after) => t | Stripe.id() | ||
} | ||
def list(params \\ %{}, opts \\ []) do | ||
new_request(opts) | ||
|> prefix_expansions() | ||
|> put_endpoint(@plural_endpoint) | ||
|> put_method(:get) | ||
|> put_params(params) | ||
|> cast_to_id([:ending_before, :starting_after]) | ||
|> make_request() | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
defmodule Stripe.Reporting.ReportType do | ||
@moduledoc """ | ||
Work with Stripe Report Type objects. | ||
You can: | ||
- Retrieve a report type | ||
- List all report types | ||
Stripe API reference: https://stripe.com/docs/api/reporting/report_type | ||
""" | ||
|
||
use Stripe.Entity | ||
import Stripe.Request | ||
|
||
@type t :: %__MODULE__{ | ||
id: Stripe.id(), | ||
object: String.t(), | ||
data_available_end: Stripe.timestamp(), | ||
data_available_start: Stripe.timestamp(), | ||
name: String.t(), | ||
default_columns: list(String.t()), | ||
livemode: boolean(), | ||
updated: Stripe.timestamp(), | ||
version: integer() | ||
} | ||
|
||
defstruct [ | ||
:id, | ||
:object, | ||
:data_available_end, | ||
:data_available_start, | ||
:name, | ||
:default_columns, | ||
:livemode, | ||
:updated, | ||
:version | ||
] | ||
|
||
@plural_endpoint "reporting/report_types" | ||
|
||
@spec retrieve(Stripe.id() | t, Stripe.options()) :: {:ok, t} | {:error, Stripe.Error.t()} | ||
def retrieve(id, opts \\ []) do | ||
new_request(opts) | ||
|> put_endpoint(@plural_endpoint <> "/#{get_id!(id)}") | ||
|> put_method(:get) | ||
|> make_request() | ||
end | ||
|
||
@spec list(Stripe.options()) :: {:ok, Stripe.List.t(t)} | {:error, Stripe.Error.t()} | ||
def list(opts \\ []) do | ||
new_request(opts) | ||
|> prefix_expansions() | ||
|> put_endpoint(@plural_endpoint) | ||
|> put_method(:get) | ||
|> make_request() | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.