lib/gotransverse-tract-api/order/organization.rb in gotransverse-tract-api-0.0.5 vs lib/gotransverse-tract-api/order/organization.rb in gotransverse-tract-api-0.0.6
- old
+ new
@@ -6,9 +6,30 @@
def self.find_all
GoTransverseTractApi.get_response_for(self.class)
end
+ #
+ # @param {Long} eid
+ #
+ def self.find_by_eid eid
+ GoTransverseTractApi.get_response_for(self.class, {eid: eid})
+ end
+
+ #
+ # @param {String} name
+ #
+ def self.find_by_name name
+ GoTransverseTractApi.get_response_for(self.class, {name: name})
+ end
+
+ #
+ # @param {Long} billing_account_eid
+ #
+ def self.find_by_billing_account_eid billing_account_eid
+ GoTransverseTractApi.get_response_for(self.class, {billing_account_eid: billing_account_eid})
+ end
+
end
end
end
\ No newline at end of file