com.salesmanager.shop.model.customer.attribute.ReadableCustomerAttribute 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 ReadableCustomerAttribute extends CustomerAttributeEntity {
/**
*
*/
private static final long serialVersionUID = 1L;
private ReadableCustomerOption customerOption;
private ReadableCustomerOptionValue customerOptionValue;
public void setCustomerOption(ReadableCustomerOption customerOption) {
this.customerOption = customerOption;
}
public ReadableCustomerOption getCustomerOption() {
return customerOption;
}
public void setCustomerOptionValue(ReadableCustomerOptionValue customerOptionValue) {
this.customerOptionValue = customerOptionValue;
}
public ReadableCustomerOptionValue getCustomerOptionValue() {
return customerOptionValue;
}
}