call_problem_interruptions property

CallProblemInterruptions get call_problem_interruptions

Generate By General Universe Script Dont edit by hand or anything manual

Implementation

CallProblemInterruptions get call_problem_interruptions {
  try {
    if (rawData["call_problem_interruptions"] is Map == false) {
      return CallProblemInterruptions({});
    }
    return CallProblemInterruptions(rawData["call_problem_interruptions"] as Map);
  } catch (e) {
    return CallProblemInterruptions({});
  }
}
set call_problem_interruptions (CallProblemInterruptions value)

Generate By General Universe Script Dont edit by hand or anything manual

Implementation

set call_problem_interruptions(CallProblemInterruptions value) {
  rawData["call_problem_interruptions"] = value.toJson();
}