It is possible the class methods like BandwidthIris::SipPeer.create or BandwidthIris::SipPeerProducts.create_origination_settings have wrappers that accepts multiple params, including a client with account set. For example:
BandwidthIris::SipPeerProducts.create_origination_settings(iris_client, site_id, sip_peer_id, data)
BandwidthIris::SipPeer.create(iris_client, site_id, data)
But when using instance methods like sip_peer.delete, I need to rely on global configs and can't change the account. (related comment: #19 (comment))
Do you have plans on adding those methods as class methods that will accept the client as well? Is this something desirable?