client

package
v0.0.1 Latest Latest
Warning

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

Go to latest
Published: Sep 6, 2023 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.

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/bloomcredit/moov-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

func IsNil(i interface{}) bool

IsNil checks if an input is nil

func PtrBool

func PtrBool(v bool) *bool

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

func PtrFloat32

func PtrFloat32(v float32) *float32

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

func PtrFloat64

func PtrFloat64(v float64) *float64

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

func PtrInt

func PtrInt(v int) *int

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

func PtrInt32

func PtrInt32(v int32) *int32

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

func PtrInt64

func PtrInt64(v int64) *int64

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

func PtrString

func PtrString(v string) *string

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

func PtrTime

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

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

func (ApiConvertRequest) Execute

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

func (ApiConvertRequest) File

metro2 file to upload

func (ApiConvertRequest) Format

func (r ApiConvertRequest) Format(format string) ApiConvertRequest

print metro2 file type

func (ApiConvertRequest) Format2

func (r ApiConvertRequest) Format2(format2 string) ApiConvertRequest

format of metro file

func (ApiConvertRequest) Generate

func (r ApiConvertRequest) Generate(generate bool) ApiConvertRequest

generate new trailer record

func (ApiConvertRequest) Newline

func (r ApiConvertRequest) Newline(newline bool) ApiConvertRequest

has new line

func (ApiConvertRequest) Type_

metro file type

type ApiHealthRequest

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

func (ApiHealthRequest) Execute

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

type ApiPrintRequest

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

func (ApiPrintRequest) Execute

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

func (ApiPrintRequest) File

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

metro2 file to upload

func (ApiPrintRequest) Format

func (r ApiPrintRequest) Format(format string) ApiPrintRequest

print metro2 file type

func (ApiPrintRequest) Format2

func (r ApiPrintRequest) Format2(format2 string) ApiPrintRequest

print metro2 file type

type ApiValidatorRequest

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

func (ApiValidatorRequest) Execute

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

func (ApiValidatorRequest) File

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"`
	DateBirth                     time.Time  `json:"dateBirth"`
	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

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, socialSecurityNumber int32, dateBirth time.Time, 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

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

func (o *BaseSegment) GetAccountStatus() string

GetAccountStatus returns the AccountStatus field value

func (*BaseSegment) GetAccountStatusOk

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

func (o *BaseSegment) GetAccountType() string

GetAccountType returns the AccountType field value

func (*BaseSegment) GetAccountTypeOk

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

func (o *BaseSegment) GetActualPaymentAmount() int32

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

func (*BaseSegment) GetActualPaymentAmountOk

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

func (o *BaseSegment) GetAddressIndicator() string

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

func (*BaseSegment) GetAddressIndicatorOk

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

func (o *BaseSegment) GetAmountPastDue() int32

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

func (*BaseSegment) GetAmountPastDueOk

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

func (o *BaseSegment) GetBlockDescriptorWord() int32

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

func (*BaseSegment) GetBlockDescriptorWordOk

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

func (o *BaseSegment) GetCity() string

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

func (*BaseSegment) GetCityOk

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

func (o *BaseSegment) GetComplianceConditionCode() string

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

func (*BaseSegment) GetComplianceConditionCodeOk

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

func (o *BaseSegment) GetConsumerAccountNumber() string

GetConsumerAccountNumber returns the ConsumerAccountNumber field value

func (*BaseSegment) GetConsumerAccountNumberOk

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

func (o *BaseSegment) GetConsumerInformationIndicator() string

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

func (*BaseSegment) GetConsumerInformationIndicatorOk

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

func (o *BaseSegment) GetCountryCode() string

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

func (*BaseSegment) GetCountryCodeOk

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

func (o *BaseSegment) GetCreditLimit() int32

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

func (*BaseSegment) GetCreditLimitOk

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

func (o *BaseSegment) GetCurrentBalance() int32

GetCurrentBalance returns the CurrentBalance field value

func (*BaseSegment) GetCurrentBalanceOk

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

func (o *BaseSegment) GetCycleIdentifier() string

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

func (*BaseSegment) GetCycleIdentifierOk

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

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

GetDateAccountInformation returns the DateAccountInformation field value

func (*BaseSegment) GetDateAccountInformationOk

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

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

GetDateBirth returns the DateBirth field value

func (*BaseSegment) GetDateBirthOk

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

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

func (*BaseSegment) GetDateClosed

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

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

func (*BaseSegment) GetDateClosedOk

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

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

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

func (*BaseSegment) GetDateFirstDelinquencyOk

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

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

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

func (*BaseSegment) GetDateLastPaymentOk

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

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

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

func (*BaseSegment) GetDateOpenedOk

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

func (o *BaseSegment) GetEcoaCode() string

GetEcoaCode returns the EcoaCode field value

func (*BaseSegment) GetEcoaCodeOk

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

func (o *BaseSegment) GetFirstLineAddress() string

GetFirstLineAddress returns the FirstLineAddress field value

func (*BaseSegment) GetFirstLineAddressOk

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

func (o *BaseSegment) GetFirstName() string

GetFirstName returns the FirstName field value

func (*BaseSegment) GetFirstNameOk

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

func (o *BaseSegment) GetGenerationCode() string

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

func (*BaseSegment) GetGenerationCodeOk

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

func (o *BaseSegment) GetHighestCredit() int32

GetHighestCredit returns the HighestCredit field value

func (*BaseSegment) GetHighestCreditOk

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

func (o *BaseSegment) GetIdentificationNumber() string

GetIdentificationNumber returns the IdentificationNumber field value

func (*BaseSegment) GetIdentificationNumberOk

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

func (o *BaseSegment) GetInterestTypeIndicator() string

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

func (*BaseSegment) GetInterestTypeIndicatorOk

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

func (o *BaseSegment) GetMiddleName() string

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

func (*BaseSegment) GetMiddleNameOk

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

func (o *BaseSegment) GetOriginalChargeOffAmount() int32

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

func (*BaseSegment) GetOriginalChargeOffAmountOk

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

func (o *BaseSegment) GetPaymentHistoryProfile() string

GetPaymentHistoryProfile returns the PaymentHistoryProfile field value

func (*BaseSegment) GetPaymentHistoryProfileOk

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

func (o *BaseSegment) GetPaymentRating() string

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

func (*BaseSegment) GetPaymentRatingOk

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

func (o *BaseSegment) GetPortfolioType() string

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

func (*BaseSegment) GetPortfolioTypeOk

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

func (o *BaseSegment) GetRecordDescriptorWord() int32

GetRecordDescriptorWord returns the RecordDescriptorWord field value

func (*BaseSegment) GetRecordDescriptorWordOk

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

func (o *BaseSegment) GetResidenceCode() string

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

func (*BaseSegment) GetResidenceCodeOk

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

func (o *BaseSegment) GetScheduledMonthlyPaymentAmount() int32

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

func (*BaseSegment) GetScheduledMonthlyPaymentAmountOk

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

func (o *BaseSegment) GetSecondLineAddress() string

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

func (*BaseSegment) GetSecondLineAddressOk

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

func (o *BaseSegment) GetSocialSecurityNumber() int32

GetSocialSecurityNumber returns the SocialSecurityNumber field value

func (*BaseSegment) GetSocialSecurityNumberOk

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

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

func (*BaseSegment) GetSpecialComment

func (o *BaseSegment) GetSpecialComment() string

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

func (*BaseSegment) GetSpecialCommentOk

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

func (o *BaseSegment) GetState() string

GetState returns the State field value

func (*BaseSegment) GetStateOk

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

func (o *BaseSegment) GetSurname() string

GetSurname returns the Surname field value

func (*BaseSegment) GetSurnameOk

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

func (o *BaseSegment) GetTelephoneNumber() int64

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

func (*BaseSegment) GetTelephoneNumberOk

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

func (o *BaseSegment) GetTermsDuration() string

GetTermsDuration returns the TermsDuration field value

func (*BaseSegment) GetTermsDurationOk

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

func (o *BaseSegment) GetTermsFrequency() string

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

func (*BaseSegment) GetTermsFrequencyOk

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

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

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

func (*BaseSegment) GetTimeStampOk

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

func (o *BaseSegment) GetZipCode() string

GetZipCode returns the ZipCode field value

func (*BaseSegment) GetZipCodeOk

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

func (o *BaseSegment) HasActualPaymentAmount() bool

HasActualPaymentAmount returns a boolean if a field has been set.

func (*BaseSegment) HasAddressIndicator

func (o *BaseSegment) HasAddressIndicator() bool

HasAddressIndicator returns a boolean if a field has been set.

func (*BaseSegment) HasAmountPastDue

func (o *BaseSegment) HasAmountPastDue() bool

HasAmountPastDue returns a boolean if a field has been set.

func (*BaseSegment) HasBlockDescriptorWord

func (o *BaseSegment) HasBlockDescriptorWord() bool

HasBlockDescriptorWord returns a boolean if a field has been set.

func (*BaseSegment) HasCity

func (o *BaseSegment) HasCity() bool

HasCity returns a boolean if a field has been set.

func (*BaseSegment) HasComplianceConditionCode

func (o *BaseSegment) HasComplianceConditionCode() bool

HasComplianceConditionCode returns a boolean if a field has been set.

func (*BaseSegment) HasConsumerInformationIndicator

func (o *BaseSegment) HasConsumerInformationIndicator() bool

HasConsumerInformationIndicator returns a boolean if a field has been set.

func (*BaseSegment) HasCountryCode

func (o *BaseSegment) HasCountryCode() bool

HasCountryCode returns a boolean if a field has been set.

func (*BaseSegment) HasCreditLimit

func (o *BaseSegment) HasCreditLimit() bool

HasCreditLimit returns a boolean if a field has been set.

func (*BaseSegment) HasCycleIdentifier

func (o *BaseSegment) HasCycleIdentifier() bool

HasCycleIdentifier returns a boolean if a field has been set.

func (*BaseSegment) HasDateClosed

func (o *BaseSegment) HasDateClosed() bool

HasDateClosed returns a boolean if a field has been set.

func (*BaseSegment) HasDateFirstDelinquency

func (o *BaseSegment) HasDateFirstDelinquency() bool

HasDateFirstDelinquency returns a boolean if a field has been set.

func (*BaseSegment) HasDateLastPayment

func (o *BaseSegment) HasDateLastPayment() bool

HasDateLastPayment returns a boolean if a field has been set.

func (*BaseSegment) HasDateOpened

func (o *BaseSegment) HasDateOpened() bool

HasDateOpened returns a boolean if a field has been set.

func (*BaseSegment) HasGenerationCode

func (o *BaseSegment) HasGenerationCode() bool

HasGenerationCode returns a boolean if a field has been set.

func (*BaseSegment) HasInterestTypeIndicator

func (o *BaseSegment) HasInterestTypeIndicator() bool

HasInterestTypeIndicator returns a boolean if a field has been set.

func (*BaseSegment) HasMiddleName

func (o *BaseSegment) HasMiddleName() bool

HasMiddleName returns a boolean if a field has been set.

func (*BaseSegment) HasOriginalChargeOffAmount

func (o *BaseSegment) HasOriginalChargeOffAmount() bool

HasOriginalChargeOffAmount returns a boolean if a field has been set.

func (*BaseSegment) HasPaymentRating

func (o *BaseSegment) HasPaymentRating() bool

HasPaymentRating returns a boolean if a field has been set.

func (*BaseSegment) HasPortfolioType

func (o *BaseSegment) HasPortfolioType() bool

HasPortfolioType returns a boolean if a field has been set.

func (*BaseSegment) HasResidenceCode

func (o *BaseSegment) HasResidenceCode() bool

HasResidenceCode returns a boolean if a field has been set.

func (*BaseSegment) HasScheduledMonthlyPaymentAmount

func (o *BaseSegment) HasScheduledMonthlyPaymentAmount() bool

HasScheduledMonthlyPaymentAmount returns a boolean if a field has been set.

func (*BaseSegment) HasSecondLineAddress

func (o *BaseSegment) HasSecondLineAddress() bool

HasSecondLineAddress returns a boolean if a field has been set.

func (*BaseSegment) HasSpecialComment

func (o *BaseSegment) HasSpecialComment() bool

HasSpecialComment returns a boolean if a field has been set.

func (*BaseSegment) HasTelephoneNumber

func (o *BaseSegment) HasTelephoneNumber() bool

HasTelephoneNumber returns a boolean if a field has been set.

func (*BaseSegment) HasTermsFrequency

func (o *BaseSegment) HasTermsFrequency() bool

HasTermsFrequency returns a boolean if a field has been set.

func (*BaseSegment) HasTimeStamp

func (o *BaseSegment) HasTimeStamp() bool

HasTimeStamp returns a boolean if a field has been set.

func (BaseSegment) MarshalJSON

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

func (*BaseSegment) SetAccountStatus

func (o *BaseSegment) SetAccountStatus(v string)

SetAccountStatus sets field value

func (*BaseSegment) SetAccountType

func (o *BaseSegment) SetAccountType(v string)

SetAccountType sets field value

func (*BaseSegment) SetActualPaymentAmount

func (o *BaseSegment) SetActualPaymentAmount(v int32)

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

func (*BaseSegment) SetAddressIndicator

func (o *BaseSegment) SetAddressIndicator(v string)

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

func (*BaseSegment) SetAmountPastDue

func (o *BaseSegment) SetAmountPastDue(v int32)

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

func (*BaseSegment) SetBlockDescriptorWord

func (o *BaseSegment) SetBlockDescriptorWord(v int32)

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

func (*BaseSegment) SetCity

func (o *BaseSegment) SetCity(v string)

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

func (*BaseSegment) SetComplianceConditionCode

func (o *BaseSegment) SetComplianceConditionCode(v string)

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

func (*BaseSegment) SetConsumerAccountNumber

func (o *BaseSegment) SetConsumerAccountNumber(v string)

SetConsumerAccountNumber sets field value

func (*BaseSegment) SetConsumerInformationIndicator

func (o *BaseSegment) SetConsumerInformationIndicator(v string)

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

func (*BaseSegment) SetCountryCode

func (o *BaseSegment) SetCountryCode(v string)

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

func (*BaseSegment) SetCreditLimit

func (o *BaseSegment) SetCreditLimit(v int32)

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

func (*BaseSegment) SetCurrentBalance

func (o *BaseSegment) SetCurrentBalance(v int32)

SetCurrentBalance sets field value

func (*BaseSegment) SetCycleIdentifier

func (o *BaseSegment) SetCycleIdentifier(v string)

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

func (*BaseSegment) SetDateAccountInformation

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

SetDateAccountInformation sets field value

func (*BaseSegment) SetDateBirth

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

SetDateBirth sets field value

func (*BaseSegment) SetDateClosed

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

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

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

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

func (o *BaseSegment) SetEcoaCode(v string)

SetEcoaCode sets field value

func (*BaseSegment) SetFirstLineAddress

func (o *BaseSegment) SetFirstLineAddress(v string)

SetFirstLineAddress sets field value

func (*BaseSegment) SetFirstName

func (o *BaseSegment) SetFirstName(v string)

SetFirstName sets field value

func (*BaseSegment) SetGenerationCode

func (o *BaseSegment) SetGenerationCode(v string)

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

func (*BaseSegment) SetHighestCredit

func (o *BaseSegment) SetHighestCredit(v int32)

SetHighestCredit sets field value

func (*BaseSegment) SetIdentificationNumber

func (o *BaseSegment) SetIdentificationNumber(v string)

SetIdentificationNumber sets field value

func (*BaseSegment) SetInterestTypeIndicator

func (o *BaseSegment) SetInterestTypeIndicator(v string)

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

func (*BaseSegment) SetMiddleName

func (o *BaseSegment) SetMiddleName(v string)

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

func (*BaseSegment) SetOriginalChargeOffAmount

func (o *BaseSegment) SetOriginalChargeOffAmount(v int32)

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

func (*BaseSegment) SetPaymentHistoryProfile

func (o *BaseSegment) SetPaymentHistoryProfile(v string)

SetPaymentHistoryProfile sets field value

func (*BaseSegment) SetPaymentRating

func (o *BaseSegment) SetPaymentRating(v string)

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

func (*BaseSegment) SetPortfolioType

func (o *BaseSegment) SetPortfolioType(v string)

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

func (*BaseSegment) SetRecordDescriptorWord

func (o *BaseSegment) SetRecordDescriptorWord(v int32)

SetRecordDescriptorWord sets field value

func (*BaseSegment) SetResidenceCode

func (o *BaseSegment) SetResidenceCode(v string)

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

func (*BaseSegment) SetScheduledMonthlyPaymentAmount

func (o *BaseSegment) SetScheduledMonthlyPaymentAmount(v int32)

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

func (*BaseSegment) SetSecondLineAddress

func (o *BaseSegment) SetSecondLineAddress(v string)

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

func (*BaseSegment) SetSocialSecurityNumber

func (o *BaseSegment) SetSocialSecurityNumber(v int32)

SetSocialSecurityNumber sets field value

func (*BaseSegment) SetSpecialComment

func (o *BaseSegment) SetSpecialComment(v string)

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

func (*BaseSegment) SetState

func (o *BaseSegment) SetState(v string)

SetState sets field value

func (*BaseSegment) SetSurname

func (o *BaseSegment) SetSurname(v string)

SetSurname sets field value

func (*BaseSegment) SetTelephoneNumber

func (o *BaseSegment) SetTelephoneNumber(v int64)

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

func (*BaseSegment) SetTermsDuration

func (o *BaseSegment) SetTermsDuration(v string)

SetTermsDuration sets field value

func (*BaseSegment) SetTermsFrequency

func (o *BaseSegment) SetTermsFrequency(v string)

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

func (*BaseSegment) SetTimeStamp

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

func (o *BaseSegment) SetZipCode(v string)

SetZipCode sets field value

func (BaseSegment) ToMap

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

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

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext

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

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

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

func (o *DataRecord) GetBase() BaseSegment

GetBase returns the Base field value

func (*DataRecord) GetBaseOk

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

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

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

func (*DataRecord) GetJ1Ok

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

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

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

func (*DataRecord) GetJ2Ok

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

func (o *DataRecord) GetK1() K1Segment

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

func (*DataRecord) GetK1Ok

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

func (o *DataRecord) GetK2() K2Segment

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

func (*DataRecord) GetK2Ok

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

func (o *DataRecord) GetK3() K3Segment

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

func (*DataRecord) GetK3Ok

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

func (o *DataRecord) GetK4() K4Segment

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

func (*DataRecord) GetK4Ok

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

func (o *DataRecord) GetL1() L1Segment

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

func (*DataRecord) GetL1Ok

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

func (o *DataRecord) GetN1() N1Segment

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

func (*DataRecord) GetN1Ok

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

func (o *DataRecord) HasJ1() bool

HasJ1 returns a boolean if a field has been set.

func (*DataRecord) HasJ2

func (o *DataRecord) HasJ2() bool

HasJ2 returns a boolean if a field has been set.

func (*DataRecord) HasK1

func (o *DataRecord) HasK1() bool

HasK1 returns a boolean if a field has been set.

func (*DataRecord) HasK2

func (o *DataRecord) HasK2() bool

HasK2 returns a boolean if a field has been set.

func (*DataRecord) HasK3

func (o *DataRecord) HasK3() bool

HasK3 returns a boolean if a field has been set.

func (*DataRecord) HasK4

func (o *DataRecord) HasK4() bool

HasK4 returns a boolean if a field has been set.

func (*DataRecord) HasL1

func (o *DataRecord) HasL1() bool

HasL1 returns a boolean if a field has been set.

func (*DataRecord) HasN1

func (o *DataRecord) HasN1() bool

HasN1 returns a boolean if a field has been set.

func (DataRecord) MarshalJSON

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

func (*DataRecord) SetBase

func (o *DataRecord) SetBase(v BaseSegment)

SetBase sets field value

func (*DataRecord) SetJ1

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

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

func (*DataRecord) SetJ2

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

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

func (*DataRecord) SetK1

func (o *DataRecord) SetK1(v K1Segment)

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

func (*DataRecord) SetK2

func (o *DataRecord) SetK2(v K2Segment)

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

func (*DataRecord) SetK3

func (o *DataRecord) SetK3(v K3Segment)

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

func (*DataRecord) SetK4

func (o *DataRecord) SetK4(v K4Segment)

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

func (*DataRecord) SetL1

func (o *DataRecord) SetL1(v L1Segment)

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

func (*DataRecord) SetN1

func (o *DataRecord) SetN1(v N1Segment)

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

func (DataRecord) ToMap

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

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

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

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

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

func (*File) GetDataOk

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

func (o *File) GetHeader() HeaderRecord

GetHeader returns the Header field value

func (*File) GetHeaderOk

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

func (o *File) GetTrailer() TrailerRecord

GetTrailer returns the Trailer field value

func (*File) GetTrailerOk

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

func (o *File) HasData() bool

HasData returns a boolean if a field has been set.

func (File) MarshalJSON

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

func (*File) SetData

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

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

func (*File) SetHeader

func (o *File) SetHeader(v HeaderRecord)

SetHeader sets field value

func (*File) SetTrailer

func (o *File) SetTrailer(v TrailerRecord)

SetTrailer sets field value

func (File) ToMap

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

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

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

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

GetActivityDate returns the ActivityDate field value

func (*HeaderRecord) GetActivityDateOk

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

func (o *HeaderRecord) GetBlockDescriptorWord() int32

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

func (*HeaderRecord) GetBlockDescriptorWordOk

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

func (o *HeaderRecord) GetCycleIdentifier() string

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

func (*HeaderRecord) GetCycleIdentifierOk

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

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

GetDateCreated returns the DateCreated field value

func (*HeaderRecord) GetDateCreatedOk

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

func (o *HeaderRecord) GetEquifaxProgramIdentifier() string

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

func (*HeaderRecord) GetEquifaxProgramIdentifierOk

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

func (o *HeaderRecord) GetExperianProgramIdentifier() string

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

func (*HeaderRecord) GetExperianProgramIdentifierOk

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

func (o *HeaderRecord) GetInnovisProgramIdentifier() string

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

func (*HeaderRecord) GetInnovisProgramIdentifierOk

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

func (o *HeaderRecord) GetPrbcProgramIdentifier() string

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

func (*HeaderRecord) GetPrbcProgramIdentifierOk

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

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

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

func (*HeaderRecord) GetProgramDateOk

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

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

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

func (*HeaderRecord) GetProgramRevisionDateOk

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

func (o *HeaderRecord) GetRecordDescriptorWord() int32

GetRecordDescriptorWord returns the RecordDescriptorWord field value

func (*HeaderRecord) GetRecordDescriptorWordOk

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

func (o *HeaderRecord) GetRecordIdentifier() string

GetRecordIdentifier returns the RecordIdentifier field value

func (*HeaderRecord) GetRecordIdentifierOk

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

func (o *HeaderRecord) GetReporterAddress() string

GetReporterAddress returns the ReporterAddress field value

func (*HeaderRecord) GetReporterAddressOk

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

func (o *HeaderRecord) GetReporterName() string

GetReporterName returns the ReporterName field value

func (*HeaderRecord) GetReporterNameOk

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

func (o *HeaderRecord) GetReporterTelephoneNumber() int64

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

func (*HeaderRecord) GetReporterTelephoneNumberOk

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

func (o *HeaderRecord) GetSoftwareVendorName() string

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

func (*HeaderRecord) GetSoftwareVendorNameOk

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

func (o *HeaderRecord) GetSoftwareVersionNumber() string

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

func (*HeaderRecord) GetSoftwareVersionNumberOk

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

func (o *HeaderRecord) GetTransUnionProgramIdentifier() string

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

func (*HeaderRecord) GetTransUnionProgramIdentifierOk

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

func (o *HeaderRecord) HasBlockDescriptorWord() bool

HasBlockDescriptorWord returns a boolean if a field has been set.

func (*HeaderRecord) HasCycleIdentifier

func (o *HeaderRecord) HasCycleIdentifier() bool

HasCycleIdentifier returns a boolean if a field has been set.

func (*HeaderRecord) HasEquifaxProgramIdentifier

func (o *HeaderRecord) HasEquifaxProgramIdentifier() bool

HasEquifaxProgramIdentifier returns a boolean if a field has been set.

func (*HeaderRecord) HasExperianProgramIdentifier

func (o *HeaderRecord) HasExperianProgramIdentifier() bool

HasExperianProgramIdentifier returns a boolean if a field has been set.

func (*HeaderRecord) HasInnovisProgramIdentifier

func (o *HeaderRecord) HasInnovisProgramIdentifier() bool

HasInnovisProgramIdentifier returns a boolean if a field has been set.

func (*HeaderRecord) HasPrbcProgramIdentifier

func (o *HeaderRecord) HasPrbcProgramIdentifier() bool

HasPrbcProgramIdentifier returns a boolean if a field has been set.

func (*HeaderRecord) HasProgramDate

func (o *HeaderRecord) HasProgramDate() bool

HasProgramDate returns a boolean if a field has been set.

func (*HeaderRecord) HasProgramRevisionDate

func (o *HeaderRecord) HasProgramRevisionDate() bool

HasProgramRevisionDate returns a boolean if a field has been set.

func (*HeaderRecord) HasReporterTelephoneNumber

func (o *HeaderRecord) HasReporterTelephoneNumber() bool

HasReporterTelephoneNumber returns a boolean if a field has been set.

func (*HeaderRecord) HasSoftwareVendorName

func (o *HeaderRecord) HasSoftwareVendorName() bool

HasSoftwareVendorName returns a boolean if a field has been set.

func (*HeaderRecord) HasSoftwareVersionNumber

func (o *HeaderRecord) HasSoftwareVersionNumber() bool

HasSoftwareVersionNumber returns a boolean if a field has been set.

func (*HeaderRecord) HasTransUnionProgramIdentifier

func (o *HeaderRecord) HasTransUnionProgramIdentifier() bool

HasTransUnionProgramIdentifier returns a boolean if a field has been set.

func (HeaderRecord) MarshalJSON

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

func (*HeaderRecord) SetActivityDate

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

SetActivityDate sets field value

func (*HeaderRecord) SetBlockDescriptorWord

func (o *HeaderRecord) SetBlockDescriptorWord(v int32)

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

func (*HeaderRecord) SetCycleIdentifier

func (o *HeaderRecord) SetCycleIdentifier(v string)

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

func (*HeaderRecord) SetDateCreated

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

SetDateCreated sets field value

func (*HeaderRecord) SetEquifaxProgramIdentifier

func (o *HeaderRecord) SetEquifaxProgramIdentifier(v string)

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

func (*HeaderRecord) SetExperianProgramIdentifier

func (o *HeaderRecord) SetExperianProgramIdentifier(v string)

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

func (*HeaderRecord) SetInnovisProgramIdentifier

func (o *HeaderRecord) SetInnovisProgramIdentifier(v string)

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

func (*HeaderRecord) SetPrbcProgramIdentifier

func (o *HeaderRecord) SetPrbcProgramIdentifier(v string)

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

func (*HeaderRecord) SetProgramDate

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

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

func (o *HeaderRecord) SetRecordDescriptorWord(v int32)

SetRecordDescriptorWord sets field value

func (*HeaderRecord) SetRecordIdentifier

func (o *HeaderRecord) SetRecordIdentifier(v string)

SetRecordIdentifier sets field value

func (*HeaderRecord) SetReporterAddress

func (o *HeaderRecord) SetReporterAddress(v string)

SetReporterAddress sets field value

func (*HeaderRecord) SetReporterName

func (o *HeaderRecord) SetReporterName(v string)

SetReporterName sets field value

func (*HeaderRecord) SetReporterTelephoneNumber

func (o *HeaderRecord) SetReporterTelephoneNumber(v int64)

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

func (*HeaderRecord) SetSoftwareVendorName

func (o *HeaderRecord) SetSoftwareVendorName(v string)

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

func (*HeaderRecord) SetSoftwareVersionNumber

func (o *HeaderRecord) SetSoftwareVersionNumber(v string)

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

func (*HeaderRecord) SetTransUnionProgramIdentifier

func (o *HeaderRecord) SetTransUnionProgramIdentifier(v string)

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

func (HeaderRecord) ToMap

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"`
	DateBirth                    time.Time `json:"dateBirth"`
	TelephoneNumber              *int64    `json:"telephoneNumber,omitempty"`
	EcoaCode                     string    `json:"ecoaCode"`
	ConsumerInformationIndicator *string   `json:"consumerInformationIndicator,omitempty"`
}

J1Segment struct for J1Segment

func NewJ1Segment

func NewJ1Segment(segmentIdentifier string, surname string, firstName string, socialSecurityNumber int32, dateBirth time.Time, 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

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

func (o *J1Segment) GetConsumerInformationIndicator() string

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

func (*J1Segment) GetConsumerInformationIndicatorOk

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

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

GetDateBirth returns the DateBirth field value

func (*J1Segment) GetDateBirthOk

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

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

func (*J1Segment) GetEcoaCode

func (o *J1Segment) GetEcoaCode() string

GetEcoaCode returns the EcoaCode field value

func (*J1Segment) GetEcoaCodeOk

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

func (o *J1Segment) GetFirstName() string

GetFirstName returns the FirstName field value

func (*J1Segment) GetFirstNameOk

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

func (o *J1Segment) GetGenerationCode() string

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

func (*J1Segment) GetGenerationCodeOk

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

func (o *J1Segment) GetMiddleName() string

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

func (*J1Segment) GetMiddleNameOk

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

func (o *J1Segment) GetSegmentIdentifier() string

GetSegmentIdentifier returns the SegmentIdentifier field value

func (*J1Segment) GetSegmentIdentifierOk

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

func (o *J1Segment) GetSocialSecurityNumber() int32

GetSocialSecurityNumber returns the SocialSecurityNumber field value

func (*J1Segment) GetSocialSecurityNumberOk

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

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

func (*J1Segment) GetSurname

func (o *J1Segment) GetSurname() string

GetSurname returns the Surname field value

func (*J1Segment) GetSurnameOk

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

func (o *J1Segment) GetTelephoneNumber() int64

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

func (*J1Segment) GetTelephoneNumberOk

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

func (o *J1Segment) HasConsumerInformationIndicator() bool

HasConsumerInformationIndicator returns a boolean if a field has been set.

func (*J1Segment) HasGenerationCode

func (o *J1Segment) HasGenerationCode() bool

HasGenerationCode returns a boolean if a field has been set.

func (*J1Segment) HasMiddleName

func (o *J1Segment) HasMiddleName() bool

HasMiddleName returns a boolean if a field has been set.

func (*J1Segment) HasTelephoneNumber

func (o *J1Segment) HasTelephoneNumber() bool

HasTelephoneNumber returns a boolean if a field has been set.

func (J1Segment) MarshalJSON

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

func (*J1Segment) SetConsumerInformationIndicator

func (o *J1Segment) SetConsumerInformationIndicator(v string)

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

func (*J1Segment) SetDateBirth

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

SetDateBirth sets field value

func (*J1Segment) SetEcoaCode

func (o *J1Segment) SetEcoaCode(v string)

SetEcoaCode sets field value

func (*J1Segment) SetFirstName

func (o *J1Segment) SetFirstName(v string)

SetFirstName sets field value

func (*J1Segment) SetGenerationCode

func (o *J1Segment) SetGenerationCode(v string)

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

func (*J1Segment) SetMiddleName

func (o *J1Segment) SetMiddleName(v string)

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

func (*J1Segment) SetSegmentIdentifier

func (o *J1Segment) SetSegmentIdentifier(v string)

SetSegmentIdentifier sets field value

func (*J1Segment) SetSocialSecurityNumber

func (o *J1Segment) SetSocialSecurityNumber(v int32)

SetSocialSecurityNumber sets field value

func (*J1Segment) SetSurname

func (o *J1Segment) SetSurname(v string)

SetSurname sets field value

func (*J1Segment) SetTelephoneNumber

func (o *J1Segment) SetTelephoneNumber(v int64)

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

func (J1Segment) ToMap

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"`
	DateBirth                    time.Time `json:"dateBirth"`
	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

func NewJ2Segment(segmentIdentifier string, surname string, firstName string, socialSecurityNumber int32, dateBirth time.Time, 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

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

func (o *J2Segment) GetAddressIndicator() string

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

func (*J2Segment) GetAddressIndicatorOk

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

func (o *J2Segment) GetCity() string

GetCity returns the City field value

func (*J2Segment) GetCityOk

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

func (o *J2Segment) GetConsumerInformationIndicator() string

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

func (*J2Segment) GetConsumerInformationIndicatorOk

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

func (o *J2Segment) GetCountryCode() string

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

func (*J2Segment) GetCountryCodeOk

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

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

GetDateBirth returns the DateBirth field value

func (*J2Segment) GetDateBirthOk

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

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

func (*J2Segment) GetEcoaCode

func (o *J2Segment) GetEcoaCode() string

GetEcoaCode returns the EcoaCode field value

func (*J2Segment) GetEcoaCodeOk

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

func (o *J2Segment) GetFirstLineAddress() string

GetFirstLineAddress returns the FirstLineAddress field value

func (*J2Segment) GetFirstLineAddressOk

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

func (o *J2Segment) GetFirstName() string

GetFirstName returns the FirstName field value

func (*J2Segment) GetFirstNameOk

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

func (o *J2Segment) GetGenerationCode() string

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

func (*J2Segment) GetGenerationCodeOk

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

func (o *J2Segment) GetMiddleName() string

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

func (*J2Segment) GetMiddleNameOk

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

func (o *J2Segment) GetResidenceCode() string

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

func (*J2Segment) GetResidenceCodeOk

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

func (o *J2Segment) GetSecondLineAddress() string

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

func (*J2Segment) GetSecondLineAddressOk

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

func (o *J2Segment) GetSegmentIdentifier() string

GetSegmentIdentifier returns the SegmentIdentifier field value

func (*J2Segment) GetSegmentIdentifierOk

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

func (o *J2Segment) GetSocialSecurityNumber() int32

GetSocialSecurityNumber returns the SocialSecurityNumber field value

func (*J2Segment) GetSocialSecurityNumberOk

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

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

func (*J2Segment) GetState

func (o *J2Segment) GetState() string

GetState returns the State field value

func (*J2Segment) GetStateOk

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

func (o *J2Segment) GetSurname() string

GetSurname returns the Surname field value

func (*J2Segment) GetSurnameOk

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

func (o *J2Segment) GetTelephoneNumber() int64

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

func (*J2Segment) GetTelephoneNumberOk

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

func (o *J2Segment) GetZipCode() string

GetZipCode returns the ZipCode field value

func (*J2Segment) GetZipCodeOk

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

func (o *J2Segment) HasAddressIndicator() bool

HasAddressIndicator returns a boolean if a field has been set.

func (*J2Segment) HasConsumerInformationIndicator

func (o *J2Segment) HasConsumerInformationIndicator() bool

HasConsumerInformationIndicator returns a boolean if a field has been set.

func (*J2Segment) HasCountryCode

func (o *J2Segment) HasCountryCode() bool

HasCountryCode returns a boolean if a field has been set.

func (*J2Segment) HasGenerationCode

func (o *J2Segment) HasGenerationCode() bool

HasGenerationCode returns a boolean if a field has been set.

func (*J2Segment) HasMiddleName

func (o *J2Segment) HasMiddleName() bool

HasMiddleName returns a boolean if a field has been set.

func (*J2Segment) HasResidenceCode

func (o *J2Segment) HasResidenceCode() bool

HasResidenceCode returns a boolean if a field has been set.

func (*J2Segment) HasSecondLineAddress

func (o *J2Segment) HasSecondLineAddress() bool

HasSecondLineAddress returns a boolean if a field has been set.

func (*J2Segment) HasTelephoneNumber

func (o *J2Segment) HasTelephoneNumber() bool

HasTelephoneNumber returns a boolean if a field has been set.

func (J2Segment) MarshalJSON

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

func (*J2Segment) SetAddressIndicator

func (o *J2Segment) SetAddressIndicator(v string)

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

func (*J2Segment) SetCity

func (o *J2Segment) SetCity(v string)

SetCity sets field value

func (*J2Segment) SetConsumerInformationIndicator

func (o *J2Segment) SetConsumerInformationIndicator(v string)

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

func (*J2Segment) SetCountryCode

func (o *J2Segment) SetCountryCode(v string)

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

func (*J2Segment) SetDateBirth

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

SetDateBirth sets field value

func (*J2Segment) SetEcoaCode

func (o *J2Segment) SetEcoaCode(v string)

SetEcoaCode sets field value

func (*J2Segment) SetFirstLineAddress

func (o *J2Segment) SetFirstLineAddress(v string)

SetFirstLineAddress sets field value

func (*J2Segment) SetFirstName

func (o *J2Segment) SetFirstName(v string)

SetFirstName sets field value

func (*J2Segment) SetGenerationCode

func (o *J2Segment) SetGenerationCode(v string)

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

func (*J2Segment) SetMiddleName

func (o *J2Segment) SetMiddleName(v string)

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

func (*J2Segment) SetResidenceCode

func (o *J2Segment) SetResidenceCode(v string)

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

func (*J2Segment) SetSecondLineAddress

func (o *J2Segment) SetSecondLineAddress(v string)

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

func (*J2Segment) SetSegmentIdentifier

func (o *J2Segment) SetSegmentIdentifier(v string)

SetSegmentIdentifier sets field value

func (*J2Segment) SetSocialSecurityNumber

func (o *J2Segment) SetSocialSecurityNumber(v int32)

SetSocialSecurityNumber sets field value

func (*J2Segment) SetState

func (o *J2Segment) SetState(v string)

SetState sets field value

func (*J2Segment) SetSurname

func (o *J2Segment) SetSurname(v string)

SetSurname sets field value

func (*J2Segment) SetTelephoneNumber

func (o *J2Segment) SetTelephoneNumber(v int64)

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

func (*J2Segment) SetZipCode

func (o *J2Segment) SetZipCode(v string)

SetZipCode sets field value

func (J2Segment) ToMap

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

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

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

func (o *K1Segment) GetCreditorClassification() int32

GetCreditorClassification returns the CreditorClassification field value

func (*K1Segment) GetCreditorClassificationOk

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

func (o *K1Segment) GetOriginalCreditorName() string

GetOriginalCreditorName returns the OriginalCreditorName field value

func (*K1Segment) GetOriginalCreditorNameOk

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

func (o *K1Segment) GetSegmentIdentifier() string

GetSegmentIdentifier returns the SegmentIdentifier field value

func (*K1Segment) GetSegmentIdentifierOk

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

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

func (*K1Segment) SetCreditorClassification

func (o *K1Segment) SetCreditorClassification(v int32)

SetCreditorClassification sets field value

func (*K1Segment) SetOriginalCreditorName

func (o *K1Segment) SetOriginalCreditorName(v string)

SetOriginalCreditorName sets field value

func (*K1Segment) SetSegmentIdentifier

func (o *K1Segment) SetSegmentIdentifier(v string)

SetSegmentIdentifier sets field value

func (K1Segment) ToMap

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

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

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

func (o *K2Segment) GetPurchasedIndicator() int32

GetPurchasedIndicator returns the PurchasedIndicator field value

func (*K2Segment) GetPurchasedIndicatorOk

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

func (o *K2Segment) GetPurchasedName() string

GetPurchasedName returns the PurchasedName field value

func (*K2Segment) GetPurchasedNameOk

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

func (o *K2Segment) GetSegmentIdentifier() string

GetSegmentIdentifier returns the SegmentIdentifier field value

func (*K2Segment) GetSegmentIdentifierOk

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

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

func (*K2Segment) SetPurchasedIndicator

func (o *K2Segment) SetPurchasedIndicator(v int32)

SetPurchasedIndicator sets field value

func (*K2Segment) SetPurchasedName

func (o *K2Segment) SetPurchasedName(v string)

SetPurchasedName sets field value

func (*K2Segment) SetSegmentIdentifier

func (o *K2Segment) SetSegmentIdentifier(v string)

SetSegmentIdentifier sets field value

func (K2Segment) ToMap

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

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

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

func (o *K3Segment) GetAccountNumber() string

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

func (*K3Segment) GetAccountNumberOk

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

func (o *K3Segment) GetAgencyIdentifier() int32

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

func (*K3Segment) GetAgencyIdentifierOk

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

func (o *K3Segment) GetMortgageIdentificationNumber() string

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

func (*K3Segment) GetMortgageIdentificationNumberOk

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

func (o *K3Segment) GetSegmentIdentifier() string

GetSegmentIdentifier returns the SegmentIdentifier field value

func (*K3Segment) GetSegmentIdentifierOk

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

func (o *K3Segment) HasAccountNumber() bool

HasAccountNumber returns a boolean if a field has been set.

func (*K3Segment) HasAgencyIdentifier

func (o *K3Segment) HasAgencyIdentifier() bool

HasAgencyIdentifier returns a boolean if a field has been set.

func (*K3Segment) HasMortgageIdentificationNumber

func (o *K3Segment) HasMortgageIdentificationNumber() bool

HasMortgageIdentificationNumber returns a boolean if a field has been set.

func (K3Segment) MarshalJSON

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

func (*K3Segment) SetAccountNumber

func (o *K3Segment) SetAccountNumber(v string)

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

func (*K3Segment) SetAgencyIdentifier

func (o *K3Segment) SetAgencyIdentifier(v int32)

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

func (*K3Segment) SetMortgageIdentificationNumber

func (o *K3Segment) SetMortgageIdentificationNumber(v string)

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

func (*K3Segment) SetSegmentIdentifier

func (o *K3Segment) SetSegmentIdentifier(v string)

SetSegmentIdentifier sets field value

func (K3Segment) ToMap

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

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

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

func (o *K4Segment) GetBalloonPaymentAmount() int32

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

func (*K4Segment) GetBalloonPaymentAmountOk

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

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

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

func (*K4Segment) GetBalloonPaymentDueDateOk

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

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

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

func (*K4Segment) GetDeferredPaymentStartDateOk

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

func (o *K4Segment) GetSegmentIdentifier() string

GetSegmentIdentifier returns the SegmentIdentifier field value

func (*K4Segment) GetSegmentIdentifierOk

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

func (o *K4Segment) GetSpecializedPaymentIndicator() int32

GetSpecializedPaymentIndicator returns the SpecializedPaymentIndicator field value

func (*K4Segment) GetSpecializedPaymentIndicatorOk

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

func (o *K4Segment) HasBalloonPaymentAmount() bool

HasBalloonPaymentAmount returns a boolean if a field has been set.

func (*K4Segment) HasBalloonPaymentDueDate

func (o *K4Segment) HasBalloonPaymentDueDate() bool

HasBalloonPaymentDueDate returns a boolean if a field has been set.

func (*K4Segment) HasDeferredPaymentStartDate

func (o *K4Segment) HasDeferredPaymentStartDate() bool

HasDeferredPaymentStartDate returns a boolean if a field has been set.

func (K4Segment) MarshalJSON

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

func (*K4Segment) SetBalloonPaymentAmount

func (o *K4Segment) SetBalloonPaymentAmount(v int32)

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

func (*K4Segment) SetBalloonPaymentDueDate

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

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

func (o *K4Segment) SetSegmentIdentifier(v string)

SetSegmentIdentifier sets field value

func (*K4Segment) SetSpecializedPaymentIndicator

func (o *K4Segment) SetSpecializedPaymentIndicator(v int32)

SetSpecializedPaymentIndicator sets field value

func (K4Segment) ToMap

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

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

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

func (o *L1Segment) GetBalloonPaymentDueDate() string

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

func (*L1Segment) GetBalloonPaymentDueDateOk

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

func (o *L1Segment) GetChangeIndicator() int32

GetChangeIndicator returns the ChangeIndicator field value

func (*L1Segment) GetChangeIndicatorOk

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

func (o *L1Segment) GetNewConsumerAccountNumber() string

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

func (*L1Segment) GetNewConsumerAccountNumberOk

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

func (o *L1Segment) GetSegmentIdentifier() string

GetSegmentIdentifier returns the SegmentIdentifier field value

func (*L1Segment) GetSegmentIdentifierOk

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

func (o *L1Segment) HasBalloonPaymentDueDate() bool

HasBalloonPaymentDueDate returns a boolean if a field has been set.

func (*L1Segment) HasNewConsumerAccountNumber

func (o *L1Segment) HasNewConsumerAccountNumber() bool

HasNewConsumerAccountNumber returns a boolean if a field has been set.

func (L1Segment) MarshalJSON

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

func (*L1Segment) SetBalloonPaymentDueDate

func (o *L1Segment) SetBalloonPaymentDueDate(v string)

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

func (*L1Segment) SetChangeIndicator

func (o *L1Segment) SetChangeIndicator(v int32)

SetChangeIndicator sets field value

func (*L1Segment) SetNewConsumerAccountNumber

func (o *L1Segment) SetNewConsumerAccountNumber(v string)

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

func (*L1Segment) SetSegmentIdentifier

func (o *L1Segment) SetSegmentIdentifier(v string)

SetSegmentIdentifier sets field value

func (L1Segment) ToMap

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

type MappedNullable

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

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

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

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

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

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

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

func (o *N1Segment) GetEmployerCity() string

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

func (*N1Segment) GetEmployerCityOk

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

func (o *N1Segment) GetEmployerName() string

GetEmployerName returns the EmployerName field value

func (*N1Segment) GetEmployerNameOk

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

func (o *N1Segment) GetEmployerState() string

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

func (*N1Segment) GetEmployerStateOk

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

func (o *N1Segment) GetFirstLineEmployerAddress() string

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

func (*N1Segment) GetFirstLineEmployerAddressOk

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

func (o *N1Segment) GetOccupation() string

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

func (*N1Segment) GetOccupationOk

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

func (o *N1Segment) GetSecondLineEmployerAddress() string

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

func (*N1Segment) GetSecondLineEmployerAddressOk

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

func (o *N1Segment) GetSegmentIdentifier() string

GetSegmentIdentifier returns the SegmentIdentifier field value

func (*N1Segment) GetSegmentIdentifierOk

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

func (o *N1Segment) GetZipCode() string

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

func (*N1Segment) GetZipCodeOk

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

func (o *N1Segment) HasEmployerCity() bool

HasEmployerCity returns a boolean if a field has been set.

func (*N1Segment) HasEmployerState

func (o *N1Segment) HasEmployerState() bool

HasEmployerState returns a boolean if a field has been set.

func (*N1Segment) HasFirstLineEmployerAddress

func (o *N1Segment) HasFirstLineEmployerAddress() bool

HasFirstLineEmployerAddress returns a boolean if a field has been set.

func (*N1Segment) HasOccupation

func (o *N1Segment) HasOccupation() bool

HasOccupation returns a boolean if a field has been set.

func (*N1Segment) HasSecondLineEmployerAddress

func (o *N1Segment) HasSecondLineEmployerAddress() bool

HasSecondLineEmployerAddress returns a boolean if a field has been set.

func (*N1Segment) HasZipCode

func (o *N1Segment) HasZipCode() bool

HasZipCode returns a boolean if a field has been set.

func (N1Segment) MarshalJSON

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

func (*N1Segment) SetEmployerCity

func (o *N1Segment) SetEmployerCity(v string)

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

func (*N1Segment) SetEmployerName

func (o *N1Segment) SetEmployerName(v string)

SetEmployerName sets field value

func (*N1Segment) SetEmployerState

func (o *N1Segment) SetEmployerState(v string)

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

func (*N1Segment) SetFirstLineEmployerAddress

func (o *N1Segment) SetFirstLineEmployerAddress(v string)

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

func (*N1Segment) SetOccupation

func (o *N1Segment) SetOccupation(v string)

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

func (*N1Segment) SetSecondLineEmployerAddress

func (o *N1Segment) SetSecondLineEmployerAddress(v string)

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

func (*N1Segment) SetSegmentIdentifier

func (o *N1Segment) SetSegmentIdentifier(v string)

SetSegmentIdentifier sets field value

func (*N1Segment) SetZipCode

func (o *N1Segment) SetZipCode(v string)

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

func (N1Segment) ToMap

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

type NullableBaseSegment

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

func NewNullableBaseSegment

func NewNullableBaseSegment(val *BaseSegment) *NullableBaseSegment

func (NullableBaseSegment) Get

func (NullableBaseSegment) IsSet

func (v NullableBaseSegment) IsSet() bool

func (NullableBaseSegment) MarshalJSON

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

func (*NullableBaseSegment) Set

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

func (*NullableBaseSegment) UnmarshalJSON

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

func (*NullableBaseSegment) Unset

func (v *NullableBaseSegment) Unset()

type NullableBool

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

func NewNullableBool

func NewNullableBool(val *bool) *NullableBool

func (NullableBool) Get

func (v NullableBool) Get() *bool

func (NullableBool) IsSet

func (v NullableBool) IsSet() bool

func (NullableBool) MarshalJSON

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

func (*NullableBool) Set

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

func (*NullableBool) UnmarshalJSON

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

func (*NullableBool) Unset

func (v *NullableBool) Unset()

type NullableDataRecord

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

func NewNullableDataRecord

func NewNullableDataRecord(val *DataRecord) *NullableDataRecord

func (NullableDataRecord) Get

func (v NullableDataRecord) Get() *DataRecord

func (NullableDataRecord) IsSet

func (v NullableDataRecord) IsSet() bool

func (NullableDataRecord) MarshalJSON

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

func (*NullableDataRecord) Set

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

func (*NullableDataRecord) UnmarshalJSON

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

func (*NullableDataRecord) Unset

func (v *NullableDataRecord) Unset()

type NullableFile

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

func NewNullableFile

func NewNullableFile(val *File) *NullableFile

func (NullableFile) Get

func (v NullableFile) Get() *File

func (NullableFile) IsSet

func (v NullableFile) IsSet() bool

func (NullableFile) MarshalJSON

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

func (*NullableFile) Set

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

func (*NullableFile) UnmarshalJSON

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

func (*NullableFile) Unset

func (v *NullableFile) Unset()

type NullableFloat32

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

func NewNullableFloat32

func NewNullableFloat32(val *float32) *NullableFloat32

func (NullableFloat32) Get

func (v NullableFloat32) Get() *float32

func (NullableFloat32) IsSet

func (v NullableFloat32) IsSet() bool

func (NullableFloat32) MarshalJSON

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

func (*NullableFloat32) Set

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

func (*NullableFloat32) UnmarshalJSON

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

func (*NullableFloat32) Unset

func (v *NullableFloat32) Unset()

type NullableFloat64

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

func NewNullableFloat64

func NewNullableFloat64(val *float64) *NullableFloat64

func (NullableFloat64) Get

func (v NullableFloat64) Get() *float64

func (NullableFloat64) IsSet

func (v NullableFloat64) IsSet() bool

func (NullableFloat64) MarshalJSON

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

func (*NullableFloat64) Set

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

func (*NullableFloat64) UnmarshalJSON

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

func (*NullableFloat64) Unset

func (v *NullableFloat64) Unset()

type NullableHeaderRecord

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

func NewNullableHeaderRecord

func NewNullableHeaderRecord(val *HeaderRecord) *NullableHeaderRecord

func (NullableHeaderRecord) Get

func (NullableHeaderRecord) IsSet

func (v NullableHeaderRecord) IsSet() bool

func (NullableHeaderRecord) MarshalJSON

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

func (*NullableHeaderRecord) Set

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

func (*NullableHeaderRecord) UnmarshalJSON

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

func (*NullableHeaderRecord) Unset

func (v *NullableHeaderRecord) Unset()

type NullableInt

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

func NewNullableInt

func NewNullableInt(val *int) *NullableInt

func (NullableInt) Get

func (v NullableInt) Get() *int

func (NullableInt) IsSet

func (v NullableInt) IsSet() bool

func (NullableInt) MarshalJSON

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

func (*NullableInt) Set

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

func (*NullableInt) UnmarshalJSON

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

func (*NullableInt) Unset

func (v *NullableInt) Unset()

type NullableInt32

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

func NewNullableInt32

func NewNullableInt32(val *int32) *NullableInt32

func (NullableInt32) Get

func (v NullableInt32) Get() *int32

func (NullableInt32) IsSet

func (v NullableInt32) IsSet() bool

func (NullableInt32) MarshalJSON

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

func (*NullableInt32) Set

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

func (*NullableInt32) UnmarshalJSON

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

func (*NullableInt32) Unset

func (v *NullableInt32) Unset()

type NullableInt64

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

func NewNullableInt64

func NewNullableInt64(val *int64) *NullableInt64

func (NullableInt64) Get

func (v NullableInt64) Get() *int64

func (NullableInt64) IsSet

func (v NullableInt64) IsSet() bool

func (NullableInt64) MarshalJSON

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

func (*NullableInt64) Set

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

func (*NullableInt64) UnmarshalJSON

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

func (*NullableInt64) Unset

func (v *NullableInt64) Unset()

type NullableJ1Segment

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

func NewNullableJ1Segment

func NewNullableJ1Segment(val *J1Segment) *NullableJ1Segment

func (NullableJ1Segment) Get

func (v NullableJ1Segment) Get() *J1Segment

func (NullableJ1Segment) IsSet

func (v NullableJ1Segment) IsSet() bool

func (NullableJ1Segment) MarshalJSON

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

func (*NullableJ1Segment) Set

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

func (*NullableJ1Segment) UnmarshalJSON

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

func (*NullableJ1Segment) Unset

func (v *NullableJ1Segment) Unset()

type NullableJ2Segment

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

func NewNullableJ2Segment

func NewNullableJ2Segment(val *J2Segment) *NullableJ2Segment

func (NullableJ2Segment) Get

func (v NullableJ2Segment) Get() *J2Segment

func (NullableJ2Segment) IsSet

func (v NullableJ2Segment) IsSet() bool

func (NullableJ2Segment) MarshalJSON

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

func (*NullableJ2Segment) Set

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

func (*NullableJ2Segment) UnmarshalJSON

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

func (*NullableJ2Segment) Unset

func (v *NullableJ2Segment) Unset()

type NullableK1Segment

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

func NewNullableK1Segment

func NewNullableK1Segment(val *K1Segment) *NullableK1Segment

func (NullableK1Segment) Get

func (v NullableK1Segment) Get() *K1Segment

func (NullableK1Segment) IsSet

func (v NullableK1Segment) IsSet() bool

func (NullableK1Segment) MarshalJSON

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

func (*NullableK1Segment) Set

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

func (*NullableK1Segment) UnmarshalJSON

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

func (*NullableK1Segment) Unset

func (v *NullableK1Segment) Unset()

type NullableK2Segment

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

func NewNullableK2Segment

func NewNullableK2Segment(val *K2Segment) *NullableK2Segment

func (NullableK2Segment) Get

func (v NullableK2Segment) Get() *K2Segment

func (NullableK2Segment) IsSet

func (v NullableK2Segment) IsSet() bool

func (NullableK2Segment) MarshalJSON

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

func (*NullableK2Segment) Set

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

func (*NullableK2Segment) UnmarshalJSON

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

func (*NullableK2Segment) Unset

func (v *NullableK2Segment) Unset()

type NullableK3Segment

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

func NewNullableK3Segment

func NewNullableK3Segment(val *K3Segment) *NullableK3Segment

func (NullableK3Segment) Get

func (v NullableK3Segment) Get() *K3Segment

func (NullableK3Segment) IsSet

func (v NullableK3Segment) IsSet() bool

func (NullableK3Segment) MarshalJSON

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

func (*NullableK3Segment) Set

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

func (*NullableK3Segment) UnmarshalJSON

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

func (*NullableK3Segment) Unset

func (v *NullableK3Segment) Unset()

type NullableK4Segment

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

func NewNullableK4Segment

func NewNullableK4Segment(val *K4Segment) *NullableK4Segment

func (NullableK4Segment) Get

func (v NullableK4Segment) Get() *K4Segment

func (NullableK4Segment) IsSet

func (v NullableK4Segment) IsSet() bool

func (NullableK4Segment) MarshalJSON

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

func (*NullableK4Segment) Set

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

func (*NullableK4Segment) UnmarshalJSON

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

func (*NullableK4Segment) Unset

func (v *NullableK4Segment) Unset()

type NullableL1Segment

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

func NewNullableL1Segment

func NewNullableL1Segment(val *L1Segment) *NullableL1Segment

func (NullableL1Segment) Get

func (v NullableL1Segment) Get() *L1Segment

func (NullableL1Segment) IsSet

func (v NullableL1Segment) IsSet() bool

func (NullableL1Segment) MarshalJSON

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

func (*NullableL1Segment) Set

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

func (*NullableL1Segment) UnmarshalJSON

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

func (*NullableL1Segment) Unset

func (v *NullableL1Segment) Unset()

type NullableN1Segment

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

func NewNullableN1Segment

func NewNullableN1Segment(val *N1Segment) *NullableN1Segment

func (NullableN1Segment) Get

func (v NullableN1Segment) Get() *N1Segment

func (NullableN1Segment) IsSet

func (v NullableN1Segment) IsSet() bool

func (NullableN1Segment) MarshalJSON

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

func (*NullableN1Segment) Set

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

func (*NullableN1Segment) UnmarshalJSON

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

func (*NullableN1Segment) Unset

func (v *NullableN1Segment) Unset()

type NullableString

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

func NewNullableString

func NewNullableString(val *string) *NullableString

func (NullableString) Get

func (v NullableString) Get() *string

func (NullableString) IsSet

func (v NullableString) IsSet() bool

func (NullableString) MarshalJSON

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

func (*NullableString) Set

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

func (*NullableString) UnmarshalJSON

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

func (*NullableString) Unset

func (v *NullableString) Unset()

type NullableTime

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

func NewNullableTime

func NewNullableTime(val *time.Time) *NullableTime

func (NullableTime) Get

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

func (NullableTime) IsSet

func (v NullableTime) IsSet() bool

func (NullableTime) MarshalJSON

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

func (*NullableTime) Set

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

func (*NullableTime) UnmarshalJSON

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

func (*NullableTime) Unset

func (v *NullableTime) Unset()

type NullableTrailerRecord

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

func NewNullableTrailerRecord

func NewNullableTrailerRecord(val *TrailerRecord) *NullableTrailerRecord

func (NullableTrailerRecord) Get

func (NullableTrailerRecord) IsSet

func (v NullableTrailerRecord) IsSet() bool

func (NullableTrailerRecord) MarshalJSON

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

func (*NullableTrailerRecord) Set

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

func (*NullableTrailerRecord) UnmarshalJSON

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

func (*NullableTrailerRecord) Unset

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

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL

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

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

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

func (o *TrailerRecord) GetBlockCount() int32

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

func (*TrailerRecord) GetBlockCountOk

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

func (o *TrailerRecord) GetBlockDescriptorWord() int32

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

func (*TrailerRecord) GetBlockDescriptorWordOk

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

func (o *TrailerRecord) GetRecordDescriptorWord() int32

GetRecordDescriptorWord returns the RecordDescriptorWord field value

func (*TrailerRecord) GetRecordDescriptorWordOk

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

func (o *TrailerRecord) GetRecordIdentifier() string

GetRecordIdentifier returns the RecordIdentifier field value

func (*TrailerRecord) GetRecordIdentifierOk

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

func (o *TrailerRecord) GetTotalBaseRecords() int32

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

func (*TrailerRecord) GetTotalBaseRecordsOk

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

func (o *TrailerRecord) GetTotalChangeSegments() int32

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

func (*TrailerRecord) GetTotalChangeSegmentsOk

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

func (o *TrailerRecord) GetTotalConsumerSegmentsJ1() int32

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

func (*TrailerRecord) GetTotalConsumerSegmentsJ1Ok

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

func (o *TrailerRecord) GetTotalConsumerSegmentsJ2() int32

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

func (*TrailerRecord) GetTotalConsumerSegmentsJ2Ok

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

func (o *TrailerRecord) GetTotalDatesBirthAllSegments() int32

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

func (*TrailerRecord) GetTotalDatesBirthAllSegmentsOk

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

func (o *TrailerRecord) GetTotalDatesBirthBaseSegments() int32

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

func (*TrailerRecord) GetTotalDatesBirthBaseSegmentsOk

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

func (o *TrailerRecord) GetTotalDatesBirthJ1Segments() int32

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

func (*TrailerRecord) GetTotalDatesBirthJ1SegmentsOk

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

func (o *TrailerRecord) GetTotalDatesBirthJ2Segments() int32

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

func (*TrailerRecord) GetTotalDatesBirthJ2SegmentsOk

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

func (o *TrailerRecord) GetTotalECOACodeZ() int32

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

func (*TrailerRecord) GetTotalECOACodeZOk

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

func (o *TrailerRecord) GetTotalEmploymentSegments() int32

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

func (*TrailerRecord) GetTotalEmploymentSegmentsOk

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

func (o *TrailerRecord) GetTotalMortgageInformationSegments() int32

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

func (*TrailerRecord) GetTotalMortgageInformationSegmentsOk

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

func (o *TrailerRecord) GetTotalOriginalCreditorSegments() int32

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

func (*TrailerRecord) GetTotalOriginalCreditorSegmentsOk

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

func (o *TrailerRecord) GetTotalPaymentInformationSegments() int32

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

func (*TrailerRecord) GetTotalPaymentInformationSegmentsOk

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

func (o *TrailerRecord) GetTotalPurchasedToSegments() int32

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

func (*TrailerRecord) GetTotalPurchasedToSegmentsOk

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

func (o *TrailerRecord) GetTotalSocialNumbersAllSegments() int32

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

func (*TrailerRecord) GetTotalSocialNumbersAllSegmentsOk

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

func (o *TrailerRecord) GetTotalSocialNumbersBaseSegments() int32

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

func (*TrailerRecord) GetTotalSocialNumbersBaseSegmentsOk

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

func (o *TrailerRecord) GetTotalSocialNumbersJ1Segments() int32

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

func (*TrailerRecord) GetTotalSocialNumbersJ1SegmentsOk

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

func (o *TrailerRecord) GetTotalSocialNumbersJ2Segments() int32

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

func (*TrailerRecord) GetTotalSocialNumbersJ2SegmentsOk

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

func (o *TrailerRecord) GetTotalStatusCode05() int32

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

func (*TrailerRecord) GetTotalStatusCode05Ok

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

func (o *TrailerRecord) GetTotalStatusCode11() int32

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

func (*TrailerRecord) GetTotalStatusCode11Ok

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

func (o *TrailerRecord) GetTotalStatusCode13() int32

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

func (*TrailerRecord) GetTotalStatusCode13Ok

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

func (o *TrailerRecord) GetTotalStatusCode61() int32

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

func (*TrailerRecord) GetTotalStatusCode61Ok

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

func (o *TrailerRecord) GetTotalStatusCode62() int32

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

func (*TrailerRecord) GetTotalStatusCode62Ok

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

func (o *TrailerRecord) GetTotalStatusCode63() int32

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

func (*TrailerRecord) GetTotalStatusCode63Ok

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

func (o *TrailerRecord) GetTotalStatusCode64() int32

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

func (*TrailerRecord) GetTotalStatusCode64Ok

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

func (o *TrailerRecord) GetTotalStatusCode65() int32

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

func (*TrailerRecord) GetTotalStatusCode65Ok

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

func (o *TrailerRecord) GetTotalStatusCode71() int32

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

func (*TrailerRecord) GetTotalStatusCode71Ok

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

func (o *TrailerRecord) GetTotalStatusCode78() int32

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

func (*TrailerRecord) GetTotalStatusCode78Ok

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

func (o *TrailerRecord) GetTotalStatusCode80() int32

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

func (*TrailerRecord) GetTotalStatusCode80Ok

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

func (o *TrailerRecord) GetTotalStatusCode82() int32

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

func (*TrailerRecord) GetTotalStatusCode82Ok

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

func (o *TrailerRecord) GetTotalStatusCode83() int32

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

func (*TrailerRecord) GetTotalStatusCode83Ok

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

func (o *TrailerRecord) GetTotalStatusCode84() int32

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

func (*TrailerRecord) GetTotalStatusCode84Ok

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

func (o *TrailerRecord) GetTotalStatusCode88() int32

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

func (*TrailerRecord) GetTotalStatusCode88Ok

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

func (o *TrailerRecord) GetTotalStatusCode89() int32

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

func (*TrailerRecord) GetTotalStatusCode89Ok

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

func (o *TrailerRecord) GetTotalStatusCode93() int32

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

func (*TrailerRecord) GetTotalStatusCode93Ok

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

func (o *TrailerRecord) GetTotalStatusCode94() int32

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

func (*TrailerRecord) GetTotalStatusCode94Ok

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

func (o *TrailerRecord) GetTotalStatusCode95() int32

GetTotalStatusCode95 returns the TotalStatusCode95 field value if set, zero value otherwise.

func (*TrailerRecord) GetTotalStatusCode95Ok

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

func (o *TrailerRecord) GetTotalStatusCode96() int32

GetTotalStatusCode96 returns the TotalStatusCode96 field value if set, zero value otherwise.

func (*TrailerRecord) GetTotalStatusCode96Ok

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

func (o *TrailerRecord) GetTotalStatusCode97() int32

GetTotalStatusCode97 returns the TotalStatusCode97 field value if set, zero value otherwise.

func (*TrailerRecord) GetTotalStatusCode97Ok

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

func (o *TrailerRecord) GetTotalStatusCodeDA() int32

GetTotalStatusCodeDA returns the TotalStatusCodeDA field value if set, zero value otherwise.

func (*TrailerRecord) GetTotalStatusCodeDAOk

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

func (o *TrailerRecord) GetTotalStatusCodeDF() int32

GetTotalStatusCodeDF returns the TotalStatusCodeDF field value if set, zero value otherwise.

func (*TrailerRecord) GetTotalStatusCodeDFOk

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

func (o *TrailerRecord) GetTotalTelephoneNumbersAllSegments() int32

GetTotalTelephoneNumbersAllSegments returns the TotalTelephoneNumbersAllSegments field value if set, zero value otherwise.

func (*TrailerRecord) GetTotalTelephoneNumbersAllSegmentsOk

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

func (o *TrailerRecord) HasBlockCount() bool

HasBlockCount returns a boolean if a field has been set.

func (*TrailerRecord) HasBlockDescriptorWord

func (o *TrailerRecord) HasBlockDescriptorWord() bool

HasBlockDescriptorWord returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalBaseRecords

func (o *TrailerRecord) HasTotalBaseRecords() bool

HasTotalBaseRecords returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalChangeSegments

func (o *TrailerRecord) HasTotalChangeSegments() bool

HasTotalChangeSegments returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalConsumerSegmentsJ1

func (o *TrailerRecord) HasTotalConsumerSegmentsJ1() bool

HasTotalConsumerSegmentsJ1 returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalConsumerSegmentsJ2

func (o *TrailerRecord) HasTotalConsumerSegmentsJ2() bool

HasTotalConsumerSegmentsJ2 returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalDatesBirthAllSegments

func (o *TrailerRecord) HasTotalDatesBirthAllSegments() bool

HasTotalDatesBirthAllSegments returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalDatesBirthBaseSegments

func (o *TrailerRecord) HasTotalDatesBirthBaseSegments() bool

HasTotalDatesBirthBaseSegments returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalDatesBirthJ1Segments

func (o *TrailerRecord) HasTotalDatesBirthJ1Segments() bool

HasTotalDatesBirthJ1Segments returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalDatesBirthJ2Segments

func (o *TrailerRecord) HasTotalDatesBirthJ2Segments() bool

HasTotalDatesBirthJ2Segments returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalECOACodeZ

func (o *TrailerRecord) HasTotalECOACodeZ() bool

HasTotalECOACodeZ returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalEmploymentSegments

func (o *TrailerRecord) HasTotalEmploymentSegments() bool

HasTotalEmploymentSegments returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalMortgageInformationSegments

func (o *TrailerRecord) HasTotalMortgageInformationSegments() bool

HasTotalMortgageInformationSegments returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalOriginalCreditorSegments

func (o *TrailerRecord) HasTotalOriginalCreditorSegments() bool

HasTotalOriginalCreditorSegments returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalPaymentInformationSegments

func (o *TrailerRecord) HasTotalPaymentInformationSegments() bool

HasTotalPaymentInformationSegments returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalPurchasedToSegments

func (o *TrailerRecord) HasTotalPurchasedToSegments() bool

HasTotalPurchasedToSegments returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalSocialNumbersAllSegments

func (o *TrailerRecord) HasTotalSocialNumbersAllSegments() bool

HasTotalSocialNumbersAllSegments returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalSocialNumbersBaseSegments

func (o *TrailerRecord) HasTotalSocialNumbersBaseSegments() bool

HasTotalSocialNumbersBaseSegments returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalSocialNumbersJ1Segments

func (o *TrailerRecord) HasTotalSocialNumbersJ1Segments() bool

HasTotalSocialNumbersJ1Segments returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalSocialNumbersJ2Segments

func (o *TrailerRecord) HasTotalSocialNumbersJ2Segments() bool

HasTotalSocialNumbersJ2Segments returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalStatusCode05

func (o *TrailerRecord) HasTotalStatusCode05() bool

HasTotalStatusCode05 returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalStatusCode11

func (o *TrailerRecord) HasTotalStatusCode11() bool

HasTotalStatusCode11 returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalStatusCode13

func (o *TrailerRecord) HasTotalStatusCode13() bool

HasTotalStatusCode13 returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalStatusCode61

func (o *TrailerRecord) HasTotalStatusCode61() bool

HasTotalStatusCode61 returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalStatusCode62

func (o *TrailerRecord) HasTotalStatusCode62() bool

HasTotalStatusCode62 returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalStatusCode63

func (o *TrailerRecord) HasTotalStatusCode63() bool

HasTotalStatusCode63 returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalStatusCode64

func (o *TrailerRecord) HasTotalStatusCode64() bool

HasTotalStatusCode64 returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalStatusCode65

func (o *TrailerRecord) HasTotalStatusCode65() bool

HasTotalStatusCode65 returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalStatusCode71

func (o *TrailerRecord) HasTotalStatusCode71() bool

HasTotalStatusCode71 returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalStatusCode78

func (o *TrailerRecord) HasTotalStatusCode78() bool

HasTotalStatusCode78 returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalStatusCode80

func (o *TrailerRecord) HasTotalStatusCode80() bool

HasTotalStatusCode80 returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalStatusCode82

func (o *TrailerRecord) HasTotalStatusCode82() bool

HasTotalStatusCode82 returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalStatusCode83

func (o *TrailerRecord) HasTotalStatusCode83() bool

HasTotalStatusCode83 returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalStatusCode84

func (o *TrailerRecord) HasTotalStatusCode84() bool

HasTotalStatusCode84 returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalStatusCode88

func (o *TrailerRecord) HasTotalStatusCode88() bool

HasTotalStatusCode88 returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalStatusCode89

func (o *TrailerRecord) HasTotalStatusCode89() bool

HasTotalStatusCode89 returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalStatusCode93

func (o *TrailerRecord) HasTotalStatusCode93() bool

HasTotalStatusCode93 returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalStatusCode94

func (o *TrailerRecord) HasTotalStatusCode94() bool

HasTotalStatusCode94 returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalStatusCode95

func (o *TrailerRecord) HasTotalStatusCode95() bool

HasTotalStatusCode95 returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalStatusCode96

func (o *TrailerRecord) HasTotalStatusCode96() bool

HasTotalStatusCode96 returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalStatusCode97

func (o *TrailerRecord) HasTotalStatusCode97() bool

HasTotalStatusCode97 returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalStatusCodeDA

func (o *TrailerRecord) HasTotalStatusCodeDA() bool

HasTotalStatusCodeDA returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalStatusCodeDF

func (o *TrailerRecord) HasTotalStatusCodeDF() bool

HasTotalStatusCodeDF returns a boolean if a field has been set.

func (*TrailerRecord) HasTotalTelephoneNumbersAllSegments

func (o *TrailerRecord) HasTotalTelephoneNumbersAllSegments() bool

HasTotalTelephoneNumbersAllSegments returns a boolean if a field has been set.

func (TrailerRecord) MarshalJSON

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

func (*TrailerRecord) SetBlockCount

func (o *TrailerRecord) SetBlockCount(v int32)

SetBlockCount gets a reference to the given int32 and assigns it to the BlockCount field.

func (*TrailerRecord) SetBlockDescriptorWord

func (o *TrailerRecord) SetBlockDescriptorWord(v int32)

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

func (*TrailerRecord) SetRecordDescriptorWord

func (o *TrailerRecord) SetRecordDescriptorWord(v int32)

SetRecordDescriptorWord sets field value

func (*TrailerRecord) SetRecordIdentifier

func (o *TrailerRecord) SetRecordIdentifier(v string)

SetRecordIdentifier sets field value

func (*TrailerRecord) SetTotalBaseRecords

func (o *TrailerRecord) SetTotalBaseRecords(v int32)

SetTotalBaseRecords gets a reference to the given int32 and assigns it to the TotalBaseRecords field.

func (*TrailerRecord) SetTotalChangeSegments

func (o *TrailerRecord) SetTotalChangeSegments(v int32)

SetTotalChangeSegments gets a reference to the given int32 and assigns it to the TotalChangeSegments field.

func (*TrailerRecord) SetTotalConsumerSegmentsJ1

func (o *TrailerRecord) SetTotalConsumerSegmentsJ1(v int32)

SetTotalConsumerSegmentsJ1 gets a reference to the given int32 and assigns it to the TotalConsumerSegmentsJ1 field.

func (*TrailerRecord) SetTotalConsumerSegmentsJ2

func (o *TrailerRecord) SetTotalConsumerSegmentsJ2(v int32)

SetTotalConsumerSegmentsJ2 gets a reference to the given int32 and assigns it to the TotalConsumerSegmentsJ2 field.

func (*TrailerRecord) SetTotalDatesBirthAllSegments

func (o *TrailerRecord) SetTotalDatesBirthAllSegments(v int32)

SetTotalDatesBirthAllSegments gets a reference to the given int32 and assigns it to the TotalDatesBirthAllSegments field.

func (*TrailerRecord) SetTotalDatesBirthBaseSegments

func (o *TrailerRecord) SetTotalDatesBirthBaseSegments(v int32)

SetTotalDatesBirthBaseSegments gets a reference to the given int32 and assigns it to the TotalDatesBirthBaseSegments field.

func (*TrailerRecord) SetTotalDatesBirthJ1Segments

func (o *TrailerRecord) SetTotalDatesBirthJ1Segments(v int32)

SetTotalDatesBirthJ1Segments gets a reference to the given int32 and assigns it to the TotalDatesBirthJ1Segments field.

func (*TrailerRecord) SetTotalDatesBirthJ2Segments

func (o *TrailerRecord) SetTotalDatesBirthJ2Segments(v int32)

SetTotalDatesBirthJ2Segments gets a reference to the given int32 and assigns it to the TotalDatesBirthJ2Segments field.

func (*TrailerRecord) SetTotalECOACodeZ

func (o *TrailerRecord) SetTotalECOACodeZ(v int32)

SetTotalECOACodeZ gets a reference to the given int32 and assigns it to the TotalECOACodeZ field.

func (*TrailerRecord) SetTotalEmploymentSegments

func (o *TrailerRecord) SetTotalEmploymentSegments(v int32)

SetTotalEmploymentSegments gets a reference to the given int32 and assigns it to the TotalEmploymentSegments field.

func (*TrailerRecord) SetTotalMortgageInformationSegments

func (o *TrailerRecord) SetTotalMortgageInformationSegments(v int32)

SetTotalMortgageInformationSegments gets a reference to the given int32 and assigns it to the TotalMortgageInformationSegments field.

func (*TrailerRecord) SetTotalOriginalCreditorSegments

func (o *TrailerRecord) SetTotalOriginalCreditorSegments(v int32)

SetTotalOriginalCreditorSegments gets a reference to the given int32 and assigns it to the TotalOriginalCreditorSegments field.

func (*TrailerRecord) SetTotalPaymentInformationSegments

func (o *TrailerRecord) SetTotalPaymentInformationSegments(v int32)

SetTotalPaymentInformationSegments gets a reference to the given int32 and assigns it to the TotalPaymentInformationSegments field.

func (*TrailerRecord) SetTotalPurchasedToSegments

func (o *TrailerRecord) SetTotalPurchasedToSegments(v int32)

SetTotalPurchasedToSegments gets a reference to the given int32 and assigns it to the TotalPurchasedToSegments field.

func (*TrailerRecord) SetTotalSocialNumbersAllSegments

func (o *TrailerRecord) SetTotalSocialNumbersAllSegments(v int32)

SetTotalSocialNumbersAllSegments gets a reference to the given int32 and assigns it to the TotalSocialNumbersAllSegments field.

func (*TrailerRecord) SetTotalSocialNumbersBaseSegments

func (o *TrailerRecord) SetTotalSocialNumbersBaseSegments(v int32)

SetTotalSocialNumbersBaseSegments gets a reference to the given int32 and assigns it to the TotalSocialNumbersBaseSegments field.

func (*TrailerRecord) SetTotalSocialNumbersJ1Segments

func (o *TrailerRecord) SetTotalSocialNumbersJ1Segments(v int32)

SetTotalSocialNumbersJ1Segments gets a reference to the given int32 and assigns it to the TotalSocialNumbersJ1Segments field.

func (*TrailerRecord) SetTotalSocialNumbersJ2Segments

func (o *TrailerRecord) SetTotalSocialNumbersJ2Segments(v int32)

SetTotalSocialNumbersJ2Segments gets a reference to the given int32 and assigns it to the TotalSocialNumbersJ2Segments field.

func (*TrailerRecord) SetTotalStatusCode05

func (o *TrailerRecord) SetTotalStatusCode05(v int32)

SetTotalStatusCode05 gets a reference to the given int32 and assigns it to the TotalStatusCode05 field.

func (*TrailerRecord) SetTotalStatusCode11

func (o *TrailerRecord) SetTotalStatusCode11(v int32)

SetTotalStatusCode11 gets a reference to the given int32 and assigns it to the TotalStatusCode11 field.

func (*TrailerRecord) SetTotalStatusCode13

func (o *TrailerRecord) SetTotalStatusCode13(v int32)

SetTotalStatusCode13 gets a reference to the given int32 and assigns it to the TotalStatusCode13 field.

func (*TrailerRecord) SetTotalStatusCode61

func (o *TrailerRecord) SetTotalStatusCode61(v int32)

SetTotalStatusCode61 gets a reference to the given int32 and assigns it to the TotalStatusCode61 field.

func (*TrailerRecord) SetTotalStatusCode62

func (o *TrailerRecord) SetTotalStatusCode62(v int32)

SetTotalStatusCode62 gets a reference to the given int32 and assigns it to the TotalStatusCode62 field.

func (*TrailerRecord) SetTotalStatusCode63

func (o *TrailerRecord) SetTotalStatusCode63(v int32)

SetTotalStatusCode63 gets a reference to the given int32 and assigns it to the TotalStatusCode63 field.

func (*TrailerRecord) SetTotalStatusCode64

func (o *TrailerRecord) SetTotalStatusCode64(v int32)

SetTotalStatusCode64 gets a reference to the given int32 and assigns it to the TotalStatusCode64 field.

func (*TrailerRecord) SetTotalStatusCode65

func (o *TrailerRecord) SetTotalStatusCode65(v int32)

SetTotalStatusCode65 gets a reference to the given int32 and assigns it to the TotalStatusCode65 field.

func (*TrailerRecord) SetTotalStatusCode71

func (o *TrailerRecord) SetTotalStatusCode71(v int32)

SetTotalStatusCode71 gets a reference to the given int32 and assigns it to the TotalStatusCode71 field.

func (*TrailerRecord) SetTotalStatusCode78

func (o *TrailerRecord) SetTotalStatusCode78(v int32)

SetTotalStatusCode78 gets a reference to the given int32 and assigns it to the TotalStatusCode78 field.

func (*TrailerRecord) SetTotalStatusCode80

func (o *TrailerRecord) SetTotalStatusCode80(v int32)

SetTotalStatusCode80 gets a reference to the given int32 and assigns it to the TotalStatusCode80 field.

func (*TrailerRecord) SetTotalStatusCode82

func (o *TrailerRecord) SetTotalStatusCode82(v int32)

SetTotalStatusCode82 gets a reference to the given int32 and assigns it to the TotalStatusCode82 field.

func (*TrailerRecord) SetTotalStatusCode83

func (o *TrailerRecord) SetTotalStatusCode83(v int32)

SetTotalStatusCode83 gets a reference to the given int32 and assigns it to the TotalStatusCode83 field.

func (*TrailerRecord) SetTotalStatusCode84

func (o *TrailerRecord) SetTotalStatusCode84(v int32)

SetTotalStatusCode84 gets a reference to the given int32 and assigns it to the TotalStatusCode84 field.

func (*TrailerRecord) SetTotalStatusCode88

func (o *TrailerRecord) SetTotalStatusCode88(v int32)

SetTotalStatusCode88 gets a reference to the given int32 and assigns it to the TotalStatusCode88 field.

func (*TrailerRecord) SetTotalStatusCode89

func (o *TrailerRecord) SetTotalStatusCode89(v int32)

SetTotalStatusCode89 gets a reference to the given int32 and assigns it to the TotalStatusCode89 field.

func (*TrailerRecord) SetTotalStatusCode93

func (o *TrailerRecord) SetTotalStatusCode93(v int32)

SetTotalStatusCode93 gets a reference to the given int32 and assigns it to the TotalStatusCode93 field.

func (*TrailerRecord) SetTotalStatusCode94

func (o *TrailerRecord) SetTotalStatusCode94(v int32)

SetTotalStatusCode94 gets a reference to the given int32 and assigns it to the TotalStatusCode94 field.

func (*TrailerRecord) SetTotalStatusCode95

func (o *TrailerRecord) SetTotalStatusCode95(v int32)

SetTotalStatusCode95 gets a reference to the given int32 and assigns it to the TotalStatusCode95 field.

func (*TrailerRecord) SetTotalStatusCode96

func (o *TrailerRecord) SetTotalStatusCode96(v int32)

SetTotalStatusCode96 gets a reference to the given int32 and assigns it to the TotalStatusCode96 field.

func (*TrailerRecord) SetTotalStatusCode97

func (o *TrailerRecord) SetTotalStatusCode97(v int32)

SetTotalStatusCode97 gets a reference to the given int32 and assigns it to the TotalStatusCode97 field.

func (*TrailerRecord) SetTotalStatusCodeDA

func (o *TrailerRecord) SetTotalStatusCodeDA(v int32)

SetTotalStatusCodeDA gets a reference to the given int32 and assigns it to the TotalStatusCodeDA field.

func (*TrailerRecord) SetTotalStatusCodeDF

func (o *TrailerRecord) SetTotalStatusCodeDF(v int32)

SetTotalStatusCodeDF gets a reference to the given int32 and assigns it to the TotalStatusCodeDF field.

func (*TrailerRecord) SetTotalTelephoneNumbersAllSegments

func (o *TrailerRecord) SetTotalTelephoneNumbersAllSegments(v int32)

SetTotalTelephoneNumbersAllSegments gets a reference to the given int32 and assigns it to the TotalTelephoneNumbersAllSegments field.

func (TrailerRecord) ToMap

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