Class CustomerSignMeUpDraft

java.lang.Object
com.commercetools.graphql.api.types.CustomerSignMeUpDraft

public class CustomerSignMeUpDraft extends Object
  • Constructor Details

  • Method Details

    • getEmail

      public String getEmail()
    • setEmail

      public void setEmail(String email)
    • getPassword

      public String getPassword()
    • setPassword

      public void setPassword(String password)
    • getFirstName

      public String getFirstName()
    • setFirstName

      public void setFirstName(String firstName)
    • getLastName

      public String getLastName()
    • setLastName

      public void setLastName(String lastName)
    • getMiddleName

      public String getMiddleName()
    • setMiddleName

      public void setMiddleName(String middleName)
    • getTitle

      public String getTitle()
    • setTitle

      public void setTitle(String title)
    • getDateOfBirth

      public LocalDate getDateOfBirth()
    • setDateOfBirth

      public void setDateOfBirth(LocalDate dateOfBirth)
    • getCompanyName

      public String getCompanyName()
    • setCompanyName

      public void setCompanyName(String companyName)
    • getVatId

      public String getVatId()
    • setVatId

      public void setVatId(String vatId)
    • getAddresses

      public List<AddressInput> getAddresses()
    • setAddresses

      public void setAddresses(List<AddressInput> addresses)
    • getDefaultBillingAddress

      public Integer getDefaultBillingAddress()
      The index of the address in the `addresses` list. The `defaultBillingAddressId` of the customer will be set to the ID of that address.
    • setDefaultBillingAddress

      public void setDefaultBillingAddress(Integer defaultBillingAddress)
    • getDefaultShippingAddress

      public Integer getDefaultShippingAddress()
      The index of the address in the `addresses` list. The `defaultShippingAddressId` of the customer will be set to the ID of that address.
    • setDefaultShippingAddress

      public void setDefaultShippingAddress(Integer defaultShippingAddress)
    • getShippingAddresses

      public List<Integer> getShippingAddresses()
      The indices of the shipping addresses in the `addresses` list. The `shippingAddressIds` of the `Customer` will be set to the IDs of that addresses.
    • setShippingAddresses

      public void setShippingAddresses(List<Integer> shippingAddresses)
    • getBillingAddresses

      public List<Integer> getBillingAddresses()
      The indices of the billing addresses in the `addresses` list. The `billingAddressIds` of the customer will be set to the IDs of that addresses.
    • setBillingAddresses

      public void setBillingAddresses(List<Integer> billingAddresses)
    • getCustom

      public CustomFieldsDraft getCustom()
    • setCustom

      public void setCustom(CustomFieldsDraft custom)
    • getLocale

      public String getLocale()
    • setLocale

      public void setLocale(String locale)
    • getSalutation

      public String getSalutation()
    • setSalutation

      public void setSalutation(String salutation)
    • getKey

      public String getKey()
    • setKey

      public void setKey(String key)
    • getStores

      public List<ResourceIdentifierInput> getStores()
    • setStores

      public void setStores(List<ResourceIdentifierInput> stores)
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • newBuilder

      public static CustomerSignMeUpDraft.Builder newBuilder()