Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ public class UserCompanyDTO extends CompanyDTO
@ApiModelProperty( "If this customer can pay later, only for admin" )
private Boolean delayedPayment;

@ApiModelProperty( "The reseller catalog associated to the company" )
@Valid
private UrlEntityDTO resellerCatalog;

public UserCompanyDTO( String name, String email )
{
super( name );
Expand Down Expand Up @@ -63,6 +67,16 @@ public void setDelayedPayment( Boolean delayedPayment )
this.delayedPayment = delayedPayment;
}

public UrlEntityDTO getResellerCatalog()
{
return resellerCatalog;
}

public void setResellerCatalog( UrlEntityDTO resellerCatalog )
{
this.resellerCatalog = resellerCatalog;
}

@Override
public boolean equals( Object o )
{
Expand Down