getIntegerValue method

int? getIntegerValue()

Implementation

int? getIntegerValue() {
  if (type == BatchUserAttributeType.integer) {
    return value;
  }
  return null;
}