-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathPlan.java
More file actions
1291 lines (948 loc) · 38.3 KB
/
Plan.java
File metadata and controls
1291 lines (948 loc) · 38.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package com.chargebee.models;
import com.chargebee.internal.*;
import com.chargebee.filters.*;
import com.chargebee.internal.HttpUtil.Method;
import com.chargebee.models.enums.*;
import org.json.*;
import java.sql.Timestamp;
import java.util.*;
public class Plan extends Resource<Plan> {
public enum PeriodUnit {
DAY,
WEEK,
MONTH,
YEAR,
_UNKNOWN; /*Indicates unexpected value for this enum. You can get this when there is a
java-client version incompatibility. We suggest you to upgrade to the latest version */
}
public enum TrialPeriodUnit {
DAY,
MONTH,
_UNKNOWN; /*Indicates unexpected value for this enum. You can get this when there is a
java-client version incompatibility. We suggest you to upgrade to the latest version */
}
public enum TrialEndAction {
SITE_DEFAULT,
ACTIVATE_SUBSCRIPTION,
CANCEL_SUBSCRIPTION,
_UNKNOWN; /*Indicates unexpected value for this enum. You can get this when there is a
java-client version incompatibility. We suggest you to upgrade to the latest version */
}
@Deprecated
public enum ChargeModel {
FLAT_FEE,
PER_UNIT,
TIERED,
VOLUME,
STAIRSTEP,
_UNKNOWN; /*Indicates unexpected value for this enum. You can get this when there is a
java-client version incompatibility. We suggest you to upgrade to the latest version */
}
public enum Status {
ACTIVE,
ARCHIVED,
DELETED,
_UNKNOWN; /*Indicates unexpected value for this enum. You can get this when there is a
java-client version incompatibility. We suggest you to upgrade to the latest version */
}
public enum AddonApplicability {
ALL,
RESTRICTED,
_UNKNOWN; /*Indicates unexpected value for this enum. You can get this when there is a
java-client version incompatibility. We suggest you to upgrade to the latest version */
}
public enum ShippingFrequencyPeriodUnit {
YEAR,
MONTH,
WEEK,
DAY,
_UNKNOWN; /*Indicates unexpected value for this enum. You can get this when there is a
java-client version incompatibility. We suggest you to upgrade to the latest version */
}
public static class Tier extends Resource<Tier> {
public Tier(JSONObject jsonObj) {
super(jsonObj);
}
public Integer startingUnit() {
return reqInteger("starting_unit");
}
public Integer endingUnit() {
return optInteger("ending_unit");
}
public Integer price() {
return reqInteger("price");
}
public String startingUnitInDecimal() {
return optString("starting_unit_in_decimal");
}
public String endingUnitInDecimal() {
return optString("ending_unit_in_decimal");
}
public String priceInDecimal() {
return optString("price_in_decimal");
}
}
public static class ApplicableAddon extends Resource<ApplicableAddon> {
public ApplicableAddon(JSONObject jsonObj) {
super(jsonObj);
}
public String id() {
return reqString("id");
}
}
public static class AttachedAddon extends Resource<AttachedAddon> {
public enum Type {
RECOMMENDED,MANDATORY,
_UNKNOWN; /*Indicates unexpected value for this enum. You can get this when there is a
java-client version incompatibility. We suggest you to upgrade to the latest version */
}
public AttachedAddon(JSONObject jsonObj) {
super(jsonObj);
}
public String id() {
return reqString("id");
}
public Integer quantity() {
return reqInteger("quantity");
}
public Integer billingCycles() {
return optInteger("billing_cycles");
}
public Type type() {
return reqEnum("type", Type.class);
}
public String quantityInDecimal() {
return optString("quantity_in_decimal");
}
}
public static class EventBasedAddon extends Resource<EventBasedAddon> {
public enum OnEvent {
SUBSCRIPTION_CREATION,SUBSCRIPTION_TRIAL_START,PLAN_ACTIVATION,SUBSCRIPTION_ACTIVATION,CONTRACT_TERMINATION,
_UNKNOWN; /*Indicates unexpected value for this enum. You can get this when there is a
java-client version incompatibility. We suggest you to upgrade to the latest version */
}
public EventBasedAddon(JSONObject jsonObj) {
super(jsonObj);
}
public String id() {
return reqString("id");
}
public Integer quantity() {
return reqInteger("quantity");
}
public OnEvent onEvent() {
return reqEnum("on_event", OnEvent.class);
}
public Boolean chargeOnce() {
return reqBoolean("charge_once");
}
public String quantityInDecimal() {
return optString("quantity_in_decimal");
}
}
//Constructors
//============
public Plan(String jsonStr) {
super(jsonStr);
}
public Plan(JSONObject jsonObj) {
super(jsonObj);
}
// Fields
//=======
public String id() {
return reqString("id");
}
public String name() {
return reqString("name");
}
public String invoiceName() {
return optString("invoice_name");
}
public String description() {
return optString("description");
}
public Integer price() {
return optInteger("price");
}
public String currencyCode() {
return reqString("currency_code");
}
public Integer period() {
return reqInteger("period");
}
public PeriodUnit periodUnit() {
return reqEnum("period_unit", PeriodUnit.class);
}
public Integer trialPeriod() {
return optInteger("trial_period");
}
public TrialPeriodUnit trialPeriodUnit() {
return optEnum("trial_period_unit", TrialPeriodUnit.class);
}
public TrialEndAction trialEndAction() {
return optEnum("trial_end_action", TrialEndAction.class);
}
public PricingModel pricingModel() {
return reqEnum("pricing_model", PricingModel.class);
}
@Deprecated
public ChargeModel chargeModel() {
return reqEnum("charge_model", ChargeModel.class);
}
public Integer freeQuantity() {
return reqInteger("free_quantity");
}
public Integer setupCost() {
return optInteger("setup_cost");
}
@Deprecated
public Double downgradePenalty() {
return optDouble("downgrade_penalty");
}
public Status status() {
return reqEnum("status", Status.class);
}
public Timestamp archivedAt() {
return optTimestamp("archived_at");
}
public Integer billingCycles() {
return optInteger("billing_cycles");
}
public String redirectUrl() {
return optString("redirect_url");
}
public Boolean enabledInHostedPages() {
return reqBoolean("enabled_in_hosted_pages");
}
public Boolean enabledInPortal() {
return reqBoolean("enabled_in_portal");
}
public AddonApplicability addonApplicability() {
return reqEnum("addon_applicability", AddonApplicability.class);
}
public String taxCode() {
return optString("tax_code");
}
public String hsnCode() {
return optString("hsn_code");
}
public String taxjarProductCode() {
return optString("taxjar_product_code");
}
public AvalaraSaleType avalaraSaleType() {
return optEnum("avalara_sale_type", AvalaraSaleType.class);
}
public Integer avalaraTransactionType() {
return optInteger("avalara_transaction_type");
}
public Integer avalaraServiceType() {
return optInteger("avalara_service_type");
}
public String sku() {
return optString("sku");
}
public String accountingCode() {
return optString("accounting_code");
}
public String accountingCategory1() {
return optString("accounting_category1");
}
public String accountingCategory2() {
return optString("accounting_category2");
}
public String accountingCategory3() {
return optString("accounting_category3");
}
public String accountingCategory4() {
return optString("accounting_category4");
}
public Boolean isShippable() {
return optBoolean("is_shippable");
}
public Integer shippingFrequencyPeriod() {
return optInteger("shipping_frequency_period");
}
public ShippingFrequencyPeriodUnit shippingFrequencyPeriodUnit() {
return optEnum("shipping_frequency_period_unit", ShippingFrequencyPeriodUnit.class);
}
public Long resourceVersion() {
return optLong("resource_version");
}
public Timestamp updatedAt() {
return optTimestamp("updated_at");
}
public Boolean giftable() {
return reqBoolean("giftable");
}
public String claimUrl() {
return optString("claim_url");
}
public String freeQuantityInDecimal() {
return optString("free_quantity_in_decimal");
}
public String priceInDecimal() {
return optString("price_in_decimal");
}
public String invoiceNotes() {
return optString("invoice_notes");
}
public Boolean taxable() {
return optBoolean("taxable");
}
public String taxProfileId() {
return optString("tax_profile_id");
}
public JSONObject metaData() {
return optJSONObject("meta_data");
}
public List<Plan.Tier> tiers() {
return optList("tiers", Plan.Tier.class);
}
public List<Plan.ApplicableAddon> applicableAddons() {
return optList("applicable_addons", Plan.ApplicableAddon.class);
}
public List<Plan.AttachedAddon> attachedAddons() {
return optList("attached_addons", Plan.AttachedAddon.class);
}
public List<Plan.EventBasedAddon> eventBasedAddons() {
return optList("event_based_addons", Plan.EventBasedAddon.class);
}
public Boolean showDescriptionInInvoices() {
return optBoolean("show_description_in_invoices");
}
public Boolean showDescriptionInQuotes() {
return optBoolean("show_description_in_quotes");
}
// Operations
//===========
public static CreateRequest create() {
String uri = uri("plans");
return new CreateRequest(Method.POST, uri);
}
public static UpdateRequest update(String id) {
String uri = uri("plans", nullCheck(id));
return new UpdateRequest(Method.POST, uri);
}
public static PlanListRequest list() {
String uri = uri("plans");
return new PlanListRequest(uri);
}
public static Request retrieve(String id) {
String uri = uri("plans", nullCheck(id));
return new Request(Method.GET, uri);
}
public static Request delete(String id) {
String uri = uri("plans", nullCheck(id), "delete");
return new Request(Method.POST, uri);
}
public static CopyRequest copy() {
String uri = uri("plans", "copy");
return new CopyRequest(Method.POST, uri);
}
public static Request unarchive(String id) {
String uri = uri("plans", nullCheck(id), "unarchive");
return new Request(Method.POST, uri);
}
// Operation Request Classes
//==========================
public static class CreateRequest extends Request<CreateRequest> {
private CreateRequest(Method httpMeth, String uri) {
super(httpMeth, uri);
}
public CreateRequest id(String id) {
params.add("id", id);
return this;
}
public CreateRequest name(String name) {
params.add("name", name);
return this;
}
public CreateRequest invoiceName(String invoiceName) {
params.addOpt("invoice_name", invoiceName);
return this;
}
public CreateRequest description(String description) {
params.addOpt("description", description);
return this;
}
public CreateRequest trialPeriod(Integer trialPeriod) {
params.addOpt("trial_period", trialPeriod);
return this;
}
public CreateRequest trialPeriodUnit(Plan.TrialPeriodUnit trialPeriodUnit) {
params.addOpt("trial_period_unit", trialPeriodUnit);
return this;
}
public CreateRequest trialEndAction(Plan.TrialEndAction trialEndAction) {
params.addOpt("trial_end_action", trialEndAction);
return this;
}
public CreateRequest period(Integer period) {
params.addOpt("period", period);
return this;
}
public CreateRequest periodUnit(Plan.PeriodUnit periodUnit) {
params.addOpt("period_unit", periodUnit);
return this;
}
public CreateRequest setupCost(Integer setupCost) {
params.addOpt("setup_cost", setupCost);
return this;
}
public CreateRequest price(Integer price) {
params.addOpt("price", price);
return this;
}
public CreateRequest priceInDecimal(String priceInDecimal) {
params.addOpt("price_in_decimal", priceInDecimal);
return this;
}
public CreateRequest currencyCode(String currencyCode) {
params.addOpt("currency_code", currencyCode);
return this;
}
public CreateRequest billingCycles(Integer billingCycles) {
params.addOpt("billing_cycles", billingCycles);
return this;
}
public CreateRequest pricingModel(com.chargebee.models.enums.PricingModel pricingModel) {
params.addOpt("pricing_model", pricingModel);
return this;
}
@Deprecated
public CreateRequest chargeModel(ChargeModel chargeModel) {
params.addOpt("charge_model", chargeModel);
return this;
}
public CreateRequest freeQuantity(Integer freeQuantity) {
params.addOpt("free_quantity", freeQuantity);
return this;
}
public CreateRequest freeQuantityInDecimal(String freeQuantityInDecimal) {
params.addOpt("free_quantity_in_decimal", freeQuantityInDecimal);
return this;
}
public CreateRequest addonApplicability(Plan.AddonApplicability addonApplicability) {
params.addOpt("addon_applicability", addonApplicability);
return this;
}
@Deprecated
public CreateRequest downgradePenalty(Double downgradePenalty) {
params.addOpt("downgrade_penalty", downgradePenalty);
return this;
}
public CreateRequest redirectUrl(String redirectUrl) {
params.addOpt("redirect_url", redirectUrl);
return this;
}
public CreateRequest enabledInHostedPages(Boolean enabledInHostedPages) {
params.addOpt("enabled_in_hosted_pages", enabledInHostedPages);
return this;
}
public CreateRequest enabledInPortal(Boolean enabledInPortal) {
params.addOpt("enabled_in_portal", enabledInPortal);
return this;
}
public CreateRequest taxable(Boolean taxable) {
params.addOpt("taxable", taxable);
return this;
}
public CreateRequest taxProfileId(String taxProfileId) {
params.addOpt("tax_profile_id", taxProfileId);
return this;
}
public CreateRequest taxCode(String taxCode) {
params.addOpt("tax_code", taxCode);
return this;
}
public CreateRequest hsnCode(String hsnCode) {
params.addOpt("hsn_code", hsnCode);
return this;
}
public CreateRequest taxjarProductCode(String taxjarProductCode) {
params.addOpt("taxjar_product_code", taxjarProductCode);
return this;
}
public CreateRequest avalaraSaleType(com.chargebee.models.enums.AvalaraSaleType avalaraSaleType) {
params.addOpt("avalara_sale_type", avalaraSaleType);
return this;
}
public CreateRequest avalaraTransactionType(Integer avalaraTransactionType) {
params.addOpt("avalara_transaction_type", avalaraTransactionType);
return this;
}
public CreateRequest avalaraServiceType(Integer avalaraServiceType) {
params.addOpt("avalara_service_type", avalaraServiceType);
return this;
}
public CreateRequest sku(String sku) {
params.addOpt("sku", sku);
return this;
}
public CreateRequest accountingCode(String accountingCode) {
params.addOpt("accounting_code", accountingCode);
return this;
}
public CreateRequest accountingCategory1(String accountingCategory1) {
params.addOpt("accounting_category1", accountingCategory1);
return this;
}
public CreateRequest accountingCategory2(String accountingCategory2) {
params.addOpt("accounting_category2", accountingCategory2);
return this;
}
public CreateRequest accountingCategory3(String accountingCategory3) {
params.addOpt("accounting_category3", accountingCategory3);
return this;
}
public CreateRequest accountingCategory4(String accountingCategory4) {
params.addOpt("accounting_category4", accountingCategory4);
return this;
}
public CreateRequest isShippable(Boolean isShippable) {
params.addOpt("is_shippable", isShippable);
return this;
}
public CreateRequest shippingFrequencyPeriod(Integer shippingFrequencyPeriod) {
params.addOpt("shipping_frequency_period", shippingFrequencyPeriod);
return this;
}
public CreateRequest shippingFrequencyPeriodUnit(Plan.ShippingFrequencyPeriodUnit shippingFrequencyPeriodUnit) {
params.addOpt("shipping_frequency_period_unit", shippingFrequencyPeriodUnit);
return this;
}
public CreateRequest invoiceNotes(String invoiceNotes) {
params.addOpt("invoice_notes", invoiceNotes);
return this;
}
public CreateRequest metaData(JSONObject metaData) {
params.addOpt("meta_data", metaData);
return this;
}
public CreateRequest showDescriptionInInvoices(Boolean showDescriptionInInvoices) {
params.addOpt("show_description_in_invoices", showDescriptionInInvoices);
return this;
}
public CreateRequest showDescriptionInQuotes(Boolean showDescriptionInQuotes) {
params.addOpt("show_description_in_quotes", showDescriptionInQuotes);
return this;
}
public CreateRequest giftable(Boolean giftable) {
params.addOpt("giftable", giftable);
return this;
}
public CreateRequest status(Plan.Status status) {
params.addOpt("status", status);
return this;
}
public CreateRequest claimUrl(String claimUrl) {
params.addOpt("claim_url", claimUrl);
return this;
}
public CreateRequest tierStartingUnit(int index, Integer tierStartingUnit) {
params.addOpt("tiers[starting_unit][" + index + "]", tierStartingUnit);
return this;
}
public CreateRequest tierEndingUnit(int index, Integer tierEndingUnit) {
params.addOpt("tiers[ending_unit][" + index + "]", tierEndingUnit);
return this;
}
public CreateRequest tierPrice(int index, Integer tierPrice) {
params.addOpt("tiers[price][" + index + "]", tierPrice);
return this;
}
public CreateRequest tierStartingUnitInDecimal(int index, String tierStartingUnitInDecimal) {
params.addOpt("tiers[starting_unit_in_decimal][" + index + "]", tierStartingUnitInDecimal);
return this;
}
public CreateRequest tierEndingUnitInDecimal(int index, String tierEndingUnitInDecimal) {
params.addOpt("tiers[ending_unit_in_decimal][" + index + "]", tierEndingUnitInDecimal);
return this;
}
public CreateRequest tierPriceInDecimal(int index, String tierPriceInDecimal) {
params.addOpt("tiers[price_in_decimal][" + index + "]", tierPriceInDecimal);
return this;
}
public CreateRequest applicableAddonId(int index, String applicableAddonId) {
params.addOpt("applicable_addons[id][" + index + "]", applicableAddonId);
return this;
}
public CreateRequest eventBasedAddonId(int index, String eventBasedAddonId) {
params.addOpt("event_based_addons[id][" + index + "]", eventBasedAddonId);
return this;
}
public CreateRequest eventBasedAddonQuantity(int index, Integer eventBasedAddonQuantity) {
params.addOpt("event_based_addons[quantity][" + index + "]", eventBasedAddonQuantity);
return this;
}
public CreateRequest eventBasedAddonQuantityInDecimal(int index, String eventBasedAddonQuantityInDecimal) {
params.addOpt("event_based_addons[quantity_in_decimal][" + index + "]", eventBasedAddonQuantityInDecimal);
return this;
}
public CreateRequest eventBasedAddonOnEvent(int index, com.chargebee.models.enums.OnEvent eventBasedAddonOnEvent) {
params.addOpt("event_based_addons[on_event][" + index + "]", eventBasedAddonOnEvent);
return this;
}
public CreateRequest eventBasedAddonChargeOnce(int index, Boolean eventBasedAddonChargeOnce) {
params.addOpt("event_based_addons[charge_once][" + index + "]", eventBasedAddonChargeOnce);
return this;
}
public CreateRequest attachedAddonId(int index, String attachedAddonId) {
params.addOpt("attached_addons[id][" + index + "]", attachedAddonId);
return this;
}
public CreateRequest attachedAddonQuantity(int index, Integer attachedAddonQuantity) {
params.addOpt("attached_addons[quantity][" + index + "]", attachedAddonQuantity);
return this;
}
public CreateRequest attachedAddonQuantityInDecimal(int index, String attachedAddonQuantityInDecimal) {
params.addOpt("attached_addons[quantity_in_decimal][" + index + "]", attachedAddonQuantityInDecimal);
return this;
}
public CreateRequest attachedAddonBillingCycles(int index, Integer attachedAddonBillingCycles) {
params.addOpt("attached_addons[billing_cycles][" + index + "]", attachedAddonBillingCycles);
return this;
}
public CreateRequest attachedAddonType(int index, AttachedAddon.Type attachedAddonType) {
params.addOpt("attached_addons[type][" + index + "]", attachedAddonType);
return this;
}
@Override
public Params params() {
return params;
}
}
public static class UpdateRequest extends Request<UpdateRequest> {
private UpdateRequest(Method httpMeth, String uri) {
super(httpMeth, uri);
}
public UpdateRequest name(String name) {
params.addOpt("name", name);
return this;
}
public UpdateRequest invoiceName(String invoiceName) {
params.addOpt("invoice_name", invoiceName);
return this;
}
public UpdateRequest description(String description) {
params.addOpt("description", description);
return this;
}
public UpdateRequest trialPeriod(Integer trialPeriod) {
params.addOpt("trial_period", trialPeriod);
return this;
}
public UpdateRequest trialPeriodUnit(Plan.TrialPeriodUnit trialPeriodUnit) {
params.addOpt("trial_period_unit", trialPeriodUnit);
return this;
}
public UpdateRequest trialEndAction(Plan.TrialEndAction trialEndAction) {
params.addOpt("trial_end_action", trialEndAction);
return this;
}
public UpdateRequest period(Integer period) {
params.addOpt("period", period);
return this;
}
public UpdateRequest periodUnit(Plan.PeriodUnit periodUnit) {
params.addOpt("period_unit", periodUnit);
return this;
}
public UpdateRequest setupCost(Integer setupCost) {
params.addOpt("setup_cost", setupCost);
return this;
}
public UpdateRequest price(Integer price) {
params.addOpt("price", price);
return this;
}
public UpdateRequest priceInDecimal(String priceInDecimal) {
params.addOpt("price_in_decimal", priceInDecimal);
return this;
}
public UpdateRequest currencyCode(String currencyCode) {
params.addOpt("currency_code", currencyCode);
return this;
}
public UpdateRequest billingCycles(Integer billingCycles) {
params.addOpt("billing_cycles", billingCycles);
return this;
}
public UpdateRequest pricingModel(com.chargebee.models.enums.PricingModel pricingModel) {
params.addOpt("pricing_model", pricingModel);
return this;
}
@Deprecated
public UpdateRequest chargeModel(ChargeModel chargeModel) {
params.addOpt("charge_model", chargeModel);
return this;
}
public UpdateRequest freeQuantity(Integer freeQuantity) {
params.addOpt("free_quantity", freeQuantity);
return this;
}
public UpdateRequest freeQuantityInDecimal(String freeQuantityInDecimal) {
params.addOpt("free_quantity_in_decimal", freeQuantityInDecimal);
return this;
}
public UpdateRequest addonApplicability(Plan.AddonApplicability addonApplicability) {
params.addOpt("addon_applicability", addonApplicability);
return this;
}
@Deprecated
public UpdateRequest downgradePenalty(Double downgradePenalty) {
params.addOpt("downgrade_penalty", downgradePenalty);
return this;
}
public UpdateRequest redirectUrl(String redirectUrl) {
params.addOpt("redirect_url", redirectUrl);
return this;
}
public UpdateRequest enabledInHostedPages(Boolean enabledInHostedPages) {
params.addOpt("enabled_in_hosted_pages", enabledInHostedPages);
return this;
}
public UpdateRequest enabledInPortal(Boolean enabledInPortal) {
params.addOpt("enabled_in_portal", enabledInPortal);
return this;
}
public UpdateRequest taxable(Boolean taxable) {
params.addOpt("taxable", taxable);
return this;
}
public UpdateRequest taxProfileId(String taxProfileId) {
params.addOpt("tax_profile_id", taxProfileId);
return this;
}
public UpdateRequest taxCode(String taxCode) {
params.addOpt("tax_code", taxCode);
return this;
}
public UpdateRequest hsnCode(String hsnCode) {
params.addOpt("hsn_code", hsnCode);
return this;
}
public UpdateRequest taxjarProductCode(String taxjarProductCode) {
params.addOpt("taxjar_product_code", taxjarProductCode);
return this;
}
public UpdateRequest avalaraSaleType(com.chargebee.models.enums.AvalaraSaleType avalaraSaleType) {
params.addOpt("avalara_sale_type", avalaraSaleType);
return this;
}
public UpdateRequest avalaraTransactionType(Integer avalaraTransactionType) {
params.addOpt("avalara_transaction_type", avalaraTransactionType);
return this;
}