[docs]defsync(body:BillingInfo,*,client:Client,)->Optional[Union[Customer,Error]]:"""This includes billing address, phone, and name. This endpoint requires authentication by an org admin. It updates the payment information for the authenticated user's org. """# noqa: E501returnsync_detailed(body=body,client=client,).parsed
[docs]asyncdefasyncio(body:BillingInfo,*,client:Client,)->Optional[Union[Customer,Error]]:"""This includes billing address, phone, and name. This endpoint requires authentication by an org admin. It updates the payment information for the authenticated user's org. """# noqa: E501return(awaitasyncio_detailed(body=body,client=client,)).parsed