Package org.openapitools.client.model
Class MultiFormVariableBinaryDto
- java.lang.Object
-
- org.openapitools.client.model.MultiFormVariableBinaryDto
-
public class MultiFormVariableBinaryDto extends Object
MultiFormVariableBinaryDto
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classMultiFormVariableBinaryDto.ValueTypeEnumThe name of the variable type.
-
Field Summary
Fields Modifier and Type Field Description static StringSERIALIZED_NAME_DATAstatic StringSERIALIZED_NAME_VALUE_TYPE
-
Constructor Summary
Constructors Constructor Description MultiFormVariableBinaryDto()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MultiFormVariableBinaryDtodata(File data)booleanequals(Object o)FilegetData()The binary data to be set.MultiFormVariableBinaryDto.ValueTypeEnumgetValueType()The name of the variable type.inthashCode()voidsetData(File data)voidsetValueType(MultiFormVariableBinaryDto.ValueTypeEnum valueType)StringtoString()MultiFormVariableBinaryDtovalueType(MultiFormVariableBinaryDto.ValueTypeEnum valueType)
-
-
-
Field Detail
-
SERIALIZED_NAME_DATA
public static final String SERIALIZED_NAME_DATA
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_VALUE_TYPE
public static final String SERIALIZED_NAME_VALUE_TYPE
- See Also:
- Constant Field Values
-
-
Method Detail
-
data
public MultiFormVariableBinaryDto data(File data)
-
getData
public File getData()
The binary data to be set. For File variables, this multipart can contain the filename, binary value and MIME type of the file variable to be set Only the filename is mandatory.- Returns:
- data
-
setData
public void setData(File data)
-
valueType
public MultiFormVariableBinaryDto valueType(MultiFormVariableBinaryDto.ValueTypeEnum valueType)
-
getValueType
public MultiFormVariableBinaryDto.ValueTypeEnum getValueType()
The name of the variable type. Either Bytes for a byte array variable or File for a file variable.- Returns:
- valueType
-
setValueType
public void setValueType(MultiFormVariableBinaryDto.ValueTypeEnum valueType)
-
-