|
| 1 | +// |
| 2 | +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 |
| 3 | +// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> |
| 4 | +// Any modifications to this file will be lost upon recompilation of the source schema. |
| 5 | +// Generated on: 2018.11.14 at 11:09:15 AM IST |
| 6 | +// |
| 7 | + |
| 8 | + |
| 9 | +package net.authorize.api.contract.v1; |
| 10 | + |
| 11 | +import javax.xml.bind.annotation.XmlAccessType; |
| 12 | +import javax.xml.bind.annotation.XmlAccessorType; |
| 13 | +import javax.xml.bind.annotation.XmlType; |
| 14 | + |
| 15 | + |
| 16 | +/** |
| 17 | + * <p>Java class for ContactDetailType complex type. |
| 18 | + * |
| 19 | + * <p>The following schema fragment specifies the expected content contained within this class. |
| 20 | + * |
| 21 | + * <pre> |
| 22 | + * <complexType name="ContactDetailType"> |
| 23 | + * <complexContent> |
| 24 | + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
| 25 | + * <sequence> |
| 26 | + * <element name="email" minOccurs="0"> |
| 27 | + * <simpleType> |
| 28 | + * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> |
| 29 | + * <maxLength value="255"/> |
| 30 | + * </restriction> |
| 31 | + * </simpleType> |
| 32 | + * </element> |
| 33 | + * <element name="firstName" minOccurs="0"> |
| 34 | + * <simpleType> |
| 35 | + * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> |
| 36 | + * <maxLength value="50"/> |
| 37 | + * </restriction> |
| 38 | + * </simpleType> |
| 39 | + * </element> |
| 40 | + * <element name="lastName" minOccurs="0"> |
| 41 | + * <simpleType> |
| 42 | + * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> |
| 43 | + * <maxLength value="50"/> |
| 44 | + * </restriction> |
| 45 | + * </simpleType> |
| 46 | + * </element> |
| 47 | + * </sequence> |
| 48 | + * </restriction> |
| 49 | + * </complexContent> |
| 50 | + * </complexType> |
| 51 | + * </pre> |
| 52 | + * |
| 53 | + * |
| 54 | + */ |
| 55 | +@XmlAccessorType(XmlAccessType.FIELD) |
| 56 | +@XmlType(name = "ContactDetailType", propOrder = { |
| 57 | + "email", |
| 58 | + "firstName", |
| 59 | + "lastName" |
| 60 | +}) |
| 61 | +public class ContactDetailType { |
| 62 | + |
| 63 | + protected String email; |
| 64 | + protected String firstName; |
| 65 | + protected String lastName; |
| 66 | + |
| 67 | + /** |
| 68 | + * Gets the value of the email property. |
| 69 | + * |
| 70 | + * @return |
| 71 | + * possible object is |
| 72 | + * {@link String } |
| 73 | + * |
| 74 | + */ |
| 75 | + public String getEmail() { |
| 76 | + return email; |
| 77 | + } |
| 78 | + |
| 79 | + /** |
| 80 | + * Sets the value of the email property. |
| 81 | + * |
| 82 | + * @param value |
| 83 | + * allowed object is |
| 84 | + * {@link String } |
| 85 | + * |
| 86 | + */ |
| 87 | + public void setEmail(String value) { |
| 88 | + this.email = value; |
| 89 | + } |
| 90 | + |
| 91 | + /** |
| 92 | + * Gets the value of the firstName property. |
| 93 | + * |
| 94 | + * @return |
| 95 | + * possible object is |
| 96 | + * {@link String } |
| 97 | + * |
| 98 | + */ |
| 99 | + public String getFirstName() { |
| 100 | + return firstName; |
| 101 | + } |
| 102 | + |
| 103 | + /** |
| 104 | + * Sets the value of the firstName property. |
| 105 | + * |
| 106 | + * @param value |
| 107 | + * allowed object is |
| 108 | + * {@link String } |
| 109 | + * |
| 110 | + */ |
| 111 | + public void setFirstName(String value) { |
| 112 | + this.firstName = value; |
| 113 | + } |
| 114 | + |
| 115 | + /** |
| 116 | + * Gets the value of the lastName property. |
| 117 | + * |
| 118 | + * @return |
| 119 | + * possible object is |
| 120 | + * {@link String } |
| 121 | + * |
| 122 | + */ |
| 123 | + public String getLastName() { |
| 124 | + return lastName; |
| 125 | + } |
| 126 | + |
| 127 | + /** |
| 128 | + * Sets the value of the lastName property. |
| 129 | + * |
| 130 | + * @param value |
| 131 | + * allowed object is |
| 132 | + * {@link String } |
| 133 | + * |
| 134 | + */ |
| 135 | + public void setLastName(String value) { |
| 136 | + this.lastName = value; |
| 137 | + } |
| 138 | + |
| 139 | +} |
0 commit comments