docs/OCRApi.md in budgea_client-1.4.4 vs docs/OCRApi.md in budgea_client-2.0.0

- old
+ new

@@ -27,15 +27,15 @@ #config.api_key_prefix['Authorization'] = 'Bearer' end api_instance = BudgeaClient::OCRApi.new -file = File.new("/path/to/file.txt") # File | File of the document +file = File.new('/path/to/file.txt') # File | File of the document opts = { id_transaction: 56, # Integer | Transaction used to help OCR to find data - name: "name_example" # String | Name of the document + name: 'name_example' # String | Name of the document } begin #Post an image with OCR api_instance.ocr_post(file, opts) @@ -86,16 +86,16 @@ #config.api_key_prefix['Authorization'] = 'Bearer' end api_instance = BudgeaClient::OCRApi.new -id_user = "id_user_example" # String | Hint: you can use 'me' or 'all' +id_user = 'id_user_example' # String | Hint: you can use 'me' or 'all' -file = File.new("/path/to/file.txt") # File | File of the document +file = File.new('/path/to/file.txt') # File | File of the document opts = { id_transaction: 56, # Integer | Transaction used to help OCR to find data - name: "name_example" # String | Name of the document + name: 'name_example' # String | Name of the document } begin #Post an image with OCR api_instance.users_id_user_ocr_post(id_user, file, opts)