github.com/moov-io/imagecashletter@v0.10.1/client/model_routing_number_summary.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  // RoutingNumberSummary struct for RoutingNumberSummary
    13  type RoutingNumberSummary struct {
    14  	// RoutingNumberSummary ID
    15  	ID string `json:"ID,omitempty"`
    16  	// CashLetterRoutingNumber is a number that identifies a given payor bank within a cash letter containing one or more payor banks.
    17  	CashLetterRoutingNumber string `json:"cashLetterRoutingNumber"`
    18  	// RoutingNumberTotalAmount is the total amount for all Check Records associated with the payor bank routing number designated in the Routing Number within the Cash Letter.
    19  	RoutingNumberTotalAmount int32 `json:"routingNumberTotalAmount,omitempty"`
    20  	// RoutingNumberItemCount is the the total number of all Check Records associated with the payor bank routing number designated in the Routing Number within the Cash Letter.
    21  	RoutingNumberItemCount int32 `json:"routingNumberItemCount,omitempty"`
    22  	// UserField identifies a field used at the discretion of users of the standard.
    23  	UserField string `json:"userField,omitempty"`
    24  }