-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
39 additions
and
0 deletions.
There are no files selected for viewing
39 changes: 39 additions & 0 deletions
39
src/main/java/io/githhub/TradersTeam/grand_node_java_client/models/Customer.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
package io.githhub.TradersTeam.grand_node_java_client.models; | ||
|
||
import lombok.Builder; | ||
import lombok.Getter; | ||
|
||
import java.util.List; | ||
|
||
@Getter | ||
@Builder | ||
public class Customer { | ||
private String CustomerGuid; //uuid | ||
private String Username; | ||
private String Email; | ||
private String adminComment; | ||
private boolean isTaxExempt; | ||
private boolean freeShipping; | ||
private String AffiliateId; | ||
private String VendorId; | ||
private String StoreId; | ||
private boolean Active; | ||
private boolean Deleted; | ||
private String Gender; | ||
private String FirstName; | ||
private String LastName; | ||
private String DateOfBirth; //datetime | ||
private String Company; | ||
private String StreetAddress; | ||
private String StreetAddress2; | ||
private String ZipPostalCode; | ||
private String City; | ||
private String CountryId; | ||
private String StateProvinceId; | ||
private String Phone; | ||
private String Fax; | ||
private String VatNumber; | ||
private String VatNumberStatusId; | ||
private List<String> Groups; | ||
private List<Address> Addresses; | ||
} |