Interface JsonUnmarshaller<T>
- Type Parameters:
 T- Type to unmarshall into.
public interface JsonUnmarshaller<T>
Interface for unmarshalling a field from a JSON based service.
- 
Method Summary
Modifier and TypeMethodDescriptionunmarshall(JsonUnmarshallerContext context, JsonNode jsonContent, SdkField<T> field)  
- 
Method Details
- 
unmarshall
- Parameters:
 context- Context containing dependencies and unmarshaller registry.jsonContent- Parsed JSON content of body. May be null for REST JSON based services that don't have payload members.field-SdkFieldof member being unmarshalled.- Returns:
 - Unmarshalled value.
 
 
 -