PaymentLinksResourceTaxIdCollection.fromJson constructor
      
      PaymentLinksResourceTaxIdCollection.fromJson(
    
    
- Object? json
Implementation
factory PaymentLinksResourceTaxIdCollection.fromJson(Object? json) {
  final map = (json as Map).cast<String, Object?>();
  return PaymentLinksResourceTaxIdCollection(
      enabled: (map['enabled'] as bool));
}