Package io.restassured.common.mapper
Interface DataToDeserialize
public interface DataToDeserialize
-
Method Summary
Modifier and TypeMethodDescriptionbyte[]Get the data as a byte array.Get the data as an input stream.asString()Get the data as a string.
-
Method Details
-
asString
String asString()Get the data as a string.- Returns:
- The data as a string.
-
asByteArray
byte[] asByteArray()Get the data as a byte array.- Returns:
- The data as a array.
-
asInputStream
InputStream asInputStream()Get the data as an input stream.- Returns:
- The data as an input stream.
-