+
+
+
xero_client.set_token_set(user.token_set)
+
+xero_tenant_id = 'xeroTenantId_example'
+if_modified_since = "2020-02-06T12:17:43.202-08:00"
+where = 'Status=="ACTIVE"'
+order = 'EmailAddress%20DESC'
+page = 56
+
+begin
+ response = xero_client.accounting_api.get_leave_applications_v2(xero_tenant_id, if_modified_since, where, order, page)
+ return response
+rescue XeroRuby::ApiError => e
+ puts "Exception when calling get_leave_applications_v2: #{e}"
+end
+
+
+
+