Skip to content

Commit

Permalink
Fix Misc. errors throughout project that prevents Jenkins build (#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
lbadenhop authored Feb 1, 2025
1 parent 878f188 commit b84b302
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Response format for the Create Case method.
| product | [Product](#product) | no | Product for which this case was created. |
| environment | [Environment](/docs/shared_services/supportapi/formats/environment) | no | Environment for which this case is created. |
| notes | [CaseNote](#casenote) (array) | yes | List of case notes automatically attached to this case on case creation. |
| impact | [Impact](#impact) | no | Impact level. |
| impact | [Impact](/docs/shared_services/supportapi/formats/impact) | no | Impact level. |
| urgency | [Urgency](/docs/shared_services/supportapi/formats/urgency) | no | Urgency level. |
| type | [CaseType](/docs/shared_services/supportapi/formats/case_type) | no | The type of this case. |
| description | string | no | Detailed description of this case. |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Response format for the Get Products method.
| Property Name | Data Type | Optional | Description |
|------------------|---------------------------------------|----------|-------------|
| id | string | no | Identifier of this product for the purposes of Axway Support case management. |
| name | string | no | The name of the product.
| name | string | no | The name of the product. |
| versions | [ProductVersion](#productversion) (array) | no | Supported versions of the product. |
| operatingSystems | [ProductOs](#productos) (array) | no | Supported host operating systems for the product. |

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Response format for the List Cases method.

| Property Name | Data Type | Optional | Description |
|---------------|-----------------------|----------|-------------|
| totalCount | integer | yes | The total count of cases matching the specified filter criteria. This does not reflect the length of the array of cases provided in the response. **Format**: `int32`. **Minimum**: 0.
| totalCount | integer | yes | The total count of cases matching the specified filter criteria. This does not reflect the length of the array of cases provided in the response. **Format**: `int32`. **Minimum**: 0. |
| limit | integer | no | The limit used to restrict the number of cases in the response. **Format**: int32. **Minimum**: 0. **Maximum**: 20. |
| offset | integer | no | Numeric offset of the first element in the provided array of cases. **Format**: int32. **Minimum**: 0. |
| cases | [Case](#case) (array) | no | Cases matching the specified filter criteria. |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Add a note to an existing Axway Support case.
Add Note requests come in two forms: [simple](#add-note-simple) and [full](#add-note-full).
Simple requests allow you to send just the note information. Full requests allow you to attach files.

### Add Note - Simple
### Add Note Simple

Send the note information directly as the HTTP entity-body.

Expand All @@ -39,7 +39,7 @@ Send the note information directly as the HTTP entity-body.
}
```

### Add Note - Full
### Add Note Full

Allows for optionally attaching files to the case note.

Expand Down

0 comments on commit b84b302

Please sign in to comment.