@@ -524,7 +524,7 @@ public class Options : EasyPostObject
524
524
[ JsonProperty ( "fulfiller_order_id" ) ]
525
525
public string ? FulfillerOrderId { get ; set ; }
526
526
[ JsonProperty ( "fulfiller_order_items" ) ]
527
- public string [ ] ? FulfillerOrderItems { get ; set ; } // array
527
+ public List < string > ? FulfillerOrderItems { get ; set ; } // array
528
528
[ JsonProperty ( "group" ) ]
529
529
public string ? Group { get ; set ; } // any
530
530
@@ -698,7 +698,7 @@ public class Options : EasyPostObject
698
698
[ JsonProperty ( "non_contact" ) ]
699
699
public bool ? NonContact { get ; set ; } // bool
700
700
[ JsonProperty ( "notifications" ) ]
701
- public string [ ] ? Notifications { get ; set ; } // array
701
+ public List < string > ? Notifications { get ; set ; } // array
702
702
[ JsonProperty ( "one_page" ) ]
703
703
public bool ? OnePage { get ; set ; }
704
704
[ JsonProperty ( "origin_terminal" ) ]
@@ -786,7 +786,7 @@ public class Options : EasyPostObject
786
786
[ JsonProperty ( "postage_label_inline" ) ]
787
787
public bool ? PostageLabelInline { get ; set ; } // bool
788
788
[ JsonProperty ( "print_custom" ) ]
789
- public string [ ] ? PrintCustom { get ; set ; } // array
789
+ public List < string > ? PrintCustom { get ; set ; } // array
790
790
/// <summary>
791
791
/// You can optionally print custom messages on labels.
792
792
/// Message to print on the label in spot 1.
@@ -1010,7 +1010,7 @@ public class Options : EasyPostObject
1010
1010
[ JsonProperty ( "saturday_delivery" ) ]
1011
1011
public bool ? SaturdayDelivery { get ; set ; } // bool
1012
1012
[ JsonProperty ( "service_codes" ) ]
1013
- public string [ ] ? ServiceCodes { get ; set ; } // array
1013
+ public List < string > ? ServiceCodes { get ; set ; } // array
1014
1014
[ JsonProperty ( "settlement_method" ) ]
1015
1015
public string ? SettlementMethod { get ; set ; }
1016
1016
0 commit comments