| @@ 87-98 (lines=12) @@ | ||
| 84 | # number - SOAP::SOAPString |
|
| 85 | # state - SOAP::SOAPString |
|
| 86 | # dateOfBirth - SOAP::SOAPString |
|
| 87 | class DriversLicenseMaskedType |
|
| 88 | include ROXML |
|
| 89 | xml_accessor :number |
|
| 90 | xml_accessor :state |
|
| 91 | xml_accessor :dateOfBirth |
|
| 92 | ||
| 93 | def initialize(number = nil, state = nil, dateOfBirth = nil) |
|
| 94 | @number = number |
|
| 95 | @state = state |
|
| 96 | @dateOfBirth = dateOfBirth |
|
| 97 | end |
|
| 98 | end |
|
| 99 | ||
| 100 | # {AnetApi/xml/v1/schema/AnetApiSchema.xsd}nameAndAddressType |
|
| 101 | # firstName - SOAP::SOAPString |
|
| @@ 70-81 (lines=12) @@ | ||
| 67 | # number - SOAP::SOAPString |
|
| 68 | # state - SOAP::SOAPString |
|
| 69 | # dateOfBirth - SOAP::SOAPString |
|
| 70 | class DriversLicenseType |
|
| 71 | include ROXML |
|
| 72 | xml_accessor :number |
|
| 73 | xml_accessor :state |
|
| 74 | xml_accessor :dateOfBirth |
|
| 75 | ||
| 76 | def initialize(number = nil, state = nil, dateOfBirth = nil) |
|
| 77 | @number = number |
|
| 78 | @state = state |
|
| 79 | @dateOfBirth = dateOfBirth |
|
| 80 | end |
|
| 81 | end |
|
| 82 | ||
| 83 | # {AnetApi/xml/v1/schema/AnetApiSchema.xsd}driversLicenseMaskedType |
|
| 84 | # number - SOAP::SOAPString |
|