-
Notifications
You must be signed in to change notification settings - Fork 353
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Stripe.Account #116
Add Stripe.Account #116
Conversation
end | ||
end | ||
|
||
defp to_struct(response) do |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You may not want this to be private, but I doubt other modules will have accounts as sub-data structures
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, we'll stay private for now, but good point for the future.
alias Stripe.Util | ||
|
||
@type id :: String.t | ||
@type id_or_opts :: String.t | Keyword.t |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Where is this used?
|
||
alias Stripe.Util | ||
|
||
@type id :: String.t |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't see this used currently
Just a few comments, everything else looks good 👍 |
Fix usage of lists for hackney opts Add retrieving your own account
84f4997
to
cabec08
Compare
Closes #108 when done.