SubscriptionScheduleConfigurationItemPlan.fromJson constructor
      
      SubscriptionScheduleConfigurationItemPlan.fromJson(
    
    
- Object? json
Implementation
factory SubscriptionScheduleConfigurationItemPlan.fromJson(Object? json) {
  final map = (json as Map).cast<String, Object?>();
  final type = (map['object'] as String);
  final factory = $mapping[type];
  if (factory == null) {
    throw ArgumentError(
        'Unknown type of SubscriptionScheduleConfigurationItemPlan: "$type"');
  }
  return factory(map);
}