Skip to content

Commit

Permalink
Clean up FileUpload
Browse files Browse the repository at this point in the history
  • Loading branch information
joshsmith committed Nov 14, 2017
1 parent 3e2c187 commit 45885e7
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions lib/stripe/core_resources/file_upload.ex
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ defmodule Stripe.FileUpload do
use Stripe.Entity

@type t :: %__MODULE__{
id: Stripe.id,
object: String.t,
created: Stripe.timestamp,
purpose: :dispute_evidence | :identity_document | :business_logo,
size: integer,
type: :pdf | :jpg | :png,
url: String.t
}
id: Stripe.id,
object: String.t,
created: Stripe.timestamp,
purpose: :dispute_evidence | :identity_document | atom,
size: integer,
type: :pdf | :jpg | :png | nil,
url: String.t | nil
}

defstruct [
:id,
Expand Down

0 comments on commit 45885e7

Please sign in to comment.