Skip to content

Commit

Permalink
openapi: fix field name in fileHeader schema (#310)
Browse files Browse the repository at this point in the history
  • Loading branch information
atonks2 authored Jul 31, 2023
1 parent 78dbf4b commit a3b9f91
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion client/api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5919,7 +5919,7 @@ components:
- immediateOrigin
- resendIndicator
- standardLevel
- testFileIndicator
- testIndicator
ICLFileControl:
example:
cashLetterCount: 1
Expand Down
2 changes: 1 addition & 1 deletion client/docs/IclFileHeader.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**ID** | **string** | FileHeader ID | [optional]
**StandardLevel** | **string** | StandardLevel identifies the standard level of the file. * `03` - DSTU X9.37-2003 * `30` - X9.100-187-2008 * `35` - X9.100-187-2013 and X9.100-187-2016 |
**TestIndicator** | **string** | TestIndicator identifies whether the file is a test or production file. * `T` - Test File * `P` - Production File | [optional]
**TestIndicator** | **string** | TestIndicator identifies whether the file is a test or production file. * `T` - Test File * `P` - Production File |
**ImmediateDestination** | **string** | ImmediateDestination is the routing and transit number of the Federal Reserve Bank (FRB) or receiver to which the file is being sent. |
**ImmediateOrigin** | **string** | ImmediateOrigin is the routing and transit number of the Federal Reserve Bank (FRB) or originator from which the file is being sent. |
**FileCreationDate** | [**time.Time**](time.Time.md) | FileCreationDate is the date the immediate origin institution creates the file. |
Expand Down
2 changes: 1 addition & 1 deletion client/model_icl_file_header.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ type IclFileHeader struct {
// StandardLevel identifies the standard level of the file. * `03` - DSTU X9.37-2003 * `30` - X9.100-187-2008 * `35` - X9.100-187-2013 and X9.100-187-2016
StandardLevel string `json:"standardLevel"`
// TestIndicator identifies whether the file is a test or production file. * `T` - Test File * `P` - Production File
TestIndicator string `json:"testIndicator,omitempty"`
TestIndicator string `json:"testIndicator"`
// ImmediateDestination is the routing and transit number of the Federal Reserve Bank (FRB) or receiver to which the file is being sent.
ImmediateDestination string `json:"immediateDestination"`
// ImmediateOrigin is the routing and transit number of the Federal Reserve Bank (FRB) or originator from which the file is being sent.
Expand Down
2 changes: 1 addition & 1 deletion openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,7 @@ components:
example: '1'
required:
- standardLevel
- testFileIndicator
- testIndicator
- resendIndicator
- immediateDestination
- immediateOrigin
Expand Down

0 comments on commit a3b9f91

Please sign in to comment.