Object with the order's billing data.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/InvoiceData", "title": "InvoiceData", "description": "Object with the order's billing data.", "required": [ "userPaymentInfo" ], "type": "object", "properties": { "userPaymentInfo": { "$ref": "#/components/schemas/UserPaymentInfo" } }, "example": { "userPaymentInfo": { "paymentMethods": [ "creditCardPaymentGroup" ] } } }