Skip to content

Commit d4165dc

Browse files
XSD changes
1 parent 98e059f commit d4165dc

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

src/main/java/net/authorize/api/contract/v1/UpdateCustomerProfileRequest.java

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
* <complexContent>
2626
* <extension base="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}ANetApiRequest">
2727
* <sequence>
28-
* <element name="profile" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}customerProfileInfoExType"/>
28+
* <element name="profile" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}customerProfileExType"/>
2929
* </sequence>
3030
* </extension>
3131
* </complexContent>
@@ -44,30 +44,30 @@ public class UpdateCustomerProfileRequest
4444
{
4545

4646
@XmlElement(required = true)
47-
protected CustomerProfileInfoExType profile;
48-
47+
protected CustomerProfileExType profile;
4948
/**
5049
* Gets the value of the profile property.
5150
*
5251
* @return
5352
* possible object is
54-
* {@link CustomerProfileInfoExType }
53+
* {@link customerProfileExType }
5554
*
5655
*/
57-
public CustomerProfileInfoExType getProfile() {
58-
return profile;
59-
}
56+
57+
public CustomerProfileExType getProfile() {
58+
return profile;
59+
}
6060

6161
/**
6262
* Sets the value of the profile property.
6363
*
6464
* @param value
6565
* allowed object is
66-
* {@link CustomerProfileInfoExType }
66+
* {@link customerProfileExType }
6767
*
6868
*/
69-
public void setProfile(CustomerProfileInfoExType value) {
70-
this.profile = value;
71-
}
69+
public void setProfile(CustomerProfileExType profile) {
70+
this.profile = profile;
71+
}
7272

7373
}

0 commit comments

Comments
 (0)