Skip to content

Commit

Permalink
Merge pull request #311 from tungleduyxyz/issue_88_validate_catalog
Browse files Browse the repository at this point in the history
Issue 88 Add Validate catalog API
  • Loading branch information
reshmabidikar authored Apr 17, 2024
2 parents be1b5a7 + 3a5da35 commit 6d75996
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion source/includes/_catalog.md
Original file line number Diff line number Diff line change
Expand Up @@ -1060,7 +1060,19 @@ List<CatalogValidationError> errors = validation.getCatalogValidationErrors();
```

```ruby
TODO
user = 'user'
reason = 'reason'
comment = 'comment'

catalog = KillBillClient::Model::Catalog

catalog_file_xml = File.read("H:/killbill/catalog.xml")

errors = catalog.validate_catalog(catalog_file_xml,
user,
reason,
comment,
options)
```

```python
Expand Down

0 comments on commit 6d75996

Please sign in to comment.