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