github.com/moov-io/imagecashletter@v0.10.1/client/model_return_detail_addendum_b.go (about)

     1  /*
     2   * ImageCashLetter API
     3   *
     4   * Moov Image Cash Letter (ICL) implements an HTTP API for creating, parsing, and validating ImageCashLetter files.
     5   *
     6   * API version: v1
     7   * Generated by: OpenAPI Generator (https://openapi-generator.tech)
     8   */
     9  
    10  package openapi
    11  
    12  import (
    13  	"time"
    14  )
    15  
    16  // ReturnDetailAddendumB struct for ReturnDetailAddendumB
    17  type ReturnDetailAddendumB struct {
    18  	// ReturnDetailAddendumB ID
    19  	ID string `json:"ID,omitempty"`
    20  	// PayorBankName is short name of the institution by or through which the item is payable.
    21  	PayorBankName string `json:"payorBankName,omitempty"`
    22  	// AuxiliaryOnUs identifies a code used on commercial checks at the discretion of the payor bank.
    23  	AuxiliaryOnUs string `json:"auxiliaryOnUs,omitempty"`
    24  	// PayorBankSequenceNumber is a number that identifies the item at the payor bank.
    25  	PayorBankSequenceNumber string `json:"payorBankSequenceNumber,omitempty"`
    26  	// PayorBankBusinessDate is the year, month, and day the payor bank processed the Return Record.
    27  	PayorBankBusinessDate time.Time `json:"payorBankBusinessDate,omitempty"`
    28  	// PayorAccountName is the account name from payor bank records.
    29  	PayorAccountName string `json:"payorAccountName,omitempty"`
    30  }