com.silanis.esl.api.model.Currency Maven / Gradle / Ivy
package com.silanis.esl.api.model;
//
import com.fasterxml.jackson.annotation.*;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import com.silanis.esl.api.util.SchemaSanitizer;
@JsonIgnoreProperties(ignoreUnknown=true)
public class Currency extends Entity
implements java.io.Serializable
{
// Dirty Flag Constants
@JsonIgnore
public static final String FIELD_DATA = "data";
@JsonIgnore
public static final String FIELD_ID = "id";
@JsonIgnore
public static final String FIELD_NAME = "name";
// Empty Constructor
public Currency ( ) {}
// Fields
// Accessors
@Override
public Currency setData( Map value ){
super.setData(value);
return this;
}
// Used internally by aws. Invokes a the corresponding setter if the value is not null
@JsonIgnore
public Currency safeSetData( Map value ){
if ( value != null ) { this.setData( value ); }
return this;
}
@Override
public Currency setId( String value ){
super.setId(value);
return this;
}
// Used internally by aws. Invokes a the corresponding setter if the value is not null
@JsonIgnore
public Currency safeSetId( String value ){
if ( value != null ) { this.setId( value ); }
return this;
}
@Override
public Currency setName( String value ){
super.setName(value);
return this;
}
// Used internally by aws. Invokes a the corresponding setter if the value is not null
@JsonIgnore
public Currency safeSetName( String value ){
if ( value != null ) { this.setName( value ); }
return this;
}
}