Name | Type | Description | Notes |
---|---|---|---|
Type | Pointer to string | Type of ID number. Valid values are `ssn`, `social_insurance`, `tax_id`, `identity_card`, `passport` and `driving_license` | [optional] |
Value | Pointer to string | Value of ID number | [optional] |
StateCode | Pointer to string | Two letter code of issuing state (state-issued driving licenses only) | [optional] |
func NewIdNumber() *IdNumber
NewIdNumber instantiates a new IdNumber 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 NewIdNumberWithDefaults() *IdNumber
NewIdNumberWithDefaults instantiates a new IdNumber 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 (o *IdNumber) GetType() string
GetType returns the Type field if non-nil, zero value otherwise.
func (o *IdNumber) GetTypeOk() (*string, bool)
GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *IdNumber) SetType(v string)
SetType sets Type field to given value.
func (o *IdNumber) HasType() bool
HasType returns a boolean if a field has been set.
func (o *IdNumber) GetValue() string
GetValue returns the Value field if non-nil, zero value otherwise.
func (o *IdNumber) GetValueOk() (*string, bool)
GetValueOk returns a tuple with the Value field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *IdNumber) SetValue(v string)
SetValue sets Value field to given value.
func (o *IdNumber) HasValue() bool
HasValue returns a boolean if a field has been set.
func (o *IdNumber) GetStateCode() string
GetStateCode returns the StateCode field if non-nil, zero value otherwise.
func (o *IdNumber) GetStateCodeOk() (*string, bool)
GetStateCodeOk returns a tuple with the StateCode field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *IdNumber) SetStateCode(v string)
SetStateCode sets StateCode field to given value.
func (o *IdNumber) HasStateCode() bool
HasStateCode returns a boolean if a field has been set.