Update Customer Request
data class UpdateCustomerRequest(val billingAddress: FrameObjects.BillingAddress?, val shippingAddress: FrameObjects.BillingAddress?, val name: String?, val phone: String?, val email: String?, val description: String?, val metadata: Map<String, String>?)
Request body for updating an existing customer.
Only fields that should be changed need to be provided; pass null for any field to leave it unchanged.
Constructors
Link copied to clipboard
constructor(billingAddress: FrameObjects.BillingAddress?, shippingAddress: FrameObjects.BillingAddress?, name: String?, phone: String?, email: String?, description: String?, metadata: Map<String, String>?)