com.salesmanager.shop.model.customer.attribute.PersistableCustomerAttribute Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sm-shop-model Show documentation
Show all versions of sm-shop-model Show documentation
sm-shop-model contains Shopizer model objects for api
The newest version!
package com.salesmanager.shop.model.customer.attribute;
public class PersistableCustomerAttribute extends CustomerAttributeEntity {
/**
*
*/
private static final long serialVersionUID = 1L;
private CustomerOption customerOption;
private CustomerOptionValue customerOptionValue;
public void setCustomerOptionValue(CustomerOptionValue customerOptionValue) {
this.customerOptionValue = customerOptionValue;
}
public CustomerOptionValue getCustomerOptionValue() {
return customerOptionValue;
}
public void setCustomerOption(CustomerOption customerOption) {
this.customerOption = customerOption;
}
public CustomerOption getCustomerOption() {
return customerOption;
}
}