InternalLinkTypeInvoice.fromJson constructor
Parse from a json
Implementation
factory InternalLinkTypeInvoice.fromJson(Map<String, dynamic> json) =>
    InternalLinkTypeInvoice(
      invoiceName: json['invoice_name'],
      extra: json['@extra'],
      clientId: json['@client_id'],
    );