Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 837 Bytes

CreatePaymentRequest.md

File metadata and controls

28 lines (22 loc) · 837 Bytes

Brevo::CreatePaymentRequest

Properties

Name Type Description Notes
reference String Reference of the payment request, it will appear on the payment page.
cart Cart
contact_id Integer Brevo ID of the contact requested to pay.
description String description of payment request [optional]
notification Notification [optional]
configuration Configuration [optional]

Example

require 'brevo'

instance = Brevo::CreatePaymentRequest.new(
  reference: Invoice #INV0001,
  cart: null,
  contact_id: 43,
  description: Shipping Cost for sending bottles to NYC,
  notification: null,
  configuration: null
)