Android SDK Samples - Blueprint Operations
Get BlueprintState Details
//$record object is of ZCRMRecord
//call getBlueprintStateDetails() using $record object
$record.getBlueprintStateDetails(object : DataCallback<APIResponse,ZCRMBlueprintState>
{
override fun completed(response: APIResponse,blueprintState: ZCRMBlueprintState) {
println("${response.responseJSON}")
}
override fun failed(exception: ZCRMException) {
println("Throws Exception : $exception")
}
})