README.md in alma-0.2.3 vs README.md in alma-0.2.4

- old
+ new

@@ -78,10 +78,12 @@ fines.list.first.title > "Practical Object Oriented Design with Ruby" ``` +Each fine object reflects the available fields in the returned XML,[as documented on the Ex Libris Api docs](https://developers.exlibrisgroup.com/alma/apis/xsd/rest_fees.xsd?tags=GET) + #### Get details on a users loans ```ruby loans = user.loans @@ -99,10 +101,11 @@ loans.list.first.due_date "2016-12-26z ``` +Each loan object reflects the available fields in the returned XML,[as documented on the Ex Libris Api docs](https://developers.exlibrisgroup.com/alma/apis/xsd/rest_item_loans.xsd?tags=GET) To renew an item you can can call the Loan objects renew method ```ruby renewal = loans.list.first.renew @@ -135,10 +138,11 @@ requests.list.first.request_status > "In Process" ``` - +Each request object reflects the available fields in the returned XML,[as documented on the Ex Libris Api docs](https://developers.exlibrisgroup.com/alma/apis/xsd/rest_user_requests.xsd?tags=GET) + Loans, fines and Requests can also be accessed statically ```ruby Alma::User.get_fines({:user_id => 123456789})