client

package
v0.8.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 25, 2024 License: Apache-2.0 Imports: 20 Imported by: 0

README

Go API client for client

Moov Metro2 (Automated Clearing House) implements an HTTP API for creating, parsing and validating Metro2 files. Metro2 is an open-source consumer credit history report for credit report file creation and validation.

Overview

This API client was generated by the OpenAPI Generator project. By using the OpenAPI-spec from a remote server, you can easily generate an API client.

  • API version: v1
  • Package version: 1.0.0
  • Build package: org.openapitools.codegen.languages.GoClientCodegen For more information, please visit https://github.com/moov-io/metro2

Installation

Install the following dependencies:

go get github.com/stretchr/testify/assert
go get golang.org/x/net/context

Put the package under your project folder and add the following in import:

import client "github.com/moov-io/metro2"

To use a proxy, set the environment variable HTTP_PROXY:

os.Setenv("HTTP_PROXY", "http://proxy_name:proxy_port")

Configuration of Server URL

Default configuration comes with Servers field that contains server objects as defined in the OpenAPI specification.

Select Server Configuration

For using other server than the one defined on index 0 set context value sw.ContextServerIndex of type int.

ctx := context.WithValue(context.Background(), client.ContextServerIndex, 1)
Templated Server URL

Templated server URL is formatted using default variables from configuration or from context value sw.ContextServerVariables of type map[string]string.

ctx := context.WithValue(context.Background(), client.ContextServerVariables, map[string]string{
	"basePath": "v2",
})

Note, enum values are always validated and all unused variables are silently ignored.

URLs Configuration per Operation

Each operation can use different server URL defined using OperationServers map in the Configuration. An operation is uniquely identified by "{classname}Service.{nickname}" string. Similar rules for overriding default operation server index and variables applies by using sw.ContextOperationServerIndices and sw.ContextOperationServerVariables context maps.

ctx := context.WithValue(context.Background(), client.ContextOperationServerIndices, map[string]int{
	"{classname}Service.{nickname}": 2,
})
ctx = context.WithValue(context.Background(), client.ContextOperationServerVariables, map[string]map[string]string{
	"{classname}Service.{nickname}": {
		"port": "8443",
	},
})

Documentation for API Endpoints

All URIs are relative to http://localhost:8080

Class Method HTTP request Description
Metro2FilesApi Convert Post /convert Convert metro2 file
Metro2FilesApi Health Get /health health metro2 service
Metro2FilesApi Print Post /print Print metro2 file with specific format
Metro2FilesApi Validator Post /validator Validate metro2 file

Documentation For Models

Documentation For Authorization

Endpoints do not require authorization.

Documentation for Utility Methods

Due to the fact that model structure members are all pointers, this package contains a number of utility functions to easily obtain pointers to values of basic types. Each of these functions takes a value of the given basic type and returns a pointer to it:

  • PtrBool
  • PtrInt
  • PtrInt32
  • PtrInt64
  • PtrFloat
  • PtrFloat32
  • PtrFloat64
  • PtrString
  • PtrTime

Author

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	// ContextServerIndex uses a server configuration from the index.
	ContextServerIndex = contextKey("serverIndex")

	// ContextOperationServerIndices uses a server configuration from the index mapping.
	ContextOperationServerIndices = contextKey("serverOperationIndices")

	// ContextServerVariables overrides a server configuration variables.
	ContextServerVariables = contextKey("serverVariables")

	// ContextOperationServerVariables overrides a server configuration variables using operation specific values.
	ContextOperationServerVariables = contextKey("serverOperationVariables")
)

Functions

func CacheExpires

func CacheExpires(r *http.Response) time.Time

CacheExpires helper function to determine remaining time before repeating a request.

func IsNil added in v0.6.0

func IsNil(i interface{}) bool

IsNil checks if an input is nil

func PtrBool added in v0.6.0

func PtrBool(v bool) *bool

PtrBool is a helper routine that returns a pointer to given boolean value.

func PtrFloat32 added in v0.6.0

func PtrFloat32(v float32) *float32

PtrFloat32 is a helper routine that returns a pointer to given float value.

func PtrFloat64 added in v0.6.0

func PtrFloat64(v float64) *float64

PtrFloat64 is a helper routine that returns a pointer to given float value.

func PtrInt added in v0.6.0

func PtrInt(v int) *int

PtrInt is a helper routine that returns a pointer to given integer value.

func PtrInt32 added in v0.6.0

func PtrInt32(v int32) *int32

PtrInt32 is a helper routine that returns a pointer to given integer value.

func PtrInt64 added in v0.6.0

func PtrInt64(v int64) *int64

PtrInt64 is a helper routine that returns a pointer to given integer value.

func PtrString added in v0.6.0

func PtrString(v string) *string

PtrString is a helper routine that returns a pointer to given string value.

func PtrTime added in v0.6.0

func PtrTime(v time.Time) *time.Time

PtrTime is helper routine that returns a pointer to given Time value.

Types

type APIClient

type APIClient struct {
	Metro2FilesApi *Metro2FilesApiService
	// contains filtered or unexported fields
}

APIClient manages communication with the METRO2 API API vv1 In most cases there should be only one, shared, APIClient.

func NewAPIClient

func NewAPIClient(cfg *Configuration) *APIClient

NewAPIClient creates a new API client. Requires a userAgent string describing your application. optionally a custom http.Client to allow for advanced features such as caching.

func (*APIClient) GetConfig

func (c *APIClient) GetConfig() *Configuration

Allow modification of underlying config for alternate implementations and testing Caution: modifying the configuration while live can cause data races and potentially unwanted behavior

type APIKey

type APIKey struct {
	Key    string
	Prefix string
}

APIKey provides API key based authentication to a request passed via context using ContextAPIKey

type APIResponse

type APIResponse struct {
	*http.Response `json:"-"`
	Message        string `json:"message,omitempty"`
	// Operation is the name of the OpenAPI operation.
	Operation string `json:"operation,omitempty"`
	// RequestURL is the request URL. This value is always available, even if the
	// embedded *http.Response is nil.
	RequestURL string `json:"url,omitempty"`
	// Method is the HTTP method used for the request.  This value is always
	// available, even if the embedded *http.Response is nil.
	Method string `json:"method,omitempty"`
	// Payload holds the contents of the response body (which may be nil or empty).
	// This is provided here as the raw response.Body() reader will have already
	// been drained.
	Payload []byte `json:"-"`
}

APIResponse stores the API response returned by the server.

func NewAPIResponse

func NewAPIResponse(r *http.Response) *APIResponse

NewAPIResponse returns a new APIResponse object.

func NewAPIResponseWithError

func NewAPIResponseWithError(errorMessage string) *APIResponse

NewAPIResponseWithError returns a new APIResponse object with the provided error message.

type ApiConvertRequest added in v0.6.0

type ApiConvertRequest struct {
	ApiService *Metro2FilesApiService
	// contains filtered or unexported fields
}

func (ApiConvertRequest) Execute added in v0.6.0

func (r ApiConvertRequest) Execute() (*os.File, *http.Response, error)

func (ApiConvertRequest) File added in v0.6.0

metro2 file to upload

func (ApiConvertRequest) Format added in v0.6.0

func (r ApiConvertRequest) Format(format string) ApiConvertRequest

print metro2 file type

func (ApiConvertRequest) Format2 added in v0.6.0

func (r ApiConvertRequest) Format2(format2 string) ApiConvertRequest

format of metro file

func (ApiConvertRequest) Generate added in v0.6.0

func (r ApiConvertRequest) Generate(generate bool) ApiConvertRequest

generate new trailer record

func (ApiConvertRequest) Newline added in v0.6.0

func (r ApiConvertRequest) Newline(newline bool) ApiConvertRequest

has new line

func (ApiConvertRequest) Type_ added in v0.6.0

metro file type

type ApiHealthRequest added in v0.6.0

type ApiHealthRequest struct {
	ApiService *Metro2FilesApiService
	// contains filtered or unexported fields
}

func (ApiHealthRequest) Execute added in v0.6.0

func (r ApiHealthRequest) Execute() (string, *http.Response, error)

type ApiPrintRequest added in v0.6.0

type ApiPrintRequest struct {
	ApiService *Metro2FilesApiService
	// contains filtered or unexported fields
}

func (ApiPrintRequest) Execute added in v0.6.0

func (r ApiPrintRequest) Execute() (string, *http.Response, error)

func (ApiPrintRequest) File added in v0.6.0

func (r ApiPrintRequest) File(file *os.File) ApiPrintRequest

metro2 file to upload

func (ApiPrintRequest) Format added in v0.6.0

func (r ApiPrintRequest) Format(format string) ApiPrintRequest

print metro2 file type

func (ApiPrintRequest) Format2 added in v0.6.0

func (r ApiPrintRequest) Format2(format2 string) ApiPrintRequest

print metro2 file type

type ApiValidatorRequest added in v0.6.0

type ApiValidatorRequest struct {
	ApiService *Metro2FilesApiService
	// contains filtered or unexported fields
}

func (ApiValidatorRequest) Execute added in v0.6.0

func (r ApiValidatorRequest) Execute() (string, *http.Response, error)

func (ApiValidatorRequest) File added in v0.6.0

metro2 file to upload

type BaseSegment

type BaseSegment struct {
	BlockDescriptorWord           *int32     `json:"blockDescriptorWord,omitempty"`
	RecordDescriptorWord          int32      `json:"recordDescriptorWord"`
	TimeStamp                     *time.Time `json:"timeStamp,omitempty"`
	IdentificationNumber          string     `json:"identificationNumber"`
	CycleIdentifier               *string    `json:"cycleIdentifier,omitempty"`
	ConsumerAccountNumber         string     `json:"consumerAccountNumber"`
	PortfolioType                 *string    `json:"portfolioType,omitempty"`
	AccountType                   string     `json:"accountType"`
	DateOpened                    *time.Time `json:"dateOpened,omitempty"`
	CreditLimit                   *int32     `json:"creditLimit,omitempty"`
	HighestCredit                 int32      `json:"highestCredit"`
	TermsDuration                 string     `json:"termsDuration"`
	TermsFrequency                *string    `json:"termsFrequency,omitempty"`
	ScheduledMonthlyPaymentAmount *int32     `json:"scheduledMonthlyPaymentAmount,omitempty"`
	ActualPaymentAmount           *int32     `json:"actualPaymentAmount,omitempty"`
	AccountStatus                 string     `json:"accountStatus"`
	PaymentRating                 *string    `json:"paymentRating,omitempty"`
	PaymentHistoryProfile         string     `json:"paymentHistoryProfile"`
	SpecialComment                *string    `json:"specialComment,omitempty"`
	ComplianceConditionCode       *string    `json:"complianceConditionCode,omitempty"`
	CurrentBalance                int32      `json:"currentBalance"`
	AmountPastDue                 *int32     `json:"amountPastDue,omitempty"`
	OriginalChargeOffAmount       *int32     `json:"originalChargeOffAmount,omitempty"`
	DateAccountInformation        time.Time  `json:"dateAccountInformation"`
	DateFirstDelinquency          *time.Time `json:"dateFirstDelinquency,omitempty"`
	DateClosed                    *time.Time `json:"dateClosed,omitempty"`
	DateLastPayment               *time.Time `json:"dateLastPayment,omitempty"`
	InterestTypeIndicator         *string    `json:"interestTypeIndicator,omitempty"`
	Surname                       string     `json:"surname"`
	FirstName                     string     `json:"firstName"`
	MiddleName                    *string    `json:"middleName,omitempty"`
	GenerationCode                *string    `json:"generationCode,omitempty"`
	SocialSecurityNumber          *int32     `json:"socialSecurityNumber,omitempty"`
	DateBirth                     *time.Time `json:"dateBirth,omitempty"`
	TelephoneNumber               *int64     `json:"telephoneNumber,omitempty"`
	EcoaCode                      string     `json:"ecoaCode"`
	ConsumerInformationIndicator  *string    `json:"consumerInformationIndicator,omitempty"`
	CountryCode                   *string    `json:"countryCode,omitempty"`
	FirstLineAddress              string     `json:"firstLineAddress"`
	SecondLineAddress             *string    `json:"secondLineAddress,omitempty"`
	City                          *string    `json:"city,omitempty"`
	State                         string     `json:"state"`
	ZipCode                       string     `json:"zipCode"`
	AddressIndicator              *string    `json:"addressIndicator,omitempty"`
	ResidenceCode                 *string    `json:"residenceCode,omitempty"`
}

BaseSegment struct for BaseSegment

func NewBaseSegment added in v0.6.0

func NewBaseSegment(recordDescriptorWord int32, identificationNumber string, consumerAccountNumber string, accountType string, highestCredit int32, termsDuration string, accountStatus string, paymentHistoryProfile string, currentBalance int32, dateAccountInformation time.Time, surname string, firstName string, ecoaCode string, firstLineAddress string, state string, zipCode string) *BaseSegment

NewBaseSegment instantiates a new BaseSegment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewBaseSegmentWithDefaults added in v0.6.0

func NewBaseSegmentWithDefaults() *BaseSegment

NewBaseSegmentWithDefaults instantiates a new BaseSegment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*BaseSegment) GetAccountStatus added in v0.6.0

func (o *BaseSegment) GetAccountStatus() string

GetAccountStatus returns the AccountStatus field value

func (*BaseSegment) GetAccountStatusOk added in v0.6.0

func (o *BaseSegment) GetAccountStatusOk() (*string, bool)

GetAccountStatusOk returns a tuple with the AccountStatus field value and a boolean to check if the value has been set.

func (*BaseSegment) GetAccountType added in v0.6.0

func (o *BaseSegment) GetAccountType() string

GetAccountType returns the AccountType field value

func (*BaseSegment) GetAccountTypeOk added in v0.6.0

func (o *BaseSegment) GetAccountTypeOk() (*string, bool)

GetAccountTypeOk returns a tuple with the AccountType field value and a boolean to check if the value has been set.

func (*BaseSegment) GetActualPaymentAmount added in v0.6.0

func (o *BaseSegment) GetActualPaymentAmount() int32

GetActualPaymentAmount returns the ActualPaymentAmount field value if set, zero value otherwise.

func (*BaseSegment) GetActualPaymentAmountOk added in v0.6.0

func (o *BaseSegment) GetActualPaymentAmountOk() (*int32, bool)

GetActualPaymentAmountOk returns a tuple with the ActualPaymentAmount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseSegment) GetAddressIndicator added in v0.6.0

func (o *BaseSegment) GetAddressIndicator() string

GetAddressIndicator returns the AddressIndicator field value if set, zero value otherwise.

func (*BaseSegment) GetAddressIndicatorOk added in v0.6.0

func (o *BaseSegment) GetAddressIndicatorOk() (*string, bool)

GetAddressIndicatorOk returns a tuple with the AddressIndicator field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseSegment) GetAmountPastDue added in v0.6.0

func (o *BaseSegment) GetAmountPastDue() int32

GetAmountPastDue returns the AmountPastDue field value if set, zero value otherwise.

func (*BaseSegment) GetAmountPastDueOk added in v0.6.0

func (o *BaseSegment) GetAmountPastDueOk() (*int32, bool)

GetAmountPastDueOk returns a tuple with the AmountPastDue field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseSegment) GetBlockDescriptorWord added in v0.6.0

func (o *BaseSegment) GetBlockDescriptorWord() int32

GetBlockDescriptorWord returns the BlockDescriptorWord field value if set, zero value otherwise.

func (*BaseSegment) GetBlockDescriptorWordOk added in v0.6.0

func (o *BaseSegment) GetBlockDescriptorWordOk() (*int32, bool)

GetBlockDescriptorWordOk returns a tuple with the BlockDescriptorWord field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseSegment) GetCity added in v0.6.0

func (o *BaseSegment) GetCity() string

GetCity returns the City field value if set, zero value otherwise.

func (*BaseSegment) GetCityOk added in v0.6.0

func (o *BaseSegment) GetCityOk() (*string, bool)

GetCityOk returns a tuple with the City field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseSegment) GetComplianceConditionCode added in v0.6.0

func (o *BaseSegment) GetComplianceConditionCode() string

GetComplianceConditionCode returns the ComplianceConditionCode field value if set, zero value otherwise.

func (*BaseSegment) GetComplianceConditionCodeOk added in v0.6.0

func (o *BaseSegment) GetComplianceConditionCodeOk() (*string, bool)

GetComplianceConditionCodeOk returns a tuple with the ComplianceConditionCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseSegment) GetConsumerAccountNumber added in v0.6.0

func (o *BaseSegment) GetConsumerAccountNumber() string

GetConsumerAccountNumber returns the ConsumerAccountNumber field value

func (*BaseSegment) GetConsumerAccountNumberOk added in v0.6.0

func (o *BaseSegment) GetConsumerAccountNumberOk() (*string, bool)

GetConsumerAccountNumberOk returns a tuple with the ConsumerAccountNumber field value and a boolean to check if the value has been set.

func (*BaseSegment) GetConsumerInformationIndicator added in v0.6.0

func (o *BaseSegment) GetConsumerInformationIndicator() string

GetConsumerInformationIndicator returns the ConsumerInformationIndicator field value if set, zero value otherwise.

func (*BaseSegment) GetConsumerInformationIndicatorOk added in v0.6.0

func (o *BaseSegment) GetConsumerInformationIndicatorOk() (*string, bool)

GetConsumerInformationIndicatorOk returns a tuple with the ConsumerInformationIndicator field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseSegment) GetCountryCode added in v0.6.0

func (o *BaseSegment) GetCountryCode() string

GetCountryCode returns the CountryCode field value if set, zero value otherwise.

func (*BaseSegment) GetCountryCodeOk added in v0.6.0

func (o *BaseSegment) GetCountryCodeOk() (*string, bool)

GetCountryCodeOk returns a tuple with the CountryCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseSegment) GetCreditLimit added in v0.6.0

func (o *BaseSegment) GetCreditLimit() int32

GetCreditLimit returns the CreditLimit field value if set, zero value otherwise.

func (*BaseSegment) GetCreditLimitOk added in v0.6.0

func (o *BaseSegment) GetCreditLimitOk() (*int32, bool)

GetCreditLimitOk returns a tuple with the CreditLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseSegment) GetCurrentBalance added in v0.6.0

func (o *BaseSegment) GetCurrentBalance() int32

GetCurrentBalance returns the CurrentBalance field value

func (*BaseSegment) GetCurrentBalanceOk added in v0.6.0

func (o *BaseSegment) GetCurrentBalanceOk() (*int32, bool)

GetCurrentBalanceOk returns a tuple with the CurrentBalance field value and a boolean to check if the value has been set.

func (*BaseSegment) GetCycleIdentifier added in v0.6.0

func (o *BaseSegment) GetCycleIdentifier() string

GetCycleIdentifier returns the CycleIdentifier field value if set, zero value otherwise.

func (*BaseSegment) GetCycleIdentifierOk added in v0.6.0

func (o *BaseSegment) GetCycleIdentifierOk() (*string, bool)

GetCycleIdentifierOk returns a tuple with the CycleIdentifier field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseSegment) GetDateAccountInformation added in v0.6.0

func (o *BaseSegment) GetDateAccountInformation() time.Time

GetDateAccountInformation returns the DateAccountInformation field value

func (*BaseSegment) GetDateAccountInformationOk added in v0.6.0

func (o *BaseSegment) GetDateAccountInformationOk() (*time.Time, bool)

GetDateAccountInformationOk returns a tuple with the DateAccountInformation field value and a boolean to check if the value has been set.

func (*BaseSegment) GetDateBirth added in v0.6.0

func (o *BaseSegment) GetDateBirth() time.Time

GetDateBirth returns the DateBirth field value if set, zero value otherwise.

func (*BaseSegment) GetDateBirthOk added in v0.6.0

func (o *BaseSegment) GetDateBirthOk() (*time.Time, bool)

GetDateBirthOk returns a tuple with the DateBirth field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseSegment) GetDateClosed added in v0.6.0

func (o *BaseSegment) GetDateClosed() time.Time

GetDateClosed returns the DateClosed field value if set, zero value otherwise.

func (*BaseSegment) GetDateClosedOk added in v0.6.0

func (o *BaseSegment) GetDateClosedOk() (*time.Time, bool)

GetDateClosedOk returns a tuple with the DateClosed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseSegment) GetDateFirstDelinquency added in v0.6.0

func (o *BaseSegment) GetDateFirstDelinquency() time.Time

GetDateFirstDelinquency returns the DateFirstDelinquency field value if set, zero value otherwise.

func (*BaseSegment) GetDateFirstDelinquencyOk added in v0.6.0

func (o *BaseSegment) GetDateFirstDelinquencyOk() (*time.Time, bool)

GetDateFirstDelinquencyOk returns a tuple with the DateFirstDelinquency field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseSegment) GetDateLastPayment added in v0.6.0

func (o *BaseSegment) GetDateLastPayment() time.Time

GetDateLastPayment returns the DateLastPayment field value if set, zero value otherwise.

func (*BaseSegment) GetDateLastPaymentOk added in v0.6.0

func (o *BaseSegment) GetDateLastPaymentOk() (*time.Time, bool)

GetDateLastPaymentOk returns a tuple with the DateLastPayment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseSegment) GetDateOpened added in v0.6.0

func (o *BaseSegment) GetDateOpened() time.Time

GetDateOpened returns the DateOpened field value if set, zero value otherwise.

func (*BaseSegment) GetDateOpenedOk added in v0.6.0

func (o *BaseSegment) GetDateOpenedOk() (*time.Time, bool)

GetDateOpenedOk returns a tuple with the DateOpened field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseSegment) GetEcoaCode added in v0.6.0

func (o *BaseSegment) GetEcoaCode() string

GetEcoaCode returns the EcoaCode field value

func (*BaseSegment) GetEcoaCodeOk added in v0.6.0

func (o *BaseSegment) GetEcoaCodeOk() (*string, bool)

GetEcoaCodeOk returns a tuple with the EcoaCode field value and a boolean to check if the value has been set.

func (*BaseSegment) GetFirstLineAddress added in v0.6.0

func (o *BaseSegment) GetFirstLineAddress() string

GetFirstLineAddress returns the FirstLineAddress field value

func (*BaseSegment) GetFirstLineAddressOk added in v0.6.0

func (o *BaseSegment) GetFirstLineAddressOk() (*string, bool)

GetFirstLineAddressOk returns a tuple with the FirstLineAddress field value and a boolean to check if the value has been set.

func (*BaseSegment) GetFirstName added in v0.6.0

func (o *BaseSegment) GetFirstName() string

GetFirstName returns the FirstName field value

func (*BaseSegment) GetFirstNameOk added in v0.6.0

func (o *BaseSegment) GetFirstNameOk() (*string, bool)

GetFirstNameOk returns a tuple with the FirstName field value and a boolean to check if the value has been set.

func (*BaseSegment) GetGenerationCode added in v0.6.0

func (o *BaseSegment) GetGenerationCode() string

GetGenerationCode returns the GenerationCode field value if set, zero value otherwise.

func (*BaseSegment) GetGenerationCodeOk added in v0.6.0

func (o *BaseSegment) GetGenerationCodeOk() (*string, bool)

GetGenerationCodeOk returns a tuple with the GenerationCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseSegment) GetHighestCredit added in v0.6.0

func (o *BaseSegment) GetHighestCredit() int32

GetHighestCredit returns the HighestCredit field value

func (*BaseSegment) GetHighestCreditOk added in v0.6.0

func (o *BaseSegment) GetHighestCreditOk() (*int32, bool)

GetHighestCreditOk returns a tuple with the HighestCredit field value and a boolean to check if the value has been set.

func (*BaseSegment) GetIdentificationNumber added in v0.6.0

func (o *BaseSegment) GetIdentificationNumber() string

GetIdentificationNumber returns the IdentificationNumber field value

func (*BaseSegment) GetIdentificationNumberOk added in v0.6.0

func (o *BaseSegment) GetIdentificationNumberOk() (*string, bool)

GetIdentificationNumberOk returns a tuple with the IdentificationNumber field value and a boolean to check if the value has been set.

func (*BaseSegment) GetInterestTypeIndicator added in v0.6.0

func (o *BaseSegment) GetInterestTypeIndicator() string

GetInterestTypeIndicator returns the InterestTypeIndicator field value if set, zero value otherwise.

func (*BaseSegment) GetInterestTypeIndicatorOk added in v0.6.0

func (o *BaseSegment) GetInterestTypeIndicatorOk() (*string, bool)

GetInterestTypeIndicatorOk returns a tuple with the InterestTypeIndicator field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseSegment) GetMiddleName added in v0.6.0

func (o *BaseSegment) GetMiddleName() string

GetMiddleName returns the MiddleName field value if set, zero value otherwise.

func (*BaseSegment) GetMiddleNameOk added in v0.6.0

func (o *BaseSegment) GetMiddleNameOk() (*string, bool)

GetMiddleNameOk returns a tuple with the MiddleName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseSegment) GetOriginalChargeOffAmount added in v0.6.0

func (o *BaseSegment) GetOriginalChargeOffAmount() int32

GetOriginalChargeOffAmount returns the OriginalChargeOffAmount field value if set, zero value otherwise.

func (*BaseSegment) GetOriginalChargeOffAmountOk added in v0.6.0

func (o *BaseSegment) GetOriginalChargeOffAmountOk() (*int32, bool)

GetOriginalChargeOffAmountOk returns a tuple with the OriginalChargeOffAmount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseSegment) GetPaymentHistoryProfile added in v0.6.0

func (o *BaseSegment) GetPaymentHistoryProfile() string

GetPaymentHistoryProfile returns the PaymentHistoryProfile field value

func (*BaseSegment) GetPaymentHistoryProfileOk added in v0.6.0

func (o *BaseSegment) GetPaymentHistoryProfileOk() (*string, bool)

GetPaymentHistoryProfileOk returns a tuple with the PaymentHistoryProfile field value and a boolean to check if the value has been set.

func (*BaseSegment) GetPaymentRating added in v0.6.0

func (o *BaseSegment) GetPaymentRating() string

GetPaymentRating returns the PaymentRating field value if set, zero value otherwise.

func (*BaseSegment) GetPaymentRatingOk added in v0.6.0

func (o *BaseSegment) GetPaymentRatingOk() (*string, bool)

GetPaymentRatingOk returns a tuple with the PaymentRating field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseSegment) GetPortfolioType added in v0.6.0

func (o *BaseSegment) GetPortfolioType() string

GetPortfolioType returns the PortfolioType field value if set, zero value otherwise.

func (*BaseSegment) GetPortfolioTypeOk added in v0.6.0

func (o *BaseSegment) GetPortfolioTypeOk() (*string, bool)

GetPortfolioTypeOk returns a tuple with the PortfolioType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseSegment) GetRecordDescriptorWord added in v0.6.0

func (o *BaseSegment) GetRecordDescriptorWord() int32

GetRecordDescriptorWord returns the RecordDescriptorWord field value

func (*BaseSegment) GetRecordDescriptorWordOk added in v0.6.0

func (o *BaseSegment) GetRecordDescriptorWordOk() (*int32, bool)

GetRecordDescriptorWordOk returns a tuple with the RecordDescriptorWord field value and a boolean to check if the value has been set.

func (*BaseSegment) GetResidenceCode added in v0.6.0

func (o *BaseSegment) GetResidenceCode() string

GetResidenceCode returns the ResidenceCode field value if set, zero value otherwise.

func (*BaseSegment) GetResidenceCodeOk added in v0.6.0

func (o *BaseSegment) GetResidenceCodeOk() (*string, bool)

GetResidenceCodeOk returns a tuple with the ResidenceCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseSegment) GetScheduledMonthlyPaymentAmount added in v0.6.0

func (o *BaseSegment) GetScheduledMonthlyPaymentAmount() int32

GetScheduledMonthlyPaymentAmount returns the ScheduledMonthlyPaymentAmount field value if set, zero value otherwise.

func (*BaseSegment) GetScheduledMonthlyPaymentAmountOk added in v0.6.0

func (o *BaseSegment) GetScheduledMonthlyPaymentAmountOk() (*int32, bool)

GetScheduledMonthlyPaymentAmountOk returns a tuple with the ScheduledMonthlyPaymentAmount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseSegment) GetSecondLineAddress added in v0.6.0

func (o *BaseSegment) GetSecondLineAddress() string

GetSecondLineAddress returns the SecondLineAddress field value if set, zero value otherwise.

func (*BaseSegment) GetSecondLineAddressOk added in v0.6.0

func (o *BaseSegment) GetSecondLineAddressOk() (*string, bool)

GetSecondLineAddressOk returns a tuple with the SecondLineAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseSegment) GetSocialSecurityNumber added in v0.6.0

func (o *BaseSegment) GetSocialSecurityNumber() int32

GetSocialSecurityNumber returns the SocialSecurityNumber field value if set, zero value otherwise.

func (*BaseSegment) GetSocialSecurityNumberOk added in v0.6.0

func (o *BaseSegment) GetSocialSecurityNumberOk() (*int32, bool)

GetSocialSecurityNumberOk returns a tuple with the SocialSecurityNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseSegment) GetSpecialComment added in v0.6.0

func (o *BaseSegment) GetSpecialComment() string

GetSpecialComment returns the SpecialComment field value if set, zero value otherwise.

func (*BaseSegment) GetSpecialCommentOk added in v0.6.0

func (o *BaseSegment) GetSpecialCommentOk() (*string, bool)

GetSpecialCommentOk returns a tuple with the SpecialComment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseSegment) GetState added in v0.6.0

func (o *BaseSegment) GetState() string

GetState returns the State field value

func (*BaseSegment) GetStateOk added in v0.6.0

func (o *BaseSegment) GetStateOk() (*string, bool)

GetStateOk returns a tuple with the State field value and a boolean to check if the value has been set.

func (*BaseSegment) GetSurname added in v0.6.0

func (o *BaseSegment) GetSurname() string

GetSurname returns the Surname field value

func (*BaseSegment) GetSurnameOk added in v0.6.0

func (o *BaseSegment) GetSurnameOk() (*string, bool)

GetSurnameOk returns a tuple with the Surname field value and a boolean to check if the value has been set.

func (*BaseSegment) GetTelephoneNumber added in v0.6.0

func (o *BaseSegment) GetTelephoneNumber() int64

GetTelephoneNumber returns the TelephoneNumber field value if set, zero value otherwise.

func (*BaseSegment) GetTelephoneNumberOk added in v0.6.0

func (o *BaseSegment) GetTelephoneNumberOk() (*int64, bool)

GetTelephoneNumberOk returns a tuple with the TelephoneNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseSegment) GetTermsDuration added in v0.6.0

func (o *BaseSegment) GetTermsDuration() string

GetTermsDuration returns the TermsDuration field value

func (*BaseSegment) GetTermsDurationOk added in v0.6.0

func (o *BaseSegment) GetTermsDurationOk() (*string, bool)

GetTermsDurationOk returns a tuple with the TermsDuration field value and a boolean to check if the value has been set.

func (*BaseSegment) GetTermsFrequency added in v0.6.0

func (o *BaseSegment) GetTermsFrequency() string

GetTermsFrequency returns the TermsFrequency field value if set, zero value otherwise.

func (*BaseSegment) GetTermsFrequencyOk added in v0.6.0

func (o *BaseSegment) GetTermsFrequencyOk() (*string, bool)

GetTermsFrequencyOk returns a tuple with the TermsFrequency field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseSegment) GetTimeStamp added in v0.6.0

func (o *BaseSegment) GetTimeStamp() time.Time

GetTimeStamp returns the TimeStamp field value if set, zero value otherwise.

func (*BaseSegment) GetTimeStampOk added in v0.6.0

func (o *BaseSegment) GetTimeStampOk() (*time.Time, bool)

GetTimeStampOk returns a tuple with the TimeStamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BaseSegment) GetZipCode added in v0.6.0

func (o *BaseSegment) GetZipCode() string

GetZipCode returns the ZipCode field value

func (*BaseSegment) GetZipCodeOk added in v0.6.0

func (o *BaseSegment) GetZipCodeOk() (*string, bool)

GetZipCodeOk returns a tuple with the ZipCode field value and a boolean to check if the value has been set.

func (*BaseSegment) HasActualPaymentAmount added in v0.6.0

func (o *BaseSegment) HasActualPaymentAmount() bool

HasActualPaymentAmount returns a boolean if a field has been set.

func (*BaseSegment) HasAddressIndicator added in v0.6.0

func (o *BaseSegment) HasAddressIndicator() bool

HasAddressIndicator returns a boolean if a field has been set.

func (*BaseSegment) HasAmountPastDue added in v0.6.0

func (o *BaseSegment) HasAmountPastDue() bool

HasAmountPastDue returns a boolean if a field has been set.

func (*BaseSegment) HasBlockDescriptorWord added in v0.6.0

func (o *BaseSegment) HasBlockDescriptorWord() bool

HasBlockDescriptorWord returns a boolean if a field has been set.

func (*BaseSegment) HasCity added in v0.6.0

func (o *BaseSegment) HasCity() bool

HasCity returns a boolean if a field has been set.

func (*BaseSegment) HasComplianceConditionCode added in v0.6.0

func (o *BaseSegment) HasComplianceConditionCode() bool

HasComplianceConditionCode returns a boolean if a field has been set.

func (*BaseSegment) HasConsumerInformationIndicator added in v0.6.0

func (o *BaseSegment) HasConsumerInformationIndicator() bool

HasConsumerInformationIndicator returns a boolean if a field has been set.

func (*BaseSegment) HasCountryCode added in v0.6.0

func (o *BaseSegment) HasCountryCode() bool

HasCountryCode returns a boolean if a field has been set.

func (*BaseSegment) HasCreditLimit added in v0.6.0

func (o *BaseSegment) HasCreditLimit() bool

HasCreditLimit returns a boolean if a field has been set.

func (*BaseSegment) HasCycleIdentifier added in v0.6.0

func (o *BaseSegment) HasCycleIdentifier() bool

HasCycleIdentifier returns a boolean if a field has been set.

func (*BaseSegment) HasDateBirth added in v0.7.0

func (o *BaseSegment) HasDateBirth() bool

HasDateBirth returns a boolean if a field has been set.

func (*BaseSegment) HasDateClosed added in v0.6.0

func (o *BaseSegment) HasDateClosed() bool

HasDateClosed returns a boolean if a field has been set.

func (*BaseSegment) HasDateFirstDelinquency added in v0.6.0

func (o *BaseSegment) HasDateFirstDelinquency() bool

HasDateFirstDelinquency returns a boolean if a field has been set.

func (*BaseSegment) HasDateLastPayment added in v0.6.0

func (o *BaseSegment) HasDateLastPayment() bool

HasDateLastPayment returns a boolean if a field has been set.

func (*BaseSegment) HasDateOpened added in v0.6.0

func (o *BaseSegment) HasDateOpened() bool

HasDateOpened returns a boolean if a field has been set.

func (*BaseSegment) HasGenerationCode added in v0.6.0

func (o *BaseSegment) HasGenerationCode() bool

HasGenerationCode returns a boolean if a field has been set.

func (*BaseSegment) HasInterestTypeIndicator added in v0.6.0

func (o *BaseSegment) HasInterestTypeIndicator() bool

HasInterestTypeIndicator returns a boolean if a field has been set.

func (*BaseSegment) HasMiddleName added in v0.6.0

func (o *BaseSegment) HasMiddleName() bool

HasMiddleName returns a boolean if a field has been set.

func (*BaseSegment) HasOriginalChargeOffAmount added in v0.6.0

func (o *BaseSegment) HasOriginalChargeOffAmount() bool

HasOriginalChargeOffAmount returns a boolean if a field has been set.

func (*BaseSegment) HasPaymentRating added in v0.6.0

func (o *BaseSegment) HasPaymentRating() bool

HasPaymentRating returns a boolean if a field has been set.

func (*BaseSegment) HasPortfolioType added in v0.6.0

func (o *BaseSegment) HasPortfolioType() bool

HasPortfolioType returns a boolean if a field has been set.

func (*BaseSegment) HasResidenceCode added in v0.6.0

func (o *BaseSegment) HasResidenceCode() bool

HasResidenceCode returns a boolean if a field has been set.

func (*BaseSegment) HasScheduledMonthlyPaymentAmount added in v0.6.0

func (o *BaseSegment) HasScheduledMonthlyPaymentAmount() bool

HasScheduledMonthlyPaymentAmount returns a boolean if a field has been set.

func (*BaseSegment) HasSecondLineAddress added in v0.6.0

func (o *BaseSegment) HasSecondLineAddress() bool

HasSecondLineAddress returns a boolean if a field has been set.

func (*BaseSegment) HasSocialSecurityNumber added in v0.7.0

func (o *BaseSegment) HasSocialSecurityNumber() bool

HasSocialSecurityNumber returns a boolean if a field has been set.

func (*BaseSegment) HasSpecialComment added in v0.6.0

func (o *BaseSegment) HasSpecialComment() bool

HasSpecialComment returns a boolean if a field has been set.

func (*BaseSegment) HasTelephoneNumber added in v0.6.0

func (o *BaseSegment) HasTelephoneNumber() bool

HasTelephoneNumber returns a boolean if a field has been set.

func (*BaseSegment) HasTermsFrequency added in v0.6.0

func (o *BaseSegment) HasTermsFrequency() bool

HasTermsFrequency returns a boolean if a field has been set.

func (*BaseSegment) HasTimeStamp added in v0.6.0

func (o *BaseSegment) HasTimeStamp() bool

HasTimeStamp returns a boolean if a field has been set.

func (BaseSegment) MarshalJSON added in v0.6.0

func (o BaseSegment) MarshalJSON() ([]byte, error)

func (*BaseSegment) SetAccountStatus added in v0.6.0

func (o *BaseSegment) SetAccountStatus(v string)

SetAccountStatus sets field value

func (*BaseSegment) SetAccountType added in v0.6.0

func (o *BaseSegment) SetAccountType(v string)

SetAccountType sets field value

func (*BaseSegment) SetActualPaymentAmount added in v0.6.0

func (o *BaseSegment) SetActualPaymentAmount(v int32)

SetActualPaymentAmount gets a reference to the given int32 and assigns it to the ActualPaymentAmount field.

func (*BaseSegment) SetAddressIndicator added in v0.6.0

func (o *BaseSegment) SetAddressIndicator(v string)

SetAddressIndicator gets a reference to the given string and assigns it to the AddressIndicator field.

func (*BaseSegment) SetAmountPastDue added in v0.6.0

func (o *BaseSegment) SetAmountPastDue(v int32)

SetAmountPastDue gets a reference to the given int32 and assigns it to the AmountPastDue field.

func (*BaseSegment) SetBlockDescriptorWord added in v0.6.0

func (o *BaseSegment) SetBlockDescriptorWord(v int32)

SetBlockDescriptorWord gets a reference to the given int32 and assigns it to the BlockDescriptorWord field.

func (*BaseSegment) SetCity added in v0.6.0

func (o *BaseSegment) SetCity(v string)

SetCity gets a reference to the given string and assigns it to the City field.

func (*BaseSegment) SetComplianceConditionCode added in v0.6.0

func (o *BaseSegment) SetComplianceConditionCode(v string)

SetComplianceConditionCode gets a reference to the given string and assigns it to the ComplianceConditionCode field.

func (*BaseSegment) SetConsumerAccountNumber added in v0.6.0

func (o *BaseSegment) SetConsumerAccountNumber(v string)

SetConsumerAccountNumber sets field value

func (*BaseSegment) SetConsumerInformationIndicator added in v0.6.0

func (o *BaseSegment) SetConsumerInformationIndicator(v string)

SetConsumerInformationIndicator gets a reference to the given string and assigns it to the ConsumerInformationIndicator field.

func (*BaseSegment) SetCountryCode added in v0.6.0

func (o *BaseSegment) SetCountryCode(v string)

SetCountryCode gets a reference to the given string and assigns it to the CountryCode field.

func (*BaseSegment) SetCreditLimit added in v0.6.0

func (o *BaseSegment) SetCreditLimit(v int32)

SetCreditLimit gets a reference to the given int32 and assigns it to the CreditLimit field.

func (*BaseSegment) SetCurrentBalance added in v0.6.0

func (o *BaseSegment) SetCurrentBalance(v int32)

SetCurrentBalance sets field value

func (*BaseSegment) SetCycleIdentifier added in v0.6.0

func (o *BaseSegment) SetCycleIdentifier(v string)

SetCycleIdentifier gets a reference to the given string and assigns it to the CycleIdentifier field.

func (*BaseSegment) SetDateAccountInformation added in v0.6.0

func (o *BaseSegment) SetDateAccountInformation(v time.Time)

SetDateAccountInformation sets field value

func (*BaseSegment) SetDateBirth added in v0.6.0

func (o *BaseSegment) SetDateBirth(v time.Time)

SetDateBirth gets a reference to the given time.Time and assigns it to the DateBirth field.

func (*BaseSegment) SetDateClosed added in v0.6.0

func (o *BaseSegment) SetDateClosed(v time.Time)

SetDateClosed gets a reference to the given time.Time and assigns it to the DateClosed field.

func (*BaseSegment) SetDateFirstDelinquency added in v0.6.0

func (o *BaseSegment) SetDateFirstDelinquency(v time.Time)

SetDateFirstDelinquency gets a reference to the given time.Time and assigns it to the DateFirstDelinquency field.

func (*BaseSegment) SetDateLastPayment added in v0.6.0

func (o *BaseSegment) SetDateLastPayment(v time.Time)

SetDateLastPayment gets a reference to the given time.Time and assigns it to the DateLastPayment field.

func (*BaseSegment) SetDateOpened added in v0.6.0

func (o *BaseSegment) SetDateOpened(v time.Time)

SetDateOpened gets a reference to the given time.Time and assigns it to the DateOpened field.

func (*BaseSegment) SetEcoaCode added in v0.6.0

func (o *BaseSegment) SetEcoaCode(v string)

SetEcoaCode sets field value

func (*BaseSegment) SetFirstLineAddress added in v0.6.0

func (o *BaseSegment) SetFirstLineAddress(v string)

SetFirstLineAddress sets field value

func (*BaseSegment) SetFirstName added in v0.6.0

func (o *BaseSegment) SetFirstName(v string)

SetFirstName sets field value

func (*BaseSegment) SetGenerationCode added in v0.6.0

func (o *BaseSegment) SetGenerationCode(v string)

SetGenerationCode gets a reference to the given string and assigns it to the GenerationCode field.

func (*BaseSegment) SetHighestCredit added in v0.6.0

func (o *BaseSegment) SetHighestCredit(v int32)

SetHighestCredit sets field value

func (*BaseSegment) SetIdentificationNumber added in v0.6.0

func (o *BaseSegment) SetIdentificationNumber(v string)

SetIdentificationNumber sets field value

func (*BaseSegment) SetInterestTypeIndicator added in v0.6.0

func (o *BaseSegment) SetInterestTypeIndicator(v string)

SetInterestTypeIndicator gets a reference to the given string and assigns it to the InterestTypeIndicator field.

func (*BaseSegment) SetMiddleName added in v0.6.0

func (o *BaseSegment) SetMiddleName(v string)

SetMiddleName gets a reference to the given string and assigns it to the MiddleName field.

func (*BaseSegment) SetOriginalChargeOffAmount added in v0.6.0

func (o *BaseSegment) SetOriginalChargeOffAmount(v int32)

SetOriginalChargeOffAmount gets a reference to the given int32 and assigns it to the OriginalChargeOffAmount field.

func (*BaseSegment) SetPaymentHistoryProfile added in v0.6.0

func (o *BaseSegment) SetPaymentHistoryProfile(v string)

SetPaymentHistoryProfile sets field value

func (*BaseSegment) SetPaymentRating added in v0.6.0

func (o *BaseSegment) SetPaymentRating(v string)

SetPaymentRating gets a reference to the given string and assigns it to the PaymentRating field.

func (*BaseSegment) SetPortfolioType added in v0.6.0

func (o *BaseSegment) SetPortfolioType(v string)

SetPortfolioType gets a reference to the given string and assigns it to the PortfolioType field.

func (*BaseSegment) SetRecordDescriptorWord added in v0.6.0

func (o *BaseSegment) SetRecordDescriptorWord(v int32)

SetRecordDescriptorWord sets field value

func (*BaseSegment) SetResidenceCode added in v0.6.0

func (o *BaseSegment) SetResidenceCode(v string)

SetResidenceCode gets a reference to the given string and assigns it to the ResidenceCode field.

func (*BaseSegment) SetScheduledMonthlyPaymentAmount added in v0.6.0

func (o *BaseSegment) SetScheduledMonthlyPaymentAmount(v int32)

SetScheduledMonthlyPaymentAmount gets a reference to the given int32 and assigns it to the ScheduledMonthlyPaymentAmount field.

func (*BaseSegment) SetSecondLineAddress added in v0.6.0

func (o *BaseSegment) SetSecondLineAddress(v string)

SetSecondLineAddress gets a reference to the given string and assigns it to the SecondLineAddress field.

func (*BaseSegment) SetSocialSecurityNumber added in v0.6.0

func (o *BaseSegment) SetSocialSecurityNumber(v int32)

SetSocialSecurityNumber gets a reference to the given int32 and assigns it to the SocialSecurityNumber field.

func (*BaseSegment) SetSpecialComment added in v0.6.0

func (o *BaseSegment) SetSpecialComment(v string)

SetSpecialComment gets a reference to the given string and assigns it to the SpecialComment field.

func (*BaseSegment) SetState added in v0.6.0

func (o *BaseSegment) SetState(v string)

SetState sets field value

func (*BaseSegment) SetSurname added in v0.6.0

func (o *BaseSegment) SetSurname(v string)

SetSurname sets field value

func (*BaseSegment) SetTelephoneNumber added in v0.6.0

func (o *BaseSegment) SetTelephoneNumber(v int64)

SetTelephoneNumber gets a reference to the given int64 and assigns it to the TelephoneNumber field.

func (*BaseSegment) SetTermsDuration added in v0.6.0

func (o *BaseSegment) SetTermsDuration(v string)

SetTermsDuration sets field value

func (*BaseSegment) SetTermsFrequency added in v0.6.0

func (o *BaseSegment) SetTermsFrequency(v string)

SetTermsFrequency gets a reference to the given string and assigns it to the TermsFrequency field.

func (*BaseSegment) SetTimeStamp added in v0.6.0

func (o *BaseSegment) SetTimeStamp(v time.Time)

SetTimeStamp gets a reference to the given time.Time and assigns it to the TimeStamp field.

func (*BaseSegment) SetZipCode added in v0.6.0

func (o *BaseSegment) SetZipCode(v string)

SetZipCode sets field value

func (BaseSegment) ToMap added in v0.6.0

func (o BaseSegment) ToMap() (map[string]interface{}, error)

type BasicAuth

type BasicAuth struct {
	UserName string `json:"userName,omitempty"`
	Password string `json:"password,omitempty"`
}

BasicAuth provides basic http authentication to a request passed via context using ContextBasicAuth

type Configuration

type Configuration struct {
	Host             string            `json:"host,omitempty"`
	Scheme           string            `json:"scheme,omitempty"`
	DefaultHeader    map[string]string `json:"defaultHeader,omitempty"`
	UserAgent        string            `json:"userAgent,omitempty"`
	Debug            bool              `json:"debug,omitempty"`
	Servers          ServerConfigurations
	OperationServers map[string]ServerConfigurations
	HTTPClient       *http.Client
}

Configuration stores the configuration of the API client

func NewConfiguration

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader

func (c *Configuration) AddDefaultHeader(key string, value string)

AddDefaultHeader adds a new HTTP header to the default header in the request

func (*Configuration) ServerURL added in v0.6.0

func (c *Configuration) ServerURL(index int, variables map[string]string) (string, error)

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext added in v0.6.0

func (c *Configuration) ServerURLWithContext(ctx context.Context, endpoint string) (string, error)

ServerURLWithContext returns a new server URL given an endpoint

type DataRecord

type DataRecord struct {
	Base BaseSegment `json:"base"`
	J1   []J1Segment `json:"j1,omitempty"`
	J2   []J2Segment `json:"j2,omitempty"`
	K1   *K1Segment  `json:"k1,omitempty"`
	K2   *K2Segment  `json:"k2,omitempty"`
	K3   *K3Segment  `json:"k3,omitempty"`
	K4   *K4Segment  `json:"k4,omitempty"`
	L1   *L1Segment  `json:"l1,omitempty"`
	N1   *N1Segment  `json:"n1,omitempty"`
}

DataRecord struct for DataRecord

func NewDataRecord added in v0.6.0

func NewDataRecord(base BaseSegment) *DataRecord

NewDataRecord instantiates a new DataRecord object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewDataRecordWithDefaults added in v0.6.0

func NewDataRecordWithDefaults() *DataRecord

NewDataRecordWithDefaults instantiates a new DataRecord object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*DataRecord) GetBase added in v0.6.0

func (o *DataRecord) GetBase() BaseSegment

GetBase returns the Base field value

func (*DataRecord) GetBaseOk added in v0.6.0

func (o *DataRecord) GetBaseOk() (*BaseSegment, bool)

GetBaseOk returns a tuple with the Base field value and a boolean to check if the value has been set.

func (*DataRecord) GetJ1 added in v0.6.0

func (o *DataRecord) GetJ1() []J1Segment

GetJ1 returns the J1 field value if set, zero value otherwise.

func (*DataRecord) GetJ1Ok added in v0.6.0

func (o *DataRecord) GetJ1Ok() ([]J1Segment, bool)

GetJ1Ok returns a tuple with the J1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DataRecord) GetJ2 added in v0.6.0

func (o *DataRecord) GetJ2() []J2Segment

GetJ2 returns the J2 field value if set, zero value otherwise.

func (*DataRecord) GetJ2Ok added in v0.6.0

func (o *DataRecord) GetJ2Ok() ([]J2Segment, bool)

GetJ2Ok returns a tuple with the J2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DataRecord) GetK1 added in v0.6.0

func (o *DataRecord) GetK1() K1Segment

GetK1 returns the K1 field value if set, zero value otherwise.

func (*DataRecord) GetK1Ok added in v0.6.0

func (o *DataRecord) GetK1Ok() (*K1Segment, bool)

GetK1Ok returns a tuple with the K1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DataRecord) GetK2 added in v0.6.0

func (o *DataRecord) GetK2() K2Segment

GetK2 returns the K2 field value if set, zero value otherwise.

func (*DataRecord) GetK2Ok added in v0.6.0

func (o *DataRecord) GetK2Ok() (*K2Segment, bool)

GetK2Ok returns a tuple with the K2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DataRecord) GetK3 added in v0.6.0

func (o *DataRecord) GetK3() K3Segment

GetK3 returns the K3 field value if set, zero value otherwise.

func (*DataRecord) GetK3Ok added in v0.6.0

func (o *DataRecord) GetK3Ok() (*K3Segment, bool)

GetK3Ok returns a tuple with the K3 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DataRecord) GetK4 added in v0.6.0

func (o *DataRecord) GetK4() K4Segment

GetK4 returns the K4 field value if set, zero value otherwise.

func (*DataRecord) GetK4Ok added in v0.6.0

func (o *DataRecord) GetK4Ok() (*K4Segment, bool)

GetK4Ok returns a tuple with the K4 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DataRecord) GetL1 added in v0.6.0

func (o *DataRecord) GetL1() L1Segment

GetL1 returns the L1 field value if set, zero value otherwise.

func (*DataRecord) GetL1Ok added in v0.6.0

func (o *DataRecord) GetL1Ok() (*L1Segment, bool)

GetL1Ok returns a tuple with the L1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DataRecord) GetN1 added in v0.6.0

func (o *DataRecord) GetN1() N1Segment

GetN1 returns the N1 field value if set, zero value otherwise.

func (*DataRecord) GetN1Ok added in v0.6.0

func (o *DataRecord) GetN1Ok() (*N1Segment, bool)

GetN1Ok returns a tuple with the N1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DataRecord) HasJ1 added in v0.6.0

func (o *DataRecord) HasJ1() bool

HasJ1 returns a boolean if a field has been set.

func (*DataRecord) HasJ2 added in v0.6.0

func (o *DataRecord) HasJ2() bool

HasJ2 returns a boolean if a field has been set.

func (*DataRecord) HasK1 added in v0.6.0

func (o *DataRecord) HasK1() bool

HasK1 returns a boolean if a field has been set.

func (*DataRecord) HasK2 added in v0.6.0

func (o *DataRecord) HasK2() bool

HasK2 returns a boolean if a field has been set.

func (*DataRecord) HasK3 added in v0.6.0

func (o *DataRecord) HasK3() bool

HasK3 returns a boolean if a field has been set.

func (*DataRecord) HasK4 added in v0.6.0

func (o *DataRecord) HasK4() bool

HasK4 returns a boolean if a field has been set.

func (*DataRecord) HasL1 added in v0.6.0

func (o *DataRecord) HasL1() bool

HasL1 returns a boolean if a field has been set.

func (*DataRecord) HasN1 added in v0.6.0

func (o *DataRecord) HasN1() bool

HasN1 returns a boolean if a field has been set.

func (DataRecord) MarshalJSON added in v0.6.0

func (o DataRecord) MarshalJSON() ([]byte, error)

func (*DataRecord) SetBase added in v0.6.0

func (o *DataRecord) SetBase(v BaseSegment)

SetBase sets field value

func (*DataRecord) SetJ1 added in v0.6.0

func (o *DataRecord) SetJ1(v []J1Segment)

SetJ1 gets a reference to the given []J1Segment and assigns it to the J1 field.

func (*DataRecord) SetJ2 added in v0.6.0

func (o *DataRecord) SetJ2(v []J2Segment)

SetJ2 gets a reference to the given []J2Segment and assigns it to the J2 field.

func (*DataRecord) SetK1 added in v0.6.0

func (o *DataRecord) SetK1(v K1Segment)

SetK1 gets a reference to the given K1Segment and assigns it to the K1 field.

func (*DataRecord) SetK2 added in v0.6.0

func (o *DataRecord) SetK2(v K2Segment)

SetK2 gets a reference to the given K2Segment and assigns it to the K2 field.

func (*DataRecord) SetK3 added in v0.6.0

func (o *DataRecord) SetK3(v K3Segment)

SetK3 gets a reference to the given K3Segment and assigns it to the K3 field.

func (*DataRecord) SetK4 added in v0.6.0

func (o *DataRecord) SetK4(v K4Segment)

SetK4 gets a reference to the given K4Segment and assigns it to the K4 field.

func (*DataRecord) SetL1 added in v0.6.0

func (o *DataRecord) SetL1(v L1Segment)

SetL1 gets a reference to the given L1Segment and assigns it to the L1 field.

func (*DataRecord) SetN1 added in v0.6.0

func (o *DataRecord) SetN1(v N1Segment)

SetN1 gets a reference to the given N1Segment and assigns it to the N1 field.

func (DataRecord) ToMap added in v0.6.0

func (o DataRecord) ToMap() (map[string]interface{}, error)

type File

type File struct {
	Header  HeaderRecord  `json:"header"`
	Data    []DataRecord  `json:"data,omitempty"`
	Trailer TrailerRecord `json:"trailer"`
}

File struct for File

func NewFile added in v0.6.0

func NewFile(header HeaderRecord, trailer TrailerRecord) *File

NewFile instantiates a new File object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewFileWithDefaults added in v0.6.0

func NewFileWithDefaults() *File

NewFileWithDefaults instantiates a new File object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*File) GetData added in v0.6.0

func (o *File) GetData() []DataRecord

GetData returns the Data field value if set, zero value otherwise.

func (*File) GetDataOk added in v0.6.0

func (o *File) GetDataOk() ([]DataRecord, bool)

GetDataOk returns a tuple with the Data field value if set, nil otherwise and a boolean to check if the value has been set.

func (*File) GetHeader added in v0.6.0

func (o *File) GetHeader() HeaderRecord

GetHeader returns the Header field value

func (*File) GetHeaderOk added in v0.6.0

func (o *File) GetHeaderOk() (*HeaderRecord, bool)

GetHeaderOk returns a tuple with the Header field value and a boolean to check if the value has been set.

func (*File) GetTrailer added in v0.6.0

func (o *File) GetTrailer() TrailerRecord

GetTrailer returns the Trailer field value

func (*File) GetTrailerOk added in v0.6.0

func (o *File) GetTrailerOk() (*TrailerRecord, bool)

GetTrailerOk returns a tuple with the Trailer field value and a boolean to check if the value has been set.

func (*File) HasData added in v0.6.0

func (o *File) HasData() bool

HasData returns a boolean if a field has been set.

func (File) MarshalJSON added in v0.6.0

func (o File) MarshalJSON() ([]byte, error)

func (*File) SetData added in v0.6.0

func (o *File) SetData(v []DataRecord)

SetData gets a reference to the given []DataRecord and assigns it to the Data field.

func (*File) SetHeader added in v0.6.0

func (o *File) SetHeader(v HeaderRecord)

SetHeader sets field value

func (*File) SetTrailer added in v0.6.0

func (o *File) SetTrailer(v TrailerRecord)

SetTrailer sets field value

func (File) ToMap added in v0.6.0

func (o File) ToMap() (map[string]interface{}, error)

type GenericOpenAPIError

type GenericOpenAPIError struct {
	// contains filtered or unexported fields
}

GenericOpenAPIError Provides access to the body, error and model on returned errors.

func (GenericOpenAPIError) Body

func (e GenericOpenAPIError) Body() []byte

Body returns the raw bytes of the response

func (GenericOpenAPIError) Error

func (e GenericOpenAPIError) Error() string

Error returns non-empty string if there was an error.

func (GenericOpenAPIError) Model

func (e GenericOpenAPIError) Model() interface{}

Model returns the unpacked model of the error

type HeaderRecord

type HeaderRecord struct {
	BlockDescriptorWord         *int32     `json:"blockDescriptorWord,omitempty"`
	RecordDescriptorWord        int32      `json:"recordDescriptorWord"`
	RecordIdentifier            string     `json:"recordIdentifier"`
	CycleIdentifier             *string    `json:"cycleIdentifier,omitempty"`
	InnovisProgramIdentifier    *string    `json:"innovisProgramIdentifier,omitempty"`
	EquifaxProgramIdentifier    *string    `json:"equifaxProgramIdentifier,omitempty"`
	ExperianProgramIdentifier   *string    `json:"experianProgramIdentifier,omitempty"`
	TransUnionProgramIdentifier *string    `json:"transUnionProgramIdentifier,omitempty"`
	ActivityDate                time.Time  `json:"activityDate"`
	DateCreated                 time.Time  `json:"dateCreated"`
	ProgramDate                 *time.Time `json:"programDate,omitempty"`
	ProgramRevisionDate         *time.Time `json:"programRevisionDate,omitempty"`
	ReporterName                string     `json:"reporterName"`
	ReporterAddress             string     `json:"reporterAddress"`
	ReporterTelephoneNumber     *int64     `json:"reporterTelephoneNumber,omitempty"`
	SoftwareVendorName          *string    `json:"softwareVendorName,omitempty"`
	SoftwareVersionNumber       *string    `json:"softwareVersionNumber,omitempty"`
	PrbcProgramIdentifier       *string    `json:"prbcProgramIdentifier,omitempty"`
}

HeaderRecord struct for HeaderRecord

func NewHeaderRecord added in v0.6.0

func NewHeaderRecord(recordDescriptorWord int32, recordIdentifier string, activityDate time.Time, dateCreated time.Time, reporterName string, reporterAddress string) *HeaderRecord

NewHeaderRecord instantiates a new HeaderRecord object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewHeaderRecordWithDefaults added in v0.6.0

func NewHeaderRecordWithDefaults() *HeaderRecord

NewHeaderRecordWithDefaults instantiates a new HeaderRecord object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*HeaderRecord) GetActivityDate added in v0.6.0

func (o *HeaderRecord) GetActivityDate() time.Time

GetActivityDate returns the ActivityDate field value

func (*HeaderRecord) GetActivityDateOk added in v0.6.0

func (o *HeaderRecord) GetActivityDateOk() (*time.Time, bool)

GetActivityDateOk returns a tuple with the ActivityDate field value and a boolean to check if the value has been set.

func (*HeaderRecord) GetBlockDescriptorWord added in v0.6.0

func (o *HeaderRecord) GetBlockDescriptorWord() int32

GetBlockDescriptorWord returns the BlockDescriptorWord field value if set, zero value otherwise.

func (*HeaderRecord) GetBlockDescriptorWordOk added in v0.6.0

func (o *HeaderRecord) GetBlockDescriptorWordOk() (*int32, bool)

GetBlockDescriptorWordOk returns a tuple with the BlockDescriptorWord field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HeaderRecord) GetCycleIdentifier added in v0.6.0

func (o *HeaderRecord) GetCycleIdentifier() string

GetCycleIdentifier returns the CycleIdentifier field value if set, zero value otherwise.

func (*HeaderRecord) GetCycleIdentifierOk added in v0.6.0

func (o *HeaderRecord) GetCycleIdentifierOk() (*string, bool)

GetCycleIdentifierOk returns a tuple with the CycleIdentifier field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HeaderRecord) GetDateCreated added in v0.6.0

func (o *HeaderRecord) GetDateCreated() time.Time

GetDateCreated returns the DateCreated field value

func (*HeaderRecord) GetDateCreatedOk added in v0.6.0

func (o *HeaderRecord) GetDateCreatedOk() (*time.Time, bool)

GetDateCreatedOk returns a tuple with the DateCreated field value and a boolean to check if the value has been set.

func (*HeaderRecord) GetEquifaxProgramIdentifier added in v0.6.0

func (o *HeaderRecord) GetEquifaxProgramIdentifier() string

GetEquifaxProgramIdentifier returns the EquifaxProgramIdentifier field value if set, zero value otherwise.

func (*HeaderRecord) GetEquifaxProgramIdentifierOk added in v0.6.0

func (o *HeaderRecord) GetEquifaxProgramIdentifierOk() (*string, bool)

GetEquifaxProgramIdentifierOk returns a tuple with the EquifaxProgramIdentifier field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HeaderRecord) GetExperianProgramIdentifier added in v0.6.0

func (o *HeaderRecord) GetExperianProgramIdentifier() string

GetExperianProgramIdentifier returns the ExperianProgramIdentifier field value if set, zero value otherwise.

func (*HeaderRecord) GetExperianProgramIdentifierOk added in v0.6.0

func (o *HeaderRecord) GetExperianProgramIdentifierOk() (*string, bool)

GetExperianProgramIdentifierOk returns a tuple with the ExperianProgramIdentifier field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HeaderRecord) GetInnovisProgramIdentifier added in v0.6.0

func (o *HeaderRecord) GetInnovisProgramIdentifier() string

GetInnovisProgramIdentifier returns the InnovisProgramIdentifier field value if set, zero value otherwise.

func (*HeaderRecord) GetInnovisProgramIdentifierOk added in v0.6.0

func (o *HeaderRecord) GetInnovisProgramIdentifierOk() (*string, bool)

GetInnovisProgramIdentifierOk returns a tuple with the InnovisProgramIdentifier field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HeaderRecord) GetPrbcProgramIdentifier added in v0.6.0

func (o *HeaderRecord) GetPrbcProgramIdentifier() string

GetPrbcProgramIdentifier returns the PrbcProgramIdentifier field value if set, zero value otherwise.

func (*HeaderRecord) GetPrbcProgramIdentifierOk added in v0.6.0

func (o *HeaderRecord) GetPrbcProgramIdentifierOk() (*string, bool)

GetPrbcProgramIdentifierOk returns a tuple with the PrbcProgramIdentifier field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HeaderRecord) GetProgramDate added in v0.6.0

func (o *HeaderRecord) GetProgramDate() time.Time

GetProgramDate returns the ProgramDate field value if set, zero value otherwise.

func (*HeaderRecord) GetProgramDateOk added in v0.6.0

func (o *HeaderRecord) GetProgramDateOk() (*time.Time, bool)

GetProgramDateOk returns a tuple with the ProgramDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HeaderRecord) GetProgramRevisionDate added in v0.6.0

func (o *HeaderRecord) GetProgramRevisionDate() time.Time

GetProgramRevisionDate returns the ProgramRevisionDate field value if set, zero value otherwise.

func (*HeaderRecord) GetProgramRevisionDateOk added in v0.6.0

func (o *HeaderRecord) GetProgramRevisionDateOk() (*time.Time, bool)

GetProgramRevisionDateOk returns a tuple with the ProgramRevisionDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HeaderRecord) GetRecordDescriptorWord added in v0.6.0

func (o *HeaderRecord) GetRecordDescriptorWord() int32

GetRecordDescriptorWord returns the RecordDescriptorWord field value

func (*HeaderRecord) GetRecordDescriptorWordOk added in v0.6.0

func (o *HeaderRecord) GetRecordDescriptorWordOk() (*int32, bool)

GetRecordDescriptorWordOk returns a tuple with the RecordDescriptorWord field value and a boolean to check if the value has been set.

func (*HeaderRecord) GetRecordIdentifier added in v0.6.0

func (o *HeaderRecord) GetRecordIdentifier() string

GetRecordIdentifier returns the RecordIdentifier field value

func (*HeaderRecord) GetRecordIdentifierOk added in v0.6.0

func (o *HeaderRecord) GetRecordIdentifierOk() (*string, bool)

GetRecordIdentifierOk returns a tuple with the RecordIdentifier field value and a boolean to check if the value has been set.

func (*HeaderRecord) GetReporterAddress added in v0.6.0

func (o *HeaderRecord) GetReporterAddress() string

GetReporterAddress returns the ReporterAddress field value

func (*HeaderRecord) GetReporterAddressOk added in v0.6.0

func (o *HeaderRecord) GetReporterAddressOk() (*string, bool)

GetReporterAddressOk returns a tuple with the ReporterAddress field value and a boolean to check if the value has been set.

func (*HeaderRecord) GetReporterName added in v0.6.0

func (o *HeaderRecord) GetReporterName() string

GetReporterName returns the ReporterName field value

func (*HeaderRecord) GetReporterNameOk added in v0.6.0

func (o *HeaderRecord) GetReporterNameOk() (*string, bool)

GetReporterNameOk returns a tuple with the ReporterName field value and a boolean to check if the value has been set.

func (*HeaderRecord) GetReporterTelephoneNumber added in v0.6.0

func (o *HeaderRecord) GetReporterTelephoneNumber() int64

GetReporterTelephoneNumber returns the ReporterTelephoneNumber field value if set, zero value otherwise.

func (*HeaderRecord) GetReporterTelephoneNumberOk added in v0.6.0

func (o *HeaderRecord) GetReporterTelephoneNumberOk() (*int64, bool)

GetReporterTelephoneNumberOk returns a tuple with the ReporterTelephoneNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HeaderRecord) GetSoftwareVendorName added in v0.6.0

func (o *HeaderRecord) GetSoftwareVendorName() string

GetSoftwareVendorName returns the SoftwareVendorName field value if set, zero value otherwise.

func (*HeaderRecord) GetSoftwareVendorNameOk added in v0.6.0

func (o *HeaderRecord) GetSoftwareVendorNameOk() (*string, bool)

GetSoftwareVendorNameOk returns a tuple with the SoftwareVendorName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HeaderRecord) GetSoftwareVersionNumber added in v0.6.0

func (o *HeaderRecord) GetSoftwareVersionNumber() string

GetSoftwareVersionNumber returns the SoftwareVersionNumber field value if set, zero value otherwise.

func (*HeaderRecord) GetSoftwareVersionNumberOk added in v0.6.0

func (o *HeaderRecord) GetSoftwareVersionNumberOk() (*string, bool)

GetSoftwareVersionNumberOk returns a tuple with the SoftwareVersionNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HeaderRecord) GetTransUnionProgramIdentifier added in v0.6.0

func (o *HeaderRecord) GetTransUnionProgramIdentifier() string

GetTransUnionProgramIdentifier returns the TransUnionProgramIdentifier field value if set, zero value otherwise.

func (*HeaderRecord) GetTransUnionProgramIdentifierOk added in v0.6.0

func (o *HeaderRecord) GetTransUnionProgramIdentifierOk() (*string, bool)

GetTransUnionProgramIdentifierOk returns a tuple with the TransUnionProgramIdentifier field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HeaderRecord) HasBlockDescriptorWord added in v0.6.0

func (o *HeaderRecord) HasBlockDescriptorWord() bool

HasBlockDescriptorWord returns a boolean if a field has been set.

func (*HeaderRecord) HasCycleIdentifier added in v0.6.0

func (o *HeaderRecord) HasCycleIdentifier() bool

HasCycleIdentifier returns a boolean if a field has been set.

func (*HeaderRecord) HasEquifaxProgramIdentifier added in v0.6.0

func (o *HeaderRecord) HasEquifaxProgramIdentifier() bool

HasEquifaxProgramIdentifier returns a boolean if a field has been set.

func (*HeaderRecord) HasExperianProgramIdentifier added in v0.6.0

func (o *HeaderRecord) HasExperianProgramIdentifier() bool

HasExperianProgramIdentifier returns a boolean if a field has been set.

func (*HeaderRecord) HasInnovisProgramIdentifier added in v0.6.0

func (o *HeaderRecord) HasInnovisProgramIdentifier() bool

HasInnovisProgramIdentifier returns a boolean if a field has been set.

func (*HeaderRecord) HasPrbcProgramIdentifier added in v0.6.0

func (o *HeaderRecord) HasPrbcProgramIdentifier() bool

HasPrbcProgramIdentifier returns a boolean if a field has been set.

func (*HeaderRecord) HasProgramDate added in v0.6.0

func (o *HeaderRecord) HasProgramDate() bool

HasProgramDate returns a boolean if a field has been set.

func (*HeaderRecord) HasProgramRevisionDate added in v0.6.0

func (o *HeaderRecord) HasProgramRevisionDate() bool

HasProgramRevisionDate returns a boolean if a field has been set.

func (*HeaderRecord) HasReporterTelephoneNumber added in v0.6.0

func (o *HeaderRecord) HasReporterTelephoneNumber() bool

HasReporterTelephoneNumber returns a boolean if a field has been set.

func (*HeaderRecord) HasSoftwareVendorName added in v0.6.0

func (o *HeaderRecord) HasSoftwareVendorName() bool

HasSoftwareVendorName returns a boolean if a field has been set.

func (*HeaderRecord) HasSoftwareVersionNumber added in v0.6.0

func (o *HeaderRecord) HasSoftwareVersionNumber() bool

HasSoftwareVersionNumber returns a boolean if a field has been set.

func (*HeaderRecord) HasTransUnionProgramIdentifier added in v0.6.0

func (o *HeaderRecord) HasTransUnionProgramIdentifier() bool

HasTransUnionProgramIdentifier returns a boolean if a field has been set.

func (HeaderRecord) MarshalJSON added in v0.6.0

func (o HeaderRecord) MarshalJSON() ([]byte, error)

func (*HeaderRecord) SetActivityDate added in v0.6.0

func (o *HeaderRecord) SetActivityDate(v time.Time)

SetActivityDate sets field value

func (*HeaderRecord) SetBlockDescriptorWord added in v0.6.0

func (o *HeaderRecord) SetBlockDescriptorWord(v int32)

SetBlockDescriptorWord gets a reference to the given int32 and assigns it to the BlockDescriptorWord field.

func (*HeaderRecord) SetCycleIdentifier added in v0.6.0

func (o *HeaderRecord) SetCycleIdentifier(v string)

SetCycleIdentifier gets a reference to the given string and assigns it to the CycleIdentifier field.

func (*HeaderRecord) SetDateCreated added in v0.6.0

func (o *HeaderRecord) SetDateCreated(v time.Time)

SetDateCreated sets field value

func (*HeaderRecord) SetEquifaxProgramIdentifier added in v0.6.0

func (o *HeaderRecord) SetEquifaxProgramIdentifier(v string)

SetEquifaxProgramIdentifier gets a reference to the given string and assigns it to the EquifaxProgramIdentifier field.

func (*HeaderRecord) SetExperianProgramIdentifier added in v0.6.0

func (o *HeaderRecord) SetExperianProgramIdentifier(v string)

SetExperianProgramIdentifier gets a reference to the given string and assigns it to the ExperianProgramIdentifier field.

func (*HeaderRecord) SetInnovisProgramIdentifier added in v0.6.0

func (o *HeaderRecord) SetInnovisProgramIdentifier(v string)

SetInnovisProgramIdentifier gets a reference to the given string and assigns it to the InnovisProgramIdentifier field.

func (*HeaderRecord) SetPrbcProgramIdentifier added in v0.6.0

func (o *HeaderRecord) SetPrbcProgramIdentifier(v string)

SetPrbcProgramIdentifier gets a reference to the given string and assigns it to the PrbcProgramIdentifier field.

func (*HeaderRecord) SetProgramDate added in v0.6.0

func (o *HeaderRecord) SetProgramDate(v time.Time)

SetProgramDate gets a reference to the given time.Time and assigns it to the ProgramDate field.

func (*HeaderRecord) SetProgramRevisionDate added in v0.6.0

func (o *HeaderRecord) SetProgramRevisionDate(v time.Time)

SetProgramRevisionDate gets a reference to the given time.Time and assigns it to the ProgramRevisionDate field.

func (*HeaderRecord) SetRecordDescriptorWord added in v0.6.0

func (o *HeaderRecord) SetRecordDescriptorWord(v int32)

SetRecordDescriptorWord sets field value

func (*HeaderRecord) SetRecordIdentifier added in v0.6.0

func (o *HeaderRecord) SetRecordIdentifier(v string)

SetRecordIdentifier sets field value

func (*HeaderRecord) SetReporterAddress added in v0.6.0

func (o *HeaderRecord) SetReporterAddress(v string)

SetReporterAddress sets field value

func (*HeaderRecord) SetReporterName added in v0.6.0

func (o *HeaderRecord) SetReporterName(v string)

SetReporterName sets field value

func (*HeaderRecord) SetReporterTelephoneNumber added in v0.6.0

func (o *HeaderRecord) SetReporterTelephoneNumber(v int64)

SetReporterTelephoneNumber gets a reference to the given int64 and assigns it to the ReporterTelephoneNumber field.

func (*HeaderRecord) SetSoftwareVendorName added in v0.6.0

func (o *HeaderRecord) SetSoftwareVendorName(v string)

SetSoftwareVendorName gets a reference to the given string and assigns it to the SoftwareVendorName field.

func (*HeaderRecord) SetSoftwareVersionNumber added in v0.6.0

func (o *HeaderRecord) SetSoftwareVersionNumber(v string)

SetSoftwareVersionNumber gets a reference to the given string and assigns it to the SoftwareVersionNumber field.

func (*HeaderRecord) SetTransUnionProgramIdentifier added in v0.6.0

func (o *HeaderRecord) SetTransUnionProgramIdentifier(v string)

SetTransUnionProgramIdentifier gets a reference to the given string and assigns it to the TransUnionProgramIdentifier field.

func (HeaderRecord) ToMap added in v0.6.0

func (o HeaderRecord) ToMap() (map[string]interface{}, error)

type J1Segment

type J1Segment struct {
	SegmentIdentifier            string     `json:"segmentIdentifier"`
	Surname                      string     `json:"surname"`
	FirstName                    string     `json:"firstName"`
	MiddleName                   *string    `json:"middleName,omitempty"`
	GenerationCode               *string    `json:"generationCode,omitempty"`
	SocialSecurityNumber         *int32     `json:"socialSecurityNumber,omitempty"`
	DateBirth                    *time.Time `json:"dateBirth,omitempty"`
	TelephoneNumber              *int64     `json:"telephoneNumber,omitempty"`
	EcoaCode                     string     `json:"ecoaCode"`
	ConsumerInformationIndicator *string    `json:"consumerInformationIndicator,omitempty"`
}

J1Segment struct for J1Segment

func NewJ1Segment added in v0.6.0

func NewJ1Segment(segmentIdentifier string, surname string, firstName string, ecoaCode string) *J1Segment

NewJ1Segment instantiates a new J1Segment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewJ1SegmentWithDefaults added in v0.6.0

func NewJ1SegmentWithDefaults() *J1Segment

NewJ1SegmentWithDefaults instantiates a new J1Segment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*J1Segment) GetConsumerInformationIndicator added in v0.6.0

func (o *J1Segment) GetConsumerInformationIndicator() string

GetConsumerInformationIndicator returns the ConsumerInformationIndicator field value if set, zero value otherwise.

func (*J1Segment) GetConsumerInformationIndicatorOk added in v0.6.0

func (o *J1Segment) GetConsumerInformationIndicatorOk() (*string, bool)

GetConsumerInformationIndicatorOk returns a tuple with the ConsumerInformationIndicator field value if set, nil otherwise and a boolean to check if the value has been set.

func (*J1Segment) GetDateBirth added in v0.6.0

func (o *J1Segment) GetDateBirth() time.Time

GetDateBirth returns the DateBirth field value if set, zero value otherwise.

func (*J1Segment) GetDateBirthOk added in v0.6.0

func (o *J1Segment) GetDateBirthOk() (*time.Time, bool)

GetDateBirthOk returns a tuple with the DateBirth field value if set, nil otherwise and a boolean to check if the value has been set.

func (*J1Segment) GetEcoaCode added in v0.6.0

func (o *J1Segment) GetEcoaCode() string

GetEcoaCode returns the EcoaCode field value

func (*J1Segment) GetEcoaCodeOk added in v0.6.0

func (o *J1Segment) GetEcoaCodeOk() (*string, bool)

GetEcoaCodeOk returns a tuple with the EcoaCode field value and a boolean to check if the value has been set.

func (*J1Segment) GetFirstName added in v0.6.0

func (o *J1Segment) GetFirstName() string

GetFirstName returns the FirstName field value

func (*J1Segment) GetFirstNameOk added in v0.6.0

func (o *J1Segment) GetFirstNameOk() (*string, bool)

GetFirstNameOk returns a tuple with the FirstName field value and a boolean to check if the value has been set.

func (*J1Segment) GetGenerationCode added in v0.6.0

func (o *J1Segment) GetGenerationCode() string

GetGenerationCode returns the GenerationCode field value if set, zero value otherwise.

func (*J1Segment) GetGenerationCodeOk added in v0.6.0

func (o *J1Segment) GetGenerationCodeOk() (*string, bool)

GetGenerationCodeOk returns a tuple with the GenerationCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*J1Segment) GetMiddleName added in v0.6.0

func (o *J1Segment) GetMiddleName() string

GetMiddleName returns the MiddleName field value if set, zero value otherwise.

func (*J1Segment) GetMiddleNameOk added in v0.6.0

func (o *J1Segment) GetMiddleNameOk() (*string, bool)

GetMiddleNameOk returns a tuple with the MiddleName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*J1Segment) GetSegmentIdentifier added in v0.6.0

func (o *J1Segment) GetSegmentIdentifier() string

GetSegmentIdentifier returns the SegmentIdentifier field value

func (*J1Segment) GetSegmentIdentifierOk added in v0.6.0

func (o *J1Segment) GetSegmentIdentifierOk() (*string, bool)

GetSegmentIdentifierOk returns a tuple with the SegmentIdentifier field value and a boolean to check if the value has been set.

func (*J1Segment) GetSocialSecurityNumber added in v0.6.0

func (o *J1Segment) GetSocialSecurityNumber() int32

GetSocialSecurityNumber returns the SocialSecurityNumber field value if set, zero value otherwise.

func (*J1Segment) GetSocialSecurityNumberOk added in v0.6.0

func (o *J1Segment) GetSocialSecurityNumberOk() (*int32, bool)

GetSocialSecurityNumberOk returns a tuple with the SocialSecurityNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*J1Segment) GetSurname added in v0.6.0

func (o *J1Segment) GetSurname() string

GetSurname returns the Surname field value

func (*J1Segment) GetSurnameOk added in v0.6.0

func (o *J1Segment) GetSurnameOk() (*string, bool)

GetSurnameOk returns a tuple with the Surname field value and a boolean to check if the value has been set.

func (*J1Segment) GetTelephoneNumber added in v0.6.0

func (o *J1Segment) GetTelephoneNumber() int64

GetTelephoneNumber returns the TelephoneNumber field value if set, zero value otherwise.

func (*J1Segment) GetTelephoneNumberOk added in v0.6.0

func (o *J1Segment) GetTelephoneNumberOk() (*int64, bool)

GetTelephoneNumberOk returns a tuple with the TelephoneNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*J1Segment) HasConsumerInformationIndicator added in v0.6.0

func (o *J1Segment) HasConsumerInformationIndicator() bool

HasConsumerInformationIndicator returns a boolean if a field has been set.

func (*J1Segment) HasDateBirth added in v0.7.0

func (o *J1Segment) HasDateBirth() bool

HasDateBirth returns a boolean if a field has been set.

func (*J1Segment) HasGenerationCode added in v0.6.0

func (o *J1Segment) HasGenerationCode() bool

HasGenerationCode returns a boolean if a field has been set.

func (*J1Segment) HasMiddleName added in v0.6.0

func (o *J1Segment) HasMiddleName() bool

HasMiddleName returns a boolean if a field has been set.

func (*J1Segment) HasSocialSecurityNumber added in v0.7.0

func (o *J1Segment) HasSocialSecurityNumber() bool

HasSocialSecurityNumber returns a boolean if a field has been set.

func (*J1Segment) HasTelephoneNumber added in v0.6.0

func (o *J1Segment) HasTelephoneNumber() bool

HasTelephoneNumber returns a boolean if a field has been set.

func (J1Segment) MarshalJSON added in v0.6.0

func (o J1Segment) MarshalJSON() ([]byte, error)

func (*J1Segment) SetConsumerInformationIndicator added in v0.6.0

func (o *J1Segment) SetConsumerInformationIndicator(v string)

SetConsumerInformationIndicator gets a reference to the given string and assigns it to the ConsumerInformationIndicator field.

func (*J1Segment) SetDateBirth added in v0.6.0

func (o *J1Segment) SetDateBirth(v time.Time)

SetDateBirth gets a reference to the given time.Time and assigns it to the DateBirth field.

func (*J1Segment) SetEcoaCode added in v0.6.0

func (o *J1Segment) SetEcoaCode(v string)

SetEcoaCode sets field value

func (*J1Segment) SetFirstName added in v0.6.0

func (o *J1Segment) SetFirstName(v string)

SetFirstName sets field value

func (*J1Segment) SetGenerationCode added in v0.6.0

func (o *J1Segment) SetGenerationCode(v string)

SetGenerationCode gets a reference to the given string and assigns it to the GenerationCode field.

func (*J1Segment) SetMiddleName added in v0.6.0

func (o *J1Segment) SetMiddleName(v string)

SetMiddleName gets a reference to the given string and assigns it to the MiddleName field.

func (*J1Segment) SetSegmentIdentifier added in v0.6.0

func (o *J1Segment) SetSegmentIdentifier(v string)

SetSegmentIdentifier sets field value

func (*J1Segment) SetSocialSecurityNumber added in v0.6.0

func (o *J1Segment) SetSocialSecurityNumber(v int32)

SetSocialSecurityNumber gets a reference to the given int32 and assigns it to the SocialSecurityNumber field.

func (*J1Segment) SetSurname added in v0.6.0

func (o *J1Segment) SetSurname(v string)

SetSurname sets field value

func (*J1Segment) SetTelephoneNumber added in v0.6.0

func (o *J1Segment) SetTelephoneNumber(v int64)

SetTelephoneNumber gets a reference to the given int64 and assigns it to the TelephoneNumber field.

func (J1Segment) ToMap added in v0.6.0

func (o J1Segment) ToMap() (map[string]interface{}, error)

type J2Segment

type J2Segment struct {
	SegmentIdentifier            string     `json:"segmentIdentifier"`
	Surname                      string     `json:"surname"`
	FirstName                    string     `json:"firstName"`
	MiddleName                   *string    `json:"middleName,omitempty"`
	GenerationCode               *string    `json:"generationCode,omitempty"`
	SocialSecurityNumber         *int32     `json:"socialSecurityNumber,omitempty"`
	DateBirth                    *time.Time `json:"dateBirth,omitempty"`
	TelephoneNumber              *int64     `json:"telephoneNumber,omitempty"`
	EcoaCode                     string     `json:"ecoaCode"`
	ConsumerInformationIndicator *string    `json:"consumerInformationIndicator,omitempty"`
	CountryCode                  *string    `json:"countryCode,omitempty"`
	FirstLineAddress             string     `json:"firstLineAddress"`
	SecondLineAddress            *string    `json:"secondLineAddress,omitempty"`
	City                         string     `json:"city"`
	State                        string     `json:"state"`
	ZipCode                      string     `json:"zipCode"`
	AddressIndicator             *string    `json:"addressIndicator,omitempty"`
	ResidenceCode                *string    `json:"residenceCode,omitempty"`
}

J2Segment struct for J2Segment

func NewJ2Segment added in v0.6.0

func NewJ2Segment(segmentIdentifier string, surname string, firstName string, ecoaCode string, firstLineAddress string, city string, state string, zipCode string) *J2Segment

NewJ2Segment instantiates a new J2Segment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewJ2SegmentWithDefaults added in v0.6.0

func NewJ2SegmentWithDefaults() *J2Segment

NewJ2SegmentWithDefaults instantiates a new J2Segment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*J2Segment) GetAddressIndicator added in v0.6.0

func (o *J2Segment) GetAddressIndicator() string

GetAddressIndicator returns the AddressIndicator field value if set, zero value otherwise.

func (*J2Segment) GetAddressIndicatorOk added in v0.6.0

func (o *J2Segment) GetAddressIndicatorOk() (*string, bool)

GetAddressIndicatorOk returns a tuple with the AddressIndicator field value if set, nil otherwise and a boolean to check if the value has been set.

func (*J2Segment) GetCity added in v0.6.0

func (o *J2Segment) GetCity() string

GetCity returns the City field value

func (*J2Segment) GetCityOk added in v0.6.0

func (o *J2Segment) GetCityOk() (*string, bool)

GetCityOk returns a tuple with the City field value and a boolean to check if the value has been set.

func (*J2Segment) GetConsumerInformationIndicator added in v0.6.0

func (o *J2Segment) GetConsumerInformationIndicator() string

GetConsumerInformationIndicator returns the ConsumerInformationIndicator field value if set, zero value otherwise.

func (*J2Segment) GetConsumerInformationIndicatorOk added in v0.6.0

func (o *J2Segment) GetConsumerInformationIndicatorOk() (*string, bool)

GetConsumerInformationIndicatorOk returns a tuple with the ConsumerInformationIndicator field value if set, nil otherwise and a boolean to check if the value has been set.

func (*J2Segment) GetCountryCode added in v0.6.0

func (o *J2Segment) GetCountryCode() string

GetCountryCode returns the CountryCode field value if set, zero value otherwise.

func (*J2Segment) GetCountryCodeOk added in v0.6.0

func (o *J2Segment) GetCountryCodeOk() (*string, bool)

GetCountryCodeOk returns a tuple with the CountryCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*J2Segment) GetDateBirth added in v0.6.0

func (o *J2Segment) GetDateBirth() time.Time

GetDateBirth returns the DateBirth field value if set, zero value otherwise.

func (*J2Segment) GetDateBirthOk added in v0.6.0

func (o *J2Segment) GetDateBirthOk() (*time.Time, bool)

GetDateBirthOk returns a tuple with the DateBirth field value if set, nil otherwise and a boolean to check if the value has been set.

func (*J2Segment) GetEcoaCode added in v0.6.0

func (o *J2Segment) GetEcoaCode() string

GetEcoaCode returns the EcoaCode field value

func (*J2Segment) GetEcoaCodeOk added in v0.6.0

func (o *J2Segment) GetEcoaCodeOk() (*string, bool)

GetEcoaCodeOk returns a tuple with the EcoaCode field value and a boolean to check if the value has been set.

func (*J2Segment) GetFirstLineAddress added in v0.6.0

func (o *J2Segment) GetFirstLineAddress() string

GetFirstLineAddress returns the FirstLineAddress field value

func (*J2Segment) GetFirstLineAddressOk added in v0.6.0

func (o *J2Segment) GetFirstLineAddressOk() (*string, bool)

GetFirstLineAddressOk returns a tuple with the FirstLineAddress field value and a boolean to check if the value has been set.

func (*J2Segment) GetFirstName added in v0.6.0

func (o *J2Segment) GetFirstName() string

GetFirstName returns the FirstName field value

func (*J2Segment) GetFirstNameOk added in v0.6.0

func (o *J2Segment) GetFirstNameOk() (*string, bool)

GetFirstNameOk returns a tuple with the FirstName field value and a boolean to check if the value has been set.

func (*J2Segment) GetGenerationCode added in v0.6.0

func (o *J2Segment) GetGenerationCode() string

GetGenerationCode returns the GenerationCode field value if set, zero value otherwise.

func (*J2Segment) GetGenerationCodeOk added in v0.6.0

func (o *J2Segment) GetGenerationCodeOk() (*string, bool)

GetGenerationCodeOk returns a tuple with the GenerationCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*J2Segment) GetMiddleName added in v0.6.0

func (o *J2Segment) GetMiddleName() string

GetMiddleName returns the MiddleName field value if set, zero value otherwise.

func (*J2Segment) GetMiddleNameOk added in v0.6.0

func (o *J2Segment) GetMiddleNameOk() (*string, bool)

GetMiddleNameOk returns a tuple with the MiddleName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*J2Segment) GetResidenceCode added in v0.6.0

func (o *J2Segment) GetResidenceCode() string

GetResidenceCode returns the ResidenceCode field value if set, zero value otherwise.

func (*J2Segment) GetResidenceCodeOk added in v0.6.0

func (o *J2Segment) GetResidenceCodeOk() (*string, bool)

GetResidenceCodeOk returns a tuple with the ResidenceCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*J2Segment) GetSecondLineAddress added in v0.6.0

func (o *J2Segment) GetSecondLineAddress() string

GetSecondLineAddress returns the SecondLineAddress field value if set, zero value otherwise.

func (*J2Segment) GetSecondLineAddressOk added in v0.6.0

func (o *J2Segment) GetSecondLineAddressOk() (*string, bool)

GetSecondLineAddressOk returns a tuple with the SecondLineAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*J2Segment) GetSegmentIdentifier added in v0.6.0

func (o *J2Segment) GetSegmentIdentifier() string

GetSegmentIdentifier returns the SegmentIdentifier field value

func (*J2Segment) GetSegmentIdentifierOk added in v0.6.0

func (o *J2Segment) GetSegmentIdentifierOk() (*string, bool)

GetSegmentIdentifierOk returns a tuple with the SegmentIdentifier field value and a boolean to check if the value has been set.

func (*J2Segment) GetSocialSecurityNumber added in v0.6.0

func (o *J2Segment) GetSocialSecurityNumber() int32

GetSocialSecurityNumber returns the SocialSecurityNumber field value if set, zero value otherwise.

func (*J2Segment) GetSocialSecurityNumberOk added in v0.6.0

func (o *J2Segment) GetSocialSecurityNumberOk() (*int32, bool)

GetSocialSecurityNumberOk returns a tuple with the SocialSecurityNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*J2Segment) GetState added in v0.6.0

func (o *J2Segment) GetState() string

GetState returns the State field value

func (*J2Segment) GetStateOk added in v0.6.0

func (o *J2Segment) GetStateOk() (*string, bool)

GetStateOk returns a tuple with the State field value and a boolean to check if the value has been set.

func (*J2Segment) GetSurname added in v0.6.0

func (o *J2Segment) GetSurname() string

GetSurname returns the Surname field value

func (*J2Segment) GetSurnameOk added in v0.6.0

func (o *J2Segment) GetSurnameOk() (*string, bool)

GetSurnameOk returns a tuple with the Surname field value and a boolean to check if the value has been set.

func (*J2Segment) GetTelephoneNumber added in v0.6.0

func (o *J2Segment) GetTelephoneNumber() int64

GetTelephoneNumber returns the TelephoneNumber field value if set, zero value otherwise.

func (*J2Segment) GetTelephoneNumberOk added in v0.6.0

func (o *J2Segment) GetTelephoneNumberOk() (*int64, bool)

GetTelephoneNumberOk returns a tuple with the TelephoneNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*J2Segment) GetZipCode added in v0.6.0

func (o *J2Segment) GetZipCode() string

GetZipCode returns the ZipCode field value

func (*J2Segment) GetZipCodeOk added in v0.6.0

func (o *J2Segment) GetZipCodeOk() (*string, bool)

GetZipCodeOk returns a tuple with the ZipCode field value and a boolean to check if the value has been set.

func (*J2Segment) HasAddressIndicator added in v0.6.0

func (o *J2Segment) HasAddressIndicator() bool

HasAddressIndicator returns a boolean if a field has been set.

func (*J2Segment) HasConsumerInformationIndicator added in v0.6.0

func (o *J2Segment) HasConsumerInformationIndicator() bool

HasConsumerInformationIndicator returns a boolean if a field has been set.

func (*J2Segment) HasCountryCode added in v0.6.0

func (o *J2Segment) HasCountryCode() bool

HasCountryCode returns a boolean if a field has been set.

func (*J2Segment) HasDateBirth added in v0.7.0

func (o *J2Segment) HasDateBirth() bool

HasDateBirth returns a boolean if a field has been set.

func (*J2Segment) HasGenerationCode added in v0.6.0

func (o *J2Segment) HasGenerationCode() bool

HasGenerationCode returns a boolean if a field has been set.

func (*J2Segment) HasMiddleName added in v0.6.0

func (o *J2Segment) HasMiddleName() bool

HasMiddleName returns a boolean if a field has been set.

func (*J2Segment) HasResidenceCode added in v0.6.0

func (o *J2Segment) HasResidenceCode() bool

HasResidenceCode returns a boolean if a field has been set.

func (*J2Segment) HasSecondLineAddress added in v0.6.0

func (o *J2Segment) HasSecondLineAddress() bool

HasSecondLineAddress returns a boolean if a field has been set.

func (*J2Segment) HasSocialSecurityNumber added in v0.7.0

func (o *J2Segment) HasSocialSecurityNumber() bool

HasSocialSecurityNumber returns a boolean if a field has been set.

func (*J2Segment) HasTelephoneNumber added in v0.6.0

func (o *J2Segment) HasTelephoneNumber() bool

HasTelephoneNumber returns a boolean if a field has been set.

func (J2Segment) MarshalJSON added in v0.6.0

func (o J2Segment) MarshalJSON() ([]byte, error)

func (*J2Segment) SetAddressIndicator added in v0.6.0

func (o *J2Segment) SetAddressIndicator(v string)

SetAddressIndicator gets a reference to the given string and assigns it to the AddressIndicator field.

func (*J2Segment) SetCity added in v0.6.0

func (o *J2Segment) SetCity(v string)

SetCity sets field value

func (*J2Segment) SetConsumerInformationIndicator added in v0.6.0

func (o *J2Segment) SetConsumerInformationIndicator(v string)

SetConsumerInformationIndicator gets a reference to the given string and assigns it to the ConsumerInformationIndicator field.

func (*J2Segment) SetCountryCode added in v0.6.0

func (o *J2Segment) SetCountryCode(v string)

SetCountryCode gets a reference to the given string and assigns it to the CountryCode field.

func (*J2Segment) SetDateBirth added in v0.6.0

func (o *J2Segment) SetDateBirth(v time.Time)

SetDateBirth gets a reference to the given time.Time and assigns it to the DateBirth field.

func (*J2Segment) SetEcoaCode added in v0.6.0

func (o *J2Segment) SetEcoaCode(v string)

SetEcoaCode sets field value

func (*J2Segment) SetFirstLineAddress added in v0.6.0

func (o *J2Segment) SetFirstLineAddress(v string)

SetFirstLineAddress sets field value

func (*J2Segment) SetFirstName added in v0.6.0

func (o *J2Segment) SetFirstName(v string)

SetFirstName sets field value

func (*J2Segment) SetGenerationCode added in v0.6.0

func (o *J2Segment) SetGenerationCode(v string)

SetGenerationCode gets a reference to the given string and assigns it to the GenerationCode field.

func (*J2Segment) SetMiddleName added in v0.6.0

func (o *J2Segment) SetMiddleName(v string)

SetMiddleName gets a reference to the given string and assigns it to the MiddleName field.

func (*J2Segment) SetResidenceCode added in v0.6.0

func (o *J2Segment) SetResidenceCode(v string)

SetResidenceCode gets a reference to the given string and assigns it to the ResidenceCode field.

func (*J2Segment) SetSecondLineAddress added in v0.6.0

func (o *J2Segment) SetSecondLineAddress(v string)

SetSecondLineAddress gets a reference to the given string and assigns it to the SecondLineAddress field.

func (*J2Segment) SetSegmentIdentifier added in v0.6.0

func (o *J2Segment) SetSegmentIdentifier(v string)

SetSegmentIdentifier sets field value

func (*J2Segment) SetSocialSecurityNumber added in v0.6.0

func (o *J2Segment) SetSocialSecurityNumber(v int32)

SetSocialSecurityNumber gets a reference to the given int32 and assigns it to the SocialSecurityNumber field.

func (*J2Segment) SetState added in v0.6.0

func (o *J2Segment) SetState(v string)

SetState sets field value

func (*J2Segment) SetSurname added in v0.6.0

func (o *J2Segment) SetSurname(v string)

SetSurname sets field value

func (*J2Segment) SetTelephoneNumber added in v0.6.0

func (o *J2Segment) SetTelephoneNumber(v int64)

SetTelephoneNumber gets a reference to the given int64 and assigns it to the TelephoneNumber field.

func (*J2Segment) SetZipCode added in v0.6.0

func (o *J2Segment) SetZipCode(v string)

SetZipCode sets field value

func (J2Segment) ToMap added in v0.6.0

func (o J2Segment) ToMap() (map[string]interface{}, error)

type K1Segment

type K1Segment struct {
	SegmentIdentifier      string `json:"segmentIdentifier"`
	OriginalCreditorName   string `json:"originalCreditorName"`
	CreditorClassification int32  `json:"creditorClassification"`
}

K1Segment struct for K1Segment

func NewK1Segment added in v0.6.0

func NewK1Segment(segmentIdentifier string, originalCreditorName string, creditorClassification int32) *K1Segment

NewK1Segment instantiates a new K1Segment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewK1SegmentWithDefaults added in v0.6.0

func NewK1SegmentWithDefaults() *K1Segment

NewK1SegmentWithDefaults instantiates a new K1Segment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*K1Segment) GetCreditorClassification added in v0.6.0

func (o *K1Segment) GetCreditorClassification() int32

GetCreditorClassification returns the CreditorClassification field value

func (*K1Segment) GetCreditorClassificationOk added in v0.6.0

func (o *K1Segment) GetCreditorClassificationOk() (*int32, bool)

GetCreditorClassificationOk returns a tuple with the CreditorClassification field value and a boolean to check if the value has been set.

func (*K1Segment) GetOriginalCreditorName added in v0.6.0

func (o *K1Segment) GetOriginalCreditorName() string

GetOriginalCreditorName returns the OriginalCreditorName field value

func (*K1Segment) GetOriginalCreditorNameOk added in v0.6.0

func (o *K1Segment) GetOriginalCreditorNameOk() (*string, bool)

GetOriginalCreditorNameOk returns a tuple with the OriginalCreditorName field value and a boolean to check if the value has been set.

func (*K1Segment) GetSegmentIdentifier added in v0.6.0

func (o *K1Segment) GetSegmentIdentifier() string

GetSegmentIdentifier returns the SegmentIdentifier field value

func (*K1Segment) GetSegmentIdentifierOk added in v0.6.0

func (o *K1Segment) GetSegmentIdentifierOk() (*string, bool)

GetSegmentIdentifierOk returns a tuple with the SegmentIdentifier field value and a boolean to check if the value has been set.

func (K1Segment) MarshalJSON added in v0.6.0

func (o K1Segment) MarshalJSON() ([]byte, error)

func (*K1Segment) SetCreditorClassification added in v0.6.0

func (o *K1Segment) SetCreditorClassification(v int32)

SetCreditorClassification sets field value

func (*K1Segment) SetOriginalCreditorName added in v0.6.0

func (o *K1Segment) SetOriginalCreditorName(v string)

SetOriginalCreditorName sets field value

func (*K1Segment) SetSegmentIdentifier added in v0.6.0

func (o *K1Segment) SetSegmentIdentifier(v string)

SetSegmentIdentifier sets field value

func (K1Segment) ToMap added in v0.6.0

func (o K1Segment) ToMap() (map[string]interface{}, error)

type K2Segment

type K2Segment struct {
	SegmentIdentifier  string `json:"segmentIdentifier"`
	PurchasedIndicator int32  `json:"purchasedIndicator"`
	PurchasedName      string `json:"purchasedName"`
}

K2Segment struct for K2Segment

func NewK2Segment added in v0.6.0

func NewK2Segment(segmentIdentifier string, purchasedIndicator int32, purchasedName string) *K2Segment

NewK2Segment instantiates a new K2Segment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewK2SegmentWithDefaults added in v0.6.0

func NewK2SegmentWithDefaults() *K2Segment

NewK2SegmentWithDefaults instantiates a new K2Segment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*K2Segment) GetPurchasedIndicator added in v0.6.0

func (o *K2Segment) GetPurchasedIndicator() int32

GetPurchasedIndicator returns the PurchasedIndicator field value

func (*K2Segment) GetPurchasedIndicatorOk added in v0.6.0

func (o *K2Segment) GetPurchasedIndicatorOk() (*int32, bool)

GetPurchasedIndicatorOk returns a tuple with the PurchasedIndicator field value and a boolean to check if the value has been set.

func (*K2Segment) GetPurchasedName added in v0.6.0

func (o *K2Segment) GetPurchasedName() string

GetPurchasedName returns the PurchasedName field value

func (*K2Segment) GetPurchasedNameOk added in v0.6.0

func (o *K2Segment) GetPurchasedNameOk() (*string, bool)

GetPurchasedNameOk returns a tuple with the PurchasedName field value and a boolean to check if the value has been set.

func (*K2Segment) GetSegmentIdentifier added in v0.6.0

func (o *K2Segment) GetSegmentIdentifier() string

GetSegmentIdentifier returns the SegmentIdentifier field value

func (*K2Segment) GetSegmentIdentifierOk added in v0.6.0

func (o *K2Segment) GetSegmentIdentifierOk() (*string, bool)

GetSegmentIdentifierOk returns a tuple with the SegmentIdentifier field value and a boolean to check if the value has been set.

func (K2Segment) MarshalJSON added in v0.6.0

func (o K2Segment) MarshalJSON() ([]byte, error)

func (*K2Segment) SetPurchasedIndicator added in v0.6.0

func (o *K2Segment) SetPurchasedIndicator(v int32)

SetPurchasedIndicator sets field value

func (*K2Segment) SetPurchasedName added in v0.6.0

func (o *K2Segment) SetPurchasedName(v string)

SetPurchasedName sets field value

func (*K2Segment) SetSegmentIdentifier added in v0.6.0

func (o *K2Segment) SetSegmentIdentifier(v string)

SetSegmentIdentifier sets field value

func (K2Segment) ToMap added in v0.6.0

func (o K2Segment) ToMap() (map[string]interface{}, error)

type K3Segment

type K3Segment struct {
	SegmentIdentifier            string  `json:"segmentIdentifier"`
	AgencyIdentifier             *int32  `json:"agencyIdentifier,omitempty"`
	AccountNumber                *string `json:"accountNumber,omitempty"`
	MortgageIdentificationNumber *string `json:"mortgageIdentificationNumber,omitempty"`
}

K3Segment struct for K3Segment

func NewK3Segment added in v0.6.0

func NewK3Segment(segmentIdentifier string) *K3Segment

NewK3Segment instantiates a new K3Segment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewK3SegmentWithDefaults added in v0.6.0

func NewK3SegmentWithDefaults() *K3Segment

NewK3SegmentWithDefaults instantiates a new K3Segment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*K3Segment) GetAccountNumber added in v0.6.0

func (o *K3Segment) GetAccountNumber() string

GetAccountNumber returns the AccountNumber field value if set, zero value otherwise.

func (*K3Segment) GetAccountNumberOk added in v0.6.0

func (o *K3Segment) GetAccountNumberOk() (*string, bool)

GetAccountNumberOk returns a tuple with the AccountNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*K3Segment) GetAgencyIdentifier added in v0.6.0

func (o *K3Segment) GetAgencyIdentifier() int32

GetAgencyIdentifier returns the AgencyIdentifier field value if set, zero value otherwise.

func (*K3Segment) GetAgencyIdentifierOk added in v0.6.0

func (o *K3Segment) GetAgencyIdentifierOk() (*int32, bool)

GetAgencyIdentifierOk returns a tuple with the AgencyIdentifier field value if set, nil otherwise and a boolean to check if the value has been set.

func (*K3Segment) GetMortgageIdentificationNumber added in v0.6.0

func (o *K3Segment) GetMortgageIdentificationNumber() string

GetMortgageIdentificationNumber returns the MortgageIdentificationNumber field value if set, zero value otherwise.

func (*K3Segment) GetMortgageIdentificationNumberOk added in v0.6.0

func (o *K3Segment) GetMortgageIdentificationNumberOk() (*string, bool)

GetMortgageIdentificationNumberOk returns a tuple with the MortgageIdentificationNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*K3Segment) GetSegmentIdentifier added in v0.6.0

func (o *K3Segment) GetSegmentIdentifier() string

GetSegmentIdentifier returns the SegmentIdentifier field value

func (*K3Segment) GetSegmentIdentifierOk added in v0.6.0

func (o *K3Segment) GetSegmentIdentifierOk() (*string, bool)

GetSegmentIdentifierOk returns a tuple with the SegmentIdentifier field value and a boolean to check if the value has been set.

func (*K3Segment) HasAccountNumber added in v0.6.0

func (o *K3Segment) HasAccountNumber() bool

HasAccountNumber returns a boolean if a field has been set.

func (*K3Segment) HasAgencyIdentifier added in v0.6.0

func (o *K3Segment) HasAgencyIdentifier() bool

HasAgencyIdentifier returns a boolean if a field has been set.

func (*K3Segment) HasMortgageIdentificationNumber added in v0.6.0

func (o *K3Segment) HasMortgageIdentificationNumber() bool

HasMortgageIdentificationNumber returns a boolean if a field has been set.

func (K3Segment) MarshalJSON added in v0.6.0

func (o K3Segment) MarshalJSON() ([]byte, error)

func (*K3Segment) SetAccountNumber added in v0.6.0

func (o *K3Segment) SetAccountNumber(v string)

SetAccountNumber gets a reference to the given string and assigns it to the AccountNumber field.

func (*K3Segment) SetAgencyIdentifier added in v0.6.0

func (o *K3Segment) SetAgencyIdentifier(v int32)

SetAgencyIdentifier gets a reference to the given int32 and assigns it to the AgencyIdentifier field.

func (*K3Segment) SetMortgageIdentificationNumber added in v0.6.0

func (o *K3Segment) SetMortgageIdentificationNumber(v string)

SetMortgageIdentificationNumber gets a reference to the given string and assigns it to the MortgageIdentificationNumber field.

func (*K3Segment) SetSegmentIdentifier added in v0.6.0

func (o *K3Segment) SetSegmentIdentifier(v string)

SetSegmentIdentifier sets field value

func (K3Segment) ToMap added in v0.6.0

func (o K3Segment) ToMap() (map[string]interface{}, error)

type K4Segment

type K4Segment struct {
	SegmentIdentifier           string     `json:"segmentIdentifier"`
	SpecializedPaymentIndicator int32      `json:"specializedPaymentIndicator"`
	DeferredPaymentStartDate    *time.Time `json:"deferredPaymentStartDate,omitempty"`
	BalloonPaymentDueDate       *time.Time `json:"balloonPaymentDueDate,omitempty"`
	BalloonPaymentAmount        *int32     `json:"balloonPaymentAmount,omitempty"`
}

K4Segment struct for K4Segment

func NewK4Segment added in v0.6.0

func NewK4Segment(segmentIdentifier string, specializedPaymentIndicator int32) *K4Segment

NewK4Segment instantiates a new K4Segment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewK4SegmentWithDefaults added in v0.6.0

func NewK4SegmentWithDefaults() *K4Segment

NewK4SegmentWithDefaults instantiates a new K4Segment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*K4Segment) GetBalloonPaymentAmount added in v0.6.0

func (o *K4Segment) GetBalloonPaymentAmount() int32

GetBalloonPaymentAmount returns the BalloonPaymentAmount field value if set, zero value otherwise.

func (*K4Segment) GetBalloonPaymentAmountOk added in v0.6.0

func (o *K4Segment) GetBalloonPaymentAmountOk() (*int32, bool)

GetBalloonPaymentAmountOk returns a tuple with the BalloonPaymentAmount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*K4Segment) GetBalloonPaymentDueDate added in v0.6.0

func (o *K4Segment) GetBalloonPaymentDueDate() time.Time

GetBalloonPaymentDueDate returns the BalloonPaymentDueDate field value if set, zero value otherwise.

func (*K4Segment) GetBalloonPaymentDueDateOk added in v0.6.0

func (o *K4Segment) GetBalloonPaymentDueDateOk() (*time.Time, bool)

GetBalloonPaymentDueDateOk returns a tuple with the BalloonPaymentDueDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*K4Segment) GetDeferredPaymentStartDate added in v0.6.0

func (o *K4Segment) GetDeferredPaymentStartDate() time.Time

GetDeferredPaymentStartDate returns the DeferredPaymentStartDate field value if set, zero value otherwise.

func (*K4Segment) GetDeferredPaymentStartDateOk added in v0.6.0

func (o *K4Segment) GetDeferredPaymentStartDateOk() (*time.Time, bool)

GetDeferredPaymentStartDateOk returns a tuple with the DeferredPaymentStartDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*K4Segment) GetSegmentIdentifier added in v0.6.0

func (o *K4Segment) GetSegmentIdentifier() string

GetSegmentIdentifier returns the SegmentIdentifier field value

func (*K4Segment) GetSegmentIdentifierOk added in v0.6.0

func (o *K4Segment) GetSegmentIdentifierOk() (*string, bool)

GetSegmentIdentifierOk returns a tuple with the SegmentIdentifier field value and a boolean to check if the value has been set.

func (*K4Segment) GetSpecializedPaymentIndicator added in v0.6.0

func (o *K4Segment) GetSpecializedPaymentIndicator() int32

GetSpecializedPaymentIndicator returns the SpecializedPaymentIndicator field value

func (*K4Segment) GetSpecializedPaymentIndicatorOk added in v0.6.0

func (o *K4Segment) GetSpecializedPaymentIndicatorOk() (*int32, bool)

GetSpecializedPaymentIndicatorOk returns a tuple with the SpecializedPaymentIndicator field value and a boolean to check if the value has been set.

func (*K4Segment) HasBalloonPaymentAmount added in v0.6.0

func (o *K4Segment) HasBalloonPaymentAmount() bool

HasBalloonPaymentAmount returns a boolean if a field has been set.

func (*K4Segment) HasBalloonPaymentDueDate added in v0.6.0

func (o *K4Segment) HasBalloonPaymentDueDate() bool

HasBalloonPaymentDueDate returns a boolean if a field has been set.

func (*K4Segment) HasDeferredPaymentStartDate added in v0.6.0

func (o *K4Segment) HasDeferredPaymentStartDate() bool

HasDeferredPaymentStartDate returns a boolean if a field has been set.

func (K4Segment) MarshalJSON added in v0.6.0

func (o K4Segment) MarshalJSON() ([]byte, error)

func (*K4Segment) SetBalloonPaymentAmount added in v0.6.0

func (o *K4Segment) SetBalloonPaymentAmount(v int32)

SetBalloonPaymentAmount gets a reference to the given int32 and assigns it to the BalloonPaymentAmount field.

func (*K4Segment) SetBalloonPaymentDueDate added in v0.6.0

func (o *K4Segment) SetBalloonPaymentDueDate(v time.Time)

SetBalloonPaymentDueDate gets a reference to the given time.Time and assigns it to the BalloonPaymentDueDate field.

func (*K4Segment) SetDeferredPaymentStartDate added in v0.6.0

func (o *K4Segment) SetDeferredPaymentStartDate(v time.Time)

SetDeferredPaymentStartDate gets a reference to the given time.Time and assigns it to the DeferredPaymentStartDate field.

func (*K4Segment) SetSegmentIdentifier added in v0.6.0

func (o *K4Segment) SetSegmentIdentifier(v string)

SetSegmentIdentifier sets field value

func (*K4Segment) SetSpecializedPaymentIndicator added in v0.6.0

func (o *K4Segment) SetSpecializedPaymentIndicator(v int32)

SetSpecializedPaymentIndicator sets field value

func (K4Segment) ToMap added in v0.6.0

func (o K4Segment) ToMap() (map[string]interface{}, error)

type L1Segment

type L1Segment struct {
	SegmentIdentifier        string  `json:"segmentIdentifier"`
	ChangeIndicator          int32   `json:"changeIndicator"`
	NewConsumerAccountNumber *string `json:"newConsumerAccountNumber,omitempty"`
	BalloonPaymentDueDate    *string `json:"balloonPaymentDueDate,omitempty"`
}

L1Segment struct for L1Segment

func NewL1Segment added in v0.6.0

func NewL1Segment(segmentIdentifier string, changeIndicator int32) *L1Segment

NewL1Segment instantiates a new L1Segment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewL1SegmentWithDefaults added in v0.6.0

func NewL1SegmentWithDefaults() *L1Segment

NewL1SegmentWithDefaults instantiates a new L1Segment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*L1Segment) GetBalloonPaymentDueDate added in v0.6.0

func (o *L1Segment) GetBalloonPaymentDueDate() string

GetBalloonPaymentDueDate returns the BalloonPaymentDueDate field value if set, zero value otherwise.

func (*L1Segment) GetBalloonPaymentDueDateOk added in v0.6.0

func (o *L1Segment) GetBalloonPaymentDueDateOk() (*string, bool)

GetBalloonPaymentDueDateOk returns a tuple with the BalloonPaymentDueDate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*L1Segment) GetChangeIndicator added in v0.6.0

func (o *L1Segment) GetChangeIndicator() int32

GetChangeIndicator returns the ChangeIndicator field value

func (*L1Segment) GetChangeIndicatorOk added in v0.6.0

func (o *L1Segment) GetChangeIndicatorOk() (*int32, bool)

GetChangeIndicatorOk returns a tuple with the ChangeIndicator field value and a boolean to check if the value has been set.

func (*L1Segment) GetNewConsumerAccountNumber added in v0.6.0

func (o *L1Segment) GetNewConsumerAccountNumber() string

GetNewConsumerAccountNumber returns the NewConsumerAccountNumber field value if set, zero value otherwise.

func (*L1Segment) GetNewConsumerAccountNumberOk added in v0.6.0

func (o *L1Segment) GetNewConsumerAccountNumberOk() (*string, bool)

GetNewConsumerAccountNumberOk returns a tuple with the NewConsumerAccountNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*L1Segment) GetSegmentIdentifier added in v0.6.0

func (o *L1Segment) GetSegmentIdentifier() string

GetSegmentIdentifier returns the SegmentIdentifier field value

func (*L1Segment) GetSegmentIdentifierOk added in v0.6.0

func (o *L1Segment) GetSegmentIdentifierOk() (*string, bool)

GetSegmentIdentifierOk returns a tuple with the SegmentIdentifier field value and a boolean to check if the value has been set.

func (*L1Segment) HasBalloonPaymentDueDate added in v0.6.0

func (o *L1Segment) HasBalloonPaymentDueDate() bool

HasBalloonPaymentDueDate returns a boolean if a field has been set.

func (*L1Segment) HasNewConsumerAccountNumber added in v0.6.0

func (o *L1Segment) HasNewConsumerAccountNumber() bool

HasNewConsumerAccountNumber returns a boolean if a field has been set.

func (L1Segment) MarshalJSON added in v0.6.0

func (o L1Segment) MarshalJSON() ([]byte, error)

func (*L1Segment) SetBalloonPaymentDueDate added in v0.6.0

func (o *L1Segment) SetBalloonPaymentDueDate(v string)

SetBalloonPaymentDueDate gets a reference to the given string and assigns it to the BalloonPaymentDueDate field.

func (*L1Segment) SetChangeIndicator added in v0.6.0

func (o *L1Segment) SetChangeIndicator(v int32)

SetChangeIndicator sets field value

func (*L1Segment) SetNewConsumerAccountNumber added in v0.6.0

func (o *L1Segment) SetNewConsumerAccountNumber(v string)

SetNewConsumerAccountNumber gets a reference to the given string and assigns it to the NewConsumerAccountNumber field.

func (*L1Segment) SetSegmentIdentifier added in v0.6.0

func (o *L1Segment) SetSegmentIdentifier(v string)

SetSegmentIdentifier sets field value

func (L1Segment) ToMap added in v0.6.0

func (o L1Segment) ToMap() (map[string]interface{}, error)

type MappedNullable added in v0.6.0

type MappedNullable interface {
	ToMap() (map[string]interface{}, error)
}

type Metro2FilesApiService

type Metro2FilesApiService service

Metro2FilesApiService Metro2FilesApi service

func (*Metro2FilesApiService) Convert

Convert Convert metro2 file

Convert from original metro2 file to new metro2 file

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiConvertRequest

func (*Metro2FilesApiService) ConvertExecute added in v0.6.0

func (a *Metro2FilesApiService) ConvertExecute(r ApiConvertRequest) (*os.File, *http.Response, error)

Execute executes the request

@return *os.File

func (*Metro2FilesApiService) Health

Health health metro2 service

Check the metro2 service to check if running

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiHealthRequest

func (*Metro2FilesApiService) HealthExecute added in v0.6.0

Execute executes the request

@return string

func (*Metro2FilesApiService) Print

Print Print metro2 file with specific format

Print metro2 file with requested file format.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiPrintRequest

func (*Metro2FilesApiService) PrintExecute added in v0.6.0

Execute executes the request

@return string

func (*Metro2FilesApiService) Validator

Validator Validate metro2 file

Validation of metro2 file.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiValidatorRequest

func (*Metro2FilesApiService) ValidatorExecute added in v0.6.0

func (a *Metro2FilesApiService) ValidatorExecute(r ApiValidatorRequest) (string, *http.Response, error)

Execute executes the request

@return string

type N1Segment

type N1Segment struct {
	SegmentIdentifier         string  `json:"segmentIdentifier"`
	EmployerName              string  `json:"employerName"`
	FirstLineEmployerAddress  *string `json:"firstLineEmployerAddress,omitempty"`
	SecondLineEmployerAddress *string `json:"secondLineEmployerAddress,omitempty"`
	EmployerCity              *string `json:"employerCity,omitempty"`
	EmployerState             *string `json:"employerState,omitempty"`
	ZipCode                   *string `json:"zipCode,omitempty"`
	Occupation                *string `json:"occupation,omitempty"`
}

N1Segment struct for N1Segment

func NewN1Segment added in v0.6.0

func NewN1Segment(segmentIdentifier string, employerName string) *N1Segment

NewN1Segment instantiates a new N1Segment object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewN1SegmentWithDefaults added in v0.6.0

func NewN1SegmentWithDefaults() *N1Segment

NewN1SegmentWithDefaults instantiates a new N1Segment object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*N1Segment) GetEmployerCity added in v0.6.0

func (o *N1Segment) GetEmployerCity() string

GetEmployerCity returns the EmployerCity field value if set, zero value otherwise.

func (*N1Segment) GetEmployerCityOk added in v0.6.0

func (o *N1Segment) GetEmployerCityOk() (*string, bool)

GetEmployerCityOk returns a tuple with the EmployerCity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*N1Segment) GetEmployerName added in v0.6.0

func (o *N1Segment) GetEmployerName() string

GetEmployerName returns the EmployerName field value

func (*N1Segment) GetEmployerNameOk added in v0.6.0

func (o *N1Segment) GetEmployerNameOk() (*string, bool)

GetEmployerNameOk returns a tuple with the EmployerName field value and a boolean to check if the value has been set.

func (*N1Segment) GetEmployerState added in v0.6.0

func (o *N1Segment) GetEmployerState() string

GetEmployerState returns the EmployerState field value if set, zero value otherwise.

func (*N1Segment) GetEmployerStateOk added in v0.6.0

func (o *N1Segment) GetEmployerStateOk() (*string, bool)

GetEmployerStateOk returns a tuple with the EmployerState field value if set, nil otherwise and a boolean to check if the value has been set.

func (*N1Segment) GetFirstLineEmployerAddress added in v0.6.0

func (o *N1Segment) GetFirstLineEmployerAddress() string

GetFirstLineEmployerAddress returns the FirstLineEmployerAddress field value if set, zero value otherwise.

func (*N1Segment) GetFirstLineEmployerAddressOk added in v0.6.0

func (o *N1Segment) GetFirstLineEmployerAddressOk() (*string, bool)

GetFirstLineEmployerAddressOk returns a tuple with the FirstLineEmployerAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*N1Segment) GetOccupation added in v0.6.0

func (o *N1Segment) GetOccupation() string

GetOccupation returns the Occupation field value if set, zero value otherwise.

func (*N1Segment) GetOccupationOk added in v0.6.0

func (o *N1Segment) GetOccupationOk() (*string, bool)

GetOccupationOk returns a tuple with the Occupation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*N1Segment) GetSecondLineEmployerAddress added in v0.6.0

func (o *N1Segment) GetSecondLineEmployerAddress() string

GetSecondLineEmployerAddress returns the SecondLineEmployerAddress field value if set, zero value otherwise.

func (*N1Segment) GetSecondLineEmployerAddressOk added in v0.6.0

func (o *N1Segment) GetSecondLineEmployerAddressOk() (*string, bool)

GetSecondLineEmployerAddressOk returns a tuple with the SecondLineEmployerAddress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*N1Segment) GetSegmentIdentifier added in v0.6.0

func (o *N1Segment) GetSegmentIdentifier() string

GetSegmentIdentifier returns the SegmentIdentifier field value

func (*N1Segment) GetSegmentIdentifierOk added in v0.6.0

func (o *N1Segment) GetSegmentIdentifierOk() (*string, bool)

GetSegmentIdentifierOk returns a tuple with the SegmentIdentifier field value and a boolean to check if the value has been set.

func (*N1Segment) GetZipCode added in v0.6.0

func (o *N1Segment) GetZipCode() string

GetZipCode returns the ZipCode field value if set, zero value otherwise.

func (*N1Segment) GetZipCodeOk added in v0.6.0

func (o *N1Segment) GetZipCodeOk() (*string, bool)

GetZipCodeOk returns a tuple with the ZipCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*N1Segment) HasEmployerCity added in v0.6.0

func (o *N1Segment) HasEmployerCity() bool

HasEmployerCity returns a boolean if a field has been set.

func (*N1Segment) HasEmployerState added in v0.6.0

func (o *N1Segment) HasEmployerState() bool

HasEmployerState returns a boolean if a field has been set.

func (*N1Segment) HasFirstLineEmployerAddress added in v0.6.0

func (o *N1Segment) HasFirstLineEmployerAddress() bool

HasFirstLineEmployerAddress returns a boolean if a field has been set.

func (*N1Segment) HasOccupation added in v0.6.0

func (o *N1Segment) HasOccupation() bool

HasOccupation returns a boolean if a field has been set.

func (*N1Segment) HasSecondLineEmployerAddress added in v0.6.0

func (o *N1Segment) HasSecondLineEmployerAddress() bool

HasSecondLineEmployerAddress returns a boolean if a field has been set.

func (*N1Segment) HasZipCode added in v0.6.0

func (o *N1Segment) HasZipCode() bool

HasZipCode returns a boolean if a field has been set.

func (N1Segment) MarshalJSON added in v0.6.0

func (o N1Segment) MarshalJSON() ([]byte, error)

func (*N1Segment) SetEmployerCity added in v0.6.0

func (o *N1Segment) SetEmployerCity(v string)

SetEmployerCity gets a reference to the given string and assigns it to the EmployerCity field.

func (*N1Segment) SetEmployerName added in v0.6.0

func (o *N1Segment) SetEmployerName(v string)

SetEmployerName sets field value

func (*N1Segment) SetEmployerState added in v0.6.0

func (o *N1Segment) SetEmployerState(v string)

SetEmployerState gets a reference to the given string and assigns it to the EmployerState field.

func (*N1Segment) SetFirstLineEmployerAddress added in v0.6.0

func (o *N1Segment) SetFirstLineEmployerAddress(v string)

SetFirstLineEmployerAddress gets a reference to the given string and assigns it to the FirstLineEmployerAddress field.

func (*N1Segment) SetOccupation added in v0.6.0

func (o *N1Segment) SetOccupation(v string)

SetOccupation gets a reference to the given string and assigns it to the Occupation field.

func (*N1Segment) SetSecondLineEmployerAddress added in v0.6.0

func (o *N1Segment) SetSecondLineEmployerAddress(v string)

SetSecondLineEmployerAddress gets a reference to the given string and assigns it to the SecondLineEmployerAddress field.

func (*N1Segment) SetSegmentIdentifier added in v0.6.0

func (o *N1Segment) SetSegmentIdentifier(v string)

SetSegmentIdentifier sets field value

func (*N1Segment) SetZipCode added in v0.6.0

func (o *N1Segment) SetZipCode(v string)

SetZipCode gets a reference to the given string and assigns it to the ZipCode field.

func (N1Segment) ToMap added in v0.6.0

func (o N1Segment) ToMap() (map[string]interface{}, error)

type NullableBaseSegment added in v0.6.0

type NullableBaseSegment struct {
	// contains filtered or unexported fields
}

func NewNullableBaseSegment added in v0.6.0

func NewNullableBaseSegment(val *BaseSegment) *NullableBaseSegment

func (NullableBaseSegment) Get added in v0.6.0

func (NullableBaseSegment) IsSet added in v0.6.0

func (v NullableBaseSegment) IsSet() bool

func (NullableBaseSegment) MarshalJSON added in v0.6.0

func (v NullableBaseSegment) MarshalJSON() ([]byte, error)

func (*NullableBaseSegment) Set added in v0.6.0

func (v *NullableBaseSegment) Set(val *BaseSegment)

func (*NullableBaseSegment) UnmarshalJSON added in v0.6.0

func (v *NullableBaseSegment) UnmarshalJSON(src []byte) error

func (*NullableBaseSegment) Unset added in v0.6.0

func (v *NullableBaseSegment) Unset()

type NullableBool added in v0.6.0

type NullableBool struct {
	// contains filtered or unexported fields
}

func NewNullableBool added in v0.6.0

func NewNullableBool(val *bool) *NullableBool

func (NullableBool) Get added in v0.6.0

func (v NullableBool) Get() *bool

func (NullableBool) IsSet added in v0.6.0

func (v NullableBool) IsSet() bool

func (NullableBool) MarshalJSON added in v0.6.0

func (v NullableBool) MarshalJSON() ([]byte, error)

func (*NullableBool) Set added in v0.6.0

func (v *NullableBool) Set(val *bool)

func (*NullableBool) UnmarshalJSON added in v0.6.0

func (v *NullableBool) UnmarshalJSON(src []byte) error

func (*NullableBool) Unset added in v0.6.0

func (v *NullableBool) Unset()

type NullableDataRecord added in v0.6.0

type NullableDataRecord struct {
	// contains filtered or unexported fields
}

func NewNullableDataRecord added in v0.6.0

func NewNullableDataRecord(val *DataRecord) *NullableDataRecord

func (NullableDataRecord) Get added in v0.6.0

func (v NullableDataRecord) Get() *DataRecord

func (NullableDataRecord) IsSet added in v0.6.0

func (v NullableDataRecord) IsSet() bool

func (NullableDataRecord) MarshalJSON added in v0.6.0

func (v NullableDataRecord) MarshalJSON() ([]byte, error)

func (*NullableDataRecord) Set added in v0.6.0

func (v *NullableDataRecord) Set(val *DataRecord)

func (*NullableDataRecord) UnmarshalJSON added in v0.6.0

func (v *NullableDataRecord) UnmarshalJSON(src []byte) error

func (*NullableDataRecord) Unset added in v0.6.0

func (v *NullableDataRecord) Unset()

type NullableFile added in v0.6.0

type NullableFile struct {
	// contains filtered or unexported fields
}

func NewNullableFile added in v0.6.0

func NewNullableFile(val *File) *NullableFile

func (NullableFile) Get added in v0.6.0

func (v NullableFile) Get() *File

func (NullableFile) IsSet added in v0.6.0

func (v NullableFile) IsSet() bool

func (NullableFile) MarshalJSON added in v0.6.0

func (v NullableFile) MarshalJSON() ([]byte, error)

func (*NullableFile) Set added in v0.6.0

func (v *NullableFile) Set(val *File)

func (*NullableFile) UnmarshalJSON added in v0.6.0

func (v *NullableFile) UnmarshalJSON(src []byte) error

func (*NullableFile) Unset added in v0.6.0

func (v *NullableFile) Unset()

type NullableFloat32 added in v0.6.0

type NullableFloat32 struct {
	// contains filtered or unexported fields
}

func NewNullableFloat32 added in v0.6.0

func NewNullableFloat32(val *float32) *NullableFloat32

func (NullableFloat32) Get added in v0.6.0

func (v NullableFloat32) Get() *float32

func (NullableFloat32) IsSet added in v0.6.0

func (v NullableFloat32) IsSet() bool

func (NullableFloat32) MarshalJSON added in v0.6.0

func (v NullableFloat32) MarshalJSON() ([]byte, error)

func (*NullableFloat32) Set added in v0.6.0

func (v *NullableFloat32) Set(val *float32)

func (*NullableFloat32) UnmarshalJSON added in v0.6.0

func (v *NullableFloat32) UnmarshalJSON(src []byte) error

func (*NullableFloat32) Unset added in v0.6.0

func (v *NullableFloat32) Unset()

type NullableFloat64 added in v0.6.0

type NullableFloat64 struct {
	// contains filtered or unexported fields
}

func NewNullableFloat64 added in v0.6.0

func NewNullableFloat64(val *float64) *NullableFloat64

func (NullableFloat64) Get added in v0.6.0

func (v NullableFloat64) Get() *float64

func (NullableFloat64) IsSet added in v0.6.0

func (v NullableFloat64) IsSet() bool

func (NullableFloat64) MarshalJSON added in v0.6.0

func (v NullableFloat64) MarshalJSON() ([]byte, error)

func (*NullableFloat64) Set added in v0.6.0

func (v *NullableFloat64) Set(val *float64)

func (*NullableFloat64) UnmarshalJSON added in v0.6.0

func (v *NullableFloat64) UnmarshalJSON(src []byte) error

func (*NullableFloat64) Unset added in v0.6.0

func (v *NullableFloat64) Unset()

type NullableHeaderRecord added in v0.6.0

type NullableHeaderRecord struct {
	// contains filtered or unexported fields
}

func NewNullableHeaderRecord added in v0.6.0

func NewNullableHeaderRecord(val *HeaderRecord) *NullableHeaderRecord

func (NullableHeaderRecord) Get added in v0.6.0

func (NullableHeaderRecord) IsSet added in v0.6.0

func (v NullableHeaderRecord) IsSet() bool

func (NullableHeaderRecord) MarshalJSON added in v0.6.0

func (v NullableHeaderRecord) MarshalJSON() ([]byte, error)

func (*NullableHeaderRecord) Set added in v0.6.0

func (v *NullableHeaderRecord) Set(val *HeaderRecord)

func (*NullableHeaderRecord) UnmarshalJSON added in v0.6.0

func (v *NullableHeaderRecord) UnmarshalJSON(src []byte) error

func (*NullableHeaderRecord) Unset added in v0.6.0

func (v *NullableHeaderRecord) Unset()

type NullableInt added in v0.6.0

type NullableInt struct {
	// contains filtered or unexported fields
}

func NewNullableInt added in v0.6.0

func NewNullableInt(val *int) *NullableInt

func (NullableInt) Get added in v0.6.0

func (v NullableInt) Get() *int

func (NullableInt) IsSet added in v0.6.0

func (v NullableInt) IsSet() bool

func (NullableInt) MarshalJSON added in v0.6.0

func (v NullableInt) MarshalJSON() ([]byte, error)

func (*NullableInt) Set added in v0.6.0

func (v *NullableInt) Set(val *int)

func (*NullableInt) UnmarshalJSON added in v0.6.0

func (v *NullableInt) UnmarshalJSON(src []byte) error

func (*NullableInt) Unset added in v0.6.0

func (v *NullableInt) Unset()

type NullableInt32 added in v0.6.0

type NullableInt32 struct {
	// contains filtered or unexported fields
}

func NewNullableInt32 added in v0.6.0

func NewNullableInt32(val *int32) *NullableInt32

func (NullableInt32) Get added in v0.6.0

func (v NullableInt32) Get() *int32

func (NullableInt32) IsSet added in v0.6.0

func (v NullableInt32) IsSet() bool

func (NullableInt32) MarshalJSON added in v0.6.0

func (v NullableInt32) MarshalJSON() ([]byte, error)

func (*NullableInt32) Set added in v0.6.0

func (v *NullableInt32) Set(val *int32)

func (*NullableInt32) UnmarshalJSON added in v0.6.0

func (v *NullableInt32) UnmarshalJSON(src []byte) error

func (*NullableInt32) Unset added in v0.6.0

func (v *NullableInt32) Unset()

type NullableInt64 added in v0.6.0

type NullableInt64 struct {
	// contains filtered or unexported fields
}

func NewNullableInt64 added in v0.6.0

func NewNullableInt64(val *int64) *NullableInt64

func (NullableInt64) Get added in v0.6.0

func (v NullableInt64) Get() *int64

func (NullableInt64) IsSet added in v0.6.0

func (v NullableInt64) IsSet() bool

func (NullableInt64) MarshalJSON added in v0.6.0

func (v NullableInt64) MarshalJSON() ([]byte, error)

func (*NullableInt64) Set added in v0.6.0

func (v *NullableInt64) Set(val *int64)

func (*NullableInt64) UnmarshalJSON added in v0.6.0

func (v *NullableInt64) UnmarshalJSON(src []byte) error

func (*NullableInt64) Unset added in v0.6.0

func (v *NullableInt64) Unset()

type NullableJ1Segment added in v0.6.0

type NullableJ1Segment struct {
	// contains filtered or unexported fields
}

func NewNullableJ1Segment added in v0.6.0

func NewNullableJ1Segment(val *J1Segment) *NullableJ1Segment

func (NullableJ1Segment) Get added in v0.6.0

func (v NullableJ1Segment) Get() *J1Segment

func (NullableJ1Segment) IsSet added in v0.6.0

func (v NullableJ1Segment) IsSet() bool

func (NullableJ1Segment) MarshalJSON added in v0.6.0

func (v NullableJ1Segment) MarshalJSON() ([]byte, error)

func (*NullableJ1Segment) Set added in v0.6.0

func (v *NullableJ1Segment) Set(val *J1Segment)

func (*NullableJ1Segment) UnmarshalJSON added in v0.6.0

func (v *NullableJ1Segment) UnmarshalJSON(src []byte) error

func (*NullableJ1Segment) Unset added in v0.6.0

func (v *NullableJ1Segment) Unset()

type NullableJ2Segment added in v0.6.0

type NullableJ2Segment struct {
	// contains filtered or unexported fields
}

func NewNullableJ2Segment added in v0.6.0

func NewNullableJ2Segment(val *J2Segment) *NullableJ2Segment

func (NullableJ2Segment) Get added in v0.6.0

func (v NullableJ2Segment) Get() *J2Segment

func (NullableJ2Segment) IsSet added in v0.6.0

func (v NullableJ2Segment) IsSet() bool

func (NullableJ2Segment) MarshalJSON added in v0.6.0

func (v NullableJ2Segment) MarshalJSON() ([]byte, error)

func (*NullableJ2Segment) Set added in v0.6.0

func (v *NullableJ2Segment) Set(val *J2Segment)

func (*NullableJ2Segment) UnmarshalJSON added in v0.6.0

func (v *NullableJ2Segment) UnmarshalJSON(src []byte) error

func (*NullableJ2Segment) Unset added in v0.6.0

func (v *NullableJ2Segment) Unset()

type NullableK1Segment added in v0.6.0

type NullableK1Segment struct {
	// contains filtered or unexported fields
}

func NewNullableK1Segment added in v0.6.0

func NewNullableK1Segment(val *K1Segment) *NullableK1Segment

func (NullableK1Segment) Get added in v0.6.0

func (v NullableK1Segment) Get() *K1Segment

func (NullableK1Segment) IsSet added in v0.6.0

func (v NullableK1Segment) IsSet() bool

func (NullableK1Segment) MarshalJSON added in v0.6.0

func (v NullableK1Segment) MarshalJSON() ([]byte, error)

func (*NullableK1Segment) Set added in v0.6.0

func (v *NullableK1Segment) Set(val *K1Segment)

func (*NullableK1Segment) UnmarshalJSON added in v0.6.0

func (v *NullableK1Segment) UnmarshalJSON(src []byte) error

func (*NullableK1Segment) Unset added in v0.6.0

func (v *NullableK1Segment) Unset()

type NullableK2Segment added in v0.6.0

type NullableK2Segment struct {
	// contains filtered or unexported fields
}

func NewNullableK2Segment added in v0.6.0

func NewNullableK2Segment(val *K2Segment) *NullableK2Segment

func (NullableK2Segment) Get added in v0.6.0

func (v NullableK2Segment) Get() *K2Segment

func (NullableK2Segment) IsSet added in v0.6.0

func (v NullableK2Segment) IsSet() bool

func (NullableK2Segment) MarshalJSON added in v0.6.0

func (v NullableK2Segment) MarshalJSON() ([]byte, error)

func (*NullableK2Segment) Set added in v0.6.0

func (v *NullableK2Segment) Set(val *K2Segment)

func (*NullableK2Segment) UnmarshalJSON added in v0.6.0

func (v *NullableK2Segment) UnmarshalJSON(src []byte) error

func (*NullableK2Segment) Unset added in v0.6.0

func (v *NullableK2Segment) Unset()

type NullableK3Segment added in v0.6.0

type NullableK3Segment struct {
	// contains filtered or unexported fields
}

func NewNullableK3Segment added in v0.6.0

func NewNullableK3Segment(val *K3Segment) *NullableK3Segment

func (NullableK3Segment) Get added in v0.6.0

func (v NullableK3Segment) Get() *K3Segment

func (NullableK3Segment) IsSet added in v0.6.0

func (v NullableK3Segment) IsSet() bool

func (NullableK3Segment) MarshalJSON added in v0.6.0

func (v NullableK3Segment) MarshalJSON() ([]byte, error)

func (*NullableK3Segment) Set added in v0.6.0

func (v *NullableK3Segment) Set(val *K3Segment)

func (*NullableK3Segment) UnmarshalJSON added in v0.6.0

func (v *NullableK3Segment) UnmarshalJSON(src []byte) error

func (*NullableK3Segment) Unset added in v0.6.0

func (v *NullableK3Segment) Unset()

type NullableK4Segment added in v0.6.0

type NullableK4Segment struct {
	// contains filtered or unexported fields
}

func NewNullableK4Segment added in v0.6.0

func NewNullableK4Segment(val *K4Segment) *NullableK4Segment

func (NullableK4Segment) Get added in v0.6.0

func (v NullableK4Segment) Get() *K4Segment

func (NullableK4Segment) IsSet added in v0.6.0

func (v NullableK4Segment) IsSet() bool

func (NullableK4Segment) MarshalJSON added in v0.6.0

func (v NullableK4Segment) MarshalJSON() ([]byte, error)

func (*NullableK4Segment) Set added in v0.6.0

func (v *NullableK4Segment) Set(val *K4Segment)

func (*NullableK4Segment) UnmarshalJSON added in v0.6.0

func (v *NullableK4Segment) UnmarshalJSON(src []byte) error

func (*NullableK4Segment) Unset added in v0.6.0

func (v *NullableK4Segment) Unset()

type NullableL1Segment added in v0.6.0

type NullableL1Segment struct {
	// contains filtered or unexported fields
}

func NewNullableL1Segment added in v0.6.0

func NewNullableL1Segment(val *L1Segment) *NullableL1Segment

func (NullableL1Segment) Get added in v0.6.0

func (v NullableL1Segment) Get() *L1Segment

func (NullableL1Segment) IsSet added in v0.6.0

func (v NullableL1Segment) IsSet() bool

func (NullableL1Segment) MarshalJSON added in v0.6.0

func (v NullableL1Segment) MarshalJSON() ([]byte, error)

func (*NullableL1Segment) Set added in v0.6.0

func (v *NullableL1Segment) Set(val *L1Segment)

func (*NullableL1Segment) UnmarshalJSON added in v0.6.0

func (v *NullableL1Segment) UnmarshalJSON(src []byte) error

func (*NullableL1Segment) Unset added in v0.6.0

func (v *NullableL1Segment) Unset()

type NullableN1Segment added in v0.6.0

type NullableN1Segment struct {
	// contains filtered or unexported fields
}

func NewNullableN1Segment added in v0.6.0

func NewNullableN1Segment(val *N1Segment) *NullableN1Segment

func (NullableN1Segment) Get added in v0.6.0

func (v NullableN1Segment) Get() *N1Segment

func (NullableN1Segment) IsSet added in v0.6.0

func (v NullableN1Segment) IsSet() bool

func (NullableN1Segment) MarshalJSON added in v0.6.0

func (v NullableN1Segment) MarshalJSON() ([]byte, error)

func (*NullableN1Segment) Set added in v0.6.0

func (v *NullableN1Segment) Set(val *N1Segment)

func (*NullableN1Segment) UnmarshalJSON added in v0.6.0

func (v *NullableN1Segment) UnmarshalJSON(src []byte) error

func (*NullableN1Segment) Unset added in v0.6.0

func (v *NullableN1Segment) Unset()

type NullableString added in v0.6.0

type NullableString struct {
	// contains filtered or unexported fields
}

func NewNullableString added in v0.6.0

func NewNullableString(val *string) *NullableString

func (NullableString) Get added in v0.6.0

func (v NullableString) Get() *string

func (NullableString) IsSet added in v0.6.0

func (v NullableString) IsSet() bool

func (NullableString) MarshalJSON added in v0.6.0

func (v NullableString) MarshalJSON() ([]byte, error)

func (*NullableString) Set added in v0.6.0

func (v *NullableString) Set(val *string)

func (*NullableString) UnmarshalJSON added in v0.6.0

func (v *NullableString) UnmarshalJSON(src []byte) error

func (*NullableString) Unset added in v0.6.0

func (v *NullableString) Unset()

type NullableTime added in v0.6.0

type NullableTime struct {
	// contains filtered or unexported fields
}

func NewNullableTime added in v0.6.0

func NewNullableTime(val *time.Time) *NullableTime

func (NullableTime) Get added in v0.6.0

func (v NullableTime) Get() *time.Time

func (NullableTime) IsSet added in v0.6.0

func (v NullableTime) IsSet() bool

func (NullableTime) MarshalJSON added in v0.6.0

func (v NullableTime) MarshalJSON() ([]byte, error)

func (*NullableTime) Set added in v0.6.0

func (v *NullableTime) Set(val *time.Time)

func (*NullableTime) UnmarshalJSON added in v0.6.0

func (v *NullableTime) UnmarshalJSON(src []byte) error

func (*NullableTime) Unset added in v0.6.0

func (v *NullableTime) Unset()

type NullableTrailerRecord added in v0.6.0

type NullableTrailerRecord struct {
	// contains filtered or unexported fields
}

func NewNullableTrailerRecord added in v0.6.0

func NewNullableTrailerRecord(val *TrailerRecord) *NullableTrailerRecord

func (NullableTrailerRecord) Get added in v0.6.0

func (NullableTrailerRecord) IsSet added in v0.6.0

func (v NullableTrailerRecord) IsSet() bool

func (NullableTrailerRecord) MarshalJSON added in v0.6.0

func (v NullableTrailerRecord) MarshalJSON() ([]byte, error)

func (*NullableTrailerRecord) Set added in v0.6.0

func (v *NullableTrailerRecord) Set(val *TrailerRecord)

func (*NullableTrailerRecord) UnmarshalJSON added in v0.6.0

func (v *NullableTrailerRecord) UnmarshalJSON(src []byte) error

func (*NullableTrailerRecord) Unset added in v0.6.0

func (v *NullableTrailerRecord) Unset()

type ServerConfiguration

type ServerConfiguration struct {
	URL         string
	Description string
	Variables   map[string]ServerVariable
}

ServerConfiguration stores the information about a server

type ServerConfigurations added in v0.6.0

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL added in v0.6.0

func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error)

URL formats template on a index using given variables

type ServerVariable

type ServerVariable struct {
	Description  string
	DefaultValue string
	EnumValues   []string
}

ServerVariable stores the information about a server variable

type TrailerRecord

type TrailerRecord struct {
	BlockDescriptorWord              *int32 `json:"blockDescriptorWord,omitempty"`
	RecordDescriptorWord             int32  `json:"recordDescriptorWord"`
	RecordIdentifier                 string `json:"recordIdentifier"`
	TotalBaseRecords                 *int32 `json:"totalBaseRecords,omitempty"`
	TotalStatusCodeDF                *int32 `json:"totalStatusCodeDF,omitempty"`
	TotalConsumerSegmentsJ1          *int32 `json:"totalConsumerSegmentsJ1,omitempty"`
	TotalConsumerSegmentsJ2          *int32 `json:"totalConsumerSegmentsJ2,omitempty"`
	BlockCount                       *int32 `json:"blockCount,omitempty"`
	TotalStatusCodeDA                *int32 `json:"totalStatusCodeDA,omitempty"`
	TotalStatusCode05                *int32 `json:"totalStatusCode05,omitempty"`
	TotalStatusCode11                *int32 `json:"totalStatusCode11,omitempty"`
	TotalStatusCode13                *int32 `json:"totalStatusCode13,omitempty"`
	TotalStatusCode61                *int32 `json:"totalStatusCode61,omitempty"`
	TotalStatusCode62                *int32 `json:"totalStatusCode62,omitempty"`
	TotalStatusCode63                *int32 `json:"totalStatusCode63,omitempty"`
	TotalStatusCode64                *int32 `json:"totalStatusCode64,omitempty"`
	TotalStatusCode65                *int32 `json:"totalStatusCode65,omitempty"`
	TotalStatusCode71                *int32 `json:"totalStatusCode71,omitempty"`
	TotalStatusCode78                *int32 `json:"totalStatusCode78,omitempty"`
	TotalStatusCode80                *int32 `json:"totalStatusCode80,omitempty"`
	TotalStatusCode82                *int32 `json:"totalStatusCode82,omitempty"`
	TotalStatusCode83                *int32 `json:"totalStatusCode83,omitempty"`
	TotalStatusCode84                *int32 `json:"totalStatusCode84,omitempty"`
	TotalStatusCode88                *int32 `json:"totalStatusCode88,omitempty"`
	TotalStatusCode89                *int32 `json:"totalStatusCode89,omitempty"`
	TotalStatusCode93                *int32 `json:"totalStatusCode93,omitempty"`
	TotalStatusCode94                *int32 `json:"totalStatusCode94,omitempty"`
	TotalStatusCode95                *int32 `json:"totalStatusCode95,omitempty"`
	TotalStatusCode96                *int32 `json:"totalStatusCode96,omitempty"`
	TotalStatusCode97                *int32 `json:"totalStatusCode97,omitempty"`
	TotalECOACodeZ                   *int32 `json:"totalECOACodeZ,omitempty"`
	TotalEmploymentSegments          *int32 `json:"totalEmploymentSegments,omitempty"`
	TotalOriginalCreditorSegments    *int32 `json:"totalOriginalCreditorSegments,omitempty"`
	TotalPurchasedToSegments         *int32 `json:"totalPurchasedToSegments,omitempty"`
	TotalMortgageInformationSegments *int32 `json:"totalMortgageInformationSegments,omitempty"`
	TotalPaymentInformationSegments  *int32 `json:"totalPaymentInformationSegments,omitempty"`
	TotalChangeSegments              *int32 `json:"totalChangeSegments,omitempty"`
	TotalSocialNumbersAllSegments    *int32 `json:"totalSocialNumbersAllSegments,omitempty"`
	TotalSocialNumbersBaseSegments   *int32 `json:"totalSocialNumbersBaseSegments,omitempty"`
	TotalSocialNumbersJ1Segments     *int32 `json:"totalSocialNumbersJ1Segments,omitempty"`
	TotalSocialNumbersJ2Segments     *int32 `json:"totalSocialNumbersJ2Segments,omitempty"`
	TotalDatesBirthAllSegments       *int32 `json:"totalDatesBirthAllSegments,omitempty"`
	TotalDatesBirthBaseSegments      *int32 `json:"totalDatesBirthBaseSegments,omitempty"`
	TotalDatesBirthJ1Segments        *int32 `json:"totalDatesBirthJ1Segments,omitempty"`
	TotalDatesBirthJ2Segments        *int32 `json:"totalDatesBirthJ2Segments,omitempty"`
	TotalTelephoneNumbersAllSegments *int32 `json:"totalTelephoneNumbersAllSegments,omitempty"`
}

TrailerRecord struct for TrailerRecord

func NewTrailerRecord added in v0.6.0

func NewTrailerRecord(recordDescriptorWord int32, recordIdentifier string) *TrailerRecord

NewTrailerRecord instantiates a new TrailerRecord object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTrailerRecordWithDefaults added in v0.6.0

func NewTrailerRecordWithDefaults() *TrailerRecord

NewTrailerRecordWithDefaults instantiates a new TrailerRecord object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TrailerRecord) GetBlockCount added in v0.6.0

func (o *TrailerRecord) GetBlockCount() int32

GetBlockCount returns the BlockCount field value if set, zero value otherwise.

func (*TrailerRecord) GetBlockCountOk added in v0.6.0

func (o *TrailerRecord) GetBlockCountOk() (*int32, bool)

GetBlockCountOk returns a tuple with the BlockCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrailerRecord) GetBlockDescriptorWord added in v0.6.0

func (o *TrailerRecord) GetBlockDescriptorWord() int32

GetBlockDescriptorWord returns the BlockDescriptorWord field value if set, zero value otherwise.

func (*TrailerRecord) GetBlockDescriptorWordOk added in v0.6.0

func (o *TrailerRecord) GetBlockDescriptorWordOk() (*int32, bool)

GetBlockDescriptorWordOk returns a tuple with the BlockDescriptorWord field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrailerRecord) GetRecordDescriptorWord added in v0.6.0

func (o *TrailerRecord) GetRecordDescriptorWord() int32

GetRecordDescriptorWord returns the RecordDescriptorWord field value

func (*TrailerRecord) GetRecordDescriptorWordOk added in v0.6.0

func (o *TrailerRecord) GetRecordDescriptorWordOk() (*int32, bool)

GetRecordDescriptorWordOk returns a tuple with the RecordDescriptorWord field value and a boolean to check if the value has been set.

func (*TrailerRecord) GetRecordIdentifier added in v0.6.0

func (o *TrailerRecord) GetRecordIdentifier() string

GetRecordIdentifier returns the RecordIdentifier field value

func (*TrailerRecord) GetRecordIdentifierOk added in v0.6.0

func (o *TrailerRecord) GetRecordIdentifierOk() (*string, bool)

GetRecordIdentifierOk returns a tuple with the RecordIdentifier field value and a boolean to check if the value has been set.

func (*TrailerRecord) GetTotalBaseRecords added in v0.6.0

func (o *TrailerRecord) GetTotalBaseRecords() int32

GetTotalBaseRecords returns the TotalBaseRecords field value if set, zero value otherwise.

func (*TrailerRecord) GetTotalBaseRecordsOk added in v0.6.0

func (o *TrailerRecord) GetTotalBaseRecordsOk() (*int32, bool)

GetTotalBaseRecordsOk returns a tuple with the TotalBaseRecords field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrailerRecord) GetTotalChangeSegments added in v0.6.0

func (o *TrailerRecord) GetTotalChangeSegments() int32

GetTotalChangeSegments returns the TotalChangeSegments field value if set, zero value otherwise.

func (*TrailerRecord) GetTotalChangeSegmentsOk added in v0.6.0

func (o *TrailerRecord) GetTotalChangeSegmentsOk() (*int32, bool)

GetTotalChangeSegmentsOk returns a tuple with the TotalChangeSegments field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrailerRecord) GetTotalConsumerSegmentsJ1 added in v0.6.0

func (o *TrailerRecord) GetTotalConsumerSegmentsJ1() int32

GetTotalConsumerSegmentsJ1 returns the TotalConsumerSegmentsJ1 field value if set, zero value otherwise.

func (*TrailerRecord) GetTotalConsumerSegmentsJ1Ok added in v0.6.0

func (o *TrailerRecord) GetTotalConsumerSegmentsJ1Ok() (*int32, bool)

GetTotalConsumerSegmentsJ1Ok returns a tuple with the TotalConsumerSegmentsJ1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrailerRecord) GetTotalConsumerSegmentsJ2 added in v0.6.0

func (o *TrailerRecord) GetTotalConsumerSegmentsJ2() int32

GetTotalConsumerSegmentsJ2 returns the TotalConsumerSegmentsJ2 field value if set, zero value otherwise.

func (*TrailerRecord) GetTotalConsumerSegmentsJ2Ok added in v0.6.0

func (o *TrailerRecord) GetTotalConsumerSegmentsJ2Ok() (*int32, bool)

GetTotalConsumerSegmentsJ2Ok returns a tuple with the TotalConsumerSegmentsJ2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrailerRecord) GetTotalDatesBirthAllSegments added in v0.6.0

func (o *TrailerRecord) GetTotalDatesBirthAllSegments() int32

GetTotalDatesBirthAllSegments returns the TotalDatesBirthAllSegments field value if set, zero value otherwise.

func (*TrailerRecord) GetTotalDatesBirthAllSegmentsOk added in v0.6.0

func (o *TrailerRecord) GetTotalDatesBirthAllSegmentsOk() (*int32, bool)

GetTotalDatesBirthAllSegmentsOk returns a tuple with the TotalDatesBirthAllSegments field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrailerRecord) GetTotalDatesBirthBaseSegments added in v0.6.0

func (o *TrailerRecord) GetTotalDatesBirthBaseSegments() int32

GetTotalDatesBirthBaseSegments returns the TotalDatesBirthBaseSegments field value if set, zero value otherwise.

func (*TrailerRecord) GetTotalDatesBirthBaseSegmentsOk added in v0.6.0

func (o *TrailerRecord) GetTotalDatesBirthBaseSegmentsOk() (*int32, bool)

GetTotalDatesBirthBaseSegmentsOk returns a tuple with the TotalDatesBirthBaseSegments field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrailerRecord) GetTotalDatesBirthJ1Segments added in v0.6.0

func (o *TrailerRecord) GetTotalDatesBirthJ1Segments() int32

GetTotalDatesBirthJ1Segments returns the TotalDatesBirthJ1Segments field value if set, zero value otherwise.

func (*TrailerRecord) GetTotalDatesBirthJ1SegmentsOk added in v0.6.0

func (o *TrailerRecord) GetTotalDatesBirthJ1SegmentsOk() (*int32, bool)

GetTotalDatesBirthJ1SegmentsOk returns a tuple with the TotalDatesBirthJ1Segments field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrailerRecord) GetTotalDatesBirthJ2Segments added in v0.6.0

func (o *TrailerRecord) GetTotalDatesBirthJ2Segments() int32

GetTotalDatesBirthJ2Segments returns the TotalDatesBirthJ2Segments field value if set, zero value otherwise.

func (*TrailerRecord) GetTotalDatesBirthJ2SegmentsOk added in v0.6.0

func (o *TrailerRecord) GetTotalDatesBirthJ2SegmentsOk() (*int32, bool)

GetTotalDatesBirthJ2SegmentsOk returns a tuple with the TotalDatesBirthJ2Segments field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrailerRecord) GetTotalECOACodeZ added in v0.6.0

func (o *TrailerRecord) GetTotalECOACodeZ() int32

GetTotalECOACodeZ returns the TotalECOACodeZ field value if set, zero value otherwise.

func (*TrailerRecord) GetTotalECOACodeZOk added in v0.6.0

func (o *TrailerRecord) GetTotalECOACodeZOk() (*int32, bool)

GetTotalECOACodeZOk returns a tuple with the TotalECOACodeZ field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrailerRecord) GetTotalEmploymentSegments added in v0.6.0

func (o *TrailerRecord) GetTotalEmploymentSegments() int32

GetTotalEmploymentSegments returns the TotalEmploymentSegments field value if set, zero value otherwise.

func (*TrailerRecord) GetTotalEmploymentSegmentsOk added in v0.6.0

func (o *TrailerRecord) GetTotalEmploymentSegmentsOk() (*int32, bool)

GetTotalEmploymentSegmentsOk returns a tuple with the TotalEmploymentSegments field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrailerRecord) GetTotalMortgageInformationSegments added in v0.6.0

func (o *TrailerRecord) GetTotalMortgageInformationSegments() int32

GetTotalMortgageInformationSegments returns the TotalMortgageInformationSegments field value if set, zero value otherwise.

func (*TrailerRecord) GetTotalMortgageInformationSegmentsOk added in v0.6.0

func (o *TrailerRecord) GetTotalMortgageInformationSegmentsOk() (*int32, bool)

GetTotalMortgageInformationSegmentsOk returns a tuple with the TotalMortgageInformationSegments field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrailerRecord) GetTotalOriginalCreditorSegments added in v0.6.0

func (o *TrailerRecord) GetTotalOriginalCreditorSegments() int32

GetTotalOriginalCreditorSegments returns the TotalOriginalCreditorSegments field value if set, zero value otherwise.

func (*TrailerRecord) GetTotalOriginalCreditorSegmentsOk added in v0.6.0

func (o *TrailerRecord) GetTotalOriginalCreditorSegmentsOk() (*int32, bool)

GetTotalOriginalCreditorSegmentsOk returns a tuple with the TotalOriginalCreditorSegments field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrailerRecord) GetTotalPaymentInformationSegments added in v0.6.0

func (o *TrailerRecord) GetTotalPaymentInformationSegments() int32

GetTotalPaymentInformationSegments returns the TotalPaymentInformationSegments field value if set, zero value otherwise.

func (*TrailerRecord) GetTotalPaymentInformationSegmentsOk added in v0.6.0

func (o *TrailerRecord) GetTotalPaymentInformationSegmentsOk() (*int32, bool)

GetTotalPaymentInformationSegmentsOk returns a tuple with the TotalPaymentInformationSegments field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrailerRecord) GetTotalPurchasedToSegments added in v0.6.0

func (o *TrailerRecord) GetTotalPurchasedToSegments() int32

GetTotalPurchasedToSegments returns the TotalPurchasedToSegments field value if set, zero value otherwise.

func (*TrailerRecord) GetTotalPurchasedToSegmentsOk added in v0.6.0

func (o *TrailerRecord) GetTotalPurchasedToSegmentsOk() (*int32, bool)

GetTotalPurchasedToSegmentsOk returns a tuple with the TotalPurchasedToSegments field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrailerRecord) GetTotalSocialNumbersAllSegments added in v0.6.0

func (o *TrailerRecord) GetTotalSocialNumbersAllSegments() int32

GetTotalSocialNumbersAllSegments returns the TotalSocialNumbersAllSegments field value if set, zero value otherwise.

func (*TrailerRecord) GetTotalSocialNumbersAllSegmentsOk added in v0.6.0

func (o *TrailerRecord) GetTotalSocialNumbersAllSegmentsOk() (*int32, bool)

GetTotalSocialNumbersAllSegmentsOk returns a tuple with the TotalSocialNumbersAllSegments field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrailerRecord) GetTotalSocialNumbersBaseSegments added in v0.6.0

func (o *TrailerRecord) GetTotalSocialNumbersBaseSegments() int32

GetTotalSocialNumbersBaseSegments returns the TotalSocialNumbersBaseSegments field value if set, zero value otherwise.

func (*TrailerRecord) GetTotalSocialNumbersBaseSegmentsOk added in v0.6.0

func (o *TrailerRecord) GetTotalSocialNumbersBaseSegmentsOk() (*int32, bool)

GetTotalSocialNumbersBaseSegmentsOk returns a tuple with the TotalSocialNumbersBaseSegments field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrailerRecord) GetTotalSocialNumbersJ1Segments added in v0.6.0

func (o *TrailerRecord) GetTotalSocialNumbersJ1Segments() int32

GetTotalSocialNumbersJ1Segments returns the TotalSocialNumbersJ1Segments field value if set, zero value otherwise.

func (*TrailerRecord) GetTotalSocialNumbersJ1SegmentsOk added in v0.6.0

func (o *TrailerRecord) GetTotalSocialNumbersJ1SegmentsOk() (*int32, bool)

GetTotalSocialNumbersJ1SegmentsOk returns a tuple with the TotalSocialNumbersJ1Segments field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrailerRecord) GetTotalSocialNumbersJ2Segments added in v0.6.0

func (o *TrailerRecord) GetTotalSocialNumbersJ2Segments() int32

GetTotalSocialNumbersJ2Segments returns the TotalSocialNumbersJ2Segments field value if set, zero value otherwise.

func (*TrailerRecord) GetTotalSocialNumbersJ2SegmentsOk added in v0.6.0

func (o *TrailerRecord) GetTotalSocialNumbersJ2SegmentsOk() (*int32, bool)

GetTotalSocialNumbersJ2SegmentsOk returns a tuple with the TotalSocialNumbersJ2Segments field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrailerRecord) GetTotalStatusCode05 added in v0.6.0

func (o *TrailerRecord) GetTotalStatusCode05() int32

GetTotalStatusCode05 returns the TotalStatusCode05 field value if set, zero value otherwise.

func (*TrailerRecord) GetTotalStatusCode05Ok added in v0.6.0

func (o *TrailerRecord) GetTotalStatusCode05Ok() (*int32, bool)

GetTotalStatusCode05Ok returns a tuple with the TotalStatusCode05 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrailerRecord) GetTotalStatusCode11 added in v0.6.0

func (o *TrailerRecord) GetTotalStatusCode11() int32

GetTotalStatusCode11 returns the TotalStatusCode11 field value if set, zero value otherwise.

func (*TrailerRecord) GetTotalStatusCode11Ok added in v0.6.0

func (o *TrailerRecord) GetTotalStatusCode11Ok() (*int32, bool)

GetTotalStatusCode11Ok returns a tuple with the TotalStatusCode11 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrailerRecord) GetTotalStatusCode13 added in v0.6.0

func (o *TrailerRecord) GetTotalStatusCode13() int32

GetTotalStatusCode13 returns the TotalStatusCode13 field value if set, zero value otherwise.

func (*TrailerRecord) GetTotalStatusCode13Ok added in v0.6.0

func (o *TrailerRecord) GetTotalStatusCode13Ok() (*int32, bool)

GetTotalStatusCode13Ok returns a tuple with the TotalStatusCode13 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrailerRecord) GetTotalStatusCode61 added in v0.6.0

func (o *TrailerRecord) GetTotalStatusCode61() int32

GetTotalStatusCode61 returns the TotalStatusCode61 field value if set, zero value otherwise.

func (*TrailerRecord) GetTotalStatusCode61Ok added in v0.6.0

func (o *TrailerRecord) GetTotalStatusCode61Ok() (*int32, bool)

GetTotalStatusCode61Ok returns a tuple with the TotalStatusCode61 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrailerRecord) GetTotalStatusCode62 added in v0.6.0

func (o *TrailerRecord) GetTotalStatusCode62() int32

GetTotalStatusCode62 returns the TotalStatusCode62 field value if set, zero value otherwise.

func (*TrailerRecord) GetTotalStatusCode62Ok added in v0.6.0

func (o *TrailerRecord) GetTotalStatusCode62Ok() (*int32, bool)

GetTotalStatusCode62Ok returns a tuple with the TotalStatusCode62 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrailerRecord) GetTotalStatusCode63 added in v0.6.0

func (o *TrailerRecord) GetTotalStatusCode63() int32

GetTotalStatusCode63 returns the TotalStatusCode63 field value if set, zero value otherwise.

func (*TrailerRecord) GetTotalStatusCode63Ok added in v0.6.0

func (o *TrailerRecord) GetTotalStatusCode63Ok() (*int32, bool)

GetTotalStatusCode63Ok returns a tuple with the TotalStatusCode63 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrailerRecord) GetTotalStatusCode64 added in v0.6.0

func (o *TrailerRecord) GetTotalStatusCode64() int32

GetTotalStatusCode64 returns the TotalStatusCode64 field value if set, zero value otherwise.

func (*TrailerRecord) GetTotalStatusCode64Ok added in v0.6.0

func (o *TrailerRecord) GetTotalStatusCode64Ok() (*int32, bool)

GetTotalStatusCode64Ok returns a tuple with the TotalStatusCode64 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrailerRecord) GetTotalStatusCode65 added in v0.6.0

func (o *TrailerRecord) GetTotalStatusCode65() int32

GetTotalStatusCode65 returns the TotalStatusCode65 field value if set, zero value otherwise.

func (*TrailerRecord) GetTotalStatusCode65Ok added in v0.6.0

func (o *TrailerRecord) GetTotalStatusCode65Ok() (*int32, bool)

GetTotalStatusCode65Ok returns a tuple with the TotalStatusCode65 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrailerRecord) GetTotalStatusCode71 added in v0.6.0

func (o *TrailerRecord) GetTotalStatusCode71() int32

GetTotalStatusCode71 returns the TotalStatusCode71 field value if set, zero value otherwise.

func (*TrailerRecord) GetTotalStatusCode71Ok added in v0.6.0

func (o *TrailerRecord) GetTotalStatusCode71Ok() (*int32, bool)

GetTotalStatusCode71Ok returns a tuple with the TotalStatusCode71 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrailerRecord) GetTotalStatusCode78 added in v0.6.0

func (o *TrailerRecord) GetTotalStatusCode78() int32

GetTotalStatusCode78 returns the TotalStatusCode78 field value if set, zero value otherwise.

func (*TrailerRecord) GetTotalStatusCode78Ok added in v0.6.0

func (o *TrailerRecord) GetTotalStatusCode78Ok() (*int32, bool)

GetTotalStatusCode78Ok returns a tuple with the TotalStatusCode78 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrailerRecord) GetTotalStatusCode80 added in v0.6.0

func (o *TrailerRecord) GetTotalStatusCode80() int32

GetTotalStatusCode80 returns the TotalStatusCode80 field value if set, zero value otherwise.

func (*TrailerRecord) GetTotalStatusCode80Ok added in v0.6.0

func (o *TrailerRecord) GetTotalStatusCode80Ok() (*int32, bool)

GetTotalStatusCode80Ok returns a tuple with the TotalStatusCode80 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrailerRecord) GetTotalStatusCode82 added in v0.6.0

func (o *TrailerRecord) GetTotalStatusCode82() int32

GetTotalStatusCode82 returns the TotalStatusCode82 field value if set, zero value otherwise.

func (*TrailerRecord) GetTotalStatusCode82Ok added in v0.6.0

func (o *TrailerRecord) GetTotalStatusCode82Ok() (*int32, bool)

GetTotalStatusCode82Ok returns a tuple with the TotalStatusCode82 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrailerRecord) GetTotalStatusCode83 added in v0.6.0

func (o *TrailerRecord) GetTotalStatusCode83() int32

GetTotalStatusCode83 returns the TotalStatusCode83 field value if set, zero value otherwise.

func (*TrailerRecord) GetTotalStatusCode83Ok added in v0.6.0

func (o *TrailerRecord) GetTotalStatusCode83Ok() (*int32, bool)

GetTotalStatusCode83Ok returns a tuple with the TotalStatusCode83 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrailerRecord) GetTotalStatusCode84 added in v0.6.0

func (o *TrailerRecord) GetTotalStatusCode84() int32

GetTotalStatusCode84 returns the TotalStatusCode84 field value if set, zero value otherwise.

func (*TrailerRecord) GetTotalStatusCode84Ok added in v0.6.0

func (o *TrailerRecord) GetTotalStatusCode84Ok() (*int32, bool)

GetTotalStatusCode84Ok returns a tuple with the TotalStatusCode84 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrailerRecord) GetTotalStatusCode88 added in v0.6.0

func (o *TrailerRecord) GetTotalStatusCode88() int32

GetTotalStatusCode88 returns the TotalStatusCode88 field value if set, zero value otherwise.

func (*TrailerRecord) GetTotalStatusCode88Ok added in v0.6.0

func (o *TrailerRecord) GetTotalStatusCode88Ok() (*int32, bool)

GetTotalStatusCode88Ok returns a tuple with the TotalStatusCode88 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrailerRecord) GetTotalStatusCode89 added in v0.6.0

func (o *TrailerRecord) GetTotalStatusCode89() int32

GetTotalStatusCode89 returns the TotalStatusCode89 field value if set, zero value otherwise.

func (*TrailerRecord) GetTotalStatusCode89Ok added in v0.6.0

func (o *TrailerRecord) GetTotalStatusCode89Ok() (*int32, bool)

GetTotalStatusCode89Ok returns a tuple with the TotalStatusCode89 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrailerRecord) GetTotalStatusCode93 added in v0.6.0

func (o *TrailerRecord) GetTotalStatusCode93() int32

GetTotalStatusCode93 returns the TotalStatusCode93 field value if set, zero value otherwise.

func (*TrailerRecord) GetTotalStatusCode93Ok added in v0.6.0

func (o *TrailerRecord) GetTotalStatusCode93Ok() (*int32, bool)

GetTotalStatusCode93Ok returns a tuple with the TotalStatusCode93 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrailerRecord) GetTotalStatusCode94 added in v0.6.0

func (o *TrailerRecord) GetTotalStatusCode94() int32

GetTotalStatusCode94 returns the TotalStatusCode94 field value if set, zero value otherwise.

func (*TrailerRecord) GetTotalStatusCode94Ok added in v0.6.0

func (o *TrailerRecord) GetTotalStatusCode94Ok() (*int32, bool)

GetTotalStatusCode94Ok returns a tuple with the TotalStatusCode94 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrailerRecord) GetTotalStatusCode95 added in v0.6.0

func (o *TrailerRecord) GetTotalStatusCode95() int32

GetTotalStatusCode95 returns the TotalStatusCode95 field value if set, zero value otherwise.

func (*TrailerRecord) GetTotalStatusCode95Ok added in v0.6.0

func (o *TrailerRecord) GetTotalStatusCode95Ok() (*int32, bool)

GetTotalStatusCode95Ok returns a tuple with the TotalStatusCode95 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrailerRecord) GetTotalStatusCode96 added in v0.6.0

func (o *TrailerRecord) GetTotalStatusCode96() int32

GetTotalStatusCode96 returns the TotalStatusCode96 field value if set, zero value otherwise.

func (*TrailerRecord) GetTotalStatusCode96Ok added in v0.6.0

func (o *TrailerRecord) GetTotalStatusCode96Ok() (*int32, bool)

GetTotalStatusCode96Ok returns a tuple with the TotalStatusCode96 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrailerRecord) GetTotalStatusCode97 added in v0.6.0

func (o *TrailerRecord) GetTotalStatusCode97() int32

GetTotalStatusCode97 returns the TotalStatusCode97 field value if set, zero value otherwise.

func (*TrailerRecord) GetTotalStatusCode97Ok added in v0.6.0

func (o *TrailerRecord) GetTotalStatusCode97Ok() (*int32, bool)

GetTotalStatusCode97Ok returns a tuple with the TotalStatusCode97 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrailerRecord) GetTotalStatusCodeDA added in v0.6.0

func (o *TrailerRecord) GetTotalStatusCodeDA() int32

GetTotalStatusCodeDA returns the TotalStatusCodeDA field value if set, zero value otherwise.

func (*TrailerRecord) GetTotalStatusCodeDAOk added in v0.6.0

func (o *TrailerRecord) GetTotalStatusCodeDAOk() (*int32, bool)

GetTotalStatusCodeDAOk returns a tuple with the TotalStatusCodeDA field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrailerRecord) GetTotalStatusCodeDF added in v0.6.0

func (o *TrailerRecord) GetTotalStatusCodeDF() int32

GetTotalStatusCodeDF returns the TotalStatusCodeDF field value if set, zero value otherwise.

func (*TrailerRecord) GetTotalStatusCodeDFOk added in v0.6.0

func (o *TrailerRecord) GetTotalStatusCodeDFOk() (*int32, bool)

GetTotalStatusCodeDFOk returns a tuple with the TotalStatusCodeDF field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrailerRecord) GetTotalTelephoneNumbersAllSegments added in v0.6.0

func (o *TrailerRecord) GetTotalTelephoneNumbersAllSegments() int32

GetTotalTelephoneNumbersAllSegments returns the TotalTelephoneNumbersAllSegments field value if set, zero value otherwise.

func (*TrailerRecord) GetTotalTelephoneNumbersAllSegmentsOk added in v0.6.0

func (o *TrailerRecord) GetTotalTelephoneNumbersAllSegmentsOk() (*int32, bool)

GetTotalTelephoneNumbersAllSegmentsOk returns a tuple with the TotalTelephoneNumbersAllSegments field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TrailerRecord) HasBlockCount added in v0.6.0

func (o *TrailerRecord) HasBlockCount() bool

HasBlockCount returns a boolean if a field has been set.

func (*TrailerRecord) HasBlockDescriptorWord added in v0.6.0

func (o *TrailerRecord) HasBlockDescriptorWord() bool

HasBlockDescriptorWord returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalBaseRecords added in v0.6.0

func (o *TrailerRecord) HasTotalBaseRecords() bool

HasTotalBaseRecords returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalChangeSegments added in v0.6.0

func (o *TrailerRecord) HasTotalChangeSegments() bool

HasTotalChangeSegments returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalConsumerSegmentsJ1 added in v0.6.0

func (o *TrailerRecord) HasTotalConsumerSegmentsJ1() bool

HasTotalConsumerSegmentsJ1 returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalConsumerSegmentsJ2 added in v0.6.0

func (o *TrailerRecord) HasTotalConsumerSegmentsJ2() bool

HasTotalConsumerSegmentsJ2 returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalDatesBirthAllSegments added in v0.6.0

func (o *TrailerRecord) HasTotalDatesBirthAllSegments() bool

HasTotalDatesBirthAllSegments returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalDatesBirthBaseSegments added in v0.6.0

func (o *TrailerRecord) HasTotalDatesBirthBaseSegments() bool

HasTotalDatesBirthBaseSegments returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalDatesBirthJ1Segments added in v0.6.0

func (o *TrailerRecord) HasTotalDatesBirthJ1Segments() bool

HasTotalDatesBirthJ1Segments returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalDatesBirthJ2Segments added in v0.6.0

func (o *TrailerRecord) HasTotalDatesBirthJ2Segments() bool

HasTotalDatesBirthJ2Segments returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalECOACodeZ added in v0.6.0

func (o *TrailerRecord) HasTotalECOACodeZ() bool

HasTotalECOACodeZ returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalEmploymentSegments added in v0.6.0

func (o *TrailerRecord) HasTotalEmploymentSegments() bool

HasTotalEmploymentSegments returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalMortgageInformationSegments added in v0.6.0

func (o *TrailerRecord) HasTotalMortgageInformationSegments() bool

HasTotalMortgageInformationSegments returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalOriginalCreditorSegments added in v0.6.0

func (o *TrailerRecord) HasTotalOriginalCreditorSegments() bool

HasTotalOriginalCreditorSegments returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalPaymentInformationSegments added in v0.6.0

func (o *TrailerRecord) HasTotalPaymentInformationSegments() bool

HasTotalPaymentInformationSegments returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalPurchasedToSegments added in v0.6.0

func (o *TrailerRecord) HasTotalPurchasedToSegments() bool

HasTotalPurchasedToSegments returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalSocialNumbersAllSegments added in v0.6.0

func (o *TrailerRecord) HasTotalSocialNumbersAllSegments() bool

HasTotalSocialNumbersAllSegments returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalSocialNumbersBaseSegments added in v0.6.0

func (o *TrailerRecord) HasTotalSocialNumbersBaseSegments() bool

HasTotalSocialNumbersBaseSegments returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalSocialNumbersJ1Segments added in v0.6.0

func (o *TrailerRecord) HasTotalSocialNumbersJ1Segments() bool

HasTotalSocialNumbersJ1Segments returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalSocialNumbersJ2Segments added in v0.6.0

func (o *TrailerRecord) HasTotalSocialNumbersJ2Segments() bool

HasTotalSocialNumbersJ2Segments returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalStatusCode05 added in v0.6.0

func (o *TrailerRecord) HasTotalStatusCode05() bool

HasTotalStatusCode05 returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalStatusCode11 added in v0.6.0

func (o *TrailerRecord) HasTotalStatusCode11() bool

HasTotalStatusCode11 returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalStatusCode13 added in v0.6.0

func (o *TrailerRecord) HasTotalStatusCode13() bool

HasTotalStatusCode13 returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalStatusCode61 added in v0.6.0

func (o *TrailerRecord) HasTotalStatusCode61() bool

HasTotalStatusCode61 returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalStatusCode62 added in v0.6.0

func (o *TrailerRecord) HasTotalStatusCode62() bool

HasTotalStatusCode62 returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalStatusCode63 added in v0.6.0

func (o *TrailerRecord) HasTotalStatusCode63() bool

HasTotalStatusCode63 returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalStatusCode64 added in v0.6.0

func (o *TrailerRecord) HasTotalStatusCode64() bool

HasTotalStatusCode64 returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalStatusCode65 added in v0.6.0

func (o *TrailerRecord) HasTotalStatusCode65() bool

HasTotalStatusCode65 returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalStatusCode71 added in v0.6.0

func (o *TrailerRecord) HasTotalStatusCode71() bool

HasTotalStatusCode71 returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalStatusCode78 added in v0.6.0

func (o *TrailerRecord) HasTotalStatusCode78() bool

HasTotalStatusCode78 returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalStatusCode80 added in v0.6.0

func (o *TrailerRecord) HasTotalStatusCode80() bool

HasTotalStatusCode80 returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalStatusCode82 added in v0.6.0

func (o *TrailerRecord) HasTotalStatusCode82() bool

HasTotalStatusCode82 returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalStatusCode83 added in v0.6.0

func (o *TrailerRecord) HasTotalStatusCode83() bool

HasTotalStatusCode83 returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalStatusCode84 added in v0.6.0

func (o *TrailerRecord) HasTotalStatusCode84() bool

HasTotalStatusCode84 returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalStatusCode88 added in v0.6.0

func (o *TrailerRecord) HasTotalStatusCode88() bool

HasTotalStatusCode88 returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalStatusCode89 added in v0.6.0

func (o *TrailerRecord) HasTotalStatusCode89() bool

HasTotalStatusCode89 returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalStatusCode93 added in v0.6.0

func (o *TrailerRecord) HasTotalStatusCode93() bool

HasTotalStatusCode93 returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalStatusCode94 added in v0.6.0

func (o *TrailerRecord) HasTotalStatusCode94() bool

HasTotalStatusCode94 returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalStatusCode95 added in v0.6.0

func (o *TrailerRecord) HasTotalStatusCode95() bool

HasTotalStatusCode95 returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalStatusCode96 added in v0.6.0

func (o *TrailerRecord) HasTotalStatusCode96() bool

HasTotalStatusCode96 returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalStatusCode97 added in v0.6.0

func (o *TrailerRecord) HasTotalStatusCode97() bool

HasTotalStatusCode97 returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalStatusCodeDA added in v0.6.0

func (o *TrailerRecord) HasTotalStatusCodeDA() bool

HasTotalStatusCodeDA returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalStatusCodeDF added in v0.6.0

func (o *TrailerRecord) HasTotalStatusCodeDF() bool

HasTotalStatusCodeDF returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalTelephoneNumbersAllSegments added in v0.6.0

func (o *TrailerRecord) HasTotalTelephoneNumbersAllSegments() bool

HasTotalTelephoneNumbersAllSegments returns a boolean if a field has been set.

func (TrailerRecord) MarshalJSON added in v0.6.0

func (o TrailerRecord) MarshalJSON() ([]byte, error)

func (*TrailerRecord) SetBlockCount added in v0.6.0

func (o *TrailerRecord) SetBlockCount(v int32)

SetBlockCount gets a reference to the given int32 and assigns it to the BlockCount field.

func (*TrailerRecord) SetBlockDescriptorWord added in v0.6.0

func (o *TrailerRecord) SetBlockDescriptorWord(v int32)

SetBlockDescriptorWord gets a reference to the given int32 and assigns it to the BlockDescriptorWord field.

func (*TrailerRecord) SetRecordDescriptorWord added in v0.6.0

func (o *TrailerRecord) SetRecordDescriptorWord(v int32)

SetRecordDescriptorWord sets field value

func (*TrailerRecord) SetRecordIdentifier added in v0.6.0

func (o *TrailerRecord) SetRecordIdentifier(v string)

SetRecordIdentifier sets field value

func (*TrailerRecord) SetTotalBaseRecords added in v0.6.0

func (o *TrailerRecord) SetTotalBaseRecords(v int32)

SetTotalBaseRecords gets a reference to the given int32 and assigns it to the TotalBaseRecords field.

func (*TrailerRecord) SetTotalChangeSegments added in v0.6.0

func (o *TrailerRecord) SetTotalChangeSegments(v int32)

SetTotalChangeSegments gets a reference to the given int32 and assigns it to the TotalChangeSegments field.

func (*TrailerRecord) SetTotalConsumerSegmentsJ1 added in v0.6.0

func (o *TrailerRecord) SetTotalConsumerSegmentsJ1(v int32)

SetTotalConsumerSegmentsJ1 gets a reference to the given int32 and assigns it to the TotalConsumerSegmentsJ1 field.

func (*TrailerRecord) SetTotalConsumerSegmentsJ2 added in v0.6.0

func (o *TrailerRecord) SetTotalConsumerSegmentsJ2(v int32)

SetTotalConsumerSegmentsJ2 gets a reference to the given int32 and assigns it to the TotalConsumerSegmentsJ2 field.

func (*TrailerRecord) SetTotalDatesBirthAllSegments added in v0.6.0

func (o *TrailerRecord) SetTotalDatesBirthAllSegments(v int32)

SetTotalDatesBirthAllSegments gets a reference to the given int32 and assigns it to the TotalDatesBirthAllSegments field.

func (*TrailerRecord) SetTotalDatesBirthBaseSegments added in v0.6.0

func (o *TrailerRecord) SetTotalDatesBirthBaseSegments(v int32)

SetTotalDatesBirthBaseSegments gets a reference to the given int32 and assigns it to the TotalDatesBirthBaseSegments field.

func (*TrailerRecord) SetTotalDatesBirthJ1Segments added in v0.6.0

func (o *TrailerRecord) SetTotalDatesBirthJ1Segments(v int32)

SetTotalDatesBirthJ1Segments gets a reference to the given int32 and assigns it to the TotalDatesBirthJ1Segments field.

func (*TrailerRecord) SetTotalDatesBirthJ2Segments added in v0.6.0

func (o *TrailerRecord) SetTotalDatesBirthJ2Segments(v int32)

SetTotalDatesBirthJ2Segments gets a reference to the given int32 and assigns it to the TotalDatesBirthJ2Segments field.

func (*TrailerRecord) SetTotalECOACodeZ added in v0.6.0

func (o *TrailerRecord) SetTotalECOACodeZ(v int32)

SetTotalECOACodeZ gets a reference to the given int32 and assigns it to the TotalECOACodeZ field.

func (*TrailerRecord) SetTotalEmploymentSegments added in v0.6.0

func (o *TrailerRecord) SetTotalEmploymentSegments(v int32)

SetTotalEmploymentSegments gets a reference to the given int32 and assigns it to the TotalEmploymentSegments field.

func (*TrailerRecord) SetTotalMortgageInformationSegments added in v0.6.0

func (o *TrailerRecord) SetTotalMortgageInformationSegments(v int32)

SetTotalMortgageInformationSegments gets a reference to the given int32 and assigns it to the TotalMortgageInformationSegments field.

func (*TrailerRecord) SetTotalOriginalCreditorSegments added in v0.6.0

func (o *TrailerRecord) SetTotalOriginalCreditorSegments(v int32)

SetTotalOriginalCreditorSegments gets a reference to the given int32 and assigns it to the TotalOriginalCreditorSegments field.

func (*TrailerRecord) SetTotalPaymentInformationSegments added in v0.6.0

func (o *TrailerRecord) SetTotalPaymentInformationSegments(v int32)

SetTotalPaymentInformationSegments gets a reference to the given int32 and assigns it to the TotalPaymentInformationSegments field.

func (*TrailerRecord) SetTotalPurchasedToSegments added in v0.6.0

func (o *TrailerRecord) SetTotalPurchasedToSegments(v int32)

SetTotalPurchasedToSegments gets a reference to the given int32 and assigns it to the TotalPurchasedToSegments field.

func (*TrailerRecord) SetTotalSocialNumbersAllSegments added in v0.6.0

func (o *TrailerRecord) SetTotalSocialNumbersAllSegments(v int32)

SetTotalSocialNumbersAllSegments gets a reference to the given int32 and assigns it to the TotalSocialNumbersAllSegments field.

func (*TrailerRecord) SetTotalSocialNumbersBaseSegments added in v0.6.0

func (o *TrailerRecord) SetTotalSocialNumbersBaseSegments(v int32)

SetTotalSocialNumbersBaseSegments gets a reference to the given int32 and assigns it to the TotalSocialNumbersBaseSegments field.

func (*TrailerRecord) SetTotalSocialNumbersJ1Segments added in v0.6.0

func (o *TrailerRecord) SetTotalSocialNumbersJ1Segments(v int32)

SetTotalSocialNumbersJ1Segments gets a reference to the given int32 and assigns it to the TotalSocialNumbersJ1Segments field.

func (*TrailerRecord) SetTotalSocialNumbersJ2Segments added in v0.6.0

func (o *TrailerRecord) SetTotalSocialNumbersJ2Segments(v int32)

SetTotalSocialNumbersJ2Segments gets a reference to the given int32 and assigns it to the TotalSocialNumbersJ2Segments field.

func (*TrailerRecord) SetTotalStatusCode05 added in v0.6.0

func (o *TrailerRecord) SetTotalStatusCode05(v int32)

SetTotalStatusCode05 gets a reference to the given int32 and assigns it to the TotalStatusCode05 field.

func (*TrailerRecord) SetTotalStatusCode11 added in v0.6.0

func (o *TrailerRecord) SetTotalStatusCode11(v int32)

SetTotalStatusCode11 gets a reference to the given int32 and assigns it to the TotalStatusCode11 field.

func (*TrailerRecord) SetTotalStatusCode13 added in v0.6.0

func (o *TrailerRecord) SetTotalStatusCode13(v int32)

SetTotalStatusCode13 gets a reference to the given int32 and assigns it to the TotalStatusCode13 field.

func (*TrailerRecord) SetTotalStatusCode61 added in v0.6.0

func (o *TrailerRecord) SetTotalStatusCode61(v int32)

SetTotalStatusCode61 gets a reference to the given int32 and assigns it to the TotalStatusCode61 field.

func (*TrailerRecord) SetTotalStatusCode62 added in v0.6.0

func (o *TrailerRecord) SetTotalStatusCode62(v int32)

SetTotalStatusCode62 gets a reference to the given int32 and assigns it to the TotalStatusCode62 field.

func (*TrailerRecord) SetTotalStatusCode63 added in v0.6.0

func (o *TrailerRecord) SetTotalStatusCode63(v int32)

SetTotalStatusCode63 gets a reference to the given int32 and assigns it to the TotalStatusCode63 field.

func (*TrailerRecord) SetTotalStatusCode64 added in v0.6.0

func (o *TrailerRecord) SetTotalStatusCode64(v int32)

SetTotalStatusCode64 gets a reference to the given int32 and assigns it to the TotalStatusCode64 field.

func (*TrailerRecord) SetTotalStatusCode65 added in v0.6.0

func (o *TrailerRecord) SetTotalStatusCode65(v int32)

SetTotalStatusCode65 gets a reference to the given int32 and assigns it to the TotalStatusCode65 field.

func (*TrailerRecord) SetTotalStatusCode71 added in v0.6.0

func (o *TrailerRecord) SetTotalStatusCode71(v int32)

SetTotalStatusCode71 gets a reference to the given int32 and assigns it to the TotalStatusCode71 field.

func (*TrailerRecord) SetTotalStatusCode78 added in v0.6.0

func (o *TrailerRecord) SetTotalStatusCode78(v int32)

SetTotalStatusCode78 gets a reference to the given int32 and assigns it to the TotalStatusCode78 field.

func (*TrailerRecord) SetTotalStatusCode80 added in v0.6.0

func (o *TrailerRecord) SetTotalStatusCode80(v int32)

SetTotalStatusCode80 gets a reference to the given int32 and assigns it to the TotalStatusCode80 field.

func (*TrailerRecord) SetTotalStatusCode82 added in v0.6.0

func (o *TrailerRecord) SetTotalStatusCode82(v int32)

SetTotalStatusCode82 gets a reference to the given int32 and assigns it to the TotalStatusCode82 field.

func (*TrailerRecord) SetTotalStatusCode83 added in v0.6.0

func (o *TrailerRecord) SetTotalStatusCode83(v int32)

SetTotalStatusCode83 gets a reference to the given int32 and assigns it to the TotalStatusCode83 field.

func (*TrailerRecord) SetTotalStatusCode84 added in v0.6.0

func (o *TrailerRecord) SetTotalStatusCode84(v int32)

SetTotalStatusCode84 gets a reference to the given int32 and assigns it to the TotalStatusCode84 field.

func (*TrailerRecord) SetTotalStatusCode88 added in v0.6.0

func (o *TrailerRecord) SetTotalStatusCode88(v int32)

SetTotalStatusCode88 gets a reference to the given int32 and assigns it to the TotalStatusCode88 field.

func (*TrailerRecord) SetTotalStatusCode89 added in v0.6.0

func (o *TrailerRecord) SetTotalStatusCode89(v int32)

SetTotalStatusCode89 gets a reference to the given int32 and assigns it to the TotalStatusCode89 field.

func (*TrailerRecord) SetTotalStatusCode93 added in v0.6.0

func (o *TrailerRecord) SetTotalStatusCode93(v int32)

SetTotalStatusCode93 gets a reference to the given int32 and assigns it to the TotalStatusCode93 field.

func (*TrailerRecord) SetTotalStatusCode94 added in v0.6.0

func (o *TrailerRecord) SetTotalStatusCode94(v int32)

SetTotalStatusCode94 gets a reference to the given int32 and assigns it to the TotalStatusCode94 field.

func (*TrailerRecord) SetTotalStatusCode95 added in v0.6.0

func (o *TrailerRecord) SetTotalStatusCode95(v int32)

SetTotalStatusCode95 gets a reference to the given int32 and assigns it to the TotalStatusCode95 field.

func (*TrailerRecord) SetTotalStatusCode96 added in v0.6.0

func (o *TrailerRecord) SetTotalStatusCode96(v int32)

SetTotalStatusCode96 gets a reference to the given int32 and assigns it to the TotalStatusCode96 field.

func (*TrailerRecord) SetTotalStatusCode97 added in v0.6.0

func (o *TrailerRecord) SetTotalStatusCode97(v int32)

SetTotalStatusCode97 gets a reference to the given int32 and assigns it to the TotalStatusCode97 field.

func (*TrailerRecord) SetTotalStatusCodeDA added in v0.6.0

func (o *TrailerRecord) SetTotalStatusCodeDA(v int32)

SetTotalStatusCodeDA gets a reference to the given int32 and assigns it to the TotalStatusCodeDA field.

func (*TrailerRecord) SetTotalStatusCodeDF added in v0.6.0

func (o *TrailerRecord) SetTotalStatusCodeDF(v int32)

SetTotalStatusCodeDF gets a reference to the given int32 and assigns it to the TotalStatusCodeDF field.

func (*TrailerRecord) SetTotalTelephoneNumbersAllSegments added in v0.6.0

func (o *TrailerRecord) SetTotalTelephoneNumbersAllSegments(v int32)

SetTotalTelephoneNumbersAllSegments gets a reference to the given int32 and assigns it to the TotalTelephoneNumbersAllSegments field.

func (TrailerRecord) ToMap added in v0.6.0

func (o TrailerRecord) ToMap() (map[string]interface{}, error)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL