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