Class: Stripe::CreditNoteService::PreviewParams

Inherits:
RequestParams show all
Defined in:
lib/stripe/services/credit_note_service.rb

Defined Under Namespace

Classes: Line, Refund, ShippingCost

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(amount: nil, credit_amount: nil, effective_at: nil, email_type: nil, expand: nil, invoice: nil, lines: nil, memo: nil, metadata: nil, out_of_band_amount: nil, reason: nil, refund_amount: nil, refunds: nil, shipping_cost: nil) ⇒ PreviewParams

Returns a new instance of PreviewParams.



337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
# File 'lib/stripe/services/credit_note_service.rb', line 337

def initialize(
  amount: nil,
  credit_amount: nil,
  effective_at: nil,
  email_type: nil,
  expand: nil,
  invoice: nil,
  lines: nil,
  memo: nil,
  metadata: nil,
  out_of_band_amount: nil,
  reason: nil,
  refund_amount: nil,
  refunds: nil,
  shipping_cost: nil
)
  @amount = amount
  @credit_amount = credit_amount
  @effective_at = effective_at
  @email_type = email_type
  @expand = expand
  @invoice = invoice
  @lines = lines
  @memo = memo
  @metadata = 
  @out_of_band_amount = out_of_band_amount
  @reason = reason
  @refund_amount = refund_amount
  @refunds = refunds
  @shipping_cost = shipping_cost
end

Instance Attribute Details

#amountObject

The integer amount in cents (or local equivalent) representing the total amount of the credit note.



309
310
311
# File 'lib/stripe/services/credit_note_service.rb', line 309

def amount
  @amount
end

#credit_amountObject

The integer amount in cents (or local equivalent) representing the amount to credit the customer’s balance, which will be automatically applied to their next invoice.



311
312
313
# File 'lib/stripe/services/credit_note_service.rb', line 311

def credit_amount
  @credit_amount
end

#effective_atObject

The date when this credit note is in effect. Same as ‘created` unless overwritten. When defined, this value replaces the system-generated ’Date of issue’ printed on the credit note PDF.



313
314
315
# File 'lib/stripe/services/credit_note_service.rb', line 313

def effective_at
  @effective_at
end

#email_typeObject

Type of email to send to the customer, one of ‘credit_note` or `none` and the default is `credit_note`.



315
316
317
# File 'lib/stripe/services/credit_note_service.rb', line 315

def email_type
  @email_type
end

#expandObject

Specifies which fields in the response should be expanded.



317
318
319
# File 'lib/stripe/services/credit_note_service.rb', line 317

def expand
  @expand
end

#invoiceObject

ID of the invoice.



319
320
321
# File 'lib/stripe/services/credit_note_service.rb', line 319

def invoice
  @invoice
end

#linesObject

Line items that make up the credit note.



321
322
323
# File 'lib/stripe/services/credit_note_service.rb', line 321

def lines
  @lines
end

#memoObject

The credit note’s memo appears on the credit note PDF.



323
324
325
# File 'lib/stripe/services/credit_note_service.rb', line 323

def memo
  @memo
end

#metadataObject

Set of [key-value pairs](stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to ‘metadata`.



325
326
327
# File 'lib/stripe/services/credit_note_service.rb', line 325

def 
  @metadata
end

#out_of_band_amountObject

The integer amount in cents (or local equivalent) representing the amount that is credited outside of Stripe.



327
328
329
# File 'lib/stripe/services/credit_note_service.rb', line 327

def out_of_band_amount
  @out_of_band_amount
end

#reasonObject

Reason for issuing this credit note, one of ‘duplicate`, `fraudulent`, `order_change`, or `product_unsatisfactory`



329
330
331
# File 'lib/stripe/services/credit_note_service.rb', line 329

def reason
  @reason
end

#refund_amountObject

The integer amount in cents (or local equivalent) representing the amount to refund. If set, a refund will be created for the charge associated with the invoice.



331
332
333
# File 'lib/stripe/services/credit_note_service.rb', line 331

def refund_amount
  @refund_amount
end

#refundsObject

Refunds to link to this credit note.



333
334
335
# File 'lib/stripe/services/credit_note_service.rb', line 333

def refunds
  @refunds
end

#shipping_costObject

When shipping_cost contains the shipping_rate from the invoice, the shipping_cost is included in the credit note.



335
336
337
# File 'lib/stripe/services/credit_note_service.rb', line 335

def shipping_cost
  @shipping_cost
end