Class: DocuSign_eSign::AccountSettingsInformation

Inherits:
Object
  • Object
show all
Defined in:
lib/docusign_esign/models/account_settings_information.rb

Overview

Contains account settings information.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ AccountSettingsInformation

Initializes the object

Parameters:

  • attributes (Hash) (defaults to: {})

    Model attributes in the form of hash



2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2781

def initialize(attributes = {})
  return unless attributes.is_a?(Hash)

  # convert string to symbol for hash key
  attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }

  if attributes.has_key?(:'accessCodeFormat')
    self.access_code_format = attributes[:'accessCodeFormat']
  end

  if attributes.has_key?(:'accountDateTimeFormat')
    self. = attributes[:'accountDateTimeFormat']
  end

  if attributes.has_key?(:'accountDateTimeFormatMetadata')
    self. = attributes[:'accountDateTimeFormatMetadata']
  end

  if attributes.has_key?(:'accountDefaultLanguage')
    self. = attributes[:'accountDefaultLanguage']
  end

  if attributes.has_key?(:'accountDefaultLanguageMetadata')
    self. = attributes[:'accountDefaultLanguageMetadata']
  end

  if attributes.has_key?(:'accountName')
    self. = attributes[:'accountName']
  end

  if attributes.has_key?(:'accountNameMetadata')
    self. = attributes[:'accountNameMetadata']
  end

  if attributes.has_key?(:'accountNotification')
    self. = attributes[:'accountNotification']
  end

  if attributes.has_key?(:'accountUISettings')
    self. = attributes[:'accountUISettings']
  end

  if attributes.has_key?(:'adoptSigConfig')
    self.adopt_sig_config = attributes[:'adoptSigConfig']
  end

  if attributes.has_key?(:'adoptSigConfigMetadata')
    self. = attributes[:'adoptSigConfigMetadata']
  end

  if attributes.has_key?(:'advancedCorrect')
    self.advanced_correct = attributes[:'advancedCorrect']
  end

  if attributes.has_key?(:'advancedCorrectMetadata')
    self. = attributes[:'advancedCorrectMetadata']
  end

  if attributes.has_key?(:'allowAccessCodeFormat')
    self.allow_access_code_format = attributes[:'allowAccessCodeFormat']
  end

  if attributes.has_key?(:'allowAccessCodeFormatMetadata')
    self. = attributes[:'allowAccessCodeFormatMetadata']
  end

  if attributes.has_key?(:'allowAccountManagementGranular')
    self. = attributes[:'allowAccountManagementGranular']
  end

  if attributes.has_key?(:'allowAccountManagementGranularMetadata')
    self. = attributes[:'allowAccountManagementGranularMetadata']
  end

  if attributes.has_key?(:'allowAccountMemberNameChange')
    self. = attributes[:'allowAccountMemberNameChange']
  end

  if attributes.has_key?(:'allowAccountMemberNameChangeMetadata')
    self. = attributes[:'allowAccountMemberNameChangeMetadata']
  end

  if attributes.has_key?(:'allowAdvancedRecipientRoutingConditional')
    self.allow_advanced_recipient_routing_conditional = attributes[:'allowAdvancedRecipientRoutingConditional']
  end

  if attributes.has_key?(:'allowAdvancedRecipientRoutingConditionalMetadata')
    self. = attributes[:'allowAdvancedRecipientRoutingConditionalMetadata']
  end

  if attributes.has_key?(:'allowAgentNameEmailEdit')
    self.allow_agent_name_email_edit = attributes[:'allowAgentNameEmailEdit']
  end

  if attributes.has_key?(:'allowAgentNameEmailEditMetadata')
    self. = attributes[:'allowAgentNameEmailEditMetadata']
  end

  if attributes.has_key?(:'allowAgreementActions')
    self.allow_agreement_actions = attributes[:'allowAgreementActions']
  end

  if attributes.has_key?(:'allowAgreementActionsMetadata')
    self. = attributes[:'allowAgreementActionsMetadata']
  end

  if attributes.has_key?(:'allowAutoNavSettings')
    self.allow_auto_nav_settings = attributes[:'allowAutoNavSettings']
  end

  if attributes.has_key?(:'allowAutoNavSettingsMetadata')
    self. = attributes[:'allowAutoNavSettingsMetadata']
  end

  if attributes.has_key?(:'allowAutoTagging')
    self.allow_auto_tagging = attributes[:'allowAutoTagging']
  end

  if attributes.has_key?(:'allowAutoTaggingMetadata')
    self. = attributes[:'allowAutoTaggingMetadata']
  end

  if attributes.has_key?(:'allowBulkSend')
    self.allow_bulk_send = attributes[:'allowBulkSend']
  end

  if attributes.has_key?(:'allowBulkSendMetadata')
    self. = attributes[:'allowBulkSendMetadata']
  end

  if attributes.has_key?(:'allowCDWithdraw')
    self.allow_cd_withdraw = attributes[:'allowCDWithdraw']
  end

  if attributes.has_key?(:'allowCDWithdrawMetadata')
    self. = attributes[:'allowCDWithdrawMetadata']
  end

  if attributes.has_key?(:'allowConnectHttpListenerConfigs')
    self.allow_connect_http_listener_configs = attributes[:'allowConnectHttpListenerConfigs']
  end

  if attributes.has_key?(:'allowConnectSendFinishLater')
    self.allow_connect_send_finish_later = attributes[:'allowConnectSendFinishLater']
  end

  if attributes.has_key?(:'allowConnectSendFinishLaterMetadata')
    self. = attributes[:'allowConnectSendFinishLaterMetadata']
  end

  if attributes.has_key?(:'allowConnectUnifiedPayloadUI')
    self.allow_connect_unified_payload_ui = attributes[:'allowConnectUnifiedPayloadUI']
  end

  if attributes.has_key?(:'allowConsumerDisclosureOverride')
    self.allow_consumer_disclosure_override = attributes[:'allowConsumerDisclosureOverride']
  end

  if attributes.has_key?(:'allowConsumerDisclosureOverrideMetadata')
    self. = attributes[:'allowConsumerDisclosureOverrideMetadata']
  end

  if attributes.has_key?(:'allowDataDownload')
    self.allow_data_download = attributes[:'allowDataDownload']
  end

  if attributes.has_key?(:'allowDataDownloadMetadata')
    self. = attributes[:'allowDataDownloadMetadata']
  end

  if attributes.has_key?(:'allowDelayedRouting')
    self.allow_delayed_routing = attributes[:'allowDelayedRouting']
  end

  if attributes.has_key?(:'allowDelayedRoutingMetadata')
    self. = attributes[:'allowDelayedRoutingMetadata']
  end

  if attributes.has_key?(:'allowDelegatedSigning')
    self.allow_delegated_signing = attributes[:'allowDelegatedSigning']
  end

  if attributes.has_key?(:'allowDelegatedSigningMetadata')
    self. = attributes[:'allowDelegatedSigningMetadata']
  end

  if attributes.has_key?(:'allowDocumentDisclosures')
    self.allow_document_disclosures = attributes[:'allowDocumentDisclosures']
  end

  if attributes.has_key?(:'allowDocumentDisclosuresMetadata')
    self. = attributes[:'allowDocumentDisclosuresMetadata']
  end

  if attributes.has_key?(:'allowDocumentsOnSignedEnvelopes')
    self.allow_documents_on_signed_envelopes = attributes[:'allowDocumentsOnSignedEnvelopes']
  end

  if attributes.has_key?(:'allowDocumentsOnSignedEnvelopesMetadata')
    self. = attributes[:'allowDocumentsOnSignedEnvelopesMetadata']
  end

  if attributes.has_key?(:'allowDocumentVisibility')
    self.allow_document_visibility = attributes[:'allowDocumentVisibility']
  end

  if attributes.has_key?(:'allowDocumentVisibilityMetadata')
    self. = attributes[:'allowDocumentVisibilityMetadata']
  end

  if attributes.has_key?(:'allowEHankoStamps')
    self.allow_e_hanko_stamps = attributes[:'allowEHankoStamps']
  end

  if attributes.has_key?(:'allowEHankoStampsMetadata')
    self. = attributes[:'allowEHankoStampsMetadata']
  end

  if attributes.has_key?(:'allowENoteEOriginal')
    self.allow_e_note_e_original = attributes[:'allowENoteEOriginal']
  end

  if attributes.has_key?(:'allowENoteEOriginalMetadata')
    self. = attributes[:'allowENoteEOriginalMetadata']
  end

  if attributes.has_key?(:'allowEnvelopeCorrect')
    self.allow_envelope_correct = attributes[:'allowEnvelopeCorrect']
  end

  if attributes.has_key?(:'allowEnvelopeCorrectMetadata')
    self. = attributes[:'allowEnvelopeCorrectMetadata']
  end

  if attributes.has_key?(:'allowEnvelopeCustodyTransfer')
    self.allow_envelope_custody_transfer = attributes[:'allowEnvelopeCustodyTransfer']
  end

  if attributes.has_key?(:'allowEnvelopeCustodyTransferMetadata')
    self. = attributes[:'allowEnvelopeCustodyTransferMetadata']
  end

  if attributes.has_key?(:'allowEnvelopeCustomFields')
    self.allow_envelope_custom_fields = attributes[:'allowEnvelopeCustomFields']
  end

  if attributes.has_key?(:'allowEnvelopeCustomFieldsMetadata')
    self. = attributes[:'allowEnvelopeCustomFieldsMetadata']
  end

  if attributes.has_key?(:'allowEnvelopePublishReporting')
    self.allow_envelope_publish_reporting = attributes[:'allowEnvelopePublishReporting']
  end

  if attributes.has_key?(:'allowEnvelopePublishReportingMetadata')
    self. = attributes[:'allowEnvelopePublishReportingMetadata']
  end

  if attributes.has_key?(:'allowEnvelopeReporting')
    self.allow_envelope_reporting = attributes[:'allowEnvelopeReporting']
  end

  if attributes.has_key?(:'allowEnvelopeReportingMetadata')
    self. = attributes[:'allowEnvelopeReportingMetadata']
  end

  if attributes.has_key?(:'allowExpression')
    self.allow_expression = attributes[:'allowExpression']
  end

  if attributes.has_key?(:'allowExpressionMetadata')
    self. = attributes[:'allowExpressionMetadata']
  end

  if attributes.has_key?(:'allowExpressSignerCertificate')
    self.allow_express_signer_certificate = attributes[:'allowExpressSignerCertificate']
  end

  if attributes.has_key?(:'allowExpressSignerCertificateMetadata')
    self. = attributes[:'allowExpressSignerCertificateMetadata']
  end

  if attributes.has_key?(:'allowExtendedSendingResourceFile')
    self.allow_extended_sending_resource_file = attributes[:'allowExtendedSendingResourceFile']
  end

  if attributes.has_key?(:'allowExtendedSendingResourceFileMetadata')
    self. = attributes[:'allowExtendedSendingResourceFileMetadata']
  end

  if attributes.has_key?(:'allowExternalLinkedAccounts')
    self.allow_external_linked_accounts = attributes[:'allowExternalLinkedAccounts']
  end

  if attributes.has_key?(:'allowExternalLinkedAccountsMetadata')
    self. = attributes[:'allowExternalLinkedAccountsMetadata']
  end

  if attributes.has_key?(:'allowExternalSignaturePad')
    self.allow_external_signature_pad = attributes[:'allowExternalSignaturePad']
  end

  if attributes.has_key?(:'allowExternalSignaturePadMetadata')
    self. = attributes[:'allowExternalSignaturePadMetadata']
  end

  if attributes.has_key?(:'allowIDVLevel1')
    self.allow_idv_level1 = attributes[:'allowIDVLevel1']
  end

  if attributes.has_key?(:'allowIDVLevel1Metadata')
    self. = attributes[:'allowIDVLevel1Metadata']
  end

  if attributes.has_key?(:'allowIDVLevel2')
    self.allow_idv_level2 = attributes[:'allowIDVLevel2']
  end

  if attributes.has_key?(:'allowIDVLevel2Metadata')
    self. = attributes[:'allowIDVLevel2Metadata']
  end

  if attributes.has_key?(:'allowIDVLevel3')
    self.allow_idv_level3 = attributes[:'allowIDVLevel3']
  end

  if attributes.has_key?(:'allowIDVLevel3Metadata')
    self. = attributes[:'allowIDVLevel3Metadata']
  end

  if attributes.has_key?(:'allowIDVPlatform')
    self.allow_idv_platform = attributes[:'allowIDVPlatform']
  end

  if attributes.has_key?(:'allowIDVPlatformMetadata')
    self. = attributes[:'allowIDVPlatformMetadata']
  end

  if attributes.has_key?(:'allowInPerson')
    self.allow_in_person = attributes[:'allowInPerson']
  end

  if attributes.has_key?(:'allowInPersonElectronicNotary')
    self.allow_in_person_electronic_notary = attributes[:'allowInPersonElectronicNotary']
  end

  if attributes.has_key?(:'allowInPersonElectronicNotaryMetadata')
    self. = attributes[:'allowInPersonElectronicNotaryMetadata']
  end

  if attributes.has_key?(:'allowInPersonMetadata')
    self. = attributes[:'allowInPersonMetadata']
  end

  if attributes.has_key?(:'allowManagedStamps')
    self.allow_managed_stamps = attributes[:'allowManagedStamps']
  end

  if attributes.has_key?(:'allowManagedStampsMetadata')
    self. = attributes[:'allowManagedStampsMetadata']
  end

  if attributes.has_key?(:'allowManagingEnvelopesOnBehalfOfOthers')
    self.allow_managing_envelopes_on_behalf_of_others = attributes[:'allowManagingEnvelopesOnBehalfOfOthers']
  end

  if attributes.has_key?(:'allowManagingEnvelopesOnBehalfOfOthersMetadata')
    self. = attributes[:'allowManagingEnvelopesOnBehalfOfOthersMetadata']
  end

  if attributes.has_key?(:'allowMarkup')
    self.allow_markup = attributes[:'allowMarkup']
  end

  if attributes.has_key?(:'allowMarkupMetadata')
    self. = attributes[:'allowMarkupMetadata']
  end

  if attributes.has_key?(:'allowMemberTimeZone')
    self.allow_member_time_zone = attributes[:'allowMemberTimeZone']
  end

  if attributes.has_key?(:'allowMemberTimeZoneMetadata')
    self. = attributes[:'allowMemberTimeZoneMetadata']
  end

  if attributes.has_key?(:'allowMergeFields')
    self.allow_merge_fields = attributes[:'allowMergeFields']
  end

  if attributes.has_key?(:'allowMergeFieldsMetadata')
    self. = attributes[:'allowMergeFieldsMetadata']
  end

  if attributes.has_key?(:'allowMultipleBrandProfiles')
    self.allow_multiple_brand_profiles = attributes[:'allowMultipleBrandProfiles']
  end

  if attributes.has_key?(:'allowMultipleBrandProfilesMetadata')
    self. = attributes[:'allowMultipleBrandProfilesMetadata']
  end

  if attributes.has_key?(:'allowMultipleSignerAttachments')
    self.allow_multiple_signer_attachments = attributes[:'allowMultipleSignerAttachments']
  end

  if attributes.has_key?(:'allowMultipleSignerAttachmentsMetadata')
    self. = attributes[:'allowMultipleSignerAttachmentsMetadata']
  end

  if attributes.has_key?(:'allowNonUSPhoneAuth')
    self.allow_non_us_phone_auth = attributes[:'allowNonUSPhoneAuth']
  end

  if attributes.has_key?(:'allowNonUSPhoneAuthMetadata')
    self. = attributes[:'allowNonUSPhoneAuthMetadata']
  end

  if attributes.has_key?(:'allowOcrOfEnvelopeDocuments')
    self.allow_ocr_of_envelope_documents = attributes[:'allowOcrOfEnvelopeDocuments']
  end

  if attributes.has_key?(:'allowOcrOfEnvelopeDocumentsMetadata')
    self. = attributes[:'allowOcrOfEnvelopeDocumentsMetadata']
  end

  if attributes.has_key?(:'allowOfflineSigning')
    self.allow_offline_signing = attributes[:'allowOfflineSigning']
  end

  if attributes.has_key?(:'allowOfflineSigningMetadata')
    self. = attributes[:'allowOfflineSigningMetadata']
  end

  if attributes.has_key?(:'allowOpenTrustSignerCertificate')
    self.allow_open_trust_signer_certificate = attributes[:'allowOpenTrustSignerCertificate']
  end

  if attributes.has_key?(:'allowOpenTrustSignerCertificateMetadata')
    self. = attributes[:'allowOpenTrustSignerCertificateMetadata']
  end

  if attributes.has_key?(:'allowOrganizationDocusignMonitor')
    self.allow_organization_docusign_monitor = attributes[:'allowOrganizationDocusignMonitor']
  end

  if attributes.has_key?(:'allowOrganizationDocusignMonitorMetadata')
    self. = attributes[:'allowOrganizationDocusignMonitorMetadata']
  end

  if attributes.has_key?(:'allowOrganizationDomainUserManagement')
    self.allow_organization_domain_user_management = attributes[:'allowOrganizationDomainUserManagement']
  end

  if attributes.has_key?(:'allowOrganizationDomainUserManagementMetadata')
    self. = attributes[:'allowOrganizationDomainUserManagementMetadata']
  end

  if attributes.has_key?(:'allowOrganizations')
    self.allow_organizations = attributes[:'allowOrganizations']
  end

  if attributes.has_key?(:'allowOrganizationsMetadata')
    self. = attributes[:'allowOrganizationsMetadata']
  end

  if attributes.has_key?(:'allowOrganizationSsoManagement')
    self.allow_organization_sso_management = attributes[:'allowOrganizationSsoManagement']
  end

  if attributes.has_key?(:'allowOrganizationSsoManagementMetadata')
    self. = attributes[:'allowOrganizationSsoManagementMetadata']
  end

  if attributes.has_key?(:'allowOrganizationToUseInPersonElectronicNotary')
    self.allow_organization_to_use_in_person_electronic_notary = attributes[:'allowOrganizationToUseInPersonElectronicNotary']
  end

  if attributes.has_key?(:'allowOrganizationToUseInPersonElectronicNotaryMetadata')
    self. = attributes[:'allowOrganizationToUseInPersonElectronicNotaryMetadata']
  end

  if attributes.has_key?(:'allowOrganizationToUseRemoteNotary')
    self.allow_organization_to_use_remote_notary = attributes[:'allowOrganizationToUseRemoteNotary']
  end

  if attributes.has_key?(:'allowOrganizationToUseRemoteNotaryMetadata')
    self. = attributes[:'allowOrganizationToUseRemoteNotaryMetadata']
  end

  if attributes.has_key?(:'allowOrganizationToUseThirdPartyElectronicNotary')
    self.allow_organization_to_use_third_party_electronic_notary = attributes[:'allowOrganizationToUseThirdPartyElectronicNotary']
  end

  if attributes.has_key?(:'allowOrganizationToUseThirdPartyElectronicNotaryMetadata')
    self. = attributes[:'allowOrganizationToUseThirdPartyElectronicNotaryMetadata']
  end

  if attributes.has_key?(:'allowPaymentProcessing')
    self.allow_payment_processing = attributes[:'allowPaymentProcessing']
  end

  if attributes.has_key?(:'allowPaymentProcessingMetadata')
    self. = attributes[:'allowPaymentProcessingMetadata']
  end

  if attributes.has_key?(:'allowPhoneAuthentication')
    self.allow_phone_authentication = attributes[:'allowPhoneAuthentication']
  end

  if attributes.has_key?(:'allowPhoneAuthenticationMetadata')
    self. = attributes[:'allowPhoneAuthenticationMetadata']
  end

  if attributes.has_key?(:'allowPhoneAuthOverride')
    self.allow_phone_auth_override = attributes[:'allowPhoneAuthOverride']
  end

  if attributes.has_key?(:'allowPhoneAuthOverrideMetadata')
    self. = attributes[:'allowPhoneAuthOverrideMetadata']
  end

  if attributes.has_key?(:'allowPrivateSigningGroups')
    self.allow_private_signing_groups = attributes[:'allowPrivateSigningGroups']
  end

  if attributes.has_key?(:'allowPrivateSigningGroupsMetadata')
    self. = attributes[:'allowPrivateSigningGroupsMetadata']
  end

  if attributes.has_key?(:'allowRecipientConnect')
    self.allow_recipient_connect = attributes[:'allowRecipientConnect']
  end

  if attributes.has_key?(:'allowRecipientConnectMetadata')
    self. = attributes[:'allowRecipientConnectMetadata']
  end

  if attributes.has_key?(:'allowReminders')
    self.allow_reminders = attributes[:'allowReminders']
  end

  if attributes.has_key?(:'allowRemindersMetadata')
    self. = attributes[:'allowRemindersMetadata']
  end

  if attributes.has_key?(:'allowRemoteNotary')
    self.allow_remote_notary = attributes[:'allowRemoteNotary']
  end

  if attributes.has_key?(:'allowRemoteNotaryMetadata')
    self. = attributes[:'allowRemoteNotaryMetadata']
  end

  if attributes.has_key?(:'allowResourceFileBranding')
    self.allow_resource_file_branding = attributes[:'allowResourceFileBranding']
  end

  if attributes.has_key?(:'allowResourceFileBrandingMetadata')
    self. = attributes[:'allowResourceFileBrandingMetadata']
  end

  if attributes.has_key?(:'allowSafeBioPharmaSignerCertificate')
    self.allow_safe_bio_pharma_signer_certificate = attributes[:'allowSafeBioPharmaSignerCertificate']
  end

  if attributes.has_key?(:'allowSafeBioPharmaSignerCertificateMetadata')
    self. = attributes[:'allowSafeBioPharmaSignerCertificateMetadata']
  end

  if attributes.has_key?(:'allowScheduledSending')
    self.allow_scheduled_sending = attributes[:'allowScheduledSending']
  end

  if attributes.has_key?(:'allowScheduledSendingMetadata')
    self. = attributes[:'allowScheduledSendingMetadata']
  end

  if attributes.has_key?(:'allowSecurityAppliance')
    self.allow_security_appliance = attributes[:'allowSecurityAppliance']
  end

  if attributes.has_key?(:'allowSecurityApplianceMetadata')
    self. = attributes[:'allowSecurityApplianceMetadata']
  end

  if attributes.has_key?(:'allowSendingEnvelopesOnBehalfOfOthers')
    self.allow_sending_envelopes_on_behalf_of_others = attributes[:'allowSendingEnvelopesOnBehalfOfOthers']
  end

  if attributes.has_key?(:'allowSendingEnvelopesOnBehalfOfOthersMetadata')
    self. = attributes[:'allowSendingEnvelopesOnBehalfOfOthersMetadata']
  end

  if attributes.has_key?(:'allowSendToCertifiedDelivery')
    self.allow_send_to_certified_delivery = attributes[:'allowSendToCertifiedDelivery']
  end

  if attributes.has_key?(:'allowSendToCertifiedDeliveryMetadata')
    self. = attributes[:'allowSendToCertifiedDeliveryMetadata']
  end

  if attributes.has_key?(:'allowSendToIntermediary')
    self.allow_send_to_intermediary = attributes[:'allowSendToIntermediary']
  end

  if attributes.has_key?(:'allowSendToIntermediaryMetadata')
    self. = attributes[:'allowSendToIntermediaryMetadata']
  end

  if attributes.has_key?(:'allowServerTemplates')
    self.allow_server_templates = attributes[:'allowServerTemplates']
  end

  if attributes.has_key?(:'allowServerTemplatesMetadata')
    self. = attributes[:'allowServerTemplatesMetadata']
  end

  if attributes.has_key?(:'allowSetEmbeddedRecipientStartURL')
    self.allow_set_embedded_recipient_start_url = attributes[:'allowSetEmbeddedRecipientStartURL']
  end

  if attributes.has_key?(:'allowSetEmbeddedRecipientStartURLMetadata')
    self. = attributes[:'allowSetEmbeddedRecipientStartURLMetadata']
  end

  if attributes.has_key?(:'allowSharedTabs')
    self.allow_shared_tabs = attributes[:'allowSharedTabs']
  end

  if attributes.has_key?(:'allowSharedTabsMetadata')
    self. = attributes[:'allowSharedTabsMetadata']
  end

  if attributes.has_key?(:'allowSignatureStamps')
    self.allow_signature_stamps = attributes[:'allowSignatureStamps']
  end

  if attributes.has_key?(:'allowSignatureStampsMetadata')
    self. = attributes[:'allowSignatureStampsMetadata']
  end

  if attributes.has_key?(:'allowSignDocumentFromHomePage')
    self.allow_sign_document_from_home_page = attributes[:'allowSignDocumentFromHomePage']
  end

  if attributes.has_key?(:'allowSignDocumentFromHomePageMetadata')
    self. = attributes[:'allowSignDocumentFromHomePageMetadata']
  end

  if attributes.has_key?(:'allowSignerReassign')
    self.allow_signer_reassign = attributes[:'allowSignerReassign']
  end

  if attributes.has_key?(:'allowSignerReassignMetadata')
    self. = attributes[:'allowSignerReassignMetadata']
  end

  if attributes.has_key?(:'allowSignerReassignOverride')
    self.allow_signer_reassign_override = attributes[:'allowSignerReassignOverride']
  end

  if attributes.has_key?(:'allowSignerReassignOverrideMetadata')
    self. = attributes[:'allowSignerReassignOverrideMetadata']
  end

  if attributes.has_key?(:'allowSigningExtensions')
    self.allow_signing_extensions = attributes[:'allowSigningExtensions']
  end

  if attributes.has_key?(:'allowSigningExtensionsMetadata')
    self. = attributes[:'allowSigningExtensionsMetadata']
  end

  if attributes.has_key?(:'allowSigningGroups')
    self.allow_signing_groups = attributes[:'allowSigningGroups']
  end

  if attributes.has_key?(:'allowSigningGroupsMetadata')
    self. = attributes[:'allowSigningGroupsMetadata']
  end

  if attributes.has_key?(:'allowSigningInsights')
    self.allow_signing_insights = attributes[:'allowSigningInsights']
  end

  if attributes.has_key?(:'allowSigningInsightsMetadata')
    self. = attributes[:'allowSigningInsightsMetadata']
  end

  if attributes.has_key?(:'allowSigningRadioDeselect')
    self.allow_signing_radio_deselect = attributes[:'allowSigningRadioDeselect']
  end

  if attributes.has_key?(:'allowSigningRadioDeselectMetadata')
    self. = attributes[:'allowSigningRadioDeselectMetadata']
  end

  if attributes.has_key?(:'allowSignNow')
    self.allow_sign_now = attributes[:'allowSignNow']
  end

  if attributes.has_key?(:'allowSignNowMetadata')
    self. = attributes[:'allowSignNowMetadata']
  end

  if attributes.has_key?(:'allowSMSDelivery')
    self.allow_sms_delivery = attributes[:'allowSMSDelivery']
  end

  if attributes.has_key?(:'allowSMSDeliveryMetadata')
    self. = attributes[:'allowSMSDeliveryMetadata']
  end

  if attributes.has_key?(:'allowSocialIdLogin')
    self. = attributes[:'allowSocialIdLogin']
  end

  if attributes.has_key?(:'allowSocialIdLoginMetadata')
    self. = attributes[:'allowSocialIdLoginMetadata']
  end

  if attributes.has_key?(:'allowSupplementalDocuments')
    self.allow_supplemental_documents = attributes[:'allowSupplementalDocuments']
  end

  if attributes.has_key?(:'allowSupplementalDocumentsMetadata')
    self. = attributes[:'allowSupplementalDocumentsMetadata']
  end

  if attributes.has_key?(:'allowThirdPartyElectronicNotary')
    self.allow_third_party_electronic_notary = attributes[:'allowThirdPartyElectronicNotary']
  end

  if attributes.has_key?(:'allowThirdPartyElectronicNotaryMetadata')
    self. = attributes[:'allowThirdPartyElectronicNotaryMetadata']
  end

  if attributes.has_key?(:'allowUsersToAccessDirectory')
    self.allow_users_to_access_directory = attributes[:'allowUsersToAccessDirectory']
  end

  if attributes.has_key?(:'allowUsersToAccessDirectoryMetadata')
    self. = attributes[:'allowUsersToAccessDirectoryMetadata']
  end

  if attributes.has_key?(:'allowValueInsights')
    self.allow_value_insights = attributes[:'allowValueInsights']
  end

  if attributes.has_key?(:'allowValueInsightsMetadata')
    self. = attributes[:'allowValueInsightsMetadata']
  end

  if attributes.has_key?(:'allowWebForms')
    self.allow_web_forms = attributes[:'allowWebForms']
  end

  if attributes.has_key?(:'allowWebFormsMetadata')
    self. = attributes[:'allowWebFormsMetadata']
  end

  if attributes.has_key?(:'anchorPopulationScope')
    self.anchor_population_scope = attributes[:'anchorPopulationScope']
  end

  if attributes.has_key?(:'anchorPopulationScopeMetadata')
    self. = attributes[:'anchorPopulationScopeMetadata']
  end

  if attributes.has_key?(:'anchorTagVersionedPlacementEnabled')
    self.anchor_tag_versioned_placement_enabled = attributes[:'anchorTagVersionedPlacementEnabled']
  end

  if attributes.has_key?(:'anchorTagVersionedPlacementMetadataEnabled')
    self. = attributes[:'anchorTagVersionedPlacementMetadataEnabled']
  end

  if attributes.has_key?(:'attachCompletedEnvelope')
    self.attach_completed_envelope = attributes[:'attachCompletedEnvelope']
  end

  if attributes.has_key?(:'attachCompletedEnvelopeMetadata')
    self. = attributes[:'attachCompletedEnvelopeMetadata']
  end

  if attributes.has_key?(:'authenticationCheck')
    self.authentication_check = attributes[:'authenticationCheck']
  end

  if attributes.has_key?(:'authenticationCheckMetadata')
    self. = attributes[:'authenticationCheckMetadata']
  end

  if attributes.has_key?(:'autoNavRule')
    self.auto_nav_rule = attributes[:'autoNavRule']
  end

  if attributes.has_key?(:'autoNavRuleMetadata')
    self. = attributes[:'autoNavRuleMetadata']
  end

  if attributes.has_key?(:'autoProvisionSignerAccount')
    self. = attributes[:'autoProvisionSignerAccount']
  end

  if attributes.has_key?(:'autoProvisionSignerAccountMetadata')
    self. = attributes[:'autoProvisionSignerAccountMetadata']
  end

  if attributes.has_key?(:'bccEmailArchive')
    self.bcc_email_archive = attributes[:'bccEmailArchive']
  end

  if attributes.has_key?(:'bccEmailArchiveMetadata')
    self. = attributes[:'bccEmailArchiveMetadata']
  end

  if attributes.has_key?(:'betaSwitchConfiguration')
    self.beta_switch_configuration = attributes[:'betaSwitchConfiguration']
  end

  if attributes.has_key?(:'betaSwitchConfigurationMetadata')
    self. = attributes[:'betaSwitchConfigurationMetadata']
  end

  if attributes.has_key?(:'billingAddress')
    self.billing_address = attributes[:'billingAddress']
  end

  if attributes.has_key?(:'billingAddressMetadata')
    self. = attributes[:'billingAddressMetadata']
  end

  if attributes.has_key?(:'bulkSend')
    self.bulk_send = attributes[:'bulkSend']
  end

  if attributes.has_key?(:'bulkSendActionResendLimit')
    self.bulk_send_action_resend_limit = attributes[:'bulkSendActionResendLimit']
  end

  if attributes.has_key?(:'bulkSendMaxCopiesInBatch')
    self.bulk_send_max_copies_in_batch = attributes[:'bulkSendMaxCopiesInBatch']
  end

  if attributes.has_key?(:'bulkSendMaxUnprocessedEnvelopesCount')
    self.bulk_send_max_unprocessed_envelopes_count = attributes[:'bulkSendMaxUnprocessedEnvelopesCount']
  end

  if attributes.has_key?(:'bulkSendMetadata')
    self. = attributes[:'bulkSendMetadata']
  end

  if attributes.has_key?(:'canSelfBrandSend')
    self.can_self_brand_send = attributes[:'canSelfBrandSend']
  end

  if attributes.has_key?(:'canSelfBrandSendMetadata')
    self. = attributes[:'canSelfBrandSendMetadata']
  end

  if attributes.has_key?(:'canSelfBrandSign')
    self.can_self_brand_sign = attributes[:'canSelfBrandSign']
  end

  if attributes.has_key?(:'canSelfBrandSignMetadata')
    self. = attributes[:'canSelfBrandSignMetadata']
  end

  if attributes.has_key?(:'canUseSalesforceOAuth')
    self.can_use_salesforce_o_auth = attributes[:'canUseSalesforceOAuth']
  end

  if attributes.has_key?(:'canUseSalesforceOAuthMetadata')
    self. = attributes[:'canUseSalesforceOAuthMetadata']
  end

  if attributes.has_key?(:'captureVoiceRecording')
    self.capture_voice_recording = attributes[:'captureVoiceRecording']
  end

  if attributes.has_key?(:'captureVoiceRecordingMetadata')
    self. = attributes[:'captureVoiceRecordingMetadata']
  end

  if attributes.has_key?(:'cfr21SimplifiedSigningEnabled')
    self.cfr21_simplified_signing_enabled = attributes[:'cfr21SimplifiedSigningEnabled']
  end

  if attributes.has_key?(:'cfr21SimplifiedSigningEnabledMetadata')
    self. = attributes[:'cfr21SimplifiedSigningEnabledMetadata']
  end

  if attributes.has_key?(:'cfrUseWideImage')
    self.cfr_use_wide_image = attributes[:'cfrUseWideImage']
  end

  if attributes.has_key?(:'cfrUseWideImageMetadata')
    self. = attributes[:'cfrUseWideImageMetadata']
  end

  if attributes.has_key?(:'checkForMultipleAdminsOnAccount')
    self. = attributes[:'checkForMultipleAdminsOnAccount']
  end

  if attributes.has_key?(:'checkForMultipleAdminsOnAccountMetadata')
    self. = attributes[:'checkForMultipleAdminsOnAccountMetadata']
  end

  if attributes.has_key?(:'chromeSignatureEnabled')
    self.chrome_signature_enabled = attributes[:'chromeSignatureEnabled']
  end

  if attributes.has_key?(:'chromeSignatureEnabledMetadata')
    self. = attributes[:'chromeSignatureEnabledMetadata']
  end

  if attributes.has_key?(:'commentEmailShowMessageText')
    self.comment_email_show_message_text = attributes[:'commentEmailShowMessageText']
  end

  if attributes.has_key?(:'commentEmailShowMessageTextMetadata')
    self. = attributes[:'commentEmailShowMessageTextMetadata']
  end

  if attributes.has_key?(:'commentsAllowEnvelopeOverride')
    self.comments_allow_envelope_override = attributes[:'commentsAllowEnvelopeOverride']
  end

  if attributes.has_key?(:'commentsAllowEnvelopeOverrideMetadata')
    self. = attributes[:'commentsAllowEnvelopeOverrideMetadata']
  end

  if attributes.has_key?(:'conditionalFieldsEnabled')
    self.conditional_fields_enabled = attributes[:'conditionalFieldsEnabled']
  end

  if attributes.has_key?(:'conditionalFieldsEnabledMetadata')
    self. = attributes[:'conditionalFieldsEnabledMetadata']
  end

  if attributes.has_key?(:'consumerDisclosureFrequency')
    self.consumer_disclosure_frequency = attributes[:'consumerDisclosureFrequency']
  end

  if attributes.has_key?(:'consumerDisclosureFrequencyMetadata')
    self. = attributes[:'consumerDisclosureFrequencyMetadata']
  end

  if attributes.has_key?(:'convertPdfFields')
    self.convert_pdf_fields = attributes[:'convertPdfFields']
  end

  if attributes.has_key?(:'convertPdfFieldsMetadata')
    self. = attributes[:'convertPdfFieldsMetadata']
  end

  if attributes.has_key?(:'dataPopulationScope')
    self.data_population_scope = attributes[:'dataPopulationScope']
  end

  if attributes.has_key?(:'dataPopulationScopeMetadata')
    self. = attributes[:'dataPopulationScopeMetadata']
  end

  if attributes.has_key?(:'disableAutoTemplateMatching')
    self.disable_auto_template_matching = attributes[:'disableAutoTemplateMatching']
  end

  if attributes.has_key?(:'disableAutoTemplateMatchingMetadata')
    self. = attributes[:'disableAutoTemplateMatchingMetadata']
  end

  if attributes.has_key?(:'disableMobileApp')
    self.disable_mobile_app = attributes[:'disableMobileApp']
  end

  if attributes.has_key?(:'disableMobileAppMetadata')
    self. = attributes[:'disableMobileAppMetadata']
  end

  if attributes.has_key?(:'disableMobilePushNotifications')
    self.disable_mobile_push_notifications = attributes[:'disableMobilePushNotifications']
  end

  if attributes.has_key?(:'disableMobilePushNotificationsMetadata')
    self. = attributes[:'disableMobilePushNotificationsMetadata']
  end

  if attributes.has_key?(:'disableMobileSending')
    self.disable_mobile_sending = attributes[:'disableMobileSending']
  end

  if attributes.has_key?(:'disableMobileSendingMetadata')
    self. = attributes[:'disableMobileSendingMetadata']
  end

  if attributes.has_key?(:'disableMultipleSessions')
    self.disable_multiple_sessions = attributes[:'disableMultipleSessions']
  end

  if attributes.has_key?(:'disableMultipleSessionsMetadata')
    self. = attributes[:'disableMultipleSessionsMetadata']
  end

  if attributes.has_key?(:'disablePurgeNotificationsForSenderMetadata')
    self. = attributes[:'disablePurgeNotificationsForSenderMetadata']
  end

  if attributes.has_key?(:'disableSignerCertView')
    self.disable_signer_cert_view = attributes[:'disableSignerCertView']
  end

  if attributes.has_key?(:'disableSignerCertViewMetadata')
    self. = attributes[:'disableSignerCertViewMetadata']
  end

  if attributes.has_key?(:'disableSignerHistoryView')
    self.disable_signer_history_view = attributes[:'disableSignerHistoryView']
  end

  if attributes.has_key?(:'disableSignerHistoryViewMetadata')
    self. = attributes[:'disableSignerHistoryViewMetadata']
  end

  if attributes.has_key?(:'disableStyleSignature')
    self.disable_style_signature = attributes[:'disableStyleSignature']
  end

  if attributes.has_key?(:'disableStyleSignatureMetadata')
    self. = attributes[:'disableStyleSignatureMetadata']
  end

  if attributes.has_key?(:'disableUploadSignature')
    self.disable_upload_signature = attributes[:'disableUploadSignature']
  end

  if attributes.has_key?(:'disableUploadSignatureMetadata')
    self. = attributes[:'disableUploadSignatureMetadata']
  end

  if attributes.has_key?(:'disableUserSharing')
    self.disable_user_sharing = attributes[:'disableUserSharing']
  end

  if attributes.has_key?(:'disableUserSharingMetadata')
    self. = attributes[:'disableUserSharingMetadata']
  end

  if attributes.has_key?(:'displayBetaSwitch')
    self.display_beta_switch = attributes[:'displayBetaSwitch']
  end

  if attributes.has_key?(:'displayBetaSwitchMetadata')
    self. = attributes[:'displayBetaSwitchMetadata']
  end

  if attributes.has_key?(:'documentConversionRestrictions')
    self.document_conversion_restrictions = attributes[:'documentConversionRestrictions']
  end

  if attributes.has_key?(:'documentConversionRestrictionsMetadata')
    self. = attributes[:'documentConversionRestrictionsMetadata']
  end

  if attributes.has_key?(:'documentRetention')
    self.document_retention = attributes[:'documentRetention']
  end

  if attributes.has_key?(:'documentRetentionMetadata')
    self. = attributes[:'documentRetentionMetadata']
  end

  if attributes.has_key?(:'documentRetentionPurgeTabs')
    self.document_retention_purge_tabs = attributes[:'documentRetentionPurgeTabs']
  end

  if attributes.has_key?(:'documentVisibility')
    self.document_visibility = attributes[:'documentVisibility']
  end

  if attributes.has_key?(:'documentVisibilityMetadata')
    self. = attributes[:'documentVisibilityMetadata']
  end

  if attributes.has_key?(:'dss_SIGN_28411_EnableLeavePagePrompt_RadminOption')
    self.dss_sign_28411_enable_leave_page_prompt_radmin_option = attributes[:'dss_SIGN_28411_EnableLeavePagePrompt_RadminOption']
  end

  if attributes.has_key?(:'dss_SIGN_29182_SlideUpBar_RadminOption')
    self.dss_sign_29182_slide_up_bar_radmin_option = attributes[:'dss_SIGN_29182_SlideUpBar_RadminOption']
  end

  if attributes.has_key?(:'emailTemplateVersion')
    self.email_template_version = attributes[:'emailTemplateVersion']
  end

  if attributes.has_key?(:'emailTemplateVersionMetadata')
    self. = attributes[:'emailTemplateVersionMetadata']
  end

  if attributes.has_key?(:'enableAccessCodeGenerator')
    self.enable_access_code_generator = attributes[:'enableAccessCodeGenerator']
  end

  if attributes.has_key?(:'enableAccessCodeGeneratorMetadata')
    self. = attributes[:'enableAccessCodeGeneratorMetadata']
  end

  if attributes.has_key?(:'enableAdvancedPayments')
    self.enable_advanced_payments = attributes[:'enableAdvancedPayments']
  end

  if attributes.has_key?(:'enableAdvancedPaymentsMetadata')
    self. = attributes[:'enableAdvancedPaymentsMetadata']
  end

  if attributes.has_key?(:'enableAdvancedPowerForms')
    self.enable_advanced_power_forms = attributes[:'enableAdvancedPowerForms']
  end

  if attributes.has_key?(:'enableAdvancedPowerFormsMetadata')
    self. = attributes[:'enableAdvancedPowerFormsMetadata']
  end

  if attributes.has_key?(:'enableAgreementActionsForCLM')
    self.enable_agreement_actions_for_clm = attributes[:'enableAgreementActionsForCLM']
  end

  if attributes.has_key?(:'enableAgreementActionsForCLMMetadata')
    self. = attributes[:'enableAgreementActionsForCLMMetadata']
  end

  if attributes.has_key?(:'enableAgreementActionsForESign')
    self.enable_agreement_actions_for_e_sign = attributes[:'enableAgreementActionsForESign']
  end

  if attributes.has_key?(:'enableAgreementActionsForESignMetadata')
    self. = attributes[:'enableAgreementActionsForESignMetadata']
  end

  if attributes.has_key?(:'enableAutoNav')
    self.enable_auto_nav = attributes[:'enableAutoNav']
  end

  if attributes.has_key?(:'enableAutoNavMetadata')
    self. = attributes[:'enableAutoNavMetadata']
  end

  if attributes.has_key?(:'enableBccDummyLink')
    self.enable_bcc_dummy_link = attributes[:'enableBccDummyLink']
  end

  if attributes.has_key?(:'enableBccDummyLinkMetadata')
    self. = attributes[:'enableBccDummyLinkMetadata']
  end

  if attributes.has_key?(:'enableCalculatedFields')
    self.enable_calculated_fields = attributes[:'enableCalculatedFields']
  end

  if attributes.has_key?(:'enableCalculatedFieldsMetadata')
    self. = attributes[:'enableCalculatedFieldsMetadata']
  end

  if attributes.has_key?(:'enableClickwraps')
    self.enable_clickwraps = attributes[:'enableClickwraps']
  end

  if attributes.has_key?(:'enableClickwrapsMetadata')
    self. = attributes[:'enableClickwrapsMetadata']
  end

  if attributes.has_key?(:'enableCombinedPDFDownloadForSBS')
    self.enable_combined_pdf_download_for_sbs = attributes[:'enableCombinedPDFDownloadForSBS']
  end

  if attributes.has_key?(:'enableCommentsHistoryDownloadInSigning')
    self.enable_comments_history_download_in_signing = attributes[:'enableCommentsHistoryDownloadInSigning']
  end

  if attributes.has_key?(:'enableCommentsHistoryDownloadInSigningMetadata')
    self. = attributes[:'enableCommentsHistoryDownloadInSigningMetadata']
  end

  if attributes.has_key?(:'enableCustomerSatisfactionMetricTracking')
    self.enable_customer_satisfaction_metric_tracking = attributes[:'enableCustomerSatisfactionMetricTracking']
  end

  if attributes.has_key?(:'enableCustomerSatisfactionMetricTrackingMetadata')
    self. = attributes[:'enableCustomerSatisfactionMetricTrackingMetadata']
  end

  if attributes.has_key?(:'enableDSPro')
    self.enable_ds_pro = attributes[:'enableDSPro']
  end

  if attributes.has_key?(:'enableDSProMetadata')
    self. = attributes[:'enableDSProMetadata']
  end

  if attributes.has_key?(:'enableEnvelopeStampingByAccountAdmin')
    self. = attributes[:'enableEnvelopeStampingByAccountAdmin']
  end

  if attributes.has_key?(:'enableEnvelopeStampingByAccountAdminMetadata')
    self. = attributes[:'enableEnvelopeStampingByAccountAdminMetadata']
  end

  if attributes.has_key?(:'enableEnvelopeStampingByDSAdmin')
    self.enable_envelope_stamping_by_ds_admin = attributes[:'enableEnvelopeStampingByDSAdmin']
  end

  if attributes.has_key?(:'enableEnvelopeStampingByDSAdminMetadata')
    self. = attributes[:'enableEnvelopeStampingByDSAdminMetadata']
  end

  if attributes.has_key?(:'enableEsignCommunities')
    self.enable_esign_communities = attributes[:'enableEsignCommunities']
  end

  if attributes.has_key?(:'enableEsignCommunitiesMetadata')
    self. = attributes[:'enableEsignCommunitiesMetadata']
  end

  if attributes.has_key?(:'enableIDFxAccountlessSMSAuthForPart11')
    self.enable_id_fx_accountless_sms_auth_for_part11 = attributes[:'enableIDFxAccountlessSMSAuthForPart11']
  end

  if attributes.has_key?(:'enableIDFxAccountlessSMSAuthForPart11Metadata')
    self. = attributes[:'enableIDFxAccountlessSMSAuthForPart11Metadata']
  end

  if attributes.has_key?(:'enableIDFxIntuitKBA')
    self.enable_id_fx_intuit_kba = attributes[:'enableIDFxIntuitKBA']
  end

  if attributes.has_key?(:'enableIDFxIntuitKBAMetadata')
    self. = attributes[:'enableIDFxIntuitKBAMetadata']
  end

  if attributes.has_key?(:'enableIDFxPhoneAuthentication')
    self.enable_id_fx_phone_authentication = attributes[:'enableIDFxPhoneAuthentication']
  end

  if attributes.has_key?(:'enableIDFxPhoneAuthenticationMetadata')
    self. = attributes[:'enableIDFxPhoneAuthenticationMetadata']
  end

  if attributes.has_key?(:'enableInBrowserEditor')
    self.enable_in_browser_editor = attributes[:'enableInBrowserEditor']
  end

  if attributes.has_key?(:'enableInBrowserEditorMetadata')
    self. = attributes[:'enableInBrowserEditorMetadata']
  end

  if attributes.has_key?(:'enableKeyTermsSuggestionsByDocumentType')
    self.enable_key_terms_suggestions_by_document_type = attributes[:'enableKeyTermsSuggestionsByDocumentType']
  end

  if attributes.has_key?(:'enableKeyTermsSuggestionsByDocumentTypeMetadata')
    self. = attributes[:'enableKeyTermsSuggestionsByDocumentTypeMetadata']
  end

  if attributes.has_key?(:'enablePaymentProcessing')
    self.enable_payment_processing = attributes[:'enablePaymentProcessing']
  end

  if attributes.has_key?(:'enablePaymentProcessingMetadata')
    self. = attributes[:'enablePaymentProcessingMetadata']
  end

  if attributes.has_key?(:'enablePDFAConversion')
    self.enable_pdfa_conversion = attributes[:'enablePDFAConversion']
  end

  if attributes.has_key?(:'enablePDFAConversionMetadata')
    self. = attributes[:'enablePDFAConversionMetadata']
  end

  if attributes.has_key?(:'enablePowerForm')
    self.enable_power_form = attributes[:'enablePowerForm']
  end

  if attributes.has_key?(:'enablePowerFormDirect')
    self.enable_power_form_direct = attributes[:'enablePowerFormDirect']
  end

  if attributes.has_key?(:'enablePowerFormDirectMetadata')
    self. = attributes[:'enablePowerFormDirectMetadata']
  end

  if attributes.has_key?(:'enablePowerFormMetadata')
    self. = attributes[:'enablePowerFormMetadata']
  end

  if attributes.has_key?(:'enableRecipientDomainValidation')
    self.enable_recipient_domain_validation = attributes[:'enableRecipientDomainValidation']
  end

  if attributes.has_key?(:'enableRecipientDomainValidationMetadata')
    self. = attributes[:'enableRecipientDomainValidationMetadata']
  end

  if attributes.has_key?(:'enableRecipientMayProvidePhoneNumber')
    self.enable_recipient_may_provide_phone_number = attributes[:'enableRecipientMayProvidePhoneNumber']
  end

  if attributes.has_key?(:'enableRecipientMayProvidePhoneNumberMetadata')
    self. = attributes[:'enableRecipientMayProvidePhoneNumberMetadata']
  end

  if attributes.has_key?(:'enableReportLinks')
    self.enable_report_links = attributes[:'enableReportLinks']
  end

  if attributes.has_key?(:'enableReportLinksMetadata')
    self. = attributes[:'enableReportLinksMetadata']
  end

  if attributes.has_key?(:'enableRequireSignOnPaper')
    self.enable_require_sign_on_paper = attributes[:'enableRequireSignOnPaper']
  end

  if attributes.has_key?(:'enableRequireSignOnPaperMetadata')
    self. = attributes[:'enableRequireSignOnPaperMetadata']
  end

  if attributes.has_key?(:'enableReservedDomain')
    self.enable_reserved_domain = attributes[:'enableReservedDomain']
  end

  if attributes.has_key?(:'enableReservedDomainMetadata')
    self. = attributes[:'enableReservedDomainMetadata']
  end

  if attributes.has_key?(:'enableResponsiveSigning')
    self.enable_responsive_signing = attributes[:'enableResponsiveSigning']
  end

  if attributes.has_key?(:'enableResponsiveSigningMetadata')
    self. = attributes[:'enableResponsiveSigningMetadata']
  end

  if attributes.has_key?(:'enableScheduledRelease')
    self.enable_scheduled_release = attributes[:'enableScheduledRelease']
  end

  if attributes.has_key?(:'enableScheduledReleaseMetadata')
    self. = attributes[:'enableScheduledReleaseMetadata']
  end

  if attributes.has_key?(:'enableSearch')
    self.enable_search = attributes[:'enableSearch']
  end

  if attributes.has_key?(:'enableSearchMetadata')
    self. = attributes[:'enableSearchMetadata']
  end

  if attributes.has_key?(:'enableSearchSiteSpecificApi')
    self.enable_search_site_specific_api = attributes[:'enableSearchSiteSpecificApi']
  end

  if attributes.has_key?(:'enableSearchSiteSpecificApiMetadata')
    self. = attributes[:'enableSearchSiteSpecificApiMetadata']
  end

  if attributes.has_key?(:'enableSearchUI')
    self.enable_search_ui = attributes[:'enableSearchUI']
  end

  if attributes.has_key?(:'enableSearchUIMetadata')
    self. = attributes[:'enableSearchUIMetadata']
  end

  if attributes.has_key?(:'enableSendingTagsFontSettings')
    self.enable_sending_tags_font_settings = attributes[:'enableSendingTagsFontSettings']
  end

  if attributes.has_key?(:'enableSendingTagsFontSettingsMetadata')
    self. = attributes[:'enableSendingTagsFontSettingsMetadata']
  end

  if attributes.has_key?(:'enableSendToAgent')
    self.enable_send_to_agent = attributes[:'enableSendToAgent']
  end

  if attributes.has_key?(:'enableSendToAgentMetadata')
    self. = attributes[:'enableSendToAgentMetadata']
  end

  if attributes.has_key?(:'enableSendToIntermediary')
    self.enable_send_to_intermediary = attributes[:'enableSendToIntermediary']
  end

  if attributes.has_key?(:'enableSendToIntermediaryMetadata')
    self. = attributes[:'enableSendToIntermediaryMetadata']
  end

  if attributes.has_key?(:'enableSendToManage')
    self.enable_send_to_manage = attributes[:'enableSendToManage']
  end

  if attributes.has_key?(:'enableSendToManageMetadata')
    self. = attributes[:'enableSendToManageMetadata']
  end

  if attributes.has_key?(:'enableSequentialSigningAPI')
    self.enable_sequential_signing_api = attributes[:'enableSequentialSigningAPI']
  end

  if attributes.has_key?(:'enableSequentialSigningAPIMetadata')
    self. = attributes[:'enableSequentialSigningAPIMetadata']
  end

  if attributes.has_key?(:'enableSequentialSigningUI')
    self.enable_sequential_signing_ui = attributes[:'enableSequentialSigningUI']
  end

  if attributes.has_key?(:'enableSequentialSigningUIMetadata')
    self. = attributes[:'enableSequentialSigningUIMetadata']
  end

  if attributes.has_key?(:'enableSignerAttachments')
    self.enable_signer_attachments = attributes[:'enableSignerAttachments']
  end

  if attributes.has_key?(:'enableSignerAttachmentsMetadata')
    self. = attributes[:'enableSignerAttachmentsMetadata']
  end

  if attributes.has_key?(:'enableSigningExtensionComments')
    self.enable_signing_extension_comments = attributes[:'enableSigningExtensionComments']
  end

  if attributes.has_key?(:'enableSigningExtensionCommentsMetadata')
    self. = attributes[:'enableSigningExtensionCommentsMetadata']
  end

  if attributes.has_key?(:'enableSigningExtensionConversations')
    self.enable_signing_extension_conversations = attributes[:'enableSigningExtensionConversations']
  end

  if attributes.has_key?(:'enableSigningExtensionConversationsMetadata')
    self. = attributes[:'enableSigningExtensionConversationsMetadata']
  end

  if attributes.has_key?(:'enableSigningOrderSettingsForAccount')
    self. = attributes[:'enableSigningOrderSettingsForAccount']
  end

  if attributes.has_key?(:'enableSigningOrderSettingsForAccountMetadata')
    self. = attributes[:'enableSigningOrderSettingsForAccountMetadata']
  end

  if attributes.has_key?(:'enableSignOnPaper')
    self.enable_sign_on_paper = attributes[:'enableSignOnPaper']
  end

  if attributes.has_key?(:'enableSignOnPaperMetadata')
    self. = attributes[:'enableSignOnPaperMetadata']
  end

  if attributes.has_key?(:'enableSignOnPaperOverride')
    self.enable_sign_on_paper_override = attributes[:'enableSignOnPaperOverride']
  end

  if attributes.has_key?(:'enableSignOnPaperOverrideMetadata')
    self. = attributes[:'enableSignOnPaperOverrideMetadata']
  end

  if attributes.has_key?(:'enableSignWithNotary')
    self.enable_sign_with_notary = attributes[:'enableSignWithNotary']
  end

  if attributes.has_key?(:'enableSignWithNotaryMetadata')
    self. = attributes[:'enableSignWithNotaryMetadata']
  end

  if attributes.has_key?(:'enableSmartContracts')
    self.enable_smart_contracts = attributes[:'enableSmartContracts']
  end

  if attributes.has_key?(:'enableSmartContractsMetadata')
    self. = attributes[:'enableSmartContractsMetadata']
  end

  if attributes.has_key?(:'enableSMSAuthentication')
    self.enable_sms_authentication = attributes[:'enableSMSAuthentication']
  end

  if attributes.has_key?(:'enableSMSAuthenticationMetadata')
    self. = attributes[:'enableSMSAuthenticationMetadata']
  end

  if attributes.has_key?(:'enableSMSDeliveryAdditionalNotification')
    self.enable_sms_delivery_additional_notification = attributes[:'enableSMSDeliveryAdditionalNotification']
  end

  if attributes.has_key?(:'enableSMSDeliveryAdditionalNotificationMetadata')
    self. = attributes[:'enableSMSDeliveryAdditionalNotificationMetadata']
  end

  if attributes.has_key?(:'enableSMSDeliveryPrimary')
    self.enable_sms_delivery_primary = attributes[:'enableSMSDeliveryPrimary']
  end

  if attributes.has_key?(:'enableSocialIdLogin')
    self. = attributes[:'enableSocialIdLogin']
  end

  if attributes.has_key?(:'enableSocialIdLoginMetadata')
    self. = attributes[:'enableSocialIdLoginMetadata']
  end

  if attributes.has_key?(:'enableStrikeThrough')
    self.enable_strike_through = attributes[:'enableStrikeThrough']
  end

  if attributes.has_key?(:'enableStrikeThroughMetadata')
    self. = attributes[:'enableStrikeThroughMetadata']
  end

  if attributes.has_key?(:'enableTransactionPoint')
    self.enable_transaction_point = attributes[:'enableTransactionPoint']
  end

  if attributes.has_key?(:'enableTransactionPointMetadata')
    self. = attributes[:'enableTransactionPointMetadata']
  end

  if attributes.has_key?(:'enableVaulting')
    self.enable_vaulting = attributes[:'enableVaulting']
  end

  if attributes.has_key?(:'enableVaultingMetadata')
    self. = attributes[:'enableVaultingMetadata']
  end

  if attributes.has_key?(:'enableWitnessing')
    self.enable_witnessing = attributes[:'enableWitnessing']
  end

  if attributes.has_key?(:'enableWitnessingMetadata')
    self. = attributes[:'enableWitnessingMetadata']
  end

  if attributes.has_key?(:'enforceTemplateNameUniqueness')
    self.enforce_template_name_uniqueness = attributes[:'enforceTemplateNameUniqueness']
  end

  if attributes.has_key?(:'enforceTemplateNameUniquenessMetadata')
    self. = attributes[:'enforceTemplateNameUniquenessMetadata']
  end

  if attributes.has_key?(:'envelopeIntegrationAllowed')
    self.envelope_integration_allowed = attributes[:'envelopeIntegrationAllowed']
  end

  if attributes.has_key?(:'envelopeIntegrationAllowedMetadata')
    self. = attributes[:'envelopeIntegrationAllowedMetadata']
  end

  if attributes.has_key?(:'envelopeIntegrationEnabled')
    self.envelope_integration_enabled = attributes[:'envelopeIntegrationEnabled']
  end

  if attributes.has_key?(:'envelopeIntegrationEnabledMetadata')
    self. = attributes[:'envelopeIntegrationEnabledMetadata']
  end

  if attributes.has_key?(:'envelopeStampingDefaultValue')
    self.envelope_stamping_default_value = attributes[:'envelopeStampingDefaultValue']
  end

  if attributes.has_key?(:'envelopeStampingDefaultValueMetadata')
    self. = attributes[:'envelopeStampingDefaultValueMetadata']
  end

  if attributes.has_key?(:'exitPrompt')
    self.exit_prompt = attributes[:'exitPrompt']
  end

  if attributes.has_key?(:'exitPromptMetadata')
    self. = attributes[:'exitPromptMetadata']
  end

  if attributes.has_key?(:'expressSend')
    self.express_send = attributes[:'expressSend']
  end

  if attributes.has_key?(:'expressSendAllowTabs')
    self.express_send_allow_tabs = attributes[:'expressSendAllowTabs']
  end

  if attributes.has_key?(:'expressSendAllowTabsMetadata')
    self. = attributes[:'expressSendAllowTabsMetadata']
  end

  if attributes.has_key?(:'expressSendMetadata')
    self. = attributes[:'expressSendMetadata']
  end

  if attributes.has_key?(:'externalDocumentSources')
    self.external_document_sources = attributes[:'externalDocumentSources']
  end

  if attributes.has_key?(:'externalSignaturePadType')
    self.external_signature_pad_type = attributes[:'externalSignaturePadType']
  end

  if attributes.has_key?(:'externalSignaturePadTypeMetadata')
    self. = attributes[:'externalSignaturePadTypeMetadata']
  end

  if attributes.has_key?(:'faxOutEnabled')
    self.fax_out_enabled = attributes[:'faxOutEnabled']
  end

  if attributes.has_key?(:'faxOutEnabledMetadata')
    self. = attributes[:'faxOutEnabledMetadata']
  end

  if attributes.has_key?(:'finishReminder')
    self.finish_reminder = attributes[:'finishReminder']
  end

  if attributes.has_key?(:'finishReminderMetadata')
    self. = attributes[:'finishReminderMetadata']
  end

  if attributes.has_key?(:'guidedFormsHtmlAllowed')
    self.guided_forms_html_allowed = attributes[:'guidedFormsHtmlAllowed']
  end

  if attributes.has_key?(:'guidedFormsHtmlAllowedMetadata')
    self. = attributes[:'guidedFormsHtmlAllowedMetadata']
  end

  if attributes.has_key?(:'hasRecipientConnectClaimedDomain')
    self.has_recipient_connect_claimed_domain = attributes[:'hasRecipientConnectClaimedDomain']
  end

  if attributes.has_key?(:'hideAccountAddressInCoC')
    self. = attributes[:'hideAccountAddressInCoC']
  end

  if attributes.has_key?(:'hideAccountAddressInCoCMetadata')
    self. = attributes[:'hideAccountAddressInCoCMetadata']
  end

  if attributes.has_key?(:'hidePricing')
    self.hide_pricing = attributes[:'hidePricing']
  end

  if attributes.has_key?(:'hidePricingMetadata')
    self. = attributes[:'hidePricingMetadata']
  end

  if attributes.has_key?(:'idCheckConfigurations')
    if (value = attributes[:'idCheckConfigurations']).is_a?(Array)
      self.id_check_configurations = value
    end
  end

  if attributes.has_key?(:'idCheckExpire')
    self.id_check_expire = attributes[:'idCheckExpire']
  end

  if attributes.has_key?(:'idCheckExpireDays')
    self.id_check_expire_days = attributes[:'idCheckExpireDays']
  end

  if attributes.has_key?(:'idCheckExpireDaysMetadata')
    self. = attributes[:'idCheckExpireDaysMetadata']
  end

  if attributes.has_key?(:'idCheckExpireMetadata')
    self. = attributes[:'idCheckExpireMetadata']
  end

  if attributes.has_key?(:'idCheckExpireMinutes')
    self.id_check_expire_minutes = attributes[:'idCheckExpireMinutes']
  end

  if attributes.has_key?(:'idCheckExpireMinutesMetadata')
    self. = attributes[:'idCheckExpireMinutesMetadata']
  end

  if attributes.has_key?(:'idCheckRequired')
    self.id_check_required = attributes[:'idCheckRequired']
  end

  if attributes.has_key?(:'idCheckRequiredMetadata')
    self. = attributes[:'idCheckRequiredMetadata']
  end

  if attributes.has_key?(:'identityVerification')
    if (value = attributes[:'identityVerification']).is_a?(Array)
      self.identity_verification = value
    end
  end

  if attributes.has_key?(:'identityVerificationMetadata')
    self. = attributes[:'identityVerificationMetadata']
  end

  if attributes.has_key?(:'idfxPhoneAuthenticationOverride')
    self.idfx_phone_authentication_override = attributes[:'idfxPhoneAuthenticationOverride']
  end

  if attributes.has_key?(:'idfxPhoneAuthenticationOverrideMetadata')
    self. = attributes[:'idfxPhoneAuthenticationOverrideMetadata']
  end

  if attributes.has_key?(:'ignoreErrorIfAnchorTabNotFound')
    self.ignore_error_if_anchor_tab_not_found = attributes[:'ignoreErrorIfAnchorTabNotFound']
  end

  if attributes.has_key?(:'ignoreErrorIfAnchorTabNotFoundMetadataEnabled')
    self. = attributes[:'ignoreErrorIfAnchorTabNotFoundMetadataEnabled']
  end

  if attributes.has_key?(:'inPersonIDCheckQuestion')
    self.in_person_id_check_question = attributes[:'inPersonIDCheckQuestion']
  end

  if attributes.has_key?(:'inPersonIDCheckQuestionMetadata')
    self. = attributes[:'inPersonIDCheckQuestionMetadata']
  end

  if attributes.has_key?(:'inPersonSigningEnabled')
    self.in_person_signing_enabled = attributes[:'inPersonSigningEnabled']
  end

  if attributes.has_key?(:'inPersonSigningEnabledMetadata')
    self. = attributes[:'inPersonSigningEnabledMetadata']
  end

  if attributes.has_key?(:'inSessionEnabled')
    self.in_session_enabled = attributes[:'inSessionEnabled']
  end

  if attributes.has_key?(:'inSessionEnabledMetadata')
    self. = attributes[:'inSessionEnabledMetadata']
  end

  if attributes.has_key?(:'inSessionSuppressEmails')
    self.in_session_suppress_emails = attributes[:'inSessionSuppressEmails']
  end

  if attributes.has_key?(:'inSessionSuppressEmailsMetadata')
    self. = attributes[:'inSessionSuppressEmailsMetadata']
  end

  if attributes.has_key?(:'linkedExternalPrimaryAccounts')
    if (value = attributes[:'linkedExternalPrimaryAccounts']).is_a?(Array)
      self.linked_external_primary_accounts = value
    end
  end

  if attributes.has_key?(:'maximumSigningGroups')
    self.maximum_signing_groups = attributes[:'maximumSigningGroups']
  end

  if attributes.has_key?(:'maximumSigningGroupsMetadata')
    self. = attributes[:'maximumSigningGroupsMetadata']
  end

  if attributes.has_key?(:'maximumUsersPerSigningGroup')
    self.maximum_users_per_signing_group = attributes[:'maximumUsersPerSigningGroup']
  end

  if attributes.has_key?(:'maximumUsersPerSigningGroupMetadata')
    self. = attributes[:'maximumUsersPerSigningGroupMetadata']
  end

  if attributes.has_key?(:'maxNumberOfCustomStamps')
    self.max_number_of_custom_stamps = attributes[:'maxNumberOfCustomStamps']
  end

  if attributes.has_key?(:'mobileSessionTimeout')
    self.mobile_session_timeout = attributes[:'mobileSessionTimeout']
  end

  if attributes.has_key?(:'mobileSessionTimeoutMetadata')
    self. = attributes[:'mobileSessionTimeoutMetadata']
  end

  if attributes.has_key?(:'numberOfActiveCustomStamps')
    self.number_of_active_custom_stamps = attributes[:'numberOfActiveCustomStamps']
  end

  if attributes.has_key?(:'optInMobileSigningV02')
    self.opt_in_mobile_signing_v02 = attributes[:'optInMobileSigningV02']
  end

  if attributes.has_key?(:'optInMobileSigningV02Metadata')
    self. = attributes[:'optInMobileSigningV02Metadata']
  end

  if attributes.has_key?(:'optOutAutoNavTextAndTabColorUpdates')
    self.opt_out_auto_nav_text_and_tab_color_updates = attributes[:'optOutAutoNavTextAndTabColorUpdates']
  end

  if attributes.has_key?(:'optOutAutoNavTextAndTabColorUpdatesMetadata')
    self. = attributes[:'optOutAutoNavTextAndTabColorUpdatesMetadata']
  end

  if attributes.has_key?(:'optOutNewPlatformSeal')
    self.opt_out_new_platform_seal = attributes[:'optOutNewPlatformSeal']
  end

  if attributes.has_key?(:'optOutNewPlatformSealPlatformMetadata')
    self. = attributes[:'optOutNewPlatformSealPlatformMetadata']
  end

  if attributes.has_key?(:'phoneAuthRecipientMayProvidePhoneNumber')
    self.phone_auth_recipient_may_provide_phone_number = attributes[:'phoneAuthRecipientMayProvidePhoneNumber']
  end

  if attributes.has_key?(:'phoneAuthRecipientMayProvidePhoneNumberMetadata')
    self. = attributes[:'phoneAuthRecipientMayProvidePhoneNumberMetadata']
  end

  if attributes.has_key?(:'pkiSignDownloadedPDFDocs')
    self.pki_sign_downloaded_pdf_docs = attributes[:'pkiSignDownloadedPDFDocs']
  end

  if attributes.has_key?(:'pkiSignDownloadedPDFDocsMetadata')
    self. = attributes[:'pkiSignDownloadedPDFDocsMetadata']
  end

  if attributes.has_key?(:'readOnlyMode')
    self.read_only_mode = attributes[:'readOnlyMode']
  end

  if attributes.has_key?(:'readOnlyModeMetadata')
    self. = attributes[:'readOnlyModeMetadata']
  end

  if attributes.has_key?(:'recipientsCanSignOffline')
    self.recipients_can_sign_offline = attributes[:'recipientsCanSignOffline']
  end

  if attributes.has_key?(:'recipientsCanSignOfflineMetadata')
    self. = attributes[:'recipientsCanSignOfflineMetadata']
  end

  if attributes.has_key?(:'recipientSigningAutoNavigationControl')
    self.recipient_signing_auto_navigation_control = attributes[:'recipientSigningAutoNavigationControl']
  end

  if attributes.has_key?(:'recipientSigningAutoNavigationControlMetadata')
    self. = attributes[:'recipientSigningAutoNavigationControlMetadata']
  end

  if attributes.has_key?(:'require21CFRpt11Compliance')
    self.require21_cf_rpt11_compliance = attributes[:'require21CFRpt11Compliance']
  end

  if attributes.has_key?(:'require21CFRpt11ComplianceMetadata')
    self. = attributes[:'require21CFRpt11ComplianceMetadata']
  end

  if attributes.has_key?(:'requireDeclineReason')
    self.require_decline_reason = attributes[:'requireDeclineReason']
  end

  if attributes.has_key?(:'requireDeclineReasonMetadata')
    self. = attributes[:'requireDeclineReasonMetadata']
  end

  if attributes.has_key?(:'requireExternalUserManagement')
    self.require_external_user_management = attributes[:'requireExternalUserManagement']
  end

  if attributes.has_key?(:'requireExternalUserManagementMetadata')
    self. = attributes[:'requireExternalUserManagementMetadata']
  end

  if attributes.has_key?(:'requireSignerCertificateType')
    self.require_signer_certificate_type = attributes[:'requireSignerCertificateType']
  end

  if attributes.has_key?(:'requireSignerCertificateTypeMetadata')
    self. = attributes[:'requireSignerCertificateTypeMetadata']
  end

  if attributes.has_key?(:'rsaVeridAccountName')
    self. = attributes[:'rsaVeridAccountName']
  end

  if attributes.has_key?(:'rsaVeridPassword')
    self.rsa_verid_password = attributes[:'rsaVeridPassword']
  end

  if attributes.has_key?(:'rsaVeridRuleset')
    self.rsa_verid_ruleset = attributes[:'rsaVeridRuleset']
  end

  if attributes.has_key?(:'rsaVeridUserId')
    self.rsa_verid_user_id = attributes[:'rsaVeridUserId']
  end

  if attributes.has_key?(:'selfSignedRecipientEmailDocument')
    self.self_signed_recipient_email_document = attributes[:'selfSignedRecipientEmailDocument']
  end

  if attributes.has_key?(:'selfSignedRecipientEmailDocumentMetadata')
    self. = attributes[:'selfSignedRecipientEmailDocumentMetadata']
  end

  if attributes.has_key?(:'selfSignedRecipientEmailDocumentUserOverride')
    self.self_signed_recipient_email_document_user_override = attributes[:'selfSignedRecipientEmailDocumentUserOverride']
  end

  if attributes.has_key?(:'selfSignedRecipientEmailDocumentUserOverrideMetadata')
    self. = attributes[:'selfSignedRecipientEmailDocumentUserOverrideMetadata']
  end

  if attributes.has_key?(:'senderCanSignInEachLocation')
    self. = attributes[:'senderCanSignInEachLocation']
  end

  if attributes.has_key?(:'senderCanSignInEachLocationMetadata')
    self. = attributes[:'senderCanSignInEachLocationMetadata']
  end

  if attributes.has_key?(:'senderMustAuthenticateSigning')
    self.sender_must_authenticate_signing = attributes[:'senderMustAuthenticateSigning']
  end

  if attributes.has_key?(:'senderMustAuthenticateSigningMetadata')
    self. = attributes[:'senderMustAuthenticateSigningMetadata']
  end

  if attributes.has_key?(:'sendingTagsFontColor')
    self.sending_tags_font_color = attributes[:'sendingTagsFontColor']
  end

  if attributes.has_key?(:'sendingTagsFontColorMetadata')
    self. = attributes[:'sendingTagsFontColorMetadata']
  end

  if attributes.has_key?(:'sendingTagsFontName')
    self.sending_tags_font_name = attributes[:'sendingTagsFontName']
  end

  if attributes.has_key?(:'sendingTagsFontNameMetadata')
    self. = attributes[:'sendingTagsFontNameMetadata']
  end

  if attributes.has_key?(:'sendingTagsFontSize')
    self.sending_tags_font_size = attributes[:'sendingTagsFontSize']
  end

  if attributes.has_key?(:'sendingTagsFontSizeMetadata')
    self. = attributes[:'sendingTagsFontSizeMetadata']
  end

  if attributes.has_key?(:'sendLockoutRecipientNotification')
    self.send_lockout_recipient_notification = attributes[:'sendLockoutRecipientNotification']
  end

  if attributes.has_key?(:'sendLockoutRecipientNotificationMetadata')
    self. = attributes[:'sendLockoutRecipientNotificationMetadata']
  end

  if attributes.has_key?(:'sendToCertifiedDeliveryEnabled')
    self.send_to_certified_delivery_enabled = attributes[:'sendToCertifiedDeliveryEnabled']
  end

  if attributes.has_key?(:'sendToCertifiedDeliveryEnabledMetadata')
    self. = attributes[:'sendToCertifiedDeliveryEnabledMetadata']
  end

  if attributes.has_key?(:'sessionTimeout')
    self.session_timeout = attributes[:'sessionTimeout']
  end

  if attributes.has_key?(:'sessionTimeoutMetadata')
    self. = attributes[:'sessionTimeoutMetadata']
  end

  if attributes.has_key?(:'setRecipEmailLang')
    self.set_recip_email_lang = attributes[:'setRecipEmailLang']
  end

  if attributes.has_key?(:'setRecipEmailLangMetadata')
    self. = attributes[:'setRecipEmailLangMetadata']
  end

  if attributes.has_key?(:'setRecipSignLang')
    self.set_recip_sign_lang = attributes[:'setRecipSignLang']
  end

  if attributes.has_key?(:'setRecipSignLangMetadata')
    self. = attributes[:'setRecipSignLangMetadata']
  end

  if attributes.has_key?(:'sharedTemplateFolders')
    self.shared_template_folders = attributes[:'sharedTemplateFolders']
  end

  if attributes.has_key?(:'sharedTemplateFoldersMetadata')
    self. = attributes[:'sharedTemplateFoldersMetadata']
  end

  if attributes.has_key?(:'showCompleteDialogInEmbeddedSession')
    self.show_complete_dialog_in_embedded_session = attributes[:'showCompleteDialogInEmbeddedSession']
  end

  if attributes.has_key?(:'showCompleteDialogInEmbeddedSessionMetadata')
    self. = attributes[:'showCompleteDialogInEmbeddedSessionMetadata']
  end

  if attributes.has_key?(:'showConditionalRoutingOnSend')
    self.show_conditional_routing_on_send = attributes[:'showConditionalRoutingOnSend']
  end

  if attributes.has_key?(:'showConditionalRoutingOnSendMetadata')
    self. = attributes[:'showConditionalRoutingOnSendMetadata']
  end

  if attributes.has_key?(:'showInitialConditionalFields')
    self.show_initial_conditional_fields = attributes[:'showInitialConditionalFields']
  end

  if attributes.has_key?(:'showInitialConditionalFieldsMetadata')
    self. = attributes[:'showInitialConditionalFieldsMetadata']
  end

  if attributes.has_key?(:'showLocalizedWatermarks')
    self.show_localized_watermarks = attributes[:'showLocalizedWatermarks']
  end

  if attributes.has_key?(:'showLocalizedWatermarksMetadata')
    self. = attributes[:'showLocalizedWatermarksMetadata']
  end

  if attributes.has_key?(:'showMaskedFieldsWhenDownloadingDocumentAsSender')
    self.show_masked_fields_when_downloading_document_as_sender = attributes[:'showMaskedFieldsWhenDownloadingDocumentAsSender']
  end

  if attributes.has_key?(:'showMaskedFieldsWhenDownloadingDocumentAsSenderMetadata')
    self. = attributes[:'showMaskedFieldsWhenDownloadingDocumentAsSenderMetadata']
  end

  if attributes.has_key?(:'showTutorials')
    self.show_tutorials = attributes[:'showTutorials']
  end

  if attributes.has_key?(:'showTutorialsMetadata')
    self. = attributes[:'showTutorialsMetadata']
  end

  if attributes.has_key?(:'signatureProviders')
    if (value = attributes[:'signatureProviders']).is_a?(Array)
      self.signature_providers = value
    end
  end

  if attributes.has_key?(:'signatureProvidersMetadata')
    self. = attributes[:'signatureProvidersMetadata']
  end

  if attributes.has_key?(:'signDateFormat')
    self.sign_date_format = attributes[:'signDateFormat']
  end

  if attributes.has_key?(:'signDateFormatMetadata')
    self. = attributes[:'signDateFormatMetadata']
  end

  if attributes.has_key?(:'signDateTimeAccountLanguageOverride')
    self. = attributes[:'signDateTimeAccountLanguageOverride']
  end

  if attributes.has_key?(:'signDateTimeAccountLanguageOverrideMetadata')
    self. = attributes[:'signDateTimeAccountLanguageOverrideMetadata']
  end

  if attributes.has_key?(:'signDateTimeAccountTimezoneOverride')
    self. = attributes[:'signDateTimeAccountTimezoneOverride']
  end

  if attributes.has_key?(:'signDateTimeAccountTimezoneOverrideMetadata')
    self. = attributes[:'signDateTimeAccountTimezoneOverrideMetadata']
  end

  if attributes.has_key?(:'signerAttachCertificateToEnvelopePDF')
    self.signer_attach_certificate_to_envelope_pdf = attributes[:'signerAttachCertificateToEnvelopePDF']
  end

  if attributes.has_key?(:'signerAttachCertificateToEnvelopePDFMetadata')
    self. = attributes[:'signerAttachCertificateToEnvelopePDFMetadata']
  end

  if attributes.has_key?(:'signerAttachConcat')
    self.signer_attach_concat = attributes[:'signerAttachConcat']
  end

  if attributes.has_key?(:'signerAttachConcatMetadata')
    self. = attributes[:'signerAttachConcatMetadata']
  end

  if attributes.has_key?(:'signerCanCreateAccount')
    self. = attributes[:'signerCanCreateAccount']
  end

  if attributes.has_key?(:'signerCanCreateAccountMetadata')
    self. = attributes[:'signerCanCreateAccountMetadata']
  end

  if attributes.has_key?(:'signerCanSignOnMobile')
    self.signer_can_sign_on_mobile = attributes[:'signerCanSignOnMobile']
  end

  if attributes.has_key?(:'signerCanSignOnMobileMetadata')
    self. = attributes[:'signerCanSignOnMobileMetadata']
  end

  if attributes.has_key?(:'signerInSessionUseEnvelopeCompleteEmail')
    self.signer_in_session_use_envelope_complete_email = attributes[:'signerInSessionUseEnvelopeCompleteEmail']
  end

  if attributes.has_key?(:'signerInSessionUseEnvelopeCompleteEmailMetadata')
    self. = attributes[:'signerInSessionUseEnvelopeCompleteEmailMetadata']
  end

  if attributes.has_key?(:'signerLoginRequirements')
    self. = attributes[:'signerLoginRequirements']
  end

  if attributes.has_key?(:'signerLoginRequirementsMetadata')
    self. = attributes[:'signerLoginRequirementsMetadata']
  end

  if attributes.has_key?(:'signerMustHaveAccount')
    self. = attributes[:'signerMustHaveAccount']
  end

  if attributes.has_key?(:'signerMustHaveAccountMetadata')
    self. = attributes[:'signerMustHaveAccountMetadata']
  end

  if attributes.has_key?(:'signerMustLoginToSign')
    self. = attributes[:'signerMustLoginToSign']
  end

  if attributes.has_key?(:'signerMustLoginToSignMetadata')
    self. = attributes[:'signerMustLoginToSignMetadata']
  end

  if attributes.has_key?(:'signerShowSecureFieldInitialValues')
    self.signer_show_secure_field_initial_values = attributes[:'signerShowSecureFieldInitialValues']
  end

  if attributes.has_key?(:'signerShowSecureFieldInitialValuesMetadata')
    self. = attributes[:'signerShowSecureFieldInitialValuesMetadata']
  end

  if attributes.has_key?(:'signingSessionTimeout')
    self.signing_session_timeout = attributes[:'signingSessionTimeout']
  end

  if attributes.has_key?(:'signingSessionTimeoutMetadata')
    self. = attributes[:'signingSessionTimeoutMetadata']
  end

  if attributes.has_key?(:'signingUiVersion')
    self.signing_ui_version = attributes[:'signingUiVersion']
  end

  if attributes.has_key?(:'signingUiVersionMetadata')
    self. = attributes[:'signingUiVersionMetadata']
  end

  if attributes.has_key?(:'signTimeFormat')
    self.sign_time_format = attributes[:'signTimeFormat']
  end

  if attributes.has_key?(:'signTimeFormatMetadata')
    self. = attributes[:'signTimeFormatMetadata']
  end

  if attributes.has_key?(:'signTimeShowAmPm')
    self.sign_time_show_am_pm = attributes[:'signTimeShowAmPm']
  end

  if attributes.has_key?(:'signTimeShowAmPmMetadata')
    self. = attributes[:'signTimeShowAmPmMetadata']
  end

  if attributes.has_key?(:'simplifiedSendingEnabled')
    self.simplified_sending_enabled = attributes[:'simplifiedSendingEnabled']
  end

  if attributes.has_key?(:'simplifiedSendingEnabledMetadata')
    self. = attributes[:'simplifiedSendingEnabledMetadata']
  end

  if attributes.has_key?(:'singleSignOnEnabled')
    self.single_sign_on_enabled = attributes[:'singleSignOnEnabled']
  end

  if attributes.has_key?(:'singleSignOnEnabledMetadata')
    self. = attributes[:'singleSignOnEnabledMetadata']
  end

  if attributes.has_key?(:'skipAuthCompletedEnvelopes')
    self.skip_auth_completed_envelopes = attributes[:'skipAuthCompletedEnvelopes']
  end

  if attributes.has_key?(:'skipAuthCompletedEnvelopesMetadata')
    self. = attributes[:'skipAuthCompletedEnvelopesMetadata']
  end

  if attributes.has_key?(:'socialIdRecipAuth')
    self.social_id_recip_auth = attributes[:'socialIdRecipAuth']
  end

  if attributes.has_key?(:'socialIdRecipAuthMetadata')
    self. = attributes[:'socialIdRecipAuthMetadata']
  end

  if attributes.has_key?(:'specifyDocumentVisibility')
    self.specify_document_visibility = attributes[:'specifyDocumentVisibility']
  end

  if attributes.has_key?(:'specifyDocumentVisibilityMetadata')
    self. = attributes[:'specifyDocumentVisibilityMetadata']
  end

  if attributes.has_key?(:'startInAdvancedCorrect')
    self.start_in_advanced_correct = attributes[:'startInAdvancedCorrect']
  end

  if attributes.has_key?(:'startInAdvancedCorrectMetadata')
    self. = attributes[:'startInAdvancedCorrectMetadata']
  end

  if attributes.has_key?(:'supplementalDocumentsMustAccept')
    self.supplemental_documents_must_accept = attributes[:'supplementalDocumentsMustAccept']
  end

  if attributes.has_key?(:'supplementalDocumentsMustAcceptMetadata')
    self. = attributes[:'supplementalDocumentsMustAcceptMetadata']
  end

  if attributes.has_key?(:'supplementalDocumentsMustRead')
    self.supplemental_documents_must_read = attributes[:'supplementalDocumentsMustRead']
  end

  if attributes.has_key?(:'supplementalDocumentsMustReadMetadata')
    self. = attributes[:'supplementalDocumentsMustReadMetadata']
  end

  if attributes.has_key?(:'supplementalDocumentsMustView')
    self.supplemental_documents_must_view = attributes[:'supplementalDocumentsMustView']
  end

  if attributes.has_key?(:'supplementalDocumentsMustViewMetadata')
    self. = attributes[:'supplementalDocumentsMustViewMetadata']
  end

  if attributes.has_key?(:'suppressCertificateEnforcement')
    self.suppress_certificate_enforcement = attributes[:'suppressCertificateEnforcement']
  end

  if attributes.has_key?(:'suppressCertificateEnforcementMetadata')
    self. = attributes[:'suppressCertificateEnforcementMetadata']
  end

  if attributes.has_key?(:'tabAccountSettings')
    self. = attributes[:'tabAccountSettings']
  end

  if attributes.has_key?(:'timezoneOffsetAPI')
    self.timezone_offset_api = attributes[:'timezoneOffsetAPI']
  end

  if attributes.has_key?(:'timezoneOffsetAPIMetadata')
    self. = attributes[:'timezoneOffsetAPIMetadata']
  end

  if attributes.has_key?(:'timezoneOffsetUI')
    self.timezone_offset_ui = attributes[:'timezoneOffsetUI']
  end

  if attributes.has_key?(:'timezoneOffsetUIMetadata')
    self. = attributes[:'timezoneOffsetUIMetadata']
  end

  if attributes.has_key?(:'universalSignatureOptIn')
    self.universal_signature_opt_in = attributes[:'universalSignatureOptIn']
  end

  if attributes.has_key?(:'useAccountLevelEmail')
    self. = attributes[:'useAccountLevelEmail']
  end

  if attributes.has_key?(:'useAccountLevelEmailMetadata')
    self. = attributes[:'useAccountLevelEmailMetadata']
  end

  if attributes.has_key?(:'useConsumerDisclosure')
    self.use_consumer_disclosure = attributes[:'useConsumerDisclosure']
  end

  if attributes.has_key?(:'useConsumerDisclosureMetadata')
    self. = attributes[:'useConsumerDisclosureMetadata']
  end

  if attributes.has_key?(:'useConsumerDisclosureWithinAccount')
    self. = attributes[:'useConsumerDisclosureWithinAccount']
  end

  if attributes.has_key?(:'useConsumerDisclosureWithinAccountMetadata')
    self. = attributes[:'useConsumerDisclosureWithinAccountMetadata']
  end

  if attributes.has_key?(:'useDerivedKeys')
    self.use_derived_keys = attributes[:'useDerivedKeys']
  end

  if attributes.has_key?(:'useDerivedKeysMetadata')
    self. = attributes[:'useDerivedKeysMetadata']
  end

  if attributes.has_key?(:'useDocuSignExpressSignerCertificate')
    self.use_docu_sign_express_signer_certificate = attributes[:'useDocuSignExpressSignerCertificate']
  end

  if attributes.has_key?(:'useDocuSignExpressSignerCertificateMetadata')
    self. = attributes[:'useDocuSignExpressSignerCertificateMetadata']
  end

  if attributes.has_key?(:'useMultiAppGroupsData')
    self.use_multi_app_groups_data = attributes[:'useMultiAppGroupsData']
  end

  if attributes.has_key?(:'useMultiAppGroupsDataMetadata')
    self. = attributes[:'useMultiAppGroupsDataMetadata']
  end

  if attributes.has_key?(:'useNewBlobForPdf')
    self.use_new_blob_for_pdf = attributes[:'useNewBlobForPdf']
  end

  if attributes.has_key?(:'useNewBlobForPdfMetadata')
    self. = attributes[:'useNewBlobForPdfMetadata']
  end

  if attributes.has_key?(:'useSAFESignerCertificates')
    self.use_safe_signer_certificates = attributes[:'useSAFESignerCertificates']
  end

  if attributes.has_key?(:'useSAFESignerCertificatesMetadata')
    self. = attributes[:'useSAFESignerCertificatesMetadata']
  end

  if attributes.has_key?(:'usesAPI')
    self.uses_api = attributes[:'usesAPI']
  end

  if attributes.has_key?(:'usesAPIMetadata')
    self. = attributes[:'usesAPIMetadata']
  end

  if attributes.has_key?(:'useSignatureProviderPlatform')
    self.use_signature_provider_platform = attributes[:'useSignatureProviderPlatform']
  end

  if attributes.has_key?(:'useSignatureProviderPlatformMetadata')
    self. = attributes[:'useSignatureProviderPlatformMetadata']
  end

  if attributes.has_key?(:'useSmartContractsV1')
    self.use_smart_contracts_v1 = attributes[:'useSmartContractsV1']
  end

  if attributes.has_key?(:'validationsAllowed')
    self.validations_allowed = attributes[:'validationsAllowed']
  end

  if attributes.has_key?(:'validationsAllowedMetadata')
    self. = attributes[:'validationsAllowedMetadata']
  end

  if attributes.has_key?(:'validationsBrand')
    self.validations_brand = attributes[:'validationsBrand']
  end

  if attributes.has_key?(:'validationsBrandMetadata')
    self. = attributes[:'validationsBrandMetadata']
  end

  if attributes.has_key?(:'validationsCadence')
    self.validations_cadence = attributes[:'validationsCadence']
  end

  if attributes.has_key?(:'validationsCadenceMetadata')
    self. = attributes[:'validationsCadenceMetadata']
  end

  if attributes.has_key?(:'validationsEnabled')
    self.validations_enabled = attributes[:'validationsEnabled']
  end

  if attributes.has_key?(:'validationsEnabledMetadata')
    self. = attributes[:'validationsEnabledMetadata']
  end

  if attributes.has_key?(:'validationsReport')
    self.validations_report = attributes[:'validationsReport']
  end

  if attributes.has_key?(:'validationsReportMetadata')
    self. = attributes[:'validationsReportMetadata']
  end

  if attributes.has_key?(:'waterMarkEnabled')
    self.water_mark_enabled = attributes[:'waterMarkEnabled']
  end

  if attributes.has_key?(:'waterMarkEnabledMetadata')
    self. = attributes[:'waterMarkEnabledMetadata']
  end

  if attributes.has_key?(:'writeReminderToEnvelopeHistory')
    self.write_reminder_to_envelope_history = attributes[:'writeReminderToEnvelopeHistory']
  end

  if attributes.has_key?(:'writeReminderToEnvelopeHistoryMetadata')
    self. = attributes[:'writeReminderToEnvelopeHistoryMetadata']
  end

  if attributes.has_key?(:'wurflMinAllowableScreenSize')
    self.wurfl_min_allowable_screen_size = attributes[:'wurflMinAllowableScreenSize']
  end

  if attributes.has_key?(:'wurflMinAllowableScreenSizeMetadata')
    self. = attributes[:'wurflMinAllowableScreenSizeMetadata']
  end
end

Instance Attribute Details

#access_code_formatObject

Returns the value of attribute access_code_format.



17
18
19
# File 'lib/docusign_esign/models/account_settings_information.rb', line 17

def access_code_format
  @access_code_format
end

#account_date_time_formatObject

Returns the value of attribute account_date_time_format.



20
21
22
# File 'lib/docusign_esign/models/account_settings_information.rb', line 20

def 
  @account_date_time_format
end

#account_date_time_format_metadataObject

Returns the value of attribute account_date_time_format_metadata.



22
23
24
# File 'lib/docusign_esign/models/account_settings_information.rb', line 22

def 
  @account_date_time_format_metadata
end

#account_default_languageObject

Returns the value of attribute account_default_language.



25
26
27
# File 'lib/docusign_esign/models/account_settings_information.rb', line 25

def 
  @account_default_language
end

#account_default_language_metadataObject

Returns the value of attribute account_default_language_metadata.



27
28
29
# File 'lib/docusign_esign/models/account_settings_information.rb', line 27

def 
  @account_default_language_metadata
end

#account_nameObject

Returns the value of attribute account_name.



30
31
32
# File 'lib/docusign_esign/models/account_settings_information.rb', line 30

def 
  @account_name
end

#account_name_metadataObject

Returns the value of attribute account_name_metadata.



32
33
34
# File 'lib/docusign_esign/models/account_settings_information.rb', line 32

def 
  @account_name_metadata
end

#account_notificationObject

Returns the value of attribute account_notification.



34
35
36
# File 'lib/docusign_esign/models/account_settings_information.rb', line 34

def 
  @account_notification
end

#account_ui_settingsObject

Returns the value of attribute account_ui_settings.



36
37
38
# File 'lib/docusign_esign/models/account_settings_information.rb', line 36

def 
  @account_ui_settings
end

#adopt_sig_configObject

Returns the value of attribute adopt_sig_config.



39
40
41
# File 'lib/docusign_esign/models/account_settings_information.rb', line 39

def adopt_sig_config
  @adopt_sig_config
end

#adopt_sig_config_metadataObject

Returns the value of attribute adopt_sig_config_metadata.



41
42
43
# File 'lib/docusign_esign/models/account_settings_information.rb', line 41

def 
  @adopt_sig_config_metadata
end

#advanced_correctObject

Returns the value of attribute advanced_correct.



44
45
46
# File 'lib/docusign_esign/models/account_settings_information.rb', line 44

def advanced_correct
  @advanced_correct
end

#advanced_correct_metadataObject

Returns the value of attribute advanced_correct_metadata.



46
47
48
# File 'lib/docusign_esign/models/account_settings_information.rb', line 46

def 
  @advanced_correct_metadata
end

#allow_access_code_formatObject

Returns the value of attribute allow_access_code_format.



49
50
51
# File 'lib/docusign_esign/models/account_settings_information.rb', line 49

def allow_access_code_format
  @allow_access_code_format
end

#allow_access_code_format_metadataObject

Returns the value of attribute allow_access_code_format_metadata.



51
52
53
# File 'lib/docusign_esign/models/account_settings_information.rb', line 51

def 
  @allow_access_code_format_metadata
end

#allow_account_management_granularObject

Returns the value of attribute allow_account_management_granular.



54
55
56
# File 'lib/docusign_esign/models/account_settings_information.rb', line 54

def 
  @allow_account_management_granular
end

#allow_account_management_granular_metadataObject

Returns the value of attribute allow_account_management_granular_metadata.



56
57
58
# File 'lib/docusign_esign/models/account_settings_information.rb', line 56

def 
  @allow_account_management_granular_metadata
end

#allow_account_member_name_changeObject

Returns the value of attribute allow_account_member_name_change.



59
60
61
# File 'lib/docusign_esign/models/account_settings_information.rb', line 59

def 
  @allow_account_member_name_change
end

#allow_account_member_name_change_metadataObject

Returns the value of attribute allow_account_member_name_change_metadata.



61
62
63
# File 'lib/docusign_esign/models/account_settings_information.rb', line 61

def 
  @allow_account_member_name_change_metadata
end

#allow_advanced_recipient_routing_conditionalObject

Returns the value of attribute allow_advanced_recipient_routing_conditional.



64
65
66
# File 'lib/docusign_esign/models/account_settings_information.rb', line 64

def allow_advanced_recipient_routing_conditional
  @allow_advanced_recipient_routing_conditional
end

#allow_advanced_recipient_routing_conditional_metadataObject

Returns the value of attribute allow_advanced_recipient_routing_conditional_metadata.



66
67
68
# File 'lib/docusign_esign/models/account_settings_information.rb', line 66

def 
  @allow_advanced_recipient_routing_conditional_metadata
end

#allow_agent_name_email_editObject

Returns the value of attribute allow_agent_name_email_edit.



69
70
71
# File 'lib/docusign_esign/models/account_settings_information.rb', line 69

def allow_agent_name_email_edit
  @allow_agent_name_email_edit
end

#allow_agent_name_email_edit_metadataObject

Returns the value of attribute allow_agent_name_email_edit_metadata.



71
72
73
# File 'lib/docusign_esign/models/account_settings_information.rb', line 71

def 
  @allow_agent_name_email_edit_metadata
end

#allow_agreement_actionsObject

Returns the value of attribute allow_agreement_actions.



74
75
76
# File 'lib/docusign_esign/models/account_settings_information.rb', line 74

def allow_agreement_actions
  @allow_agreement_actions
end

#allow_agreement_actions_metadataObject

Returns the value of attribute allow_agreement_actions_metadata.



76
77
78
# File 'lib/docusign_esign/models/account_settings_information.rb', line 76

def 
  @allow_agreement_actions_metadata
end

#allow_auto_nav_settingsObject

Returns the value of attribute allow_auto_nav_settings.



79
80
81
# File 'lib/docusign_esign/models/account_settings_information.rb', line 79

def allow_auto_nav_settings
  @allow_auto_nav_settings
end

#allow_auto_nav_settings_metadataObject

Returns the value of attribute allow_auto_nav_settings_metadata.



81
82
83
# File 'lib/docusign_esign/models/account_settings_information.rb', line 81

def 
  @allow_auto_nav_settings_metadata
end

#allow_auto_taggingObject

Returns the value of attribute allow_auto_tagging.



84
85
86
# File 'lib/docusign_esign/models/account_settings_information.rb', line 84

def allow_auto_tagging
  @allow_auto_tagging
end

#allow_auto_tagging_metadataObject

Returns the value of attribute allow_auto_tagging_metadata.



86
87
88
# File 'lib/docusign_esign/models/account_settings_information.rb', line 86

def 
  @allow_auto_tagging_metadata
end

#allow_bulk_sendObject

Returns the value of attribute allow_bulk_send.



89
90
91
# File 'lib/docusign_esign/models/account_settings_information.rb', line 89

def allow_bulk_send
  @allow_bulk_send
end

#allow_bulk_send_metadataObject

Returns the value of attribute allow_bulk_send_metadata.



91
92
93
# File 'lib/docusign_esign/models/account_settings_information.rb', line 91

def 
  @allow_bulk_send_metadata
end

#allow_cd_withdrawObject

Returns the value of attribute allow_cd_withdraw.



94
95
96
# File 'lib/docusign_esign/models/account_settings_information.rb', line 94

def allow_cd_withdraw
  @allow_cd_withdraw
end

#allow_cd_withdraw_metadataObject

Returns the value of attribute allow_cd_withdraw_metadata.



96
97
98
# File 'lib/docusign_esign/models/account_settings_information.rb', line 96

def 
  @allow_cd_withdraw_metadata
end

#allow_connect_http_listener_configsObject

Returns the value of attribute allow_connect_http_listener_configs.



99
100
101
# File 'lib/docusign_esign/models/account_settings_information.rb', line 99

def allow_connect_http_listener_configs
  @allow_connect_http_listener_configs
end

#allow_connect_send_finish_laterObject

Returns the value of attribute allow_connect_send_finish_later.



102
103
104
# File 'lib/docusign_esign/models/account_settings_information.rb', line 102

def allow_connect_send_finish_later
  @allow_connect_send_finish_later
end

#allow_connect_send_finish_later_metadataObject

Returns the value of attribute allow_connect_send_finish_later_metadata.



104
105
106
# File 'lib/docusign_esign/models/account_settings_information.rb', line 104

def 
  @allow_connect_send_finish_later_metadata
end

#allow_connect_unified_payload_uiObject

Returns the value of attribute allow_connect_unified_payload_ui.



107
108
109
# File 'lib/docusign_esign/models/account_settings_information.rb', line 107

def allow_connect_unified_payload_ui
  @allow_connect_unified_payload_ui
end

#allow_consumer_disclosure_overrideObject

Returns the value of attribute allow_consumer_disclosure_override.



110
111
112
# File 'lib/docusign_esign/models/account_settings_information.rb', line 110

def allow_consumer_disclosure_override
  @allow_consumer_disclosure_override
end

#allow_consumer_disclosure_override_metadataObject

Returns the value of attribute allow_consumer_disclosure_override_metadata.



112
113
114
# File 'lib/docusign_esign/models/account_settings_information.rb', line 112

def 
  @allow_consumer_disclosure_override_metadata
end

#allow_data_downloadObject

Returns the value of attribute allow_data_download.



115
116
117
# File 'lib/docusign_esign/models/account_settings_information.rb', line 115

def allow_data_download
  @allow_data_download
end

#allow_data_download_metadataObject

Returns the value of attribute allow_data_download_metadata.



117
118
119
# File 'lib/docusign_esign/models/account_settings_information.rb', line 117

def 
  @allow_data_download_metadata
end

#allow_delayed_routingObject

"true" if the account has permission to use the delayed routing feature to insert delays before routing an envelope to a recipient, "false" otherwise.



120
121
122
# File 'lib/docusign_esign/models/account_settings_information.rb', line 120

def allow_delayed_routing
  @allow_delayed_routing
end

#allow_delayed_routing_metadataObject

Returns the value of attribute allow_delayed_routing_metadata.



122
123
124
# File 'lib/docusign_esign/models/account_settings_information.rb', line 122

def 
  @allow_delayed_routing_metadata
end

#allow_delegated_signingObject

Returns the value of attribute allow_delegated_signing.



125
126
127
# File 'lib/docusign_esign/models/account_settings_information.rb', line 125

def allow_delegated_signing
  @allow_delegated_signing
end

#allow_delegated_signing_metadataObject

Returns the value of attribute allow_delegated_signing_metadata.



127
128
129
# File 'lib/docusign_esign/models/account_settings_information.rb', line 127

def 
  @allow_delegated_signing_metadata
end

#allow_document_disclosuresObject

Returns the value of attribute allow_document_disclosures.



130
131
132
# File 'lib/docusign_esign/models/account_settings_information.rb', line 130

def allow_document_disclosures
  @allow_document_disclosures
end

#allow_document_disclosures_metadataObject

Returns the value of attribute allow_document_disclosures_metadata.



132
133
134
# File 'lib/docusign_esign/models/account_settings_information.rb', line 132

def 
  @allow_document_disclosures_metadata
end

#allow_document_visibilityObject

Returns the value of attribute allow_document_visibility.



140
141
142
# File 'lib/docusign_esign/models/account_settings_information.rb', line 140

def allow_document_visibility
  @allow_document_visibility
end

#allow_document_visibility_metadataObject

Returns the value of attribute allow_document_visibility_metadata.



142
143
144
# File 'lib/docusign_esign/models/account_settings_information.rb', line 142

def 
  @allow_document_visibility_metadata
end

#allow_documents_on_signed_envelopesObject

Returns the value of attribute allow_documents_on_signed_envelopes.



135
136
137
# File 'lib/docusign_esign/models/account_settings_information.rb', line 135

def allow_documents_on_signed_envelopes
  @allow_documents_on_signed_envelopes
end

#allow_documents_on_signed_envelopes_metadataObject

Returns the value of attribute allow_documents_on_signed_envelopes_metadata.



137
138
139
# File 'lib/docusign_esign/models/account_settings_information.rb', line 137

def 
  @allow_documents_on_signed_envelopes_metadata
end

#allow_e_hanko_stampsObject

Returns the value of attribute allow_e_hanko_stamps.



145
146
147
# File 'lib/docusign_esign/models/account_settings_information.rb', line 145

def allow_e_hanko_stamps
  @allow_e_hanko_stamps
end

#allow_e_hanko_stamps_metadataObject

Returns the value of attribute allow_e_hanko_stamps_metadata.



147
148
149
# File 'lib/docusign_esign/models/account_settings_information.rb', line 147

def 
  @allow_e_hanko_stamps_metadata
end

#allow_e_note_e_originalObject

Returns the value of attribute allow_e_note_e_original.



150
151
152
# File 'lib/docusign_esign/models/account_settings_information.rb', line 150

def allow_e_note_e_original
  @allow_e_note_e_original
end

#allow_e_note_e_original_metadataObject

Returns the value of attribute allow_e_note_e_original_metadata.



152
153
154
# File 'lib/docusign_esign/models/account_settings_information.rb', line 152

def 
  @allow_e_note_e_original_metadata
end

#allow_envelope_correctObject

Returns the value of attribute allow_envelope_correct.



155
156
157
# File 'lib/docusign_esign/models/account_settings_information.rb', line 155

def allow_envelope_correct
  @allow_envelope_correct
end

#allow_envelope_correct_metadataObject

Returns the value of attribute allow_envelope_correct_metadata.



157
158
159
# File 'lib/docusign_esign/models/account_settings_information.rb', line 157

def 
  @allow_envelope_correct_metadata
end

#allow_envelope_custody_transferObject

Returns the value of attribute allow_envelope_custody_transfer.



160
161
162
# File 'lib/docusign_esign/models/account_settings_information.rb', line 160

def allow_envelope_custody_transfer
  @allow_envelope_custody_transfer
end

#allow_envelope_custody_transfer_metadataObject

Returns the value of attribute allow_envelope_custody_transfer_metadata.



162
163
164
# File 'lib/docusign_esign/models/account_settings_information.rb', line 162

def 
  @allow_envelope_custody_transfer_metadata
end

#allow_envelope_custom_fieldsObject

Returns the value of attribute allow_envelope_custom_fields.



165
166
167
# File 'lib/docusign_esign/models/account_settings_information.rb', line 165

def allow_envelope_custom_fields
  @allow_envelope_custom_fields
end

#allow_envelope_custom_fields_metadataObject

Returns the value of attribute allow_envelope_custom_fields_metadata.



167
168
169
# File 'lib/docusign_esign/models/account_settings_information.rb', line 167

def 
  @allow_envelope_custom_fields_metadata
end

#allow_envelope_publish_reportingObject

Returns the value of attribute allow_envelope_publish_reporting.



170
171
172
# File 'lib/docusign_esign/models/account_settings_information.rb', line 170

def allow_envelope_publish_reporting
  @allow_envelope_publish_reporting
end

#allow_envelope_publish_reporting_metadataObject

Returns the value of attribute allow_envelope_publish_reporting_metadata.



172
173
174
# File 'lib/docusign_esign/models/account_settings_information.rb', line 172

def 
  @allow_envelope_publish_reporting_metadata
end

#allow_envelope_reportingObject

Returns the value of attribute allow_envelope_reporting.



175
176
177
# File 'lib/docusign_esign/models/account_settings_information.rb', line 175

def allow_envelope_reporting
  @allow_envelope_reporting
end

#allow_envelope_reporting_metadataObject

Returns the value of attribute allow_envelope_reporting_metadata.



177
178
179
# File 'lib/docusign_esign/models/account_settings_information.rb', line 177

def 
  @allow_envelope_reporting_metadata
end

#allow_express_signer_certificateObject

Returns the value of attribute allow_express_signer_certificate.



185
186
187
# File 'lib/docusign_esign/models/account_settings_information.rb', line 185

def allow_express_signer_certificate
  @allow_express_signer_certificate
end

#allow_express_signer_certificate_metadataObject

Returns the value of attribute allow_express_signer_certificate_metadata.



187
188
189
# File 'lib/docusign_esign/models/account_settings_information.rb', line 187

def 
  @allow_express_signer_certificate_metadata
end

#allow_expressionObject

Returns the value of attribute allow_expression.



180
181
182
# File 'lib/docusign_esign/models/account_settings_information.rb', line 180

def allow_expression
  @allow_expression
end

#allow_expression_metadataObject

Returns the value of attribute allow_expression_metadata.



182
183
184
# File 'lib/docusign_esign/models/account_settings_information.rb', line 182

def 
  @allow_expression_metadata
end

#allow_extended_sending_resource_fileObject

Returns the value of attribute allow_extended_sending_resource_file.



190
191
192
# File 'lib/docusign_esign/models/account_settings_information.rb', line 190

def allow_extended_sending_resource_file
  @allow_extended_sending_resource_file
end

#allow_extended_sending_resource_file_metadataObject

Returns the value of attribute allow_extended_sending_resource_file_metadata.



192
193
194
# File 'lib/docusign_esign/models/account_settings_information.rb', line 192

def 
  @allow_extended_sending_resource_file_metadata
end

#allow_external_linked_accountsObject

Returns the value of attribute allow_external_linked_accounts.



195
196
197
# File 'lib/docusign_esign/models/account_settings_information.rb', line 195

def allow_external_linked_accounts
  @allow_external_linked_accounts
end

#allow_external_linked_accounts_metadataObject

Returns the value of attribute allow_external_linked_accounts_metadata.



197
198
199
# File 'lib/docusign_esign/models/account_settings_information.rb', line 197

def 
  @allow_external_linked_accounts_metadata
end

#allow_external_signature_padObject

Returns the value of attribute allow_external_signature_pad.



200
201
202
# File 'lib/docusign_esign/models/account_settings_information.rb', line 200

def allow_external_signature_pad
  @allow_external_signature_pad
end

#allow_external_signature_pad_metadataObject

Returns the value of attribute allow_external_signature_pad_metadata.



202
203
204
# File 'lib/docusign_esign/models/account_settings_information.rb', line 202

def 
  @allow_external_signature_pad_metadata
end

#allow_idv_level1Object

Returns the value of attribute allow_idv_level1.



205
206
207
# File 'lib/docusign_esign/models/account_settings_information.rb', line 205

def allow_idv_level1
  @allow_idv_level1
end

#allow_idv_level1_metadataObject

Returns the value of attribute allow_idv_level1_metadata.



207
208
209
# File 'lib/docusign_esign/models/account_settings_information.rb', line 207

def 
  @allow_idv_level1_metadata
end

#allow_idv_level2Object

Returns the value of attribute allow_idv_level2.



210
211
212
# File 'lib/docusign_esign/models/account_settings_information.rb', line 210

def allow_idv_level2
  @allow_idv_level2
end

#allow_idv_level2_metadataObject

Returns the value of attribute allow_idv_level2_metadata.



212
213
214
# File 'lib/docusign_esign/models/account_settings_information.rb', line 212

def 
  @allow_idv_level2_metadata
end

#allow_idv_level3Object

Returns the value of attribute allow_idv_level3.



215
216
217
# File 'lib/docusign_esign/models/account_settings_information.rb', line 215

def allow_idv_level3
  @allow_idv_level3
end

#allow_idv_level3_metadataObject

Returns the value of attribute allow_idv_level3_metadata.



217
218
219
# File 'lib/docusign_esign/models/account_settings_information.rb', line 217

def 
  @allow_idv_level3_metadata
end

#allow_idv_platformObject

Returns the value of attribute allow_idv_platform.



220
221
222
# File 'lib/docusign_esign/models/account_settings_information.rb', line 220

def allow_idv_platform
  @allow_idv_platform
end

#allow_idv_platform_metadataObject

Returns the value of attribute allow_idv_platform_metadata.



222
223
224
# File 'lib/docusign_esign/models/account_settings_information.rb', line 222

def 
  @allow_idv_platform_metadata
end

#allow_in_personObject

Returns the value of attribute allow_in_person.



225
226
227
# File 'lib/docusign_esign/models/account_settings_information.rb', line 225

def allow_in_person
  @allow_in_person
end

#allow_in_person_electronic_notaryObject

Account Level Flag that determines the availability to perform In Person Electronic Notarial (IPEN) actions



228
229
230
# File 'lib/docusign_esign/models/account_settings_information.rb', line 228

def allow_in_person_electronic_notary
  @allow_in_person_electronic_notary
end

#allow_in_person_electronic_notary_metadataObject

MetaData for the allowInPersonElectronicNotary flag



231
232
233
# File 'lib/docusign_esign/models/account_settings_information.rb', line 231

def 
  @allow_in_person_electronic_notary_metadata
end

#allow_in_person_metadataObject

Returns the value of attribute allow_in_person_metadata.



233
234
235
# File 'lib/docusign_esign/models/account_settings_information.rb', line 233

def 
  @allow_in_person_metadata
end

#allow_managed_stampsObject

Returns the value of attribute allow_managed_stamps.



236
237
238
# File 'lib/docusign_esign/models/account_settings_information.rb', line 236

def allow_managed_stamps
  @allow_managed_stamps
end

#allow_managed_stamps_metadataObject

Returns the value of attribute allow_managed_stamps_metadata.



238
239
240
# File 'lib/docusign_esign/models/account_settings_information.rb', line 238

def 
  @allow_managed_stamps_metadata
end

#allow_managing_envelopes_on_behalf_of_othersObject

Returns the value of attribute allow_managing_envelopes_on_behalf_of_others.



241
242
243
# File 'lib/docusign_esign/models/account_settings_information.rb', line 241

def allow_managing_envelopes_on_behalf_of_others
  @allow_managing_envelopes_on_behalf_of_others
end

#allow_managing_envelopes_on_behalf_of_others_metadataObject

Returns the value of attribute allow_managing_envelopes_on_behalf_of_others_metadata.



243
244
245
# File 'lib/docusign_esign/models/account_settings_information.rb', line 243

def 
  @allow_managing_envelopes_on_behalf_of_others_metadata
end

#allow_markupObject

When set to true, Document Markup is enabled for envelope. Account must have Document Markup enabled to use this



246
247
248
# File 'lib/docusign_esign/models/account_settings_information.rb', line 246

def allow_markup
  @allow_markup
end

#allow_markup_metadataObject

Returns the value of attribute allow_markup_metadata.



248
249
250
# File 'lib/docusign_esign/models/account_settings_information.rb', line 248

def 
  @allow_markup_metadata
end

#allow_member_time_zoneObject

Returns the value of attribute allow_member_time_zone.



251
252
253
# File 'lib/docusign_esign/models/account_settings_information.rb', line 251

def allow_member_time_zone
  @allow_member_time_zone
end

#allow_member_time_zone_metadataObject

Returns the value of attribute allow_member_time_zone_metadata.



253
254
255
# File 'lib/docusign_esign/models/account_settings_information.rb', line 253

def 
  @allow_member_time_zone_metadata
end

#allow_merge_fieldsObject

Returns the value of attribute allow_merge_fields.



256
257
258
# File 'lib/docusign_esign/models/account_settings_information.rb', line 256

def allow_merge_fields
  @allow_merge_fields
end

#allow_merge_fields_metadataObject

Returns the value of attribute allow_merge_fields_metadata.



258
259
260
# File 'lib/docusign_esign/models/account_settings_information.rb', line 258

def 
  @allow_merge_fields_metadata
end

#allow_multiple_brand_profilesObject

Returns the value of attribute allow_multiple_brand_profiles.



261
262
263
# File 'lib/docusign_esign/models/account_settings_information.rb', line 261

def allow_multiple_brand_profiles
  @allow_multiple_brand_profiles
end

#allow_multiple_brand_profiles_metadataObject

Returns the value of attribute allow_multiple_brand_profiles_metadata.



263
264
265
# File 'lib/docusign_esign/models/account_settings_information.rb', line 263

def 
  @allow_multiple_brand_profiles_metadata
end

#allow_multiple_signer_attachmentsObject

Returns the value of attribute allow_multiple_signer_attachments.



266
267
268
# File 'lib/docusign_esign/models/account_settings_information.rb', line 266

def allow_multiple_signer_attachments
  @allow_multiple_signer_attachments
end

#allow_multiple_signer_attachments_metadataObject

Returns the value of attribute allow_multiple_signer_attachments_metadata.



268
269
270
# File 'lib/docusign_esign/models/account_settings_information.rb', line 268

def 
  @allow_multiple_signer_attachments_metadata
end

#allow_non_us_phone_authObject

Returns the value of attribute allow_non_us_phone_auth.



271
272
273
# File 'lib/docusign_esign/models/account_settings_information.rb', line 271

def allow_non_us_phone_auth
  @allow_non_us_phone_auth
end

#allow_non_us_phone_auth_metadataObject

Returns the value of attribute allow_non_us_phone_auth_metadata.



273
274
275
# File 'lib/docusign_esign/models/account_settings_information.rb', line 273

def 
  @allow_non_us_phone_auth_metadata
end

#allow_ocr_of_envelope_documentsObject

Returns the value of attribute allow_ocr_of_envelope_documents.



276
277
278
# File 'lib/docusign_esign/models/account_settings_information.rb', line 276

def allow_ocr_of_envelope_documents
  @allow_ocr_of_envelope_documents
end

#allow_ocr_of_envelope_documents_metadataObject

Returns the value of attribute allow_ocr_of_envelope_documents_metadata.



278
279
280
# File 'lib/docusign_esign/models/account_settings_information.rb', line 278

def 
  @allow_ocr_of_envelope_documents_metadata
end

#allow_offline_signingObject

Returns the value of attribute allow_offline_signing.



281
282
283
# File 'lib/docusign_esign/models/account_settings_information.rb', line 281

def allow_offline_signing
  @allow_offline_signing
end

#allow_offline_signing_metadataObject

Returns the value of attribute allow_offline_signing_metadata.



283
284
285
# File 'lib/docusign_esign/models/account_settings_information.rb', line 283

def 
  @allow_offline_signing_metadata
end

#allow_open_trust_signer_certificateObject

Returns the value of attribute allow_open_trust_signer_certificate.



286
287
288
# File 'lib/docusign_esign/models/account_settings_information.rb', line 286

def allow_open_trust_signer_certificate
  @allow_open_trust_signer_certificate
end

#allow_open_trust_signer_certificate_metadataObject

Returns the value of attribute allow_open_trust_signer_certificate_metadata.



288
289
290
# File 'lib/docusign_esign/models/account_settings_information.rb', line 288

def 
  @allow_open_trust_signer_certificate_metadata
end

#allow_organization_docusign_monitorObject

Returns the value of attribute allow_organization_docusign_monitor.



291
292
293
# File 'lib/docusign_esign/models/account_settings_information.rb', line 291

def allow_organization_docusign_monitor
  @allow_organization_docusign_monitor
end

#allow_organization_docusign_monitor_metadataObject

Returns the value of attribute allow_organization_docusign_monitor_metadata.



293
294
295
# File 'lib/docusign_esign/models/account_settings_information.rb', line 293

def 
  @allow_organization_docusign_monitor_metadata
end

#allow_organization_domain_user_managementObject

Returns the value of attribute allow_organization_domain_user_management.



296
297
298
# File 'lib/docusign_esign/models/account_settings_information.rb', line 296

def allow_organization_domain_user_management
  @allow_organization_domain_user_management
end

#allow_organization_domain_user_management_metadataObject

Returns the value of attribute allow_organization_domain_user_management_metadata.



298
299
300
# File 'lib/docusign_esign/models/account_settings_information.rb', line 298

def 
  @allow_organization_domain_user_management_metadata
end

#allow_organization_sso_managementObject

Returns the value of attribute allow_organization_sso_management.



306
307
308
# File 'lib/docusign_esign/models/account_settings_information.rb', line 306

def allow_organization_sso_management
  @allow_organization_sso_management
end

#allow_organization_sso_management_metadataObject

Returns the value of attribute allow_organization_sso_management_metadata.



308
309
310
# File 'lib/docusign_esign/models/account_settings_information.rb', line 308

def 
  @allow_organization_sso_management_metadata
end

#allow_organization_to_use_in_person_electronic_notaryObject

Organization Level Flag that determines the availability to perform In Person Electronic Notarial (IPEN) actions



311
312
313
# File 'lib/docusign_esign/models/account_settings_information.rb', line 311

def allow_organization_to_use_in_person_electronic_notary
  @allow_organization_to_use_in_person_electronic_notary
end

#allow_organization_to_use_in_person_electronic_notary_metadataObject

MetaData for the allowOrganizationToUseInPersonElectronicNotary flag



314
315
316
# File 'lib/docusign_esign/models/account_settings_information.rb', line 314

def 
  @allow_organization_to_use_in_person_electronic_notary_metadata
end

#allow_organization_to_use_remote_notaryObject

Returns the value of attribute allow_organization_to_use_remote_notary.



317
318
319
# File 'lib/docusign_esign/models/account_settings_information.rb', line 317

def allow_organization_to_use_remote_notary
  @allow_organization_to_use_remote_notary
end

#allow_organization_to_use_remote_notary_metadataObject

Returns the value of attribute allow_organization_to_use_remote_notary_metadata.



319
320
321
# File 'lib/docusign_esign/models/account_settings_information.rb', line 319

def 
  @allow_organization_to_use_remote_notary_metadata
end

#allow_organization_to_use_third_party_electronic_notaryObject

Returns the value of attribute allow_organization_to_use_third_party_electronic_notary.



322
323
324
# File 'lib/docusign_esign/models/account_settings_information.rb', line 322

def allow_organization_to_use_third_party_electronic_notary
  @allow_organization_to_use_third_party_electronic_notary
end

#allow_organization_to_use_third_party_electronic_notary_metadataObject

Returns the value of attribute allow_organization_to_use_third_party_electronic_notary_metadata.



324
325
326
# File 'lib/docusign_esign/models/account_settings_information.rb', line 324

def 
  @allow_organization_to_use_third_party_electronic_notary_metadata
end

#allow_organizationsObject

Returns the value of attribute allow_organizations.



301
302
303
# File 'lib/docusign_esign/models/account_settings_information.rb', line 301

def allow_organizations
  @allow_organizations
end

#allow_organizations_metadataObject

Returns the value of attribute allow_organizations_metadata.



303
304
305
# File 'lib/docusign_esign/models/account_settings_information.rb', line 303

def 
  @allow_organizations_metadata
end

#allow_payment_processingObject

Returns the value of attribute allow_payment_processing.



327
328
329
# File 'lib/docusign_esign/models/account_settings_information.rb', line 327

def allow_payment_processing
  @allow_payment_processing
end

#allow_payment_processing_metadataObject

Returns the value of attribute allow_payment_processing_metadata.



329
330
331
# File 'lib/docusign_esign/models/account_settings_information.rb', line 329

def 
  @allow_payment_processing_metadata
end

#allow_phone_auth_overrideObject

Returns the value of attribute allow_phone_auth_override.



337
338
339
# File 'lib/docusign_esign/models/account_settings_information.rb', line 337

def allow_phone_auth_override
  @allow_phone_auth_override
end

#allow_phone_auth_override_metadataObject

Returns the value of attribute allow_phone_auth_override_metadata.



339
340
341
# File 'lib/docusign_esign/models/account_settings_information.rb', line 339

def 
  @allow_phone_auth_override_metadata
end

#allow_phone_authenticationObject

Returns the value of attribute allow_phone_authentication.



332
333
334
# File 'lib/docusign_esign/models/account_settings_information.rb', line 332

def allow_phone_authentication
  @allow_phone_authentication
end

#allow_phone_authentication_metadataObject

Returns the value of attribute allow_phone_authentication_metadata.



334
335
336
# File 'lib/docusign_esign/models/account_settings_information.rb', line 334

def 
  @allow_phone_authentication_metadata
end

#allow_private_signing_groupsObject

Returns the value of attribute allow_private_signing_groups.



342
343
344
# File 'lib/docusign_esign/models/account_settings_information.rb', line 342

def allow_private_signing_groups
  @allow_private_signing_groups
end

#allow_private_signing_groups_metadataObject

Returns the value of attribute allow_private_signing_groups_metadata.



344
345
346
# File 'lib/docusign_esign/models/account_settings_information.rb', line 344

def 
  @allow_private_signing_groups_metadata
end

#allow_recipient_connectObject

Returns the value of attribute allow_recipient_connect.



347
348
349
# File 'lib/docusign_esign/models/account_settings_information.rb', line 347

def allow_recipient_connect
  @allow_recipient_connect
end

#allow_recipient_connect_metadataObject

Returns the value of attribute allow_recipient_connect_metadata.



349
350
351
# File 'lib/docusign_esign/models/account_settings_information.rb', line 349

def 
  @allow_recipient_connect_metadata
end

#allow_remindersObject

Returns the value of attribute allow_reminders.



352
353
354
# File 'lib/docusign_esign/models/account_settings_information.rb', line 352

def allow_reminders
  @allow_reminders
end

#allow_reminders_metadataObject

Returns the value of attribute allow_reminders_metadata.



354
355
356
# File 'lib/docusign_esign/models/account_settings_information.rb', line 354

def 
  @allow_reminders_metadata
end

#allow_remote_notaryObject

Returns the value of attribute allow_remote_notary.



357
358
359
# File 'lib/docusign_esign/models/account_settings_information.rb', line 357

def allow_remote_notary
  @allow_remote_notary
end

#allow_remote_notary_metadataObject

Returns the value of attribute allow_remote_notary_metadata.



359
360
361
# File 'lib/docusign_esign/models/account_settings_information.rb', line 359

def 
  @allow_remote_notary_metadata
end

#allow_resource_file_brandingObject

Returns the value of attribute allow_resource_file_branding.



362
363
364
# File 'lib/docusign_esign/models/account_settings_information.rb', line 362

def allow_resource_file_branding
  @allow_resource_file_branding
end

#allow_resource_file_branding_metadataObject

Returns the value of attribute allow_resource_file_branding_metadata.



364
365
366
# File 'lib/docusign_esign/models/account_settings_information.rb', line 364

def 
  @allow_resource_file_branding_metadata
end

#allow_safe_bio_pharma_signer_certificateObject

Returns the value of attribute allow_safe_bio_pharma_signer_certificate.



367
368
369
# File 'lib/docusign_esign/models/account_settings_information.rb', line 367

def allow_safe_bio_pharma_signer_certificate
  @allow_safe_bio_pharma_signer_certificate
end

#allow_safe_bio_pharma_signer_certificate_metadataObject

Returns the value of attribute allow_safe_bio_pharma_signer_certificate_metadata.



369
370
371
# File 'lib/docusign_esign/models/account_settings_information.rb', line 369

def 
  @allow_safe_bio_pharma_signer_certificate_metadata
end

#allow_scheduled_sendingObject

"true" if the account has permission to use the scheduled sending feature to send envelopes at a specified datetime in the future, "false" otherwise.



372
373
374
# File 'lib/docusign_esign/models/account_settings_information.rb', line 372

def allow_scheduled_sending
  @allow_scheduled_sending
end

#allow_scheduled_sending_metadataObject

Returns the value of attribute allow_scheduled_sending_metadata.



374
375
376
# File 'lib/docusign_esign/models/account_settings_information.rb', line 374

def 
  @allow_scheduled_sending_metadata
end

#allow_security_applianceObject

Returns the value of attribute allow_security_appliance.



377
378
379
# File 'lib/docusign_esign/models/account_settings_information.rb', line 377

def allow_security_appliance
  @allow_security_appliance
end

#allow_security_appliance_metadataObject

Returns the value of attribute allow_security_appliance_metadata.



379
380
381
# File 'lib/docusign_esign/models/account_settings_information.rb', line 379

def 
  @allow_security_appliance_metadata
end

#allow_send_to_certified_deliveryObject

Returns the value of attribute allow_send_to_certified_delivery.



387
388
389
# File 'lib/docusign_esign/models/account_settings_information.rb', line 387

def allow_send_to_certified_delivery
  @allow_send_to_certified_delivery
end

#allow_send_to_certified_delivery_metadataObject

Returns the value of attribute allow_send_to_certified_delivery_metadata.



389
390
391
# File 'lib/docusign_esign/models/account_settings_information.rb', line 389

def 
  @allow_send_to_certified_delivery_metadata
end

#allow_send_to_intermediaryObject

Returns the value of attribute allow_send_to_intermediary.



392
393
394
# File 'lib/docusign_esign/models/account_settings_information.rb', line 392

def allow_send_to_intermediary
  @allow_send_to_intermediary
end

#allow_send_to_intermediary_metadataObject

Returns the value of attribute allow_send_to_intermediary_metadata.



394
395
396
# File 'lib/docusign_esign/models/account_settings_information.rb', line 394

def 
  @allow_send_to_intermediary_metadata
end

#allow_sending_envelopes_on_behalf_of_othersObject

Returns the value of attribute allow_sending_envelopes_on_behalf_of_others.



382
383
384
# File 'lib/docusign_esign/models/account_settings_information.rb', line 382

def allow_sending_envelopes_on_behalf_of_others
  @allow_sending_envelopes_on_behalf_of_others
end

#allow_sending_envelopes_on_behalf_of_others_metadataObject

Returns the value of attribute allow_sending_envelopes_on_behalf_of_others_metadata.



384
385
386
# File 'lib/docusign_esign/models/account_settings_information.rb', line 384

def 
  @allow_sending_envelopes_on_behalf_of_others_metadata
end

#allow_server_templatesObject

Returns the value of attribute allow_server_templates.



397
398
399
# File 'lib/docusign_esign/models/account_settings_information.rb', line 397

def allow_server_templates
  @allow_server_templates
end

#allow_server_templates_metadataObject

Returns the value of attribute allow_server_templates_metadata.



399
400
401
# File 'lib/docusign_esign/models/account_settings_information.rb', line 399

def 
  @allow_server_templates_metadata
end

#allow_set_embedded_recipient_start_urlObject

Returns the value of attribute allow_set_embedded_recipient_start_url.



402
403
404
# File 'lib/docusign_esign/models/account_settings_information.rb', line 402

def allow_set_embedded_recipient_start_url
  @allow_set_embedded_recipient_start_url
end

#allow_set_embedded_recipient_start_url_metadataObject

Returns the value of attribute allow_set_embedded_recipient_start_url_metadata.



404
405
406
# File 'lib/docusign_esign/models/account_settings_information.rb', line 404

def 
  @allow_set_embedded_recipient_start_url_metadata
end

#allow_shared_tabsObject

Returns the value of attribute allow_shared_tabs.



407
408
409
# File 'lib/docusign_esign/models/account_settings_information.rb', line 407

def allow_shared_tabs
  @allow_shared_tabs
end

#allow_shared_tabs_metadataObject

Returns the value of attribute allow_shared_tabs_metadata.



409
410
411
# File 'lib/docusign_esign/models/account_settings_information.rb', line 409

def 
  @allow_shared_tabs_metadata
end

#allow_sign_document_from_home_pageObject

Returns the value of attribute allow_sign_document_from_home_page.



417
418
419
# File 'lib/docusign_esign/models/account_settings_information.rb', line 417

def allow_sign_document_from_home_page
  @allow_sign_document_from_home_page
end

#allow_sign_document_from_home_page_metadataObject

Returns the value of attribute allow_sign_document_from_home_page_metadata.



419
420
421
# File 'lib/docusign_esign/models/account_settings_information.rb', line 419

def 
  @allow_sign_document_from_home_page_metadata
end

#allow_sign_nowObject

Returns the value of attribute allow_sign_now.



452
453
454
# File 'lib/docusign_esign/models/account_settings_information.rb', line 452

def allow_sign_now
  @allow_sign_now
end

#allow_sign_now_metadataObject

Returns the value of attribute allow_sign_now_metadata.



455
456
457
# File 'lib/docusign_esign/models/account_settings_information.rb', line 455

def 
  @allow_sign_now_metadata
end

#allow_signature_stampsObject

Returns the value of attribute allow_signature_stamps.



412
413
414
# File 'lib/docusign_esign/models/account_settings_information.rb', line 412

def allow_signature_stamps
  @allow_signature_stamps
end

#allow_signature_stamps_metadataObject

Returns the value of attribute allow_signature_stamps_metadata.



414
415
416
# File 'lib/docusign_esign/models/account_settings_information.rb', line 414

def 
  @allow_signature_stamps_metadata
end

#allow_signer_reassignObject

Returns the value of attribute allow_signer_reassign.



422
423
424
# File 'lib/docusign_esign/models/account_settings_information.rb', line 422

def allow_signer_reassign
  @allow_signer_reassign
end

#allow_signer_reassign_metadataObject

Returns the value of attribute allow_signer_reassign_metadata.



424
425
426
# File 'lib/docusign_esign/models/account_settings_information.rb', line 424

def 
  @allow_signer_reassign_metadata
end

#allow_signer_reassign_overrideObject

Returns the value of attribute allow_signer_reassign_override.



427
428
429
# File 'lib/docusign_esign/models/account_settings_information.rb', line 427

def allow_signer_reassign_override
  @allow_signer_reassign_override
end

#allow_signer_reassign_override_metadataObject

Returns the value of attribute allow_signer_reassign_override_metadata.



429
430
431
# File 'lib/docusign_esign/models/account_settings_information.rb', line 429

def 
  @allow_signer_reassign_override_metadata
end

#allow_signing_extensionsObject

Returns the value of attribute allow_signing_extensions.



432
433
434
# File 'lib/docusign_esign/models/account_settings_information.rb', line 432

def allow_signing_extensions
  @allow_signing_extensions
end

#allow_signing_extensions_metadataObject

Returns the value of attribute allow_signing_extensions_metadata.



434
435
436
# File 'lib/docusign_esign/models/account_settings_information.rb', line 434

def 
  @allow_signing_extensions_metadata
end

#allow_signing_groupsObject

Returns the value of attribute allow_signing_groups.



437
438
439
# File 'lib/docusign_esign/models/account_settings_information.rb', line 437

def allow_signing_groups
  @allow_signing_groups
end

#allow_signing_groups_metadataObject

Returns the value of attribute allow_signing_groups_metadata.



439
440
441
# File 'lib/docusign_esign/models/account_settings_information.rb', line 439

def 
  @allow_signing_groups_metadata
end

#allow_signing_insightsObject

Returns the value of attribute allow_signing_insights.



442
443
444
# File 'lib/docusign_esign/models/account_settings_information.rb', line 442

def allow_signing_insights
  @allow_signing_insights
end

#allow_signing_insights_metadataObject

Returns the value of attribute allow_signing_insights_metadata.



444
445
446
# File 'lib/docusign_esign/models/account_settings_information.rb', line 444

def 
  @allow_signing_insights_metadata
end

#allow_signing_radio_deselectObject

Returns the value of attribute allow_signing_radio_deselect.



447
448
449
# File 'lib/docusign_esign/models/account_settings_information.rb', line 447

def allow_signing_radio_deselect
  @allow_signing_radio_deselect
end

#allow_signing_radio_deselect_metadataObject

Returns the value of attribute allow_signing_radio_deselect_metadata.



449
450
451
# File 'lib/docusign_esign/models/account_settings_information.rb', line 449

def 
  @allow_signing_radio_deselect_metadata
end

#allow_sms_deliveryObject

Returns the value of attribute allow_sms_delivery.



458
459
460
# File 'lib/docusign_esign/models/account_settings_information.rb', line 458

def allow_sms_delivery
  @allow_sms_delivery
end

#allow_sms_delivery_metadataObject

Returns the value of attribute allow_sms_delivery_metadata.



460
461
462
# File 'lib/docusign_esign/models/account_settings_information.rb', line 460

def 
  @allow_sms_delivery_metadata
end

#allow_social_id_loginObject

Returns the value of attribute allow_social_id_login.



463
464
465
# File 'lib/docusign_esign/models/account_settings_information.rb', line 463

def 
  @allow_social_id_login
end

#allow_social_id_login_metadataObject

Returns the value of attribute allow_social_id_login_metadata.



465
466
467
# File 'lib/docusign_esign/models/account_settings_information.rb', line 465

def 
  @allow_social_id_login_metadata
end

#allow_supplemental_documentsObject

Returns the value of attribute allow_supplemental_documents.



468
469
470
# File 'lib/docusign_esign/models/account_settings_information.rb', line 468

def allow_supplemental_documents
  @allow_supplemental_documents
end

#allow_supplemental_documents_metadataObject

Returns the value of attribute allow_supplemental_documents_metadata.



470
471
472
# File 'lib/docusign_esign/models/account_settings_information.rb', line 470

def 
  @allow_supplemental_documents_metadata
end

#allow_third_party_electronic_notaryObject

Returns the value of attribute allow_third_party_electronic_notary.



473
474
475
# File 'lib/docusign_esign/models/account_settings_information.rb', line 473

def allow_third_party_electronic_notary
  @allow_third_party_electronic_notary
end

#allow_third_party_electronic_notary_metadataObject

Returns the value of attribute allow_third_party_electronic_notary_metadata.



475
476
477
# File 'lib/docusign_esign/models/account_settings_information.rb', line 475

def 
  @allow_third_party_electronic_notary_metadata
end

#allow_users_to_access_directoryObject

Returns the value of attribute allow_users_to_access_directory.



478
479
480
# File 'lib/docusign_esign/models/account_settings_information.rb', line 478

def allow_users_to_access_directory
  @allow_users_to_access_directory
end

#allow_users_to_access_directory_metadataObject

Returns the value of attribute allow_users_to_access_directory_metadata.



480
481
482
# File 'lib/docusign_esign/models/account_settings_information.rb', line 480

def 
  @allow_users_to_access_directory_metadata
end

#allow_value_insightsObject

Returns the value of attribute allow_value_insights.



483
484
485
# File 'lib/docusign_esign/models/account_settings_information.rb', line 483

def allow_value_insights
  @allow_value_insights
end

#allow_value_insights_metadataObject

Returns the value of attribute allow_value_insights_metadata.



485
486
487
# File 'lib/docusign_esign/models/account_settings_information.rb', line 485

def 
  @allow_value_insights_metadata
end

#allow_web_formsObject

Returns the value of attribute allow_web_forms.



488
489
490
# File 'lib/docusign_esign/models/account_settings_information.rb', line 488

def allow_web_forms
  @allow_web_forms
end

#allow_web_forms_metadataObject

Returns the value of attribute allow_web_forms_metadata.



490
491
492
# File 'lib/docusign_esign/models/account_settings_information.rb', line 490

def 
  @allow_web_forms_metadata
end

#anchor_population_scopeObject

Returns the value of attribute anchor_population_scope.



493
494
495
# File 'lib/docusign_esign/models/account_settings_information.rb', line 493

def anchor_population_scope
  @anchor_population_scope
end

#anchor_population_scope_metadataObject

Returns the value of attribute anchor_population_scope_metadata.



495
496
497
# File 'lib/docusign_esign/models/account_settings_information.rb', line 495

def 
  @anchor_population_scope_metadata
end

#anchor_tag_versioned_placement_enabledObject

Returns the value of attribute anchor_tag_versioned_placement_enabled.



498
499
500
# File 'lib/docusign_esign/models/account_settings_information.rb', line 498

def anchor_tag_versioned_placement_enabled
  @anchor_tag_versioned_placement_enabled
end

#anchor_tag_versioned_placement_metadata_enabledObject

Returns the value of attribute anchor_tag_versioned_placement_metadata_enabled.



500
501
502
# File 'lib/docusign_esign/models/account_settings_information.rb', line 500

def 
  @anchor_tag_versioned_placement_metadata_enabled
end

#attach_completed_envelopeObject

Returns the value of attribute attach_completed_envelope.



503
504
505
# File 'lib/docusign_esign/models/account_settings_information.rb', line 503

def attach_completed_envelope
  @attach_completed_envelope
end

#attach_completed_envelope_metadataObject

Returns the value of attribute attach_completed_envelope_metadata.



505
506
507
# File 'lib/docusign_esign/models/account_settings_information.rb', line 505

def 
  @attach_completed_envelope_metadata
end

#authentication_checkObject

Returns the value of attribute authentication_check.



508
509
510
# File 'lib/docusign_esign/models/account_settings_information.rb', line 508

def authentication_check
  @authentication_check
end

#authentication_check_metadataObject

Returns the value of attribute authentication_check_metadata.



510
511
512
# File 'lib/docusign_esign/models/account_settings_information.rb', line 510

def 
  @authentication_check_metadata
end

#auto_nav_ruleObject

Returns the value of attribute auto_nav_rule.



513
514
515
# File 'lib/docusign_esign/models/account_settings_information.rb', line 513

def auto_nav_rule
  @auto_nav_rule
end

#auto_nav_rule_metadataObject

Returns the value of attribute auto_nav_rule_metadata.



515
516
517
# File 'lib/docusign_esign/models/account_settings_information.rb', line 515

def 
  @auto_nav_rule_metadata
end

#auto_provision_signer_accountObject

Returns the value of attribute auto_provision_signer_account.



518
519
520
# File 'lib/docusign_esign/models/account_settings_information.rb', line 518

def 
  @auto_provision_signer_account
end

#auto_provision_signer_account_metadataObject

Returns the value of attribute auto_provision_signer_account_metadata.



520
521
522
# File 'lib/docusign_esign/models/account_settings_information.rb', line 520

def 
  @auto_provision_signer_account_metadata
end

#bcc_email_archiveObject

Returns the value of attribute bcc_email_archive.



523
524
525
# File 'lib/docusign_esign/models/account_settings_information.rb', line 523

def bcc_email_archive
  @bcc_email_archive
end

#bcc_email_archive_metadataObject

Returns the value of attribute bcc_email_archive_metadata.



525
526
527
# File 'lib/docusign_esign/models/account_settings_information.rb', line 525

def 
  @bcc_email_archive_metadata
end

#beta_switch_configurationObject

Returns the value of attribute beta_switch_configuration.



528
529
530
# File 'lib/docusign_esign/models/account_settings_information.rb', line 528

def beta_switch_configuration
  @beta_switch_configuration
end

#beta_switch_configuration_metadataObject

Returns the value of attribute beta_switch_configuration_metadata.



530
531
532
# File 'lib/docusign_esign/models/account_settings_information.rb', line 530

def 
  @beta_switch_configuration_metadata
end

#billing_addressObject

Returns the value of attribute billing_address.



532
533
534
# File 'lib/docusign_esign/models/account_settings_information.rb', line 532

def billing_address
  @billing_address
end

#billing_address_metadataObject

Returns the value of attribute billing_address_metadata.



534
535
536
# File 'lib/docusign_esign/models/account_settings_information.rb', line 534

def 
  @billing_address_metadata
end

#bulk_sendObject

Returns the value of attribute bulk_send.



537
538
539
# File 'lib/docusign_esign/models/account_settings_information.rb', line 537

def bulk_send
  @bulk_send
end

#bulk_send_action_resend_limitObject

Returns the value of attribute bulk_send_action_resend_limit.



540
541
542
# File 'lib/docusign_esign/models/account_settings_information.rb', line 540

def bulk_send_action_resend_limit
  @bulk_send_action_resend_limit
end

#bulk_send_max_copies_in_batchObject

Returns the value of attribute bulk_send_max_copies_in_batch.



543
544
545
# File 'lib/docusign_esign/models/account_settings_information.rb', line 543

def bulk_send_max_copies_in_batch
  @bulk_send_max_copies_in_batch
end

#bulk_send_max_unprocessed_envelopes_countObject

Returns the value of attribute bulk_send_max_unprocessed_envelopes_count.



546
547
548
# File 'lib/docusign_esign/models/account_settings_information.rb', line 546

def bulk_send_max_unprocessed_envelopes_count
  @bulk_send_max_unprocessed_envelopes_count
end

#bulk_send_metadataObject

Returns the value of attribute bulk_send_metadata.



548
549
550
# File 'lib/docusign_esign/models/account_settings_information.rb', line 548

def 
  @bulk_send_metadata
end

#can_self_brand_sendObject

Returns the value of attribute can_self_brand_send.



551
552
553
# File 'lib/docusign_esign/models/account_settings_information.rb', line 551

def can_self_brand_send
  @can_self_brand_send
end

#can_self_brand_send_metadataObject

Returns the value of attribute can_self_brand_send_metadata.



553
554
555
# File 'lib/docusign_esign/models/account_settings_information.rb', line 553

def 
  @can_self_brand_send_metadata
end

#can_self_brand_signObject

Returns the value of attribute can_self_brand_sign.



556
557
558
# File 'lib/docusign_esign/models/account_settings_information.rb', line 556

def can_self_brand_sign
  @can_self_brand_sign
end

#can_self_brand_sign_metadataObject

Returns the value of attribute can_self_brand_sign_metadata.



558
559
560
# File 'lib/docusign_esign/models/account_settings_information.rb', line 558

def 
  @can_self_brand_sign_metadata
end

#can_use_salesforce_o_authObject

Returns the value of attribute can_use_salesforce_o_auth.



561
562
563
# File 'lib/docusign_esign/models/account_settings_information.rb', line 561

def can_use_salesforce_o_auth
  @can_use_salesforce_o_auth
end

#can_use_salesforce_o_auth_metadataObject

Returns the value of attribute can_use_salesforce_o_auth_metadata.



563
564
565
# File 'lib/docusign_esign/models/account_settings_information.rb', line 563

def 
  @can_use_salesforce_o_auth_metadata
end

#capture_voice_recordingObject

Returns the value of attribute capture_voice_recording.



566
567
568
# File 'lib/docusign_esign/models/account_settings_information.rb', line 566

def capture_voice_recording
  @capture_voice_recording
end

#capture_voice_recording_metadataObject

Returns the value of attribute capture_voice_recording_metadata.



568
569
570
# File 'lib/docusign_esign/models/account_settings_information.rb', line 568

def 
  @capture_voice_recording_metadata
end

#cfr21_simplified_signing_enabledObject

Returns the value of attribute cfr21_simplified_signing_enabled.



571
572
573
# File 'lib/docusign_esign/models/account_settings_information.rb', line 571

def cfr21_simplified_signing_enabled
  @cfr21_simplified_signing_enabled
end

#cfr21_simplified_signing_enabled_metadataObject

Returns the value of attribute cfr21_simplified_signing_enabled_metadata.



573
574
575
# File 'lib/docusign_esign/models/account_settings_information.rb', line 573

def 
  @cfr21_simplified_signing_enabled_metadata
end

#cfr_use_wide_imageObject

Returns the value of attribute cfr_use_wide_image.



576
577
578
# File 'lib/docusign_esign/models/account_settings_information.rb', line 576

def cfr_use_wide_image
  @cfr_use_wide_image
end

#cfr_use_wide_image_metadataObject

Returns the value of attribute cfr_use_wide_image_metadata.



578
579
580
# File 'lib/docusign_esign/models/account_settings_information.rb', line 578

def 
  @cfr_use_wide_image_metadata
end

#check_for_multiple_admins_on_accountObject

Returns the value of attribute check_for_multiple_admins_on_account.



581
582
583
# File 'lib/docusign_esign/models/account_settings_information.rb', line 581

def 
  @check_for_multiple_admins_on_account
end

#check_for_multiple_admins_on_account_metadataObject

Returns the value of attribute check_for_multiple_admins_on_account_metadata.



583
584
585
# File 'lib/docusign_esign/models/account_settings_information.rb', line 583

def 
  @check_for_multiple_admins_on_account_metadata
end

#chrome_signature_enabledObject

Returns the value of attribute chrome_signature_enabled.



586
587
588
# File 'lib/docusign_esign/models/account_settings_information.rb', line 586

def chrome_signature_enabled
  @chrome_signature_enabled
end

#chrome_signature_enabled_metadataObject

Returns the value of attribute chrome_signature_enabled_metadata.



588
589
590
# File 'lib/docusign_esign/models/account_settings_information.rb', line 588

def 
  @chrome_signature_enabled_metadata
end

#comment_email_show_message_textObject

Returns the value of attribute comment_email_show_message_text.



591
592
593
# File 'lib/docusign_esign/models/account_settings_information.rb', line 591

def comment_email_show_message_text
  @comment_email_show_message_text
end

#comment_email_show_message_text_metadataObject

Returns the value of attribute comment_email_show_message_text_metadata.



593
594
595
# File 'lib/docusign_esign/models/account_settings_information.rb', line 593

def 
  @comment_email_show_message_text_metadata
end

#comments_allow_envelope_overrideObject

Returns the value of attribute comments_allow_envelope_override.



596
597
598
# File 'lib/docusign_esign/models/account_settings_information.rb', line 596

def comments_allow_envelope_override
  @comments_allow_envelope_override
end

#comments_allow_envelope_override_metadataObject

Returns the value of attribute comments_allow_envelope_override_metadata.



598
599
600
# File 'lib/docusign_esign/models/account_settings_information.rb', line 598

def 
  @comments_allow_envelope_override_metadata
end

#conditional_fields_enabledObject

Returns the value of attribute conditional_fields_enabled.



601
602
603
# File 'lib/docusign_esign/models/account_settings_information.rb', line 601

def conditional_fields_enabled
  @conditional_fields_enabled
end

#conditional_fields_enabled_metadataObject

Returns the value of attribute conditional_fields_enabled_metadata.



603
604
605
# File 'lib/docusign_esign/models/account_settings_information.rb', line 603

def 
  @conditional_fields_enabled_metadata
end

#consumer_disclosure_frequencyObject

Returns the value of attribute consumer_disclosure_frequency.



606
607
608
# File 'lib/docusign_esign/models/account_settings_information.rb', line 606

def consumer_disclosure_frequency
  @consumer_disclosure_frequency
end

#consumer_disclosure_frequency_metadataObject

Returns the value of attribute consumer_disclosure_frequency_metadata.



608
609
610
# File 'lib/docusign_esign/models/account_settings_information.rb', line 608

def 
  @consumer_disclosure_frequency_metadata
end

#convert_pdf_fieldsObject

Returns the value of attribute convert_pdf_fields.



611
612
613
# File 'lib/docusign_esign/models/account_settings_information.rb', line 611

def convert_pdf_fields
  @convert_pdf_fields
end

#convert_pdf_fields_metadataObject

Returns the value of attribute convert_pdf_fields_metadata.



613
614
615
# File 'lib/docusign_esign/models/account_settings_information.rb', line 613

def 
  @convert_pdf_fields_metadata
end

#data_population_scopeObject

Returns the value of attribute data_population_scope.



616
617
618
# File 'lib/docusign_esign/models/account_settings_information.rb', line 616

def data_population_scope
  @data_population_scope
end

#data_population_scope_metadataObject

Returns the value of attribute data_population_scope_metadata.



618
619
620
# File 'lib/docusign_esign/models/account_settings_information.rb', line 618

def 
  @data_population_scope_metadata
end

#disable_auto_template_matchingObject

Returns the value of attribute disable_auto_template_matching.



621
622
623
# File 'lib/docusign_esign/models/account_settings_information.rb', line 621

def disable_auto_template_matching
  @disable_auto_template_matching
end

#disable_auto_template_matching_metadataObject

Returns the value of attribute disable_auto_template_matching_metadata.



623
624
625
# File 'lib/docusign_esign/models/account_settings_information.rb', line 623

def 
  @disable_auto_template_matching_metadata
end

#disable_mobile_appObject

Returns the value of attribute disable_mobile_app.



626
627
628
# File 'lib/docusign_esign/models/account_settings_information.rb', line 626

def disable_mobile_app
  @disable_mobile_app
end

#disable_mobile_app_metadataObject

Returns the value of attribute disable_mobile_app_metadata.



628
629
630
# File 'lib/docusign_esign/models/account_settings_information.rb', line 628

def 
  @disable_mobile_app_metadata
end

#disable_mobile_push_notificationsObject

Returns the value of attribute disable_mobile_push_notifications.



631
632
633
# File 'lib/docusign_esign/models/account_settings_information.rb', line 631

def disable_mobile_push_notifications
  @disable_mobile_push_notifications
end

#disable_mobile_push_notifications_metadataObject

Returns the value of attribute disable_mobile_push_notifications_metadata.



633
634
635
# File 'lib/docusign_esign/models/account_settings_information.rb', line 633

def 
  @disable_mobile_push_notifications_metadata
end

#disable_mobile_sendingObject

Returns the value of attribute disable_mobile_sending.



636
637
638
# File 'lib/docusign_esign/models/account_settings_information.rb', line 636

def disable_mobile_sending
  @disable_mobile_sending
end

#disable_mobile_sending_metadataObject

Returns the value of attribute disable_mobile_sending_metadata.



638
639
640
# File 'lib/docusign_esign/models/account_settings_information.rb', line 638

def 
  @disable_mobile_sending_metadata
end

#disable_multiple_sessionsObject

Returns the value of attribute disable_multiple_sessions.



641
642
643
# File 'lib/docusign_esign/models/account_settings_information.rb', line 641

def disable_multiple_sessions
  @disable_multiple_sessions
end

#disable_multiple_sessions_metadataObject

Returns the value of attribute disable_multiple_sessions_metadata.



643
644
645
# File 'lib/docusign_esign/models/account_settings_information.rb', line 643

def 
  @disable_multiple_sessions_metadata
end

#disable_purge_notifications_for_sender_metadataObject

Returns the value of attribute disable_purge_notifications_for_sender_metadata.



645
646
647
# File 'lib/docusign_esign/models/account_settings_information.rb', line 645

def 
  @disable_purge_notifications_for_sender_metadata
end

#disable_signer_cert_viewObject

Returns the value of attribute disable_signer_cert_view.



648
649
650
# File 'lib/docusign_esign/models/account_settings_information.rb', line 648

def disable_signer_cert_view
  @disable_signer_cert_view
end

#disable_signer_cert_view_metadataObject

Returns the value of attribute disable_signer_cert_view_metadata.



650
651
652
# File 'lib/docusign_esign/models/account_settings_information.rb', line 650

def 
  @disable_signer_cert_view_metadata
end

#disable_signer_history_viewObject

Returns the value of attribute disable_signer_history_view.



653
654
655
# File 'lib/docusign_esign/models/account_settings_information.rb', line 653

def disable_signer_history_view
  @disable_signer_history_view
end

#disable_signer_history_view_metadataObject

Returns the value of attribute disable_signer_history_view_metadata.



655
656
657
# File 'lib/docusign_esign/models/account_settings_information.rb', line 655

def 
  @disable_signer_history_view_metadata
end

#disable_style_signatureObject

Returns the value of attribute disable_style_signature.



658
659
660
# File 'lib/docusign_esign/models/account_settings_information.rb', line 658

def disable_style_signature
  @disable_style_signature
end

#disable_style_signature_metadataObject

Returns the value of attribute disable_style_signature_metadata.



660
661
662
# File 'lib/docusign_esign/models/account_settings_information.rb', line 660

def 
  @disable_style_signature_metadata
end

#disable_upload_signatureObject

Returns the value of attribute disable_upload_signature.



663
664
665
# File 'lib/docusign_esign/models/account_settings_information.rb', line 663

def disable_upload_signature
  @disable_upload_signature
end

#disable_upload_signature_metadataObject

Returns the value of attribute disable_upload_signature_metadata.



665
666
667
# File 'lib/docusign_esign/models/account_settings_information.rb', line 665

def 
  @disable_upload_signature_metadata
end

#disable_user_sharingObject

Returns the value of attribute disable_user_sharing.



668
669
670
# File 'lib/docusign_esign/models/account_settings_information.rb', line 668

def disable_user_sharing
  @disable_user_sharing
end

#disable_user_sharing_metadataObject

Returns the value of attribute disable_user_sharing_metadata.



670
671
672
# File 'lib/docusign_esign/models/account_settings_information.rb', line 670

def 
  @disable_user_sharing_metadata
end

#display_beta_switchObject

Returns the value of attribute display_beta_switch.



673
674
675
# File 'lib/docusign_esign/models/account_settings_information.rb', line 673

def display_beta_switch
  @display_beta_switch
end

#display_beta_switch_metadataObject

Returns the value of attribute display_beta_switch_metadata.



675
676
677
# File 'lib/docusign_esign/models/account_settings_information.rb', line 675

def 
  @display_beta_switch_metadata
end

#document_conversion_restrictionsObject

Returns the value of attribute document_conversion_restrictions.



678
679
680
# File 'lib/docusign_esign/models/account_settings_information.rb', line 678

def document_conversion_restrictions
  @document_conversion_restrictions
end

#document_conversion_restrictions_metadataObject

Returns the value of attribute document_conversion_restrictions_metadata.



680
681
682
# File 'lib/docusign_esign/models/account_settings_information.rb', line 680

def 
  @document_conversion_restrictions_metadata
end

#document_retentionObject

Returns the value of attribute document_retention.



683
684
685
# File 'lib/docusign_esign/models/account_settings_information.rb', line 683

def document_retention
  @document_retention
end

#document_retention_metadataObject

Returns the value of attribute document_retention_metadata.



685
686
687
# File 'lib/docusign_esign/models/account_settings_information.rb', line 685

def 
  @document_retention_metadata
end

#document_retention_purge_tabsObject

Returns the value of attribute document_retention_purge_tabs.



688
689
690
# File 'lib/docusign_esign/models/account_settings_information.rb', line 688

def document_retention_purge_tabs
  @document_retention_purge_tabs
end

#document_visibilityObject

Returns the value of attribute document_visibility.



691
692
693
# File 'lib/docusign_esign/models/account_settings_information.rb', line 691

def document_visibility
  @document_visibility
end

#document_visibility_metadataObject

Returns the value of attribute document_visibility_metadata.



693
694
695
# File 'lib/docusign_esign/models/account_settings_information.rb', line 693

def 
  @document_visibility_metadata
end

#dss_sign_28411_enable_leave_page_prompt_radmin_optionObject

Returns the value of attribute dss_sign_28411_enable_leave_page_prompt_radmin_option.



696
697
698
# File 'lib/docusign_esign/models/account_settings_information.rb', line 696

def dss_sign_28411_enable_leave_page_prompt_radmin_option
  @dss_sign_28411_enable_leave_page_prompt_radmin_option
end

#dss_sign_29182_slide_up_bar_radmin_optionObject

Returns the value of attribute dss_sign_29182_slide_up_bar_radmin_option.



699
700
701
# File 'lib/docusign_esign/models/account_settings_information.rb', line 699

def dss_sign_29182_slide_up_bar_radmin_option
  @dss_sign_29182_slide_up_bar_radmin_option
end

#email_template_versionObject

Returns the value of attribute email_template_version.



702
703
704
# File 'lib/docusign_esign/models/account_settings_information.rb', line 702

def email_template_version
  @email_template_version
end

#email_template_version_metadataObject

Returns the value of attribute email_template_version_metadata.



704
705
706
# File 'lib/docusign_esign/models/account_settings_information.rb', line 704

def 
  @email_template_version_metadata
end

#enable_access_code_generatorObject

Returns the value of attribute enable_access_code_generator.



707
708
709
# File 'lib/docusign_esign/models/account_settings_information.rb', line 707

def enable_access_code_generator
  @enable_access_code_generator
end

#enable_access_code_generator_metadataObject

Returns the value of attribute enable_access_code_generator_metadata.



709
710
711
# File 'lib/docusign_esign/models/account_settings_information.rb', line 709

def 
  @enable_access_code_generator_metadata
end

#enable_advanced_paymentsObject

Returns the value of attribute enable_advanced_payments.



712
713
714
# File 'lib/docusign_esign/models/account_settings_information.rb', line 712

def enable_advanced_payments
  @enable_advanced_payments
end

#enable_advanced_payments_metadataObject

Returns the value of attribute enable_advanced_payments_metadata.



714
715
716
# File 'lib/docusign_esign/models/account_settings_information.rb', line 714

def 
  @enable_advanced_payments_metadata
end

#enable_advanced_power_formsObject

Returns the value of attribute enable_advanced_power_forms.



717
718
719
# File 'lib/docusign_esign/models/account_settings_information.rb', line 717

def enable_advanced_power_forms
  @enable_advanced_power_forms
end

#enable_advanced_power_forms_metadataObject

Returns the value of attribute enable_advanced_power_forms_metadata.



719
720
721
# File 'lib/docusign_esign/models/account_settings_information.rb', line 719

def 
  @enable_advanced_power_forms_metadata
end

#enable_agreement_actions_for_clmObject

Returns the value of attribute enable_agreement_actions_for_clm.



722
723
724
# File 'lib/docusign_esign/models/account_settings_information.rb', line 722

def enable_agreement_actions_for_clm
  @enable_agreement_actions_for_clm
end

#enable_agreement_actions_for_clm_metadataObject

Returns the value of attribute enable_agreement_actions_for_clm_metadata.



724
725
726
# File 'lib/docusign_esign/models/account_settings_information.rb', line 724

def 
  @enable_agreement_actions_for_clm_metadata
end

#enable_agreement_actions_for_e_signObject

Returns the value of attribute enable_agreement_actions_for_e_sign.



727
728
729
# File 'lib/docusign_esign/models/account_settings_information.rb', line 727

def enable_agreement_actions_for_e_sign
  @enable_agreement_actions_for_e_sign
end

#enable_agreement_actions_for_e_sign_metadataObject

Returns the value of attribute enable_agreement_actions_for_e_sign_metadata.



729
730
731
# File 'lib/docusign_esign/models/account_settings_information.rb', line 729

def 
  @enable_agreement_actions_for_e_sign_metadata
end

#enable_auto_navObject

Returns the value of attribute enable_auto_nav.



732
733
734
# File 'lib/docusign_esign/models/account_settings_information.rb', line 732

def enable_auto_nav
  @enable_auto_nav
end

#enable_auto_nav_metadataObject

Returns the value of attribute enable_auto_nav_metadata.



734
735
736
# File 'lib/docusign_esign/models/account_settings_information.rb', line 734

def 
  @enable_auto_nav_metadata
end

Returns the value of attribute enable_bcc_dummy_link.



737
738
739
# File 'lib/docusign_esign/models/account_settings_information.rb', line 737

def enable_bcc_dummy_link
  @enable_bcc_dummy_link
end

Returns the value of attribute enable_bcc_dummy_link_metadata.



739
740
741
# File 'lib/docusign_esign/models/account_settings_information.rb', line 739

def 
  @enable_bcc_dummy_link_metadata
end

#enable_calculated_fieldsObject

Returns the value of attribute enable_calculated_fields.



742
743
744
# File 'lib/docusign_esign/models/account_settings_information.rb', line 742

def enable_calculated_fields
  @enable_calculated_fields
end

#enable_calculated_fields_metadataObject

Returns the value of attribute enable_calculated_fields_metadata.



744
745
746
# File 'lib/docusign_esign/models/account_settings_information.rb', line 744

def 
  @enable_calculated_fields_metadata
end

#enable_clickwrapsObject

Returns the value of attribute enable_clickwraps.



747
748
749
# File 'lib/docusign_esign/models/account_settings_information.rb', line 747

def enable_clickwraps
  @enable_clickwraps
end

#enable_clickwraps_metadataObject

Returns the value of attribute enable_clickwraps_metadata.



749
750
751
# File 'lib/docusign_esign/models/account_settings_information.rb', line 749

def 
  @enable_clickwraps_metadata
end

#enable_combined_pdf_download_for_sbsObject

Returns the value of attribute enable_combined_pdf_download_for_sbs.



752
753
754
# File 'lib/docusign_esign/models/account_settings_information.rb', line 752

def enable_combined_pdf_download_for_sbs
  @enable_combined_pdf_download_for_sbs
end

#enable_comments_history_download_in_signingObject

Returns the value of attribute enable_comments_history_download_in_signing.



755
756
757
# File 'lib/docusign_esign/models/account_settings_information.rb', line 755

def enable_comments_history_download_in_signing
  @enable_comments_history_download_in_signing
end

#enable_comments_history_download_in_signing_metadataObject

Returns the value of attribute enable_comments_history_download_in_signing_metadata.



757
758
759
# File 'lib/docusign_esign/models/account_settings_information.rb', line 757

def 
  @enable_comments_history_download_in_signing_metadata
end

#enable_customer_satisfaction_metric_trackingObject

Returns the value of attribute enable_customer_satisfaction_metric_tracking.



760
761
762
# File 'lib/docusign_esign/models/account_settings_information.rb', line 760

def enable_customer_satisfaction_metric_tracking
  @enable_customer_satisfaction_metric_tracking
end

#enable_customer_satisfaction_metric_tracking_metadataObject

Returns the value of attribute enable_customer_satisfaction_metric_tracking_metadata.



762
763
764
# File 'lib/docusign_esign/models/account_settings_information.rb', line 762

def 
  @enable_customer_satisfaction_metric_tracking_metadata
end

#enable_ds_proObject

Returns the value of attribute enable_ds_pro.



765
766
767
# File 'lib/docusign_esign/models/account_settings_information.rb', line 765

def enable_ds_pro
  @enable_ds_pro
end

#enable_ds_pro_metadataObject

Returns the value of attribute enable_ds_pro_metadata.



767
768
769
# File 'lib/docusign_esign/models/account_settings_information.rb', line 767

def 
  @enable_ds_pro_metadata
end

#enable_envelope_stamping_by_account_adminObject

Returns the value of attribute enable_envelope_stamping_by_account_admin.



770
771
772
# File 'lib/docusign_esign/models/account_settings_information.rb', line 770

def 
  @enable_envelope_stamping_by_account_admin
end

#enable_envelope_stamping_by_account_admin_metadataObject

Returns the value of attribute enable_envelope_stamping_by_account_admin_metadata.



772
773
774
# File 'lib/docusign_esign/models/account_settings_information.rb', line 772

def 
  @enable_envelope_stamping_by_account_admin_metadata
end

#enable_envelope_stamping_by_ds_adminObject

Returns the value of attribute enable_envelope_stamping_by_ds_admin.



775
776
777
# File 'lib/docusign_esign/models/account_settings_information.rb', line 775

def enable_envelope_stamping_by_ds_admin
  @enable_envelope_stamping_by_ds_admin
end

#enable_envelope_stamping_by_ds_admin_metadataObject

Returns the value of attribute enable_envelope_stamping_by_ds_admin_metadata.



777
778
779
# File 'lib/docusign_esign/models/account_settings_information.rb', line 777

def 
  @enable_envelope_stamping_by_ds_admin_metadata
end

#enable_esign_communitiesObject

Returns the value of attribute enable_esign_communities.



780
781
782
# File 'lib/docusign_esign/models/account_settings_information.rb', line 780

def enable_esign_communities
  @enable_esign_communities
end

#enable_esign_communities_metadataObject

Returns the value of attribute enable_esign_communities_metadata.



782
783
784
# File 'lib/docusign_esign/models/account_settings_information.rb', line 782

def 
  @enable_esign_communities_metadata
end

#enable_id_fx_accountless_sms_auth_for_part11Object

Returns the value of attribute enable_id_fx_accountless_sms_auth_for_part11.



785
786
787
# File 'lib/docusign_esign/models/account_settings_information.rb', line 785

def enable_id_fx_accountless_sms_auth_for_part11
  @enable_id_fx_accountless_sms_auth_for_part11
end

#enable_id_fx_accountless_sms_auth_for_part11_metadataObject

Returns the value of attribute enable_id_fx_accountless_sms_auth_for_part11_metadata.



787
788
789
# File 'lib/docusign_esign/models/account_settings_information.rb', line 787

def 
  @enable_id_fx_accountless_sms_auth_for_part11_metadata
end

#enable_id_fx_intuit_kbaObject

Returns the value of attribute enable_id_fx_intuit_kba.



790
791
792
# File 'lib/docusign_esign/models/account_settings_information.rb', line 790

def enable_id_fx_intuit_kba
  @enable_id_fx_intuit_kba
end

#enable_id_fx_intuit_kba_metadataObject

Returns the value of attribute enable_id_fx_intuit_kba_metadata.



792
793
794
# File 'lib/docusign_esign/models/account_settings_information.rb', line 792

def 
  @enable_id_fx_intuit_kba_metadata
end

#enable_id_fx_phone_authenticationObject

Returns the value of attribute enable_id_fx_phone_authentication.



795
796
797
# File 'lib/docusign_esign/models/account_settings_information.rb', line 795

def enable_id_fx_phone_authentication
  @enable_id_fx_phone_authentication
end

#enable_id_fx_phone_authentication_metadataObject

Returns the value of attribute enable_id_fx_phone_authentication_metadata.



797
798
799
# File 'lib/docusign_esign/models/account_settings_information.rb', line 797

def 
  @enable_id_fx_phone_authentication_metadata
end

#enable_in_browser_editorObject

Returns the value of attribute enable_in_browser_editor.



800
801
802
# File 'lib/docusign_esign/models/account_settings_information.rb', line 800

def enable_in_browser_editor
  @enable_in_browser_editor
end

#enable_in_browser_editor_metadataObject

Returns the value of attribute enable_in_browser_editor_metadata.



802
803
804
# File 'lib/docusign_esign/models/account_settings_information.rb', line 802

def 
  @enable_in_browser_editor_metadata
end

#enable_key_terms_suggestions_by_document_typeObject

Returns the value of attribute enable_key_terms_suggestions_by_document_type.



805
806
807
# File 'lib/docusign_esign/models/account_settings_information.rb', line 805

def enable_key_terms_suggestions_by_document_type
  @enable_key_terms_suggestions_by_document_type
end

#enable_key_terms_suggestions_by_document_type_metadataObject

Returns the value of attribute enable_key_terms_suggestions_by_document_type_metadata.



807
808
809
# File 'lib/docusign_esign/models/account_settings_information.rb', line 807

def 
  @enable_key_terms_suggestions_by_document_type_metadata
end

#enable_payment_processingObject

Returns the value of attribute enable_payment_processing.



810
811
812
# File 'lib/docusign_esign/models/account_settings_information.rb', line 810

def enable_payment_processing
  @enable_payment_processing
end

#enable_payment_processing_metadataObject

Returns the value of attribute enable_payment_processing_metadata.



812
813
814
# File 'lib/docusign_esign/models/account_settings_information.rb', line 812

def 
  @enable_payment_processing_metadata
end

#enable_pdfa_conversionObject

Returns the value of attribute enable_pdfa_conversion.



815
816
817
# File 'lib/docusign_esign/models/account_settings_information.rb', line 815

def enable_pdfa_conversion
  @enable_pdfa_conversion
end

#enable_pdfa_conversion_metadataObject

Returns the value of attribute enable_pdfa_conversion_metadata.



817
818
819
# File 'lib/docusign_esign/models/account_settings_information.rb', line 817

def 
  @enable_pdfa_conversion_metadata
end

#enable_power_formObject

Returns the value of attribute enable_power_form.



820
821
822
# File 'lib/docusign_esign/models/account_settings_information.rb', line 820

def enable_power_form
  @enable_power_form
end

#enable_power_form_directObject

Returns the value of attribute enable_power_form_direct.



823
824
825
# File 'lib/docusign_esign/models/account_settings_information.rb', line 823

def enable_power_form_direct
  @enable_power_form_direct
end

#enable_power_form_direct_metadataObject

Returns the value of attribute enable_power_form_direct_metadata.



825
826
827
# File 'lib/docusign_esign/models/account_settings_information.rb', line 825

def 
  @enable_power_form_direct_metadata
end

#enable_power_form_metadataObject

Returns the value of attribute enable_power_form_metadata.



827
828
829
# File 'lib/docusign_esign/models/account_settings_information.rb', line 827

def 
  @enable_power_form_metadata
end

#enable_recipient_domain_validationObject

Returns the value of attribute enable_recipient_domain_validation.



830
831
832
# File 'lib/docusign_esign/models/account_settings_information.rb', line 830

def enable_recipient_domain_validation
  @enable_recipient_domain_validation
end

#enable_recipient_domain_validation_metadataObject

Returns the value of attribute enable_recipient_domain_validation_metadata.



832
833
834
# File 'lib/docusign_esign/models/account_settings_information.rb', line 832

def 
  @enable_recipient_domain_validation_metadata
end

#enable_recipient_may_provide_phone_numberObject

Returns the value of attribute enable_recipient_may_provide_phone_number.



835
836
837
# File 'lib/docusign_esign/models/account_settings_information.rb', line 835

def enable_recipient_may_provide_phone_number
  @enable_recipient_may_provide_phone_number
end

#enable_recipient_may_provide_phone_number_metadataObject

Returns the value of attribute enable_recipient_may_provide_phone_number_metadata.



837
838
839
# File 'lib/docusign_esign/models/account_settings_information.rb', line 837

def 
  @enable_recipient_may_provide_phone_number_metadata
end

Returns the value of attribute enable_report_links.



840
841
842
# File 'lib/docusign_esign/models/account_settings_information.rb', line 840

def enable_report_links
  @enable_report_links
end

Returns the value of attribute enable_report_links_metadata.



842
843
844
# File 'lib/docusign_esign/models/account_settings_information.rb', line 842

def 
  @enable_report_links_metadata
end

#enable_require_sign_on_paperObject

Returns the value of attribute enable_require_sign_on_paper.



845
846
847
# File 'lib/docusign_esign/models/account_settings_information.rb', line 845

def enable_require_sign_on_paper
  @enable_require_sign_on_paper
end

#enable_require_sign_on_paper_metadataObject

Returns the value of attribute enable_require_sign_on_paper_metadata.



847
848
849
# File 'lib/docusign_esign/models/account_settings_information.rb', line 847

def 
  @enable_require_sign_on_paper_metadata
end

#enable_reserved_domainObject

Returns the value of attribute enable_reserved_domain.



850
851
852
# File 'lib/docusign_esign/models/account_settings_information.rb', line 850

def enable_reserved_domain
  @enable_reserved_domain
end

#enable_reserved_domain_metadataObject

Returns the value of attribute enable_reserved_domain_metadata.



852
853
854
# File 'lib/docusign_esign/models/account_settings_information.rb', line 852

def 
  @enable_reserved_domain_metadata
end

#enable_responsive_signingObject

Returns the value of attribute enable_responsive_signing.



855
856
857
# File 'lib/docusign_esign/models/account_settings_information.rb', line 855

def enable_responsive_signing
  @enable_responsive_signing
end

#enable_responsive_signing_metadataObject

Returns the value of attribute enable_responsive_signing_metadata.



857
858
859
# File 'lib/docusign_esign/models/account_settings_information.rb', line 857

def 
  @enable_responsive_signing_metadata
end

#enable_scheduled_releaseObject

Returns the value of attribute enable_scheduled_release.



860
861
862
# File 'lib/docusign_esign/models/account_settings_information.rb', line 860

def enable_scheduled_release
  @enable_scheduled_release
end

#enable_scheduled_release_metadataObject

Returns the value of attribute enable_scheduled_release_metadata.



862
863
864
# File 'lib/docusign_esign/models/account_settings_information.rb', line 862

def 
  @enable_scheduled_release_metadata
end

#enable_searchObject

Returns the value of attribute enable_search.



865
866
867
# File 'lib/docusign_esign/models/account_settings_information.rb', line 865

def enable_search
  @enable_search
end

#enable_search_metadataObject

Returns the value of attribute enable_search_metadata.



867
868
869
# File 'lib/docusign_esign/models/account_settings_information.rb', line 867

def 
  @enable_search_metadata
end

#enable_search_site_specific_apiObject

Returns the value of attribute enable_search_site_specific_api.



870
871
872
# File 'lib/docusign_esign/models/account_settings_information.rb', line 870

def enable_search_site_specific_api
  @enable_search_site_specific_api
end

#enable_search_site_specific_api_metadataObject

Returns the value of attribute enable_search_site_specific_api_metadata.



872
873
874
# File 'lib/docusign_esign/models/account_settings_information.rb', line 872

def 
  @enable_search_site_specific_api_metadata
end

#enable_search_uiObject

Returns the value of attribute enable_search_ui.



875
876
877
# File 'lib/docusign_esign/models/account_settings_information.rb', line 875

def enable_search_ui
  @enable_search_ui
end

#enable_search_ui_metadataObject

Returns the value of attribute enable_search_ui_metadata.



877
878
879
# File 'lib/docusign_esign/models/account_settings_information.rb', line 877

def 
  @enable_search_ui_metadata
end

#enable_send_to_agentObject

Returns the value of attribute enable_send_to_agent.



885
886
887
# File 'lib/docusign_esign/models/account_settings_information.rb', line 885

def enable_send_to_agent
  @enable_send_to_agent
end

#enable_send_to_agent_metadataObject

Returns the value of attribute enable_send_to_agent_metadata.



887
888
889
# File 'lib/docusign_esign/models/account_settings_information.rb', line 887

def 
  @enable_send_to_agent_metadata
end

#enable_send_to_intermediaryObject

Returns the value of attribute enable_send_to_intermediary.



890
891
892
# File 'lib/docusign_esign/models/account_settings_information.rb', line 890

def enable_send_to_intermediary
  @enable_send_to_intermediary
end

#enable_send_to_intermediary_metadataObject

Returns the value of attribute enable_send_to_intermediary_metadata.



892
893
894
# File 'lib/docusign_esign/models/account_settings_information.rb', line 892

def 
  @enable_send_to_intermediary_metadata
end

#enable_send_to_manageObject

Returns the value of attribute enable_send_to_manage.



895
896
897
# File 'lib/docusign_esign/models/account_settings_information.rb', line 895

def enable_send_to_manage
  @enable_send_to_manage
end

#enable_send_to_manage_metadataObject

Returns the value of attribute enable_send_to_manage_metadata.



897
898
899
# File 'lib/docusign_esign/models/account_settings_information.rb', line 897

def 
  @enable_send_to_manage_metadata
end

#enable_sending_tags_font_settingsObject

Returns the value of attribute enable_sending_tags_font_settings.



880
881
882
# File 'lib/docusign_esign/models/account_settings_information.rb', line 880

def enable_sending_tags_font_settings
  @enable_sending_tags_font_settings
end

#enable_sending_tags_font_settings_metadataObject

Returns the value of attribute enable_sending_tags_font_settings_metadata.



882
883
884
# File 'lib/docusign_esign/models/account_settings_information.rb', line 882

def 
  @enable_sending_tags_font_settings_metadata
end

#enable_sequential_signing_apiObject

Returns the value of attribute enable_sequential_signing_api.



900
901
902
# File 'lib/docusign_esign/models/account_settings_information.rb', line 900

def enable_sequential_signing_api
  @enable_sequential_signing_api
end

#enable_sequential_signing_api_metadataObject

Returns the value of attribute enable_sequential_signing_api_metadata.



902
903
904
# File 'lib/docusign_esign/models/account_settings_information.rb', line 902

def 
  @enable_sequential_signing_api_metadata
end

#enable_sequential_signing_uiObject

Returns the value of attribute enable_sequential_signing_ui.



905
906
907
# File 'lib/docusign_esign/models/account_settings_information.rb', line 905

def enable_sequential_signing_ui
  @enable_sequential_signing_ui
end

#enable_sequential_signing_ui_metadataObject

Returns the value of attribute enable_sequential_signing_ui_metadata.



907
908
909
# File 'lib/docusign_esign/models/account_settings_information.rb', line 907

def 
  @enable_sequential_signing_ui_metadata
end

#enable_sign_on_paperObject

Returns the value of attribute enable_sign_on_paper.



930
931
932
# File 'lib/docusign_esign/models/account_settings_information.rb', line 930

def enable_sign_on_paper
  @enable_sign_on_paper
end

#enable_sign_on_paper_metadataObject

Returns the value of attribute enable_sign_on_paper_metadata.



932
933
934
# File 'lib/docusign_esign/models/account_settings_information.rb', line 932

def 
  @enable_sign_on_paper_metadata
end

#enable_sign_on_paper_overrideObject

Returns the value of attribute enable_sign_on_paper_override.



935
936
937
# File 'lib/docusign_esign/models/account_settings_information.rb', line 935

def enable_sign_on_paper_override
  @enable_sign_on_paper_override
end

#enable_sign_on_paper_override_metadataObject

Returns the value of attribute enable_sign_on_paper_override_metadata.



937
938
939
# File 'lib/docusign_esign/models/account_settings_information.rb', line 937

def 
  @enable_sign_on_paper_override_metadata
end

#enable_sign_with_notaryObject

Returns the value of attribute enable_sign_with_notary.



940
941
942
# File 'lib/docusign_esign/models/account_settings_information.rb', line 940

def enable_sign_with_notary
  @enable_sign_with_notary
end

#enable_sign_with_notary_metadataObject

Returns the value of attribute enable_sign_with_notary_metadata.



942
943
944
# File 'lib/docusign_esign/models/account_settings_information.rb', line 942

def 
  @enable_sign_with_notary_metadata
end

#enable_signer_attachmentsObject

Returns the value of attribute enable_signer_attachments.



910
911
912
# File 'lib/docusign_esign/models/account_settings_information.rb', line 910

def enable_signer_attachments
  @enable_signer_attachments
end

#enable_signer_attachments_metadataObject

Returns the value of attribute enable_signer_attachments_metadata.



912
913
914
# File 'lib/docusign_esign/models/account_settings_information.rb', line 912

def 
  @enable_signer_attachments_metadata
end

#enable_signing_extension_commentsObject

Returns the value of attribute enable_signing_extension_comments.



915
916
917
# File 'lib/docusign_esign/models/account_settings_information.rb', line 915

def enable_signing_extension_comments
  @enable_signing_extension_comments
end

#enable_signing_extension_comments_metadataObject

Returns the value of attribute enable_signing_extension_comments_metadata.



917
918
919
# File 'lib/docusign_esign/models/account_settings_information.rb', line 917

def 
  @enable_signing_extension_comments_metadata
end

#enable_signing_extension_conversationsObject

Returns the value of attribute enable_signing_extension_conversations.



920
921
922
# File 'lib/docusign_esign/models/account_settings_information.rb', line 920

def enable_signing_extension_conversations
  @enable_signing_extension_conversations
end

#enable_signing_extension_conversations_metadataObject

Returns the value of attribute enable_signing_extension_conversations_metadata.



922
923
924
# File 'lib/docusign_esign/models/account_settings_information.rb', line 922

def 
  @enable_signing_extension_conversations_metadata
end

#enable_signing_order_settings_for_accountObject

Returns the value of attribute enable_signing_order_settings_for_account.



925
926
927
# File 'lib/docusign_esign/models/account_settings_information.rb', line 925

def 
  @enable_signing_order_settings_for_account
end

#enable_signing_order_settings_for_account_metadataObject

Returns the value of attribute enable_signing_order_settings_for_account_metadata.



927
928
929
# File 'lib/docusign_esign/models/account_settings_information.rb', line 927

def 
  @enable_signing_order_settings_for_account_metadata
end

#enable_smart_contractsObject

Returns the value of attribute enable_smart_contracts.



945
946
947
# File 'lib/docusign_esign/models/account_settings_information.rb', line 945

def enable_smart_contracts
  @enable_smart_contracts
end

#enable_smart_contracts_metadataObject

Returns the value of attribute enable_smart_contracts_metadata.



947
948
949
# File 'lib/docusign_esign/models/account_settings_information.rb', line 947

def 
  @enable_smart_contracts_metadata
end

#enable_sms_authenticationObject

Returns the value of attribute enable_sms_authentication.



950
951
952
# File 'lib/docusign_esign/models/account_settings_information.rb', line 950

def enable_sms_authentication
  @enable_sms_authentication
end

#enable_sms_authentication_metadataObject

Returns the value of attribute enable_sms_authentication_metadata.



952
953
954
# File 'lib/docusign_esign/models/account_settings_information.rb', line 952

def 
  @enable_sms_authentication_metadata
end

#enable_sms_delivery_additional_notificationObject

Returns the value of attribute enable_sms_delivery_additional_notification.



955
956
957
# File 'lib/docusign_esign/models/account_settings_information.rb', line 955

def enable_sms_delivery_additional_notification
  @enable_sms_delivery_additional_notification
end

#enable_sms_delivery_additional_notification_metadataObject

Returns the value of attribute enable_sms_delivery_additional_notification_metadata.



957
958
959
# File 'lib/docusign_esign/models/account_settings_information.rb', line 957

def 
  @enable_sms_delivery_additional_notification_metadata
end

#enable_sms_delivery_primaryObject

Returns the value of attribute enable_sms_delivery_primary.



960
961
962
# File 'lib/docusign_esign/models/account_settings_information.rb', line 960

def enable_sms_delivery_primary
  @enable_sms_delivery_primary
end

#enable_social_id_loginObject

Returns the value of attribute enable_social_id_login.



963
964
965
# File 'lib/docusign_esign/models/account_settings_information.rb', line 963

def 
  @enable_social_id_login
end

#enable_social_id_login_metadataObject

Returns the value of attribute enable_social_id_login_metadata.



965
966
967
# File 'lib/docusign_esign/models/account_settings_information.rb', line 965

def 
  @enable_social_id_login_metadata
end

#enable_strike_throughObject

Returns the value of attribute enable_strike_through.



968
969
970
# File 'lib/docusign_esign/models/account_settings_information.rb', line 968

def enable_strike_through
  @enable_strike_through
end

#enable_strike_through_metadataObject

Returns the value of attribute enable_strike_through_metadata.



970
971
972
# File 'lib/docusign_esign/models/account_settings_information.rb', line 970

def 
  @enable_strike_through_metadata
end

#enable_transaction_pointObject

Returns the value of attribute enable_transaction_point.



973
974
975
# File 'lib/docusign_esign/models/account_settings_information.rb', line 973

def enable_transaction_point
  @enable_transaction_point
end

#enable_transaction_point_metadataObject

Returns the value of attribute enable_transaction_point_metadata.



975
976
977
# File 'lib/docusign_esign/models/account_settings_information.rb', line 975

def 
  @enable_transaction_point_metadata
end

#enable_vaultingObject

Returns the value of attribute enable_vaulting.



978
979
980
# File 'lib/docusign_esign/models/account_settings_information.rb', line 978

def enable_vaulting
  @enable_vaulting
end

#enable_vaulting_metadataObject

Returns the value of attribute enable_vaulting_metadata.



980
981
982
# File 'lib/docusign_esign/models/account_settings_information.rb', line 980

def 
  @enable_vaulting_metadata
end

#enable_witnessingObject

Returns the value of attribute enable_witnessing.



983
984
985
# File 'lib/docusign_esign/models/account_settings_information.rb', line 983

def enable_witnessing
  @enable_witnessing
end

#enable_witnessing_metadataObject

Returns the value of attribute enable_witnessing_metadata.



985
986
987
# File 'lib/docusign_esign/models/account_settings_information.rb', line 985

def 
  @enable_witnessing_metadata
end

#enforce_template_name_uniquenessObject

Returns the value of attribute enforce_template_name_uniqueness.



988
989
990
# File 'lib/docusign_esign/models/account_settings_information.rb', line 988

def enforce_template_name_uniqueness
  @enforce_template_name_uniqueness
end

#enforce_template_name_uniqueness_metadataObject

Returns the value of attribute enforce_template_name_uniqueness_metadata.



990
991
992
# File 'lib/docusign_esign/models/account_settings_information.rb', line 990

def 
  @enforce_template_name_uniqueness_metadata
end

#envelope_integration_allowedObject

Returns the value of attribute envelope_integration_allowed.



993
994
995
# File 'lib/docusign_esign/models/account_settings_information.rb', line 993

def envelope_integration_allowed
  @envelope_integration_allowed
end

#envelope_integration_allowed_metadataObject

Returns the value of attribute envelope_integration_allowed_metadata.



995
996
997
# File 'lib/docusign_esign/models/account_settings_information.rb', line 995

def 
  @envelope_integration_allowed_metadata
end

#envelope_integration_enabledObject

Returns the value of attribute envelope_integration_enabled.



998
999
1000
# File 'lib/docusign_esign/models/account_settings_information.rb', line 998

def envelope_integration_enabled
  @envelope_integration_enabled
end

#envelope_integration_enabled_metadataObject

Returns the value of attribute envelope_integration_enabled_metadata.



1000
1001
1002
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1000

def 
  @envelope_integration_enabled_metadata
end

#envelope_stamping_default_valueObject

Returns the value of attribute envelope_stamping_default_value.



1003
1004
1005
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1003

def envelope_stamping_default_value
  @envelope_stamping_default_value
end

#envelope_stamping_default_value_metadataObject

Returns the value of attribute envelope_stamping_default_value_metadata.



1005
1006
1007
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1005

def 
  @envelope_stamping_default_value_metadata
end

#exit_promptObject

Returns the value of attribute exit_prompt.



1008
1009
1010
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1008

def exit_prompt
  @exit_prompt
end

#exit_prompt_metadataObject

Returns the value of attribute exit_prompt_metadata.



1010
1011
1012
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1010

def 
  @exit_prompt_metadata
end

#express_sendObject

Returns the value of attribute express_send.



1013
1014
1015
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1013

def express_send
  @express_send
end

#express_send_allow_tabsObject

Returns the value of attribute express_send_allow_tabs.



1016
1017
1018
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1016

def express_send_allow_tabs
  @express_send_allow_tabs
end

#express_send_allow_tabs_metadataObject

Returns the value of attribute express_send_allow_tabs_metadata.



1018
1019
1020
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1018

def 
  @express_send_allow_tabs_metadata
end

#express_send_metadataObject

Returns the value of attribute express_send_metadata.



1020
1021
1022
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1020

def 
  @express_send_metadata
end

#external_document_sourcesObject

Returns the value of attribute external_document_sources.



1022
1023
1024
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1022

def external_document_sources
  @external_document_sources
end

#external_signature_pad_typeObject

Returns the value of attribute external_signature_pad_type.



1025
1026
1027
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1025

def external_signature_pad_type
  @external_signature_pad_type
end

#external_signature_pad_type_metadataObject

Returns the value of attribute external_signature_pad_type_metadata.



1027
1028
1029
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1027

def 
  @external_signature_pad_type_metadata
end

#fax_out_enabledObject

Returns the value of attribute fax_out_enabled.



1030
1031
1032
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1030

def fax_out_enabled
  @fax_out_enabled
end

#fax_out_enabled_metadataObject

Returns the value of attribute fax_out_enabled_metadata.



1032
1033
1034
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1032

def 
  @fax_out_enabled_metadata
end

#finish_reminderObject

Returns the value of attribute finish_reminder.



1035
1036
1037
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1035

def finish_reminder
  @finish_reminder
end

#finish_reminder_metadataObject

Returns the value of attribute finish_reminder_metadata.



1037
1038
1039
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1037

def 
  @finish_reminder_metadata
end

#guided_forms_html_allowedObject

Returns the value of attribute guided_forms_html_allowed.



1040
1041
1042
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1040

def guided_forms_html_allowed
  @guided_forms_html_allowed
end

#guided_forms_html_allowed_metadataObject

Returns the value of attribute guided_forms_html_allowed_metadata.



1042
1043
1044
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1042

def 
  @guided_forms_html_allowed_metadata
end

#has_recipient_connect_claimed_domainObject

Returns the value of attribute has_recipient_connect_claimed_domain.



1045
1046
1047
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1045

def has_recipient_connect_claimed_domain
  @has_recipient_connect_claimed_domain
end

#hide_account_address_in_co_cObject

Returns the value of attribute hide_account_address_in_co_c.



1048
1049
1050
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1048

def 
  @hide_account_address_in_co_c
end

#hide_account_address_in_co_c_metadataObject

Returns the value of attribute hide_account_address_in_co_c_metadata.



1050
1051
1052
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1050

def 
  @hide_account_address_in_co_c_metadata
end

#hide_pricingObject

Returns the value of attribute hide_pricing.



1053
1054
1055
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1053

def hide_pricing
  @hide_pricing
end

#hide_pricing_metadataObject

Returns the value of attribute hide_pricing_metadata.



1055
1056
1057
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1055

def 
  @hide_pricing_metadata
end

#id_check_configurationsObject

Returns the value of attribute id_check_configurations.



1058
1059
1060
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1058

def id_check_configurations
  @id_check_configurations
end

#id_check_expireObject

Returns the value of attribute id_check_expire.



1061
1062
1063
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1061

def id_check_expire
  @id_check_expire
end

#id_check_expire_daysObject

Returns the value of attribute id_check_expire_days.



1064
1065
1066
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1064

def id_check_expire_days
  @id_check_expire_days
end

#id_check_expire_days_metadataObject

Returns the value of attribute id_check_expire_days_metadata.



1066
1067
1068
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1066

def 
  @id_check_expire_days_metadata
end

#id_check_expire_metadataObject

Returns the value of attribute id_check_expire_metadata.



1068
1069
1070
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1068

def 
  @id_check_expire_metadata
end

#id_check_expire_minutesObject

Returns the value of attribute id_check_expire_minutes.



1071
1072
1073
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1071

def id_check_expire_minutes
  @id_check_expire_minutes
end

#id_check_expire_minutes_metadataObject

Returns the value of attribute id_check_expire_minutes_metadata.



1073
1074
1075
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1073

def 
  @id_check_expire_minutes_metadata
end

#id_check_requiredObject

Returns the value of attribute id_check_required.



1076
1077
1078
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1076

def id_check_required
  @id_check_required
end

#id_check_required_metadataObject

Returns the value of attribute id_check_required_metadata.



1078
1079
1080
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1078

def 
  @id_check_required_metadata
end

#identity_verificationObject

Returns the value of attribute identity_verification.



1081
1082
1083
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1081

def identity_verification
  @identity_verification
end

#identity_verification_metadataObject

Returns the value of attribute identity_verification_metadata.



1083
1084
1085
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1083

def 
  @identity_verification_metadata
end

#idfx_phone_authentication_overrideObject

Returns the value of attribute idfx_phone_authentication_override.



1086
1087
1088
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1086

def idfx_phone_authentication_override
  @idfx_phone_authentication_override
end

#idfx_phone_authentication_override_metadataObject

Returns the value of attribute idfx_phone_authentication_override_metadata.



1088
1089
1090
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1088

def 
  @idfx_phone_authentication_override_metadata
end

#ignore_error_if_anchor_tab_not_foundObject

Returns the value of attribute ignore_error_if_anchor_tab_not_found.



1091
1092
1093
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1091

def ignore_error_if_anchor_tab_not_found
  @ignore_error_if_anchor_tab_not_found
end

#ignore_error_if_anchor_tab_not_found_metadata_enabledObject

Returns the value of attribute ignore_error_if_anchor_tab_not_found_metadata_enabled.



1093
1094
1095
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1093

def 
  @ignore_error_if_anchor_tab_not_found_metadata_enabled
end

#in_person_id_check_questionObject

Returns the value of attribute in_person_id_check_question.



1096
1097
1098
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1096

def in_person_id_check_question
  @in_person_id_check_question
end

#in_person_id_check_question_metadataObject

Returns the value of attribute in_person_id_check_question_metadata.



1098
1099
1100
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1098

def 
  @in_person_id_check_question_metadata
end

#in_person_signing_enabledObject

Returns the value of attribute in_person_signing_enabled.



1101
1102
1103
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1101

def in_person_signing_enabled
  @in_person_signing_enabled
end

#in_person_signing_enabled_metadataObject

Returns the value of attribute in_person_signing_enabled_metadata.



1103
1104
1105
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1103

def 
  @in_person_signing_enabled_metadata
end

#in_session_enabledObject

Returns the value of attribute in_session_enabled.



1106
1107
1108
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1106

def in_session_enabled
  @in_session_enabled
end

#in_session_enabled_metadataObject

Returns the value of attribute in_session_enabled_metadata.



1108
1109
1110
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1108

def 
  @in_session_enabled_metadata
end

#in_session_suppress_emailsObject

Returns the value of attribute in_session_suppress_emails.



1111
1112
1113
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1111

def in_session_suppress_emails
  @in_session_suppress_emails
end

#in_session_suppress_emails_metadataObject

Returns the value of attribute in_session_suppress_emails_metadata.



1113
1114
1115
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1113

def 
  @in_session_suppress_emails_metadata
end

#linked_external_primary_accountsObject

Returns the value of attribute linked_external_primary_accounts.



1116
1117
1118
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1116

def linked_external_primary_accounts
  @linked_external_primary_accounts
end

#max_number_of_custom_stampsObject

Returns the value of attribute max_number_of_custom_stamps.



1129
1130
1131
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1129

def max_number_of_custom_stamps
  @max_number_of_custom_stamps
end

#maximum_signing_groupsObject

Returns the value of attribute maximum_signing_groups.



1119
1120
1121
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1119

def maximum_signing_groups
  @maximum_signing_groups
end

#maximum_signing_groups_metadataObject

Returns the value of attribute maximum_signing_groups_metadata.



1121
1122
1123
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1121

def 
  @maximum_signing_groups_metadata
end

#maximum_users_per_signing_groupObject

Returns the value of attribute maximum_users_per_signing_group.



1124
1125
1126
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1124

def maximum_users_per_signing_group
  @maximum_users_per_signing_group
end

#maximum_users_per_signing_group_metadataObject

Returns the value of attribute maximum_users_per_signing_group_metadata.



1126
1127
1128
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1126

def 
  @maximum_users_per_signing_group_metadata
end

#mobile_session_timeoutObject

Returns the value of attribute mobile_session_timeout.



1132
1133
1134
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1132

def mobile_session_timeout
  @mobile_session_timeout
end

#mobile_session_timeout_metadataObject

Returns the value of attribute mobile_session_timeout_metadata.



1134
1135
1136
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1134

def 
  @mobile_session_timeout_metadata
end

#number_of_active_custom_stampsObject

Returns the value of attribute number_of_active_custom_stamps.



1137
1138
1139
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1137

def number_of_active_custom_stamps
  @number_of_active_custom_stamps
end

#opt_in_mobile_signing_v02Object

Returns the value of attribute opt_in_mobile_signing_v02.



1140
1141
1142
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1140

def opt_in_mobile_signing_v02
  @opt_in_mobile_signing_v02
end

#opt_in_mobile_signing_v02_metadataObject

Returns the value of attribute opt_in_mobile_signing_v02_metadata.



1142
1143
1144
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1142

def 
  @opt_in_mobile_signing_v02_metadata
end

#opt_out_auto_nav_text_and_tab_color_updatesObject

Returns the value of attribute opt_out_auto_nav_text_and_tab_color_updates.



1145
1146
1147
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1145

def opt_out_auto_nav_text_and_tab_color_updates
  @opt_out_auto_nav_text_and_tab_color_updates
end

#opt_out_auto_nav_text_and_tab_color_updates_metadataObject

Returns the value of attribute opt_out_auto_nav_text_and_tab_color_updates_metadata.



1147
1148
1149
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1147

def 
  @opt_out_auto_nav_text_and_tab_color_updates_metadata
end

#opt_out_new_platform_sealObject

Returns the value of attribute opt_out_new_platform_seal.



1150
1151
1152
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1150

def opt_out_new_platform_seal
  @opt_out_new_platform_seal
end

#opt_out_new_platform_seal_platform_metadataObject

Returns the value of attribute opt_out_new_platform_seal_platform_metadata.



1152
1153
1154
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1152

def 
  @opt_out_new_platform_seal_platform_metadata
end

#phone_auth_recipient_may_provide_phone_numberObject

Returns the value of attribute phone_auth_recipient_may_provide_phone_number.



1155
1156
1157
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1155

def phone_auth_recipient_may_provide_phone_number
  @phone_auth_recipient_may_provide_phone_number
end

#phone_auth_recipient_may_provide_phone_number_metadataObject

Returns the value of attribute phone_auth_recipient_may_provide_phone_number_metadata.



1157
1158
1159
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1157

def 
  @phone_auth_recipient_may_provide_phone_number_metadata
end

#pki_sign_downloaded_pdf_docsObject

Returns the value of attribute pki_sign_downloaded_pdf_docs.



1160
1161
1162
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1160

def pki_sign_downloaded_pdf_docs
  @pki_sign_downloaded_pdf_docs
end

#pki_sign_downloaded_pdf_docs_metadataObject

Returns the value of attribute pki_sign_downloaded_pdf_docs_metadata.



1162
1163
1164
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1162

def 
  @pki_sign_downloaded_pdf_docs_metadata
end

#read_only_modeObject

Returns the value of attribute read_only_mode.



1165
1166
1167
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1165

def read_only_mode
  @read_only_mode
end

#read_only_mode_metadataObject

Returns the value of attribute read_only_mode_metadata.



1167
1168
1169
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1167

def 
  @read_only_mode_metadata
end

#recipient_signing_auto_navigation_controlObject

Returns the value of attribute recipient_signing_auto_navigation_control.



1175
1176
1177
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1175

def recipient_signing_auto_navigation_control
  @recipient_signing_auto_navigation_control
end

#recipient_signing_auto_navigation_control_metadataObject

Returns the value of attribute recipient_signing_auto_navigation_control_metadata.



1177
1178
1179
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1177

def 
  @recipient_signing_auto_navigation_control_metadata
end

#recipients_can_sign_offlineObject

Returns the value of attribute recipients_can_sign_offline.



1170
1171
1172
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1170

def recipients_can_sign_offline
  @recipients_can_sign_offline
end

#recipients_can_sign_offline_metadataObject

Returns the value of attribute recipients_can_sign_offline_metadata.



1172
1173
1174
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1172

def 
  @recipients_can_sign_offline_metadata
end

#require21_cf_rpt11_complianceObject

Returns the value of attribute require21_cf_rpt11_compliance.



1180
1181
1182
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1180

def require21_cf_rpt11_compliance
  @require21_cf_rpt11_compliance
end

#require21_cf_rpt11_compliance_metadataObject

Returns the value of attribute require21_cf_rpt11_compliance_metadata.



1182
1183
1184
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1182

def 
  @require21_cf_rpt11_compliance_metadata
end

#require_decline_reasonObject

Returns the value of attribute require_decline_reason.



1185
1186
1187
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1185

def require_decline_reason
  @require_decline_reason
end

#require_decline_reason_metadataObject

Returns the value of attribute require_decline_reason_metadata.



1187
1188
1189
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1187

def 
  @require_decline_reason_metadata
end

#require_external_user_managementObject

Returns the value of attribute require_external_user_management.



1190
1191
1192
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1190

def require_external_user_management
  @require_external_user_management
end

#require_external_user_management_metadataObject

Returns the value of attribute require_external_user_management_metadata.



1192
1193
1194
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1192

def 
  @require_external_user_management_metadata
end

#require_signer_certificate_typeObject

Returns the value of attribute require_signer_certificate_type.



1195
1196
1197
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1195

def require_signer_certificate_type
  @require_signer_certificate_type
end

#require_signer_certificate_type_metadataObject

Returns the value of attribute require_signer_certificate_type_metadata.



1197
1198
1199
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1197

def 
  @require_signer_certificate_type_metadata
end

#rsa_verid_account_nameObject

Returns the value of attribute rsa_verid_account_name.



1200
1201
1202
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1200

def 
  @rsa_verid_account_name
end

#rsa_verid_passwordObject

Returns the value of attribute rsa_verid_password.



1203
1204
1205
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1203

def rsa_verid_password
  @rsa_verid_password
end

#rsa_verid_rulesetObject

Returns the value of attribute rsa_verid_ruleset.



1206
1207
1208
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1206

def rsa_verid_ruleset
  @rsa_verid_ruleset
end

#rsa_verid_user_idObject

Returns the value of attribute rsa_verid_user_id.



1209
1210
1211
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1209

def rsa_verid_user_id
  @rsa_verid_user_id
end

#self_signed_recipient_email_documentObject

Returns the value of attribute self_signed_recipient_email_document.



1212
1213
1214
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1212

def self_signed_recipient_email_document
  @self_signed_recipient_email_document
end

#self_signed_recipient_email_document_metadataObject

Returns the value of attribute self_signed_recipient_email_document_metadata.



1214
1215
1216
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1214

def 
  @self_signed_recipient_email_document_metadata
end

#self_signed_recipient_email_document_user_overrideObject

Returns the value of attribute self_signed_recipient_email_document_user_override.



1217
1218
1219
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1217

def self_signed_recipient_email_document_user_override
  @self_signed_recipient_email_document_user_override
end

#self_signed_recipient_email_document_user_override_metadataObject

Returns the value of attribute self_signed_recipient_email_document_user_override_metadata.



1219
1220
1221
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1219

def 
  @self_signed_recipient_email_document_user_override_metadata
end

#send_lockout_recipient_notificationObject

Returns the value of attribute send_lockout_recipient_notification.



1247
1248
1249
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1247

def send_lockout_recipient_notification
  @send_lockout_recipient_notification
end

#send_lockout_recipient_notification_metadataObject

Returns the value of attribute send_lockout_recipient_notification_metadata.



1249
1250
1251
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1249

def 
  @send_lockout_recipient_notification_metadata
end

#send_to_certified_delivery_enabledObject

Returns the value of attribute send_to_certified_delivery_enabled.



1252
1253
1254
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1252

def send_to_certified_delivery_enabled
  @send_to_certified_delivery_enabled
end

#send_to_certified_delivery_enabled_metadataObject

Returns the value of attribute send_to_certified_delivery_enabled_metadata.



1254
1255
1256
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1254

def 
  @send_to_certified_delivery_enabled_metadata
end

#sender_can_sign_in_each_locationObject

Returns the value of attribute sender_can_sign_in_each_location.



1222
1223
1224
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1222

def 
  @sender_can_sign_in_each_location
end

#sender_can_sign_in_each_location_metadataObject

Returns the value of attribute sender_can_sign_in_each_location_metadata.



1224
1225
1226
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1224

def 
  @sender_can_sign_in_each_location_metadata
end

#sender_must_authenticate_signingObject

Returns the value of attribute sender_must_authenticate_signing.



1227
1228
1229
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1227

def sender_must_authenticate_signing
  @sender_must_authenticate_signing
end

#sender_must_authenticate_signing_metadataObject

Returns the value of attribute sender_must_authenticate_signing_metadata.



1229
1230
1231
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1229

def 
  @sender_must_authenticate_signing_metadata
end

#sending_tags_font_colorObject

Returns the value of attribute sending_tags_font_color.



1232
1233
1234
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1232

def sending_tags_font_color
  @sending_tags_font_color
end

#sending_tags_font_color_metadataObject

Returns the value of attribute sending_tags_font_color_metadata.



1234
1235
1236
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1234

def 
  @sending_tags_font_color_metadata
end

#sending_tags_font_nameObject

Returns the value of attribute sending_tags_font_name.



1237
1238
1239
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1237

def sending_tags_font_name
  @sending_tags_font_name
end

#sending_tags_font_name_metadataObject

Returns the value of attribute sending_tags_font_name_metadata.



1239
1240
1241
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1239

def 
  @sending_tags_font_name_metadata
end

#sending_tags_font_sizeObject

Returns the value of attribute sending_tags_font_size.



1242
1243
1244
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1242

def sending_tags_font_size
  @sending_tags_font_size
end

#sending_tags_font_size_metadataObject

Returns the value of attribute sending_tags_font_size_metadata.



1244
1245
1246
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1244

def 
  @sending_tags_font_size_metadata
end

#session_timeoutObject

Returns the value of attribute session_timeout.



1257
1258
1259
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1257

def session_timeout
  @session_timeout
end

#session_timeout_metadataObject

Returns the value of attribute session_timeout_metadata.



1259
1260
1261
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1259

def 
  @session_timeout_metadata
end

#set_recip_email_langObject

Returns the value of attribute set_recip_email_lang.



1262
1263
1264
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1262

def set_recip_email_lang
  @set_recip_email_lang
end

#set_recip_email_lang_metadataObject

Returns the value of attribute set_recip_email_lang_metadata.



1264
1265
1266
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1264

def 
  @set_recip_email_lang_metadata
end

#set_recip_sign_langObject

Returns the value of attribute set_recip_sign_lang.



1267
1268
1269
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1267

def set_recip_sign_lang
  @set_recip_sign_lang
end

#set_recip_sign_lang_metadataObject

Returns the value of attribute set_recip_sign_lang_metadata.



1269
1270
1271
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1269

def 
  @set_recip_sign_lang_metadata
end

#shared_template_foldersObject

Returns the value of attribute shared_template_folders.



1272
1273
1274
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1272

def shared_template_folders
  @shared_template_folders
end

#shared_template_folders_metadataObject

Returns the value of attribute shared_template_folders_metadata.



1274
1275
1276
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1274

def 
  @shared_template_folders_metadata
end

#show_complete_dialog_in_embedded_sessionObject

Returns the value of attribute show_complete_dialog_in_embedded_session.



1277
1278
1279
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1277

def show_complete_dialog_in_embedded_session
  @show_complete_dialog_in_embedded_session
end

#show_complete_dialog_in_embedded_session_metadataObject

Returns the value of attribute show_complete_dialog_in_embedded_session_metadata.



1279
1280
1281
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1279

def 
  @show_complete_dialog_in_embedded_session_metadata
end

#show_conditional_routing_on_sendObject

Returns the value of attribute show_conditional_routing_on_send.



1282
1283
1284
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1282

def show_conditional_routing_on_send
  @show_conditional_routing_on_send
end

#show_conditional_routing_on_send_metadataObject

Returns the value of attribute show_conditional_routing_on_send_metadata.



1284
1285
1286
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1284

def 
  @show_conditional_routing_on_send_metadata
end

#show_initial_conditional_fieldsObject

Returns the value of attribute show_initial_conditional_fields.



1287
1288
1289
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1287

def show_initial_conditional_fields
  @show_initial_conditional_fields
end

#show_initial_conditional_fields_metadataObject

Returns the value of attribute show_initial_conditional_fields_metadata.



1289
1290
1291
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1289

def 
  @show_initial_conditional_fields_metadata
end

#show_localized_watermarksObject

Returns the value of attribute show_localized_watermarks.



1292
1293
1294
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1292

def show_localized_watermarks
  @show_localized_watermarks
end

#show_localized_watermarks_metadataObject

Returns the value of attribute show_localized_watermarks_metadata.



1294
1295
1296
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1294

def 
  @show_localized_watermarks_metadata
end

#show_masked_fields_when_downloading_document_as_senderObject

Returns the value of attribute show_masked_fields_when_downloading_document_as_sender.



1297
1298
1299
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1297

def show_masked_fields_when_downloading_document_as_sender
  @show_masked_fields_when_downloading_document_as_sender
end

#show_masked_fields_when_downloading_document_as_sender_metadataObject

Returns the value of attribute show_masked_fields_when_downloading_document_as_sender_metadata.



1299
1300
1301
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1299

def 
  @show_masked_fields_when_downloading_document_as_sender_metadata
end

#show_tutorialsObject

Returns the value of attribute show_tutorials.



1302
1303
1304
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1302

def show_tutorials
  @show_tutorials
end

#show_tutorials_metadataObject

Returns the value of attribute show_tutorials_metadata.



1304
1305
1306
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1304

def 
  @show_tutorials_metadata
end

#sign_date_formatObject

Returns the value of attribute sign_date_format.



1312
1313
1314
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1312

def sign_date_format
  @sign_date_format
end

#sign_date_format_metadataObject

Returns the value of attribute sign_date_format_metadata.



1314
1315
1316
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1314

def 
  @sign_date_format_metadata
end

#sign_date_time_account_language_overrideObject

Returns the value of attribute sign_date_time_account_language_override.



1317
1318
1319
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1317

def 
  @sign_date_time_account_language_override
end

#sign_date_time_account_language_override_metadataObject

Returns the value of attribute sign_date_time_account_language_override_metadata.



1319
1320
1321
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1319

def 
  @sign_date_time_account_language_override_metadata
end

#sign_date_time_account_timezone_overrideObject

Returns the value of attribute sign_date_time_account_timezone_override.



1322
1323
1324
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1322

def 
  @sign_date_time_account_timezone_override
end

#sign_date_time_account_timezone_override_metadataObject

Returns the value of attribute sign_date_time_account_timezone_override_metadata.



1324
1325
1326
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1324

def 
  @sign_date_time_account_timezone_override_metadata
end

#sign_time_formatObject

Returns the value of attribute sign_time_format.



1382
1383
1384
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1382

def sign_time_format
  @sign_time_format
end

#sign_time_format_metadataObject

Returns the value of attribute sign_time_format_metadata.



1384
1385
1386
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1384

def 
  @sign_time_format_metadata
end

#sign_time_show_am_pmObject

Returns the value of attribute sign_time_show_am_pm.



1387
1388
1389
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1387

def sign_time_show_am_pm
  @sign_time_show_am_pm
end

#sign_time_show_am_pm_metadataObject

Returns the value of attribute sign_time_show_am_pm_metadata.



1389
1390
1391
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1389

def 
  @sign_time_show_am_pm_metadata
end

#signature_providersObject

Returns the value of attribute signature_providers.



1307
1308
1309
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1307

def signature_providers
  @signature_providers
end

#signature_providers_metadataObject

Returns the value of attribute signature_providers_metadata.



1309
1310
1311
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1309

def 
  @signature_providers_metadata
end

#signer_attach_certificate_to_envelope_pdfObject

Returns the value of attribute signer_attach_certificate_to_envelope_pdf.



1327
1328
1329
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1327

def signer_attach_certificate_to_envelope_pdf
  @signer_attach_certificate_to_envelope_pdf
end

#signer_attach_certificate_to_envelope_pdf_metadataObject

Returns the value of attribute signer_attach_certificate_to_envelope_pdf_metadata.



1329
1330
1331
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1329

def 
  @signer_attach_certificate_to_envelope_pdf_metadata
end

#signer_attach_concatObject

Returns the value of attribute signer_attach_concat.



1332
1333
1334
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1332

def signer_attach_concat
  @signer_attach_concat
end

#signer_attach_concat_metadataObject

Returns the value of attribute signer_attach_concat_metadata.



1334
1335
1336
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1334

def 
  @signer_attach_concat_metadata
end

#signer_can_create_accountObject

Returns the value of attribute signer_can_create_account.



1337
1338
1339
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1337

def 
  @signer_can_create_account
end

#signer_can_create_account_metadataObject

Returns the value of attribute signer_can_create_account_metadata.



1339
1340
1341
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1339

def 
  @signer_can_create_account_metadata
end

#signer_can_sign_on_mobileObject

Returns the value of attribute signer_can_sign_on_mobile.



1342
1343
1344
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1342

def signer_can_sign_on_mobile
  @signer_can_sign_on_mobile
end

#signer_can_sign_on_mobile_metadataObject

Returns the value of attribute signer_can_sign_on_mobile_metadata.



1344
1345
1346
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1344

def 
  @signer_can_sign_on_mobile_metadata
end

#signer_in_session_use_envelope_complete_emailObject

Returns the value of attribute signer_in_session_use_envelope_complete_email.



1347
1348
1349
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1347

def signer_in_session_use_envelope_complete_email
  @signer_in_session_use_envelope_complete_email
end

#signer_in_session_use_envelope_complete_email_metadataObject

Returns the value of attribute signer_in_session_use_envelope_complete_email_metadata.



1349
1350
1351
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1349

def 
  @signer_in_session_use_envelope_complete_email_metadata
end

#signer_login_requirementsObject

Returns the value of attribute signer_login_requirements.



1352
1353
1354
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1352

def 
  @signer_login_requirements
end

#signer_login_requirements_metadataObject

Returns the value of attribute signer_login_requirements_metadata.



1354
1355
1356
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1354

def 
  @signer_login_requirements_metadata
end

#signer_must_have_accountObject

Returns the value of attribute signer_must_have_account.



1357
1358
1359
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1357

def 
  @signer_must_have_account
end

#signer_must_have_account_metadataObject

Returns the value of attribute signer_must_have_account_metadata.



1359
1360
1361
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1359

def 
  @signer_must_have_account_metadata
end

#signer_must_login_to_signObject

Returns the value of attribute signer_must_login_to_sign.



1362
1363
1364
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1362

def 
  @signer_must_login_to_sign
end

#signer_must_login_to_sign_metadataObject

Returns the value of attribute signer_must_login_to_sign_metadata.



1364
1365
1366
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1364

def 
  @signer_must_login_to_sign_metadata
end

#signer_show_secure_field_initial_valuesObject

Returns the value of attribute signer_show_secure_field_initial_values.



1367
1368
1369
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1367

def signer_show_secure_field_initial_values
  @signer_show_secure_field_initial_values
end

#signer_show_secure_field_initial_values_metadataObject

Returns the value of attribute signer_show_secure_field_initial_values_metadata.



1369
1370
1371
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1369

def 
  @signer_show_secure_field_initial_values_metadata
end

#signing_session_timeoutObject

Returns the value of attribute signing_session_timeout.



1372
1373
1374
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1372

def signing_session_timeout
  @signing_session_timeout
end

#signing_session_timeout_metadataObject

Returns the value of attribute signing_session_timeout_metadata.



1374
1375
1376
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1374

def 
  @signing_session_timeout_metadata
end

#signing_ui_versionObject

Returns the value of attribute signing_ui_version.



1377
1378
1379
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1377

def signing_ui_version
  @signing_ui_version
end

#signing_ui_version_metadataObject

Returns the value of attribute signing_ui_version_metadata.



1379
1380
1381
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1379

def 
  @signing_ui_version_metadata
end

#simplified_sending_enabledObject

Returns the value of attribute simplified_sending_enabled.



1392
1393
1394
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1392

def simplified_sending_enabled
  @simplified_sending_enabled
end

#simplified_sending_enabled_metadataObject

Returns the value of attribute simplified_sending_enabled_metadata.



1394
1395
1396
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1394

def 
  @simplified_sending_enabled_metadata
end

#single_sign_on_enabledObject

Returns the value of attribute single_sign_on_enabled.



1397
1398
1399
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1397

def single_sign_on_enabled
  @single_sign_on_enabled
end

#single_sign_on_enabled_metadataObject

Returns the value of attribute single_sign_on_enabled_metadata.



1399
1400
1401
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1399

def 
  @single_sign_on_enabled_metadata
end

#skip_auth_completed_envelopesObject

Returns the value of attribute skip_auth_completed_envelopes.



1402
1403
1404
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1402

def skip_auth_completed_envelopes
  @skip_auth_completed_envelopes
end

#skip_auth_completed_envelopes_metadataObject

Returns the value of attribute skip_auth_completed_envelopes_metadata.



1404
1405
1406
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1404

def 
  @skip_auth_completed_envelopes_metadata
end

#social_id_recip_authObject

Returns the value of attribute social_id_recip_auth.



1407
1408
1409
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1407

def social_id_recip_auth
  @social_id_recip_auth
end

#social_id_recip_auth_metadataObject

Returns the value of attribute social_id_recip_auth_metadata.



1409
1410
1411
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1409

def 
  @social_id_recip_auth_metadata
end

#specify_document_visibilityObject

Returns the value of attribute specify_document_visibility.



1412
1413
1414
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1412

def specify_document_visibility
  @specify_document_visibility
end

#specify_document_visibility_metadataObject

Returns the value of attribute specify_document_visibility_metadata.



1414
1415
1416
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1414

def 
  @specify_document_visibility_metadata
end

#start_in_advanced_correctObject

Returns the value of attribute start_in_advanced_correct.



1417
1418
1419
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1417

def start_in_advanced_correct
  @start_in_advanced_correct
end

#start_in_advanced_correct_metadataObject

Returns the value of attribute start_in_advanced_correct_metadata.



1419
1420
1421
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1419

def 
  @start_in_advanced_correct_metadata
end

#supplemental_documents_must_acceptObject

Returns the value of attribute supplemental_documents_must_accept.



1422
1423
1424
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1422

def supplemental_documents_must_accept
  @supplemental_documents_must_accept
end

#supplemental_documents_must_accept_metadataObject

Returns the value of attribute supplemental_documents_must_accept_metadata.



1424
1425
1426
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1424

def 
  @supplemental_documents_must_accept_metadata
end

#supplemental_documents_must_readObject

Returns the value of attribute supplemental_documents_must_read.



1427
1428
1429
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1427

def supplemental_documents_must_read
  @supplemental_documents_must_read
end

#supplemental_documents_must_read_metadataObject

Returns the value of attribute supplemental_documents_must_read_metadata.



1429
1430
1431
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1429

def 
  @supplemental_documents_must_read_metadata
end

#supplemental_documents_must_viewObject

Returns the value of attribute supplemental_documents_must_view.



1432
1433
1434
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1432

def supplemental_documents_must_view
  @supplemental_documents_must_view
end

#supplemental_documents_must_view_metadataObject

Returns the value of attribute supplemental_documents_must_view_metadata.



1434
1435
1436
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1434

def 
  @supplemental_documents_must_view_metadata
end

#suppress_certificate_enforcementObject

Returns the value of attribute suppress_certificate_enforcement.



1437
1438
1439
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1437

def suppress_certificate_enforcement
  @suppress_certificate_enforcement
end

#suppress_certificate_enforcement_metadataObject

Returns the value of attribute suppress_certificate_enforcement_metadata.



1439
1440
1441
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1439

def 
  @suppress_certificate_enforcement_metadata
end

#tab_account_settingsObject

Returns the value of attribute tab_account_settings.



1441
1442
1443
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1441

def 
  @tab_account_settings
end

#timezone_offset_apiObject

Returns the value of attribute timezone_offset_api.



1444
1445
1446
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1444

def timezone_offset_api
  @timezone_offset_api
end

#timezone_offset_api_metadataObject

Returns the value of attribute timezone_offset_api_metadata.



1446
1447
1448
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1446

def 
  @timezone_offset_api_metadata
end

#timezone_offset_uiObject

Returns the value of attribute timezone_offset_ui.



1449
1450
1451
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1449

def timezone_offset_ui
  @timezone_offset_ui
end

#timezone_offset_ui_metadataObject

Returns the value of attribute timezone_offset_ui_metadata.



1451
1452
1453
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1451

def 
  @timezone_offset_ui_metadata
end

#universal_signature_opt_inObject

Returns the value of attribute universal_signature_opt_in.



1454
1455
1456
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1454

def universal_signature_opt_in
  @universal_signature_opt_in
end

#use_account_level_emailObject

Returns the value of attribute use_account_level_email.



1457
1458
1459
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1457

def 
  @use_account_level_email
end

#use_account_level_email_metadataObject

Returns the value of attribute use_account_level_email_metadata.



1459
1460
1461
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1459

def 
  @use_account_level_email_metadata
end

#use_consumer_disclosureObject

Returns the value of attribute use_consumer_disclosure.



1462
1463
1464
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1462

def use_consumer_disclosure
  @use_consumer_disclosure
end

#use_consumer_disclosure_metadataObject

Returns the value of attribute use_consumer_disclosure_metadata.



1464
1465
1466
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1464

def 
  @use_consumer_disclosure_metadata
end

#use_consumer_disclosure_within_accountObject

Returns the value of attribute use_consumer_disclosure_within_account.



1467
1468
1469
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1467

def 
  @use_consumer_disclosure_within_account
end

#use_consumer_disclosure_within_account_metadataObject

Returns the value of attribute use_consumer_disclosure_within_account_metadata.



1469
1470
1471
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1469

def 
  @use_consumer_disclosure_within_account_metadata
end

#use_derived_keysObject

Returns the value of attribute use_derived_keys.



1472
1473
1474
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1472

def use_derived_keys
  @use_derived_keys
end

#use_derived_keys_metadataObject

Returns the value of attribute use_derived_keys_metadata.



1474
1475
1476
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1474

def 
  @use_derived_keys_metadata
end

#use_docu_sign_express_signer_certificateObject

Returns the value of attribute use_docu_sign_express_signer_certificate.



1477
1478
1479
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1477

def use_docu_sign_express_signer_certificate
  @use_docu_sign_express_signer_certificate
end

#use_docu_sign_express_signer_certificate_metadataObject

Returns the value of attribute use_docu_sign_express_signer_certificate_metadata.



1479
1480
1481
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1479

def 
  @use_docu_sign_express_signer_certificate_metadata
end

#use_multi_app_groups_dataObject

Returns the value of attribute use_multi_app_groups_data.



1482
1483
1484
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1482

def use_multi_app_groups_data
  @use_multi_app_groups_data
end

#use_multi_app_groups_data_metadataObject

Returns the value of attribute use_multi_app_groups_data_metadata.



1484
1485
1486
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1484

def 
  @use_multi_app_groups_data_metadata
end

#use_new_blob_for_pdfObject

Returns the value of attribute use_new_blob_for_pdf.



1487
1488
1489
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1487

def use_new_blob_for_pdf
  @use_new_blob_for_pdf
end

#use_new_blob_for_pdf_metadataObject

Returns the value of attribute use_new_blob_for_pdf_metadata.



1489
1490
1491
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1489

def 
  @use_new_blob_for_pdf_metadata
end

#use_safe_signer_certificatesObject

Returns the value of attribute use_safe_signer_certificates.



1492
1493
1494
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1492

def use_safe_signer_certificates
  @use_safe_signer_certificates
end

#use_safe_signer_certificates_metadataObject

Returns the value of attribute use_safe_signer_certificates_metadata.



1494
1495
1496
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1494

def 
  @use_safe_signer_certificates_metadata
end

#use_signature_provider_platformObject

Returns the value of attribute use_signature_provider_platform.



1502
1503
1504
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1502

def use_signature_provider_platform
  @use_signature_provider_platform
end

#use_signature_provider_platform_metadataObject

Returns the value of attribute use_signature_provider_platform_metadata.



1504
1505
1506
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1504

def 
  @use_signature_provider_platform_metadata
end

#use_smart_contracts_v1Object

Returns the value of attribute use_smart_contracts_v1.



1507
1508
1509
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1507

def use_smart_contracts_v1
  @use_smart_contracts_v1
end

#uses_apiObject

Returns the value of attribute uses_api.



1497
1498
1499
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1497

def uses_api
  @uses_api
end

#uses_api_metadataObject

Returns the value of attribute uses_api_metadata.



1499
1500
1501
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1499

def 
  @uses_api_metadata
end

#validations_allowedObject

Returns the value of attribute validations_allowed.



1510
1511
1512
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1510

def validations_allowed
  @validations_allowed
end

#validations_allowed_metadataObject

Returns the value of attribute validations_allowed_metadata.



1512
1513
1514
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1512

def 
  @validations_allowed_metadata
end

#validations_brandObject

Returns the value of attribute validations_brand.



1515
1516
1517
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1515

def validations_brand
  @validations_brand
end

#validations_brand_metadataObject

Returns the value of attribute validations_brand_metadata.



1517
1518
1519
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1517

def 
  @validations_brand_metadata
end

#validations_cadenceObject

Returns the value of attribute validations_cadence.



1520
1521
1522
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1520

def validations_cadence
  @validations_cadence
end

#validations_cadence_metadataObject

Returns the value of attribute validations_cadence_metadata.



1522
1523
1524
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1522

def 
  @validations_cadence_metadata
end

#validations_enabledObject

Returns the value of attribute validations_enabled.



1525
1526
1527
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1525

def validations_enabled
  @validations_enabled
end

#validations_enabled_metadataObject

Returns the value of attribute validations_enabled_metadata.



1527
1528
1529
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1527

def 
  @validations_enabled_metadata
end

#validations_reportObject

Returns the value of attribute validations_report.



1530
1531
1532
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1530

def validations_report
  @validations_report
end

#validations_report_metadataObject

Returns the value of attribute validations_report_metadata.



1532
1533
1534
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1532

def 
  @validations_report_metadata
end

#water_mark_enabledObject

Returns the value of attribute water_mark_enabled.



1535
1536
1537
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1535

def water_mark_enabled
  @water_mark_enabled
end

#water_mark_enabled_metadataObject

Returns the value of attribute water_mark_enabled_metadata.



1537
1538
1539
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1537

def 
  @water_mark_enabled_metadata
end

#write_reminder_to_envelope_historyObject

Returns the value of attribute write_reminder_to_envelope_history.



1540
1541
1542
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1540

def write_reminder_to_envelope_history
  @write_reminder_to_envelope_history
end

#write_reminder_to_envelope_history_metadataObject

Returns the value of attribute write_reminder_to_envelope_history_metadata.



1542
1543
1544
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1542

def 
  @write_reminder_to_envelope_history_metadata
end

#wurfl_min_allowable_screen_sizeObject

Returns the value of attribute wurfl_min_allowable_screen_size.



1545
1546
1547
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1545

def wurfl_min_allowable_screen_size
  @wurfl_min_allowable_screen_size
end

#wurfl_min_allowable_screen_size_metadataObject

Returns the value of attribute wurfl_min_allowable_screen_size_metadata.



1547
1548
1549
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1547

def 
  @wurfl_min_allowable_screen_size_metadata
end

Class Method Details

.attribute_mapObject

Attribute mapping from ruby-style variable name to JSON key.



1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1550

def self.attribute_map
  {
    :'access_code_format' => :'accessCodeFormat',
    :'account_date_time_format' => :'accountDateTimeFormat',
    :'account_date_time_format_metadata' => :'accountDateTimeFormatMetadata',
    :'account_default_language' => :'accountDefaultLanguage',
    :'account_default_language_metadata' => :'accountDefaultLanguageMetadata',
    :'account_name' => :'accountName',
    :'account_name_metadata' => :'accountNameMetadata',
    :'account_notification' => :'accountNotification',
    :'account_ui_settings' => :'accountUISettings',
    :'adopt_sig_config' => :'adoptSigConfig',
    :'adopt_sig_config_metadata' => :'adoptSigConfigMetadata',
    :'advanced_correct' => :'advancedCorrect',
    :'advanced_correct_metadata' => :'advancedCorrectMetadata',
    :'allow_access_code_format' => :'allowAccessCodeFormat',
    :'allow_access_code_format_metadata' => :'allowAccessCodeFormatMetadata',
    :'allow_account_management_granular' => :'allowAccountManagementGranular',
    :'allow_account_management_granular_metadata' => :'allowAccountManagementGranularMetadata',
    :'allow_account_member_name_change' => :'allowAccountMemberNameChange',
    :'allow_account_member_name_change_metadata' => :'allowAccountMemberNameChangeMetadata',
    :'allow_advanced_recipient_routing_conditional' => :'allowAdvancedRecipientRoutingConditional',
    :'allow_advanced_recipient_routing_conditional_metadata' => :'allowAdvancedRecipientRoutingConditionalMetadata',
    :'allow_agent_name_email_edit' => :'allowAgentNameEmailEdit',
    :'allow_agent_name_email_edit_metadata' => :'allowAgentNameEmailEditMetadata',
    :'allow_agreement_actions' => :'allowAgreementActions',
    :'allow_agreement_actions_metadata' => :'allowAgreementActionsMetadata',
    :'allow_auto_nav_settings' => :'allowAutoNavSettings',
    :'allow_auto_nav_settings_metadata' => :'allowAutoNavSettingsMetadata',
    :'allow_auto_tagging' => :'allowAutoTagging',
    :'allow_auto_tagging_metadata' => :'allowAutoTaggingMetadata',
    :'allow_bulk_send' => :'allowBulkSend',
    :'allow_bulk_send_metadata' => :'allowBulkSendMetadata',
    :'allow_cd_withdraw' => :'allowCDWithdraw',
    :'allow_cd_withdraw_metadata' => :'allowCDWithdrawMetadata',
    :'allow_connect_http_listener_configs' => :'allowConnectHttpListenerConfigs',
    :'allow_connect_send_finish_later' => :'allowConnectSendFinishLater',
    :'allow_connect_send_finish_later_metadata' => :'allowConnectSendFinishLaterMetadata',
    :'allow_connect_unified_payload_ui' => :'allowConnectUnifiedPayloadUI',
    :'allow_consumer_disclosure_override' => :'allowConsumerDisclosureOverride',
    :'allow_consumer_disclosure_override_metadata' => :'allowConsumerDisclosureOverrideMetadata',
    :'allow_data_download' => :'allowDataDownload',
    :'allow_data_download_metadata' => :'allowDataDownloadMetadata',
    :'allow_delayed_routing' => :'allowDelayedRouting',
    :'allow_delayed_routing_metadata' => :'allowDelayedRoutingMetadata',
    :'allow_delegated_signing' => :'allowDelegatedSigning',
    :'allow_delegated_signing_metadata' => :'allowDelegatedSigningMetadata',
    :'allow_document_disclosures' => :'allowDocumentDisclosures',
    :'allow_document_disclosures_metadata' => :'allowDocumentDisclosuresMetadata',
    :'allow_documents_on_signed_envelopes' => :'allowDocumentsOnSignedEnvelopes',
    :'allow_documents_on_signed_envelopes_metadata' => :'allowDocumentsOnSignedEnvelopesMetadata',
    :'allow_document_visibility' => :'allowDocumentVisibility',
    :'allow_document_visibility_metadata' => :'allowDocumentVisibilityMetadata',
    :'allow_e_hanko_stamps' => :'allowEHankoStamps',
    :'allow_e_hanko_stamps_metadata' => :'allowEHankoStampsMetadata',
    :'allow_e_note_e_original' => :'allowENoteEOriginal',
    :'allow_e_note_e_original_metadata' => :'allowENoteEOriginalMetadata',
    :'allow_envelope_correct' => :'allowEnvelopeCorrect',
    :'allow_envelope_correct_metadata' => :'allowEnvelopeCorrectMetadata',
    :'allow_envelope_custody_transfer' => :'allowEnvelopeCustodyTransfer',
    :'allow_envelope_custody_transfer_metadata' => :'allowEnvelopeCustodyTransferMetadata',
    :'allow_envelope_custom_fields' => :'allowEnvelopeCustomFields',
    :'allow_envelope_custom_fields_metadata' => :'allowEnvelopeCustomFieldsMetadata',
    :'allow_envelope_publish_reporting' => :'allowEnvelopePublishReporting',
    :'allow_envelope_publish_reporting_metadata' => :'allowEnvelopePublishReportingMetadata',
    :'allow_envelope_reporting' => :'allowEnvelopeReporting',
    :'allow_envelope_reporting_metadata' => :'allowEnvelopeReportingMetadata',
    :'allow_expression' => :'allowExpression',
    :'allow_expression_metadata' => :'allowExpressionMetadata',
    :'allow_express_signer_certificate' => :'allowExpressSignerCertificate',
    :'allow_express_signer_certificate_metadata' => :'allowExpressSignerCertificateMetadata',
    :'allow_extended_sending_resource_file' => :'allowExtendedSendingResourceFile',
    :'allow_extended_sending_resource_file_metadata' => :'allowExtendedSendingResourceFileMetadata',
    :'allow_external_linked_accounts' => :'allowExternalLinkedAccounts',
    :'allow_external_linked_accounts_metadata' => :'allowExternalLinkedAccountsMetadata',
    :'allow_external_signature_pad' => :'allowExternalSignaturePad',
    :'allow_external_signature_pad_metadata' => :'allowExternalSignaturePadMetadata',
    :'allow_idv_level1' => :'allowIDVLevel1',
    :'allow_idv_level1_metadata' => :'allowIDVLevel1Metadata',
    :'allow_idv_level2' => :'allowIDVLevel2',
    :'allow_idv_level2_metadata' => :'allowIDVLevel2Metadata',
    :'allow_idv_level3' => :'allowIDVLevel3',
    :'allow_idv_level3_metadata' => :'allowIDVLevel3Metadata',
    :'allow_idv_platform' => :'allowIDVPlatform',
    :'allow_idv_platform_metadata' => :'allowIDVPlatformMetadata',
    :'allow_in_person' => :'allowInPerson',
    :'allow_in_person_electronic_notary' => :'allowInPersonElectronicNotary',
    :'allow_in_person_electronic_notary_metadata' => :'allowInPersonElectronicNotaryMetadata',
    :'allow_in_person_metadata' => :'allowInPersonMetadata',
    :'allow_managed_stamps' => :'allowManagedStamps',
    :'allow_managed_stamps_metadata' => :'allowManagedStampsMetadata',
    :'allow_managing_envelopes_on_behalf_of_others' => :'allowManagingEnvelopesOnBehalfOfOthers',
    :'allow_managing_envelopes_on_behalf_of_others_metadata' => :'allowManagingEnvelopesOnBehalfOfOthersMetadata',
    :'allow_markup' => :'allowMarkup',
    :'allow_markup_metadata' => :'allowMarkupMetadata',
    :'allow_member_time_zone' => :'allowMemberTimeZone',
    :'allow_member_time_zone_metadata' => :'allowMemberTimeZoneMetadata',
    :'allow_merge_fields' => :'allowMergeFields',
    :'allow_merge_fields_metadata' => :'allowMergeFieldsMetadata',
    :'allow_multiple_brand_profiles' => :'allowMultipleBrandProfiles',
    :'allow_multiple_brand_profiles_metadata' => :'allowMultipleBrandProfilesMetadata',
    :'allow_multiple_signer_attachments' => :'allowMultipleSignerAttachments',
    :'allow_multiple_signer_attachments_metadata' => :'allowMultipleSignerAttachmentsMetadata',
    :'allow_non_us_phone_auth' => :'allowNonUSPhoneAuth',
    :'allow_non_us_phone_auth_metadata' => :'allowNonUSPhoneAuthMetadata',
    :'allow_ocr_of_envelope_documents' => :'allowOcrOfEnvelopeDocuments',
    :'allow_ocr_of_envelope_documents_metadata' => :'allowOcrOfEnvelopeDocumentsMetadata',
    :'allow_offline_signing' => :'allowOfflineSigning',
    :'allow_offline_signing_metadata' => :'allowOfflineSigningMetadata',
    :'allow_open_trust_signer_certificate' => :'allowOpenTrustSignerCertificate',
    :'allow_open_trust_signer_certificate_metadata' => :'allowOpenTrustSignerCertificateMetadata',
    :'allow_organization_docusign_monitor' => :'allowOrganizationDocusignMonitor',
    :'allow_organization_docusign_monitor_metadata' => :'allowOrganizationDocusignMonitorMetadata',
    :'allow_organization_domain_user_management' => :'allowOrganizationDomainUserManagement',
    :'allow_organization_domain_user_management_metadata' => :'allowOrganizationDomainUserManagementMetadata',
    :'allow_organizations' => :'allowOrganizations',
    :'allow_organizations_metadata' => :'allowOrganizationsMetadata',
    :'allow_organization_sso_management' => :'allowOrganizationSsoManagement',
    :'allow_organization_sso_management_metadata' => :'allowOrganizationSsoManagementMetadata',
    :'allow_organization_to_use_in_person_electronic_notary' => :'allowOrganizationToUseInPersonElectronicNotary',
    :'allow_organization_to_use_in_person_electronic_notary_metadata' => :'allowOrganizationToUseInPersonElectronicNotaryMetadata',
    :'allow_organization_to_use_remote_notary' => :'allowOrganizationToUseRemoteNotary',
    :'allow_organization_to_use_remote_notary_metadata' => :'allowOrganizationToUseRemoteNotaryMetadata',
    :'allow_organization_to_use_third_party_electronic_notary' => :'allowOrganizationToUseThirdPartyElectronicNotary',
    :'allow_organization_to_use_third_party_electronic_notary_metadata' => :'allowOrganizationToUseThirdPartyElectronicNotaryMetadata',
    :'allow_payment_processing' => :'allowPaymentProcessing',
    :'allow_payment_processing_metadata' => :'allowPaymentProcessingMetadata',
    :'allow_phone_authentication' => :'allowPhoneAuthentication',
    :'allow_phone_authentication_metadata' => :'allowPhoneAuthenticationMetadata',
    :'allow_phone_auth_override' => :'allowPhoneAuthOverride',
    :'allow_phone_auth_override_metadata' => :'allowPhoneAuthOverrideMetadata',
    :'allow_private_signing_groups' => :'allowPrivateSigningGroups',
    :'allow_private_signing_groups_metadata' => :'allowPrivateSigningGroupsMetadata',
    :'allow_recipient_connect' => :'allowRecipientConnect',
    :'allow_recipient_connect_metadata' => :'allowRecipientConnectMetadata',
    :'allow_reminders' => :'allowReminders',
    :'allow_reminders_metadata' => :'allowRemindersMetadata',
    :'allow_remote_notary' => :'allowRemoteNotary',
    :'allow_remote_notary_metadata' => :'allowRemoteNotaryMetadata',
    :'allow_resource_file_branding' => :'allowResourceFileBranding',
    :'allow_resource_file_branding_metadata' => :'allowResourceFileBrandingMetadata',
    :'allow_safe_bio_pharma_signer_certificate' => :'allowSafeBioPharmaSignerCertificate',
    :'allow_safe_bio_pharma_signer_certificate_metadata' => :'allowSafeBioPharmaSignerCertificateMetadata',
    :'allow_scheduled_sending' => :'allowScheduledSending',
    :'allow_scheduled_sending_metadata' => :'allowScheduledSendingMetadata',
    :'allow_security_appliance' => :'allowSecurityAppliance',
    :'allow_security_appliance_metadata' => :'allowSecurityApplianceMetadata',
    :'allow_sending_envelopes_on_behalf_of_others' => :'allowSendingEnvelopesOnBehalfOfOthers',
    :'allow_sending_envelopes_on_behalf_of_others_metadata' => :'allowSendingEnvelopesOnBehalfOfOthersMetadata',
    :'allow_send_to_certified_delivery' => :'allowSendToCertifiedDelivery',
    :'allow_send_to_certified_delivery_metadata' => :'allowSendToCertifiedDeliveryMetadata',
    :'allow_send_to_intermediary' => :'allowSendToIntermediary',
    :'allow_send_to_intermediary_metadata' => :'allowSendToIntermediaryMetadata',
    :'allow_server_templates' => :'allowServerTemplates',
    :'allow_server_templates_metadata' => :'allowServerTemplatesMetadata',
    :'allow_set_embedded_recipient_start_url' => :'allowSetEmbeddedRecipientStartURL',
    :'allow_set_embedded_recipient_start_url_metadata' => :'allowSetEmbeddedRecipientStartURLMetadata',
    :'allow_shared_tabs' => :'allowSharedTabs',
    :'allow_shared_tabs_metadata' => :'allowSharedTabsMetadata',
    :'allow_signature_stamps' => :'allowSignatureStamps',
    :'allow_signature_stamps_metadata' => :'allowSignatureStampsMetadata',
    :'allow_sign_document_from_home_page' => :'allowSignDocumentFromHomePage',
    :'allow_sign_document_from_home_page_metadata' => :'allowSignDocumentFromHomePageMetadata',
    :'allow_signer_reassign' => :'allowSignerReassign',
    :'allow_signer_reassign_metadata' => :'allowSignerReassignMetadata',
    :'allow_signer_reassign_override' => :'allowSignerReassignOverride',
    :'allow_signer_reassign_override_metadata' => :'allowSignerReassignOverrideMetadata',
    :'allow_signing_extensions' => :'allowSigningExtensions',
    :'allow_signing_extensions_metadata' => :'allowSigningExtensionsMetadata',
    :'allow_signing_groups' => :'allowSigningGroups',
    :'allow_signing_groups_metadata' => :'allowSigningGroupsMetadata',
    :'allow_signing_insights' => :'allowSigningInsights',
    :'allow_signing_insights_metadata' => :'allowSigningInsightsMetadata',
    :'allow_signing_radio_deselect' => :'allowSigningRadioDeselect',
    :'allow_signing_radio_deselect_metadata' => :'allowSigningRadioDeselectMetadata',
    :'allow_sign_now' => :'allowSignNow',
    :'allow_sign_now_metadata' => :'allowSignNowMetadata',
    :'allow_sms_delivery' => :'allowSMSDelivery',
    :'allow_sms_delivery_metadata' => :'allowSMSDeliveryMetadata',
    :'allow_social_id_login' => :'allowSocialIdLogin',
    :'allow_social_id_login_metadata' => :'allowSocialIdLoginMetadata',
    :'allow_supplemental_documents' => :'allowSupplementalDocuments',
    :'allow_supplemental_documents_metadata' => :'allowSupplementalDocumentsMetadata',
    :'allow_third_party_electronic_notary' => :'allowThirdPartyElectronicNotary',
    :'allow_third_party_electronic_notary_metadata' => :'allowThirdPartyElectronicNotaryMetadata',
    :'allow_users_to_access_directory' => :'allowUsersToAccessDirectory',
    :'allow_users_to_access_directory_metadata' => :'allowUsersToAccessDirectoryMetadata',
    :'allow_value_insights' => :'allowValueInsights',
    :'allow_value_insights_metadata' => :'allowValueInsightsMetadata',
    :'allow_web_forms' => :'allowWebForms',
    :'allow_web_forms_metadata' => :'allowWebFormsMetadata',
    :'anchor_population_scope' => :'anchorPopulationScope',
    :'anchor_population_scope_metadata' => :'anchorPopulationScopeMetadata',
    :'anchor_tag_versioned_placement_enabled' => :'anchorTagVersionedPlacementEnabled',
    :'anchor_tag_versioned_placement_metadata_enabled' => :'anchorTagVersionedPlacementMetadataEnabled',
    :'attach_completed_envelope' => :'attachCompletedEnvelope',
    :'attach_completed_envelope_metadata' => :'attachCompletedEnvelopeMetadata',
    :'authentication_check' => :'authenticationCheck',
    :'authentication_check_metadata' => :'authenticationCheckMetadata',
    :'auto_nav_rule' => :'autoNavRule',
    :'auto_nav_rule_metadata' => :'autoNavRuleMetadata',
    :'auto_provision_signer_account' => :'autoProvisionSignerAccount',
    :'auto_provision_signer_account_metadata' => :'autoProvisionSignerAccountMetadata',
    :'bcc_email_archive' => :'bccEmailArchive',
    :'bcc_email_archive_metadata' => :'bccEmailArchiveMetadata',
    :'beta_switch_configuration' => :'betaSwitchConfiguration',
    :'beta_switch_configuration_metadata' => :'betaSwitchConfigurationMetadata',
    :'billing_address' => :'billingAddress',
    :'billing_address_metadata' => :'billingAddressMetadata',
    :'bulk_send' => :'bulkSend',
    :'bulk_send_action_resend_limit' => :'bulkSendActionResendLimit',
    :'bulk_send_max_copies_in_batch' => :'bulkSendMaxCopiesInBatch',
    :'bulk_send_max_unprocessed_envelopes_count' => :'bulkSendMaxUnprocessedEnvelopesCount',
    :'bulk_send_metadata' => :'bulkSendMetadata',
    :'can_self_brand_send' => :'canSelfBrandSend',
    :'can_self_brand_send_metadata' => :'canSelfBrandSendMetadata',
    :'can_self_brand_sign' => :'canSelfBrandSign',
    :'can_self_brand_sign_metadata' => :'canSelfBrandSignMetadata',
    :'can_use_salesforce_o_auth' => :'canUseSalesforceOAuth',
    :'can_use_salesforce_o_auth_metadata' => :'canUseSalesforceOAuthMetadata',
    :'capture_voice_recording' => :'captureVoiceRecording',
    :'capture_voice_recording_metadata' => :'captureVoiceRecordingMetadata',
    :'cfr21_simplified_signing_enabled' => :'cfr21SimplifiedSigningEnabled',
    :'cfr21_simplified_signing_enabled_metadata' => :'cfr21SimplifiedSigningEnabledMetadata',
    :'cfr_use_wide_image' => :'cfrUseWideImage',
    :'cfr_use_wide_image_metadata' => :'cfrUseWideImageMetadata',
    :'check_for_multiple_admins_on_account' => :'checkForMultipleAdminsOnAccount',
    :'check_for_multiple_admins_on_account_metadata' => :'checkForMultipleAdminsOnAccountMetadata',
    :'chrome_signature_enabled' => :'chromeSignatureEnabled',
    :'chrome_signature_enabled_metadata' => :'chromeSignatureEnabledMetadata',
    :'comment_email_show_message_text' => :'commentEmailShowMessageText',
    :'comment_email_show_message_text_metadata' => :'commentEmailShowMessageTextMetadata',
    :'comments_allow_envelope_override' => :'commentsAllowEnvelopeOverride',
    :'comments_allow_envelope_override_metadata' => :'commentsAllowEnvelopeOverrideMetadata',
    :'conditional_fields_enabled' => :'conditionalFieldsEnabled',
    :'conditional_fields_enabled_metadata' => :'conditionalFieldsEnabledMetadata',
    :'consumer_disclosure_frequency' => :'consumerDisclosureFrequency',
    :'consumer_disclosure_frequency_metadata' => :'consumerDisclosureFrequencyMetadata',
    :'convert_pdf_fields' => :'convertPdfFields',
    :'convert_pdf_fields_metadata' => :'convertPdfFieldsMetadata',
    :'data_population_scope' => :'dataPopulationScope',
    :'data_population_scope_metadata' => :'dataPopulationScopeMetadata',
    :'disable_auto_template_matching' => :'disableAutoTemplateMatching',
    :'disable_auto_template_matching_metadata' => :'disableAutoTemplateMatchingMetadata',
    :'disable_mobile_app' => :'disableMobileApp',
    :'disable_mobile_app_metadata' => :'disableMobileAppMetadata',
    :'disable_mobile_push_notifications' => :'disableMobilePushNotifications',
    :'disable_mobile_push_notifications_metadata' => :'disableMobilePushNotificationsMetadata',
    :'disable_mobile_sending' => :'disableMobileSending',
    :'disable_mobile_sending_metadata' => :'disableMobileSendingMetadata',
    :'disable_multiple_sessions' => :'disableMultipleSessions',
    :'disable_multiple_sessions_metadata' => :'disableMultipleSessionsMetadata',
    :'disable_purge_notifications_for_sender_metadata' => :'disablePurgeNotificationsForSenderMetadata',
    :'disable_signer_cert_view' => :'disableSignerCertView',
    :'disable_signer_cert_view_metadata' => :'disableSignerCertViewMetadata',
    :'disable_signer_history_view' => :'disableSignerHistoryView',
    :'disable_signer_history_view_metadata' => :'disableSignerHistoryViewMetadata',
    :'disable_style_signature' => :'disableStyleSignature',
    :'disable_style_signature_metadata' => :'disableStyleSignatureMetadata',
    :'disable_upload_signature' => :'disableUploadSignature',
    :'disable_upload_signature_metadata' => :'disableUploadSignatureMetadata',
    :'disable_user_sharing' => :'disableUserSharing',
    :'disable_user_sharing_metadata' => :'disableUserSharingMetadata',
    :'display_beta_switch' => :'displayBetaSwitch',
    :'display_beta_switch_metadata' => :'displayBetaSwitchMetadata',
    :'document_conversion_restrictions' => :'documentConversionRestrictions',
    :'document_conversion_restrictions_metadata' => :'documentConversionRestrictionsMetadata',
    :'document_retention' => :'documentRetention',
    :'document_retention_metadata' => :'documentRetentionMetadata',
    :'document_retention_purge_tabs' => :'documentRetentionPurgeTabs',
    :'document_visibility' => :'documentVisibility',
    :'document_visibility_metadata' => :'documentVisibilityMetadata',
    :'dss_sign_28411_enable_leave_page_prompt_radmin_option' => :'dss_SIGN_28411_EnableLeavePagePrompt_RadminOption',
    :'dss_sign_29182_slide_up_bar_radmin_option' => :'dss_SIGN_29182_SlideUpBar_RadminOption',
    :'email_template_version' => :'emailTemplateVersion',
    :'email_template_version_metadata' => :'emailTemplateVersionMetadata',
    :'enable_access_code_generator' => :'enableAccessCodeGenerator',
    :'enable_access_code_generator_metadata' => :'enableAccessCodeGeneratorMetadata',
    :'enable_advanced_payments' => :'enableAdvancedPayments',
    :'enable_advanced_payments_metadata' => :'enableAdvancedPaymentsMetadata',
    :'enable_advanced_power_forms' => :'enableAdvancedPowerForms',
    :'enable_advanced_power_forms_metadata' => :'enableAdvancedPowerFormsMetadata',
    :'enable_agreement_actions_for_clm' => :'enableAgreementActionsForCLM',
    :'enable_agreement_actions_for_clm_metadata' => :'enableAgreementActionsForCLMMetadata',
    :'enable_agreement_actions_for_e_sign' => :'enableAgreementActionsForESign',
    :'enable_agreement_actions_for_e_sign_metadata' => :'enableAgreementActionsForESignMetadata',
    :'enable_auto_nav' => :'enableAutoNav',
    :'enable_auto_nav_metadata' => :'enableAutoNavMetadata',
    :'enable_bcc_dummy_link' => :'enableBccDummyLink',
    :'enable_bcc_dummy_link_metadata' => :'enableBccDummyLinkMetadata',
    :'enable_calculated_fields' => :'enableCalculatedFields',
    :'enable_calculated_fields_metadata' => :'enableCalculatedFieldsMetadata',
    :'enable_clickwraps' => :'enableClickwraps',
    :'enable_clickwraps_metadata' => :'enableClickwrapsMetadata',
    :'enable_combined_pdf_download_for_sbs' => :'enableCombinedPDFDownloadForSBS',
    :'enable_comments_history_download_in_signing' => :'enableCommentsHistoryDownloadInSigning',
    :'enable_comments_history_download_in_signing_metadata' => :'enableCommentsHistoryDownloadInSigningMetadata',
    :'enable_customer_satisfaction_metric_tracking' => :'enableCustomerSatisfactionMetricTracking',
    :'enable_customer_satisfaction_metric_tracking_metadata' => :'enableCustomerSatisfactionMetricTrackingMetadata',
    :'enable_ds_pro' => :'enableDSPro',
    :'enable_ds_pro_metadata' => :'enableDSProMetadata',
    :'enable_envelope_stamping_by_account_admin' => :'enableEnvelopeStampingByAccountAdmin',
    :'enable_envelope_stamping_by_account_admin_metadata' => :'enableEnvelopeStampingByAccountAdminMetadata',
    :'enable_envelope_stamping_by_ds_admin' => :'enableEnvelopeStampingByDSAdmin',
    :'enable_envelope_stamping_by_ds_admin_metadata' => :'enableEnvelopeStampingByDSAdminMetadata',
    :'enable_esign_communities' => :'enableEsignCommunities',
    :'enable_esign_communities_metadata' => :'enableEsignCommunitiesMetadata',
    :'enable_id_fx_accountless_sms_auth_for_part11' => :'enableIDFxAccountlessSMSAuthForPart11',
    :'enable_id_fx_accountless_sms_auth_for_part11_metadata' => :'enableIDFxAccountlessSMSAuthForPart11Metadata',
    :'enable_id_fx_intuit_kba' => :'enableIDFxIntuitKBA',
    :'enable_id_fx_intuit_kba_metadata' => :'enableIDFxIntuitKBAMetadata',
    :'enable_id_fx_phone_authentication' => :'enableIDFxPhoneAuthentication',
    :'enable_id_fx_phone_authentication_metadata' => :'enableIDFxPhoneAuthenticationMetadata',
    :'enable_in_browser_editor' => :'enableInBrowserEditor',
    :'enable_in_browser_editor_metadata' => :'enableInBrowserEditorMetadata',
    :'enable_key_terms_suggestions_by_document_type' => :'enableKeyTermsSuggestionsByDocumentType',
    :'enable_key_terms_suggestions_by_document_type_metadata' => :'enableKeyTermsSuggestionsByDocumentTypeMetadata',
    :'enable_payment_processing' => :'enablePaymentProcessing',
    :'enable_payment_processing_metadata' => :'enablePaymentProcessingMetadata',
    :'enable_pdfa_conversion' => :'enablePDFAConversion',
    :'enable_pdfa_conversion_metadata' => :'enablePDFAConversionMetadata',
    :'enable_power_form' => :'enablePowerForm',
    :'enable_power_form_direct' => :'enablePowerFormDirect',
    :'enable_power_form_direct_metadata' => :'enablePowerFormDirectMetadata',
    :'enable_power_form_metadata' => :'enablePowerFormMetadata',
    :'enable_recipient_domain_validation' => :'enableRecipientDomainValidation',
    :'enable_recipient_domain_validation_metadata' => :'enableRecipientDomainValidationMetadata',
    :'enable_recipient_may_provide_phone_number' => :'enableRecipientMayProvidePhoneNumber',
    :'enable_recipient_may_provide_phone_number_metadata' => :'enableRecipientMayProvidePhoneNumberMetadata',
    :'enable_report_links' => :'enableReportLinks',
    :'enable_report_links_metadata' => :'enableReportLinksMetadata',
    :'enable_require_sign_on_paper' => :'enableRequireSignOnPaper',
    :'enable_require_sign_on_paper_metadata' => :'enableRequireSignOnPaperMetadata',
    :'enable_reserved_domain' => :'enableReservedDomain',
    :'enable_reserved_domain_metadata' => :'enableReservedDomainMetadata',
    :'enable_responsive_signing' => :'enableResponsiveSigning',
    :'enable_responsive_signing_metadata' => :'enableResponsiveSigningMetadata',
    :'enable_scheduled_release' => :'enableScheduledRelease',
    :'enable_scheduled_release_metadata' => :'enableScheduledReleaseMetadata',
    :'enable_search' => :'enableSearch',
    :'enable_search_metadata' => :'enableSearchMetadata',
    :'enable_search_site_specific_api' => :'enableSearchSiteSpecificApi',
    :'enable_search_site_specific_api_metadata' => :'enableSearchSiteSpecificApiMetadata',
    :'enable_search_ui' => :'enableSearchUI',
    :'enable_search_ui_metadata' => :'enableSearchUIMetadata',
    :'enable_sending_tags_font_settings' => :'enableSendingTagsFontSettings',
    :'enable_sending_tags_font_settings_metadata' => :'enableSendingTagsFontSettingsMetadata',
    :'enable_send_to_agent' => :'enableSendToAgent',
    :'enable_send_to_agent_metadata' => :'enableSendToAgentMetadata',
    :'enable_send_to_intermediary' => :'enableSendToIntermediary',
    :'enable_send_to_intermediary_metadata' => :'enableSendToIntermediaryMetadata',
    :'enable_send_to_manage' => :'enableSendToManage',
    :'enable_send_to_manage_metadata' => :'enableSendToManageMetadata',
    :'enable_sequential_signing_api' => :'enableSequentialSigningAPI',
    :'enable_sequential_signing_api_metadata' => :'enableSequentialSigningAPIMetadata',
    :'enable_sequential_signing_ui' => :'enableSequentialSigningUI',
    :'enable_sequential_signing_ui_metadata' => :'enableSequentialSigningUIMetadata',
    :'enable_signer_attachments' => :'enableSignerAttachments',
    :'enable_signer_attachments_metadata' => :'enableSignerAttachmentsMetadata',
    :'enable_signing_extension_comments' => :'enableSigningExtensionComments',
    :'enable_signing_extension_comments_metadata' => :'enableSigningExtensionCommentsMetadata',
    :'enable_signing_extension_conversations' => :'enableSigningExtensionConversations',
    :'enable_signing_extension_conversations_metadata' => :'enableSigningExtensionConversationsMetadata',
    :'enable_signing_order_settings_for_account' => :'enableSigningOrderSettingsForAccount',
    :'enable_signing_order_settings_for_account_metadata' => :'enableSigningOrderSettingsForAccountMetadata',
    :'enable_sign_on_paper' => :'enableSignOnPaper',
    :'enable_sign_on_paper_metadata' => :'enableSignOnPaperMetadata',
    :'enable_sign_on_paper_override' => :'enableSignOnPaperOverride',
    :'enable_sign_on_paper_override_metadata' => :'enableSignOnPaperOverrideMetadata',
    :'enable_sign_with_notary' => :'enableSignWithNotary',
    :'enable_sign_with_notary_metadata' => :'enableSignWithNotaryMetadata',
    :'enable_smart_contracts' => :'enableSmartContracts',
    :'enable_smart_contracts_metadata' => :'enableSmartContractsMetadata',
    :'enable_sms_authentication' => :'enableSMSAuthentication',
    :'enable_sms_authentication_metadata' => :'enableSMSAuthenticationMetadata',
    :'enable_sms_delivery_additional_notification' => :'enableSMSDeliveryAdditionalNotification',
    :'enable_sms_delivery_additional_notification_metadata' => :'enableSMSDeliveryAdditionalNotificationMetadata',
    :'enable_sms_delivery_primary' => :'enableSMSDeliveryPrimary',
    :'enable_social_id_login' => :'enableSocialIdLogin',
    :'enable_social_id_login_metadata' => :'enableSocialIdLoginMetadata',
    :'enable_strike_through' => :'enableStrikeThrough',
    :'enable_strike_through_metadata' => :'enableStrikeThroughMetadata',
    :'enable_transaction_point' => :'enableTransactionPoint',
    :'enable_transaction_point_metadata' => :'enableTransactionPointMetadata',
    :'enable_vaulting' => :'enableVaulting',
    :'enable_vaulting_metadata' => :'enableVaultingMetadata',
    :'enable_witnessing' => :'enableWitnessing',
    :'enable_witnessing_metadata' => :'enableWitnessingMetadata',
    :'enforce_template_name_uniqueness' => :'enforceTemplateNameUniqueness',
    :'enforce_template_name_uniqueness_metadata' => :'enforceTemplateNameUniquenessMetadata',
    :'envelope_integration_allowed' => :'envelopeIntegrationAllowed',
    :'envelope_integration_allowed_metadata' => :'envelopeIntegrationAllowedMetadata',
    :'envelope_integration_enabled' => :'envelopeIntegrationEnabled',
    :'envelope_integration_enabled_metadata' => :'envelopeIntegrationEnabledMetadata',
    :'envelope_stamping_default_value' => :'envelopeStampingDefaultValue',
    :'envelope_stamping_default_value_metadata' => :'envelopeStampingDefaultValueMetadata',
    :'exit_prompt' => :'exitPrompt',
    :'exit_prompt_metadata' => :'exitPromptMetadata',
    :'express_send' => :'expressSend',
    :'express_send_allow_tabs' => :'expressSendAllowTabs',
    :'express_send_allow_tabs_metadata' => :'expressSendAllowTabsMetadata',
    :'express_send_metadata' => :'expressSendMetadata',
    :'external_document_sources' => :'externalDocumentSources',
    :'external_signature_pad_type' => :'externalSignaturePadType',
    :'external_signature_pad_type_metadata' => :'externalSignaturePadTypeMetadata',
    :'fax_out_enabled' => :'faxOutEnabled',
    :'fax_out_enabled_metadata' => :'faxOutEnabledMetadata',
    :'finish_reminder' => :'finishReminder',
    :'finish_reminder_metadata' => :'finishReminderMetadata',
    :'guided_forms_html_allowed' => :'guidedFormsHtmlAllowed',
    :'guided_forms_html_allowed_metadata' => :'guidedFormsHtmlAllowedMetadata',
    :'has_recipient_connect_claimed_domain' => :'hasRecipientConnectClaimedDomain',
    :'hide_account_address_in_co_c' => :'hideAccountAddressInCoC',
    :'hide_account_address_in_co_c_metadata' => :'hideAccountAddressInCoCMetadata',
    :'hide_pricing' => :'hidePricing',
    :'hide_pricing_metadata' => :'hidePricingMetadata',
    :'id_check_configurations' => :'idCheckConfigurations',
    :'id_check_expire' => :'idCheckExpire',
    :'id_check_expire_days' => :'idCheckExpireDays',
    :'id_check_expire_days_metadata' => :'idCheckExpireDaysMetadata',
    :'id_check_expire_metadata' => :'idCheckExpireMetadata',
    :'id_check_expire_minutes' => :'idCheckExpireMinutes',
    :'id_check_expire_minutes_metadata' => :'idCheckExpireMinutesMetadata',
    :'id_check_required' => :'idCheckRequired',
    :'id_check_required_metadata' => :'idCheckRequiredMetadata',
    :'identity_verification' => :'identityVerification',
    :'identity_verification_metadata' => :'identityVerificationMetadata',
    :'idfx_phone_authentication_override' => :'idfxPhoneAuthenticationOverride',
    :'idfx_phone_authentication_override_metadata' => :'idfxPhoneAuthenticationOverrideMetadata',
    :'ignore_error_if_anchor_tab_not_found' => :'ignoreErrorIfAnchorTabNotFound',
    :'ignore_error_if_anchor_tab_not_found_metadata_enabled' => :'ignoreErrorIfAnchorTabNotFoundMetadataEnabled',
    :'in_person_id_check_question' => :'inPersonIDCheckQuestion',
    :'in_person_id_check_question_metadata' => :'inPersonIDCheckQuestionMetadata',
    :'in_person_signing_enabled' => :'inPersonSigningEnabled',
    :'in_person_signing_enabled_metadata' => :'inPersonSigningEnabledMetadata',
    :'in_session_enabled' => :'inSessionEnabled',
    :'in_session_enabled_metadata' => :'inSessionEnabledMetadata',
    :'in_session_suppress_emails' => :'inSessionSuppressEmails',
    :'in_session_suppress_emails_metadata' => :'inSessionSuppressEmailsMetadata',
    :'linked_external_primary_accounts' => :'linkedExternalPrimaryAccounts',
    :'maximum_signing_groups' => :'maximumSigningGroups',
    :'maximum_signing_groups_metadata' => :'maximumSigningGroupsMetadata',
    :'maximum_users_per_signing_group' => :'maximumUsersPerSigningGroup',
    :'maximum_users_per_signing_group_metadata' => :'maximumUsersPerSigningGroupMetadata',
    :'max_number_of_custom_stamps' => :'maxNumberOfCustomStamps',
    :'mobile_session_timeout' => :'mobileSessionTimeout',
    :'mobile_session_timeout_metadata' => :'mobileSessionTimeoutMetadata',
    :'number_of_active_custom_stamps' => :'numberOfActiveCustomStamps',
    :'opt_in_mobile_signing_v02' => :'optInMobileSigningV02',
    :'opt_in_mobile_signing_v02_metadata' => :'optInMobileSigningV02Metadata',
    :'opt_out_auto_nav_text_and_tab_color_updates' => :'optOutAutoNavTextAndTabColorUpdates',
    :'opt_out_auto_nav_text_and_tab_color_updates_metadata' => :'optOutAutoNavTextAndTabColorUpdatesMetadata',
    :'opt_out_new_platform_seal' => :'optOutNewPlatformSeal',
    :'opt_out_new_platform_seal_platform_metadata' => :'optOutNewPlatformSealPlatformMetadata',
    :'phone_auth_recipient_may_provide_phone_number' => :'phoneAuthRecipientMayProvidePhoneNumber',
    :'phone_auth_recipient_may_provide_phone_number_metadata' => :'phoneAuthRecipientMayProvidePhoneNumberMetadata',
    :'pki_sign_downloaded_pdf_docs' => :'pkiSignDownloadedPDFDocs',
    :'pki_sign_downloaded_pdf_docs_metadata' => :'pkiSignDownloadedPDFDocsMetadata',
    :'read_only_mode' => :'readOnlyMode',
    :'read_only_mode_metadata' => :'readOnlyModeMetadata',
    :'recipients_can_sign_offline' => :'recipientsCanSignOffline',
    :'recipients_can_sign_offline_metadata' => :'recipientsCanSignOfflineMetadata',
    :'recipient_signing_auto_navigation_control' => :'recipientSigningAutoNavigationControl',
    :'recipient_signing_auto_navigation_control_metadata' => :'recipientSigningAutoNavigationControlMetadata',
    :'require21_cf_rpt11_compliance' => :'require21CFRpt11Compliance',
    :'require21_cf_rpt11_compliance_metadata' => :'require21CFRpt11ComplianceMetadata',
    :'require_decline_reason' => :'requireDeclineReason',
    :'require_decline_reason_metadata' => :'requireDeclineReasonMetadata',
    :'require_external_user_management' => :'requireExternalUserManagement',
    :'require_external_user_management_metadata' => :'requireExternalUserManagementMetadata',
    :'require_signer_certificate_type' => :'requireSignerCertificateType',
    :'require_signer_certificate_type_metadata' => :'requireSignerCertificateTypeMetadata',
    :'rsa_verid_account_name' => :'rsaVeridAccountName',
    :'rsa_verid_password' => :'rsaVeridPassword',
    :'rsa_verid_ruleset' => :'rsaVeridRuleset',
    :'rsa_verid_user_id' => :'rsaVeridUserId',
    :'self_signed_recipient_email_document' => :'selfSignedRecipientEmailDocument',
    :'self_signed_recipient_email_document_metadata' => :'selfSignedRecipientEmailDocumentMetadata',
    :'self_signed_recipient_email_document_user_override' => :'selfSignedRecipientEmailDocumentUserOverride',
    :'self_signed_recipient_email_document_user_override_metadata' => :'selfSignedRecipientEmailDocumentUserOverrideMetadata',
    :'sender_can_sign_in_each_location' => :'senderCanSignInEachLocation',
    :'sender_can_sign_in_each_location_metadata' => :'senderCanSignInEachLocationMetadata',
    :'sender_must_authenticate_signing' => :'senderMustAuthenticateSigning',
    :'sender_must_authenticate_signing_metadata' => :'senderMustAuthenticateSigningMetadata',
    :'sending_tags_font_color' => :'sendingTagsFontColor',
    :'sending_tags_font_color_metadata' => :'sendingTagsFontColorMetadata',
    :'sending_tags_font_name' => :'sendingTagsFontName',
    :'sending_tags_font_name_metadata' => :'sendingTagsFontNameMetadata',
    :'sending_tags_font_size' => :'sendingTagsFontSize',
    :'sending_tags_font_size_metadata' => :'sendingTagsFontSizeMetadata',
    :'send_lockout_recipient_notification' => :'sendLockoutRecipientNotification',
    :'send_lockout_recipient_notification_metadata' => :'sendLockoutRecipientNotificationMetadata',
    :'send_to_certified_delivery_enabled' => :'sendToCertifiedDeliveryEnabled',
    :'send_to_certified_delivery_enabled_metadata' => :'sendToCertifiedDeliveryEnabledMetadata',
    :'session_timeout' => :'sessionTimeout',
    :'session_timeout_metadata' => :'sessionTimeoutMetadata',
    :'set_recip_email_lang' => :'setRecipEmailLang',
    :'set_recip_email_lang_metadata' => :'setRecipEmailLangMetadata',
    :'set_recip_sign_lang' => :'setRecipSignLang',
    :'set_recip_sign_lang_metadata' => :'setRecipSignLangMetadata',
    :'shared_template_folders' => :'sharedTemplateFolders',
    :'shared_template_folders_metadata' => :'sharedTemplateFoldersMetadata',
    :'show_complete_dialog_in_embedded_session' => :'showCompleteDialogInEmbeddedSession',
    :'show_complete_dialog_in_embedded_session_metadata' => :'showCompleteDialogInEmbeddedSessionMetadata',
    :'show_conditional_routing_on_send' => :'showConditionalRoutingOnSend',
    :'show_conditional_routing_on_send_metadata' => :'showConditionalRoutingOnSendMetadata',
    :'show_initial_conditional_fields' => :'showInitialConditionalFields',
    :'show_initial_conditional_fields_metadata' => :'showInitialConditionalFieldsMetadata',
    :'show_localized_watermarks' => :'showLocalizedWatermarks',
    :'show_localized_watermarks_metadata' => :'showLocalizedWatermarksMetadata',
    :'show_masked_fields_when_downloading_document_as_sender' => :'showMaskedFieldsWhenDownloadingDocumentAsSender',
    :'show_masked_fields_when_downloading_document_as_sender_metadata' => :'showMaskedFieldsWhenDownloadingDocumentAsSenderMetadata',
    :'show_tutorials' => :'showTutorials',
    :'show_tutorials_metadata' => :'showTutorialsMetadata',
    :'signature_providers' => :'signatureProviders',
    :'signature_providers_metadata' => :'signatureProvidersMetadata',
    :'sign_date_format' => :'signDateFormat',
    :'sign_date_format_metadata' => :'signDateFormatMetadata',
    :'sign_date_time_account_language_override' => :'signDateTimeAccountLanguageOverride',
    :'sign_date_time_account_language_override_metadata' => :'signDateTimeAccountLanguageOverrideMetadata',
    :'sign_date_time_account_timezone_override' => :'signDateTimeAccountTimezoneOverride',
    :'sign_date_time_account_timezone_override_metadata' => :'signDateTimeAccountTimezoneOverrideMetadata',
    :'signer_attach_certificate_to_envelope_pdf' => :'signerAttachCertificateToEnvelopePDF',
    :'signer_attach_certificate_to_envelope_pdf_metadata' => :'signerAttachCertificateToEnvelopePDFMetadata',
    :'signer_attach_concat' => :'signerAttachConcat',
    :'signer_attach_concat_metadata' => :'signerAttachConcatMetadata',
    :'signer_can_create_account' => :'signerCanCreateAccount',
    :'signer_can_create_account_metadata' => :'signerCanCreateAccountMetadata',
    :'signer_can_sign_on_mobile' => :'signerCanSignOnMobile',
    :'signer_can_sign_on_mobile_metadata' => :'signerCanSignOnMobileMetadata',
    :'signer_in_session_use_envelope_complete_email' => :'signerInSessionUseEnvelopeCompleteEmail',
    :'signer_in_session_use_envelope_complete_email_metadata' => :'signerInSessionUseEnvelopeCompleteEmailMetadata',
    :'signer_login_requirements' => :'signerLoginRequirements',
    :'signer_login_requirements_metadata' => :'signerLoginRequirementsMetadata',
    :'signer_must_have_account' => :'signerMustHaveAccount',
    :'signer_must_have_account_metadata' => :'signerMustHaveAccountMetadata',
    :'signer_must_login_to_sign' => :'signerMustLoginToSign',
    :'signer_must_login_to_sign_metadata' => :'signerMustLoginToSignMetadata',
    :'signer_show_secure_field_initial_values' => :'signerShowSecureFieldInitialValues',
    :'signer_show_secure_field_initial_values_metadata' => :'signerShowSecureFieldInitialValuesMetadata',
    :'signing_session_timeout' => :'signingSessionTimeout',
    :'signing_session_timeout_metadata' => :'signingSessionTimeoutMetadata',
    :'signing_ui_version' => :'signingUiVersion',
    :'signing_ui_version_metadata' => :'signingUiVersionMetadata',
    :'sign_time_format' => :'signTimeFormat',
    :'sign_time_format_metadata' => :'signTimeFormatMetadata',
    :'sign_time_show_am_pm' => :'signTimeShowAmPm',
    :'sign_time_show_am_pm_metadata' => :'signTimeShowAmPmMetadata',
    :'simplified_sending_enabled' => :'simplifiedSendingEnabled',
    :'simplified_sending_enabled_metadata' => :'simplifiedSendingEnabledMetadata',
    :'single_sign_on_enabled' => :'singleSignOnEnabled',
    :'single_sign_on_enabled_metadata' => :'singleSignOnEnabledMetadata',
    :'skip_auth_completed_envelopes' => :'skipAuthCompletedEnvelopes',
    :'skip_auth_completed_envelopes_metadata' => :'skipAuthCompletedEnvelopesMetadata',
    :'social_id_recip_auth' => :'socialIdRecipAuth',
    :'social_id_recip_auth_metadata' => :'socialIdRecipAuthMetadata',
    :'specify_document_visibility' => :'specifyDocumentVisibility',
    :'specify_document_visibility_metadata' => :'specifyDocumentVisibilityMetadata',
    :'start_in_advanced_correct' => :'startInAdvancedCorrect',
    :'start_in_advanced_correct_metadata' => :'startInAdvancedCorrectMetadata',
    :'supplemental_documents_must_accept' => :'supplementalDocumentsMustAccept',
    :'supplemental_documents_must_accept_metadata' => :'supplementalDocumentsMustAcceptMetadata',
    :'supplemental_documents_must_read' => :'supplementalDocumentsMustRead',
    :'supplemental_documents_must_read_metadata' => :'supplementalDocumentsMustReadMetadata',
    :'supplemental_documents_must_view' => :'supplementalDocumentsMustView',
    :'supplemental_documents_must_view_metadata' => :'supplementalDocumentsMustViewMetadata',
    :'suppress_certificate_enforcement' => :'suppressCertificateEnforcement',
    :'suppress_certificate_enforcement_metadata' => :'suppressCertificateEnforcementMetadata',
    :'tab_account_settings' => :'tabAccountSettings',
    :'timezone_offset_api' => :'timezoneOffsetAPI',
    :'timezone_offset_api_metadata' => :'timezoneOffsetAPIMetadata',
    :'timezone_offset_ui' => :'timezoneOffsetUI',
    :'timezone_offset_ui_metadata' => :'timezoneOffsetUIMetadata',
    :'universal_signature_opt_in' => :'universalSignatureOptIn',
    :'use_account_level_email' => :'useAccountLevelEmail',
    :'use_account_level_email_metadata' => :'useAccountLevelEmailMetadata',
    :'use_consumer_disclosure' => :'useConsumerDisclosure',
    :'use_consumer_disclosure_metadata' => :'useConsumerDisclosureMetadata',
    :'use_consumer_disclosure_within_account' => :'useConsumerDisclosureWithinAccount',
    :'use_consumer_disclosure_within_account_metadata' => :'useConsumerDisclosureWithinAccountMetadata',
    :'use_derived_keys' => :'useDerivedKeys',
    :'use_derived_keys_metadata' => :'useDerivedKeysMetadata',
    :'use_docu_sign_express_signer_certificate' => :'useDocuSignExpressSignerCertificate',
    :'use_docu_sign_express_signer_certificate_metadata' => :'useDocuSignExpressSignerCertificateMetadata',
    :'use_multi_app_groups_data' => :'useMultiAppGroupsData',
    :'use_multi_app_groups_data_metadata' => :'useMultiAppGroupsDataMetadata',
    :'use_new_blob_for_pdf' => :'useNewBlobForPdf',
    :'use_new_blob_for_pdf_metadata' => :'useNewBlobForPdfMetadata',
    :'use_safe_signer_certificates' => :'useSAFESignerCertificates',
    :'use_safe_signer_certificates_metadata' => :'useSAFESignerCertificatesMetadata',
    :'uses_api' => :'usesAPI',
    :'uses_api_metadata' => :'usesAPIMetadata',
    :'use_signature_provider_platform' => :'useSignatureProviderPlatform',
    :'use_signature_provider_platform_metadata' => :'useSignatureProviderPlatformMetadata',
    :'use_smart_contracts_v1' => :'useSmartContractsV1',
    :'validations_allowed' => :'validationsAllowed',
    :'validations_allowed_metadata' => :'validationsAllowedMetadata',
    :'validations_brand' => :'validationsBrand',
    :'validations_brand_metadata' => :'validationsBrandMetadata',
    :'validations_cadence' => :'validationsCadence',
    :'validations_cadence_metadata' => :'validationsCadenceMetadata',
    :'validations_enabled' => :'validationsEnabled',
    :'validations_enabled_metadata' => :'validationsEnabledMetadata',
    :'validations_report' => :'validationsReport',
    :'validations_report_metadata' => :'validationsReportMetadata',
    :'water_mark_enabled' => :'waterMarkEnabled',
    :'water_mark_enabled_metadata' => :'waterMarkEnabledMetadata',
    :'write_reminder_to_envelope_history' => :'writeReminderToEnvelopeHistory',
    :'write_reminder_to_envelope_history_metadata' => :'writeReminderToEnvelopeHistoryMetadata',
    :'wurfl_min_allowable_screen_size' => :'wurflMinAllowableScreenSize',
    :'wurfl_min_allowable_screen_size_metadata' => :'wurflMinAllowableScreenSizeMetadata'
  }
end

.swagger_typesObject

Attribute type mapping.



2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2165

def self.swagger_types
  {
    :'access_code_format' => :'AccessCodeFormat',
    :'account_date_time_format' => :'String',
    :'account_date_time_format_metadata' => :'SettingsMetadata',
    :'account_default_language' => :'String',
    :'account_default_language_metadata' => :'SettingsMetadata',
    :'account_name' => :'String',
    :'account_name_metadata' => :'SettingsMetadata',
    :'account_notification' => :'AccountNotification',
    :'account_ui_settings' => :'AccountUISettings',
    :'adopt_sig_config' => :'String',
    :'adopt_sig_config_metadata' => :'SettingsMetadata',
    :'advanced_correct' => :'String',
    :'advanced_correct_metadata' => :'SettingsMetadata',
    :'allow_access_code_format' => :'String',
    :'allow_access_code_format_metadata' => :'SettingsMetadata',
    :'allow_account_management_granular' => :'String',
    :'allow_account_management_granular_metadata' => :'SettingsMetadata',
    :'allow_account_member_name_change' => :'String',
    :'allow_account_member_name_change_metadata' => :'SettingsMetadata',
    :'allow_advanced_recipient_routing_conditional' => :'String',
    :'allow_advanced_recipient_routing_conditional_metadata' => :'SettingsMetadata',
    :'allow_agent_name_email_edit' => :'String',
    :'allow_agent_name_email_edit_metadata' => :'SettingsMetadata',
    :'allow_agreement_actions' => :'String',
    :'allow_agreement_actions_metadata' => :'SettingsMetadata',
    :'allow_auto_nav_settings' => :'String',
    :'allow_auto_nav_settings_metadata' => :'SettingsMetadata',
    :'allow_auto_tagging' => :'String',
    :'allow_auto_tagging_metadata' => :'SettingsMetadata',
    :'allow_bulk_send' => :'String',
    :'allow_bulk_send_metadata' => :'SettingsMetadata',
    :'allow_cd_withdraw' => :'String',
    :'allow_cd_withdraw_metadata' => :'SettingsMetadata',
    :'allow_connect_http_listener_configs' => :'String',
    :'allow_connect_send_finish_later' => :'String',
    :'allow_connect_send_finish_later_metadata' => :'SettingsMetadata',
    :'allow_connect_unified_payload_ui' => :'String',
    :'allow_consumer_disclosure_override' => :'String',
    :'allow_consumer_disclosure_override_metadata' => :'SettingsMetadata',
    :'allow_data_download' => :'String',
    :'allow_data_download_metadata' => :'SettingsMetadata',
    :'allow_delayed_routing' => :'String',
    :'allow_delayed_routing_metadata' => :'SettingsMetadata',
    :'allow_delegated_signing' => :'String',
    :'allow_delegated_signing_metadata' => :'SettingsMetadata',
    :'allow_document_disclosures' => :'String',
    :'allow_document_disclosures_metadata' => :'SettingsMetadata',
    :'allow_documents_on_signed_envelopes' => :'String',
    :'allow_documents_on_signed_envelopes_metadata' => :'SettingsMetadata',
    :'allow_document_visibility' => :'String',
    :'allow_document_visibility_metadata' => :'SettingsMetadata',
    :'allow_e_hanko_stamps' => :'String',
    :'allow_e_hanko_stamps_metadata' => :'SettingsMetadata',
    :'allow_e_note_e_original' => :'String',
    :'allow_e_note_e_original_metadata' => :'SettingsMetadata',
    :'allow_envelope_correct' => :'String',
    :'allow_envelope_correct_metadata' => :'SettingsMetadata',
    :'allow_envelope_custody_transfer' => :'String',
    :'allow_envelope_custody_transfer_metadata' => :'SettingsMetadata',
    :'allow_envelope_custom_fields' => :'String',
    :'allow_envelope_custom_fields_metadata' => :'SettingsMetadata',
    :'allow_envelope_publish_reporting' => :'String',
    :'allow_envelope_publish_reporting_metadata' => :'SettingsMetadata',
    :'allow_envelope_reporting' => :'String',
    :'allow_envelope_reporting_metadata' => :'SettingsMetadata',
    :'allow_expression' => :'String',
    :'allow_expression_metadata' => :'SettingsMetadata',
    :'allow_express_signer_certificate' => :'String',
    :'allow_express_signer_certificate_metadata' => :'SettingsMetadata',
    :'allow_extended_sending_resource_file' => :'String',
    :'allow_extended_sending_resource_file_metadata' => :'SettingsMetadata',
    :'allow_external_linked_accounts' => :'String',
    :'allow_external_linked_accounts_metadata' => :'SettingsMetadata',
    :'allow_external_signature_pad' => :'String',
    :'allow_external_signature_pad_metadata' => :'SettingsMetadata',
    :'allow_idv_level1' => :'String',
    :'allow_idv_level1_metadata' => :'SettingsMetadata',
    :'allow_idv_level2' => :'String',
    :'allow_idv_level2_metadata' => :'SettingsMetadata',
    :'allow_idv_level3' => :'String',
    :'allow_idv_level3_metadata' => :'SettingsMetadata',
    :'allow_idv_platform' => :'String',
    :'allow_idv_platform_metadata' => :'SettingsMetadata',
    :'allow_in_person' => :'String',
    :'allow_in_person_electronic_notary' => :'String',
    :'allow_in_person_electronic_notary_metadata' => :'SettingsMetadata',
    :'allow_in_person_metadata' => :'SettingsMetadata',
    :'allow_managed_stamps' => :'String',
    :'allow_managed_stamps_metadata' => :'SettingsMetadata',
    :'allow_managing_envelopes_on_behalf_of_others' => :'String',
    :'allow_managing_envelopes_on_behalf_of_others_metadata' => :'SettingsMetadata',
    :'allow_markup' => :'String',
    :'allow_markup_metadata' => :'SettingsMetadata',
    :'allow_member_time_zone' => :'String',
    :'allow_member_time_zone_metadata' => :'SettingsMetadata',
    :'allow_merge_fields' => :'String',
    :'allow_merge_fields_metadata' => :'SettingsMetadata',
    :'allow_multiple_brand_profiles' => :'String',
    :'allow_multiple_brand_profiles_metadata' => :'SettingsMetadata',
    :'allow_multiple_signer_attachments' => :'String',
    :'allow_multiple_signer_attachments_metadata' => :'SettingsMetadata',
    :'allow_non_us_phone_auth' => :'String',
    :'allow_non_us_phone_auth_metadata' => :'SettingsMetadata',
    :'allow_ocr_of_envelope_documents' => :'String',
    :'allow_ocr_of_envelope_documents_metadata' => :'SettingsMetadata',
    :'allow_offline_signing' => :'String',
    :'allow_offline_signing_metadata' => :'SettingsMetadata',
    :'allow_open_trust_signer_certificate' => :'String',
    :'allow_open_trust_signer_certificate_metadata' => :'SettingsMetadata',
    :'allow_organization_docusign_monitor' => :'String',
    :'allow_organization_docusign_monitor_metadata' => :'SettingsMetadata',
    :'allow_organization_domain_user_management' => :'String',
    :'allow_organization_domain_user_management_metadata' => :'SettingsMetadata',
    :'allow_organizations' => :'String',
    :'allow_organizations_metadata' => :'SettingsMetadata',
    :'allow_organization_sso_management' => :'String',
    :'allow_organization_sso_management_metadata' => :'SettingsMetadata',
    :'allow_organization_to_use_in_person_electronic_notary' => :'String',
    :'allow_organization_to_use_in_person_electronic_notary_metadata' => :'SettingsMetadata',
    :'allow_organization_to_use_remote_notary' => :'String',
    :'allow_organization_to_use_remote_notary_metadata' => :'SettingsMetadata',
    :'allow_organization_to_use_third_party_electronic_notary' => :'String',
    :'allow_organization_to_use_third_party_electronic_notary_metadata' => :'SettingsMetadata',
    :'allow_payment_processing' => :'String',
    :'allow_payment_processing_metadata' => :'SettingsMetadata',
    :'allow_phone_authentication' => :'String',
    :'allow_phone_authentication_metadata' => :'SettingsMetadata',
    :'allow_phone_auth_override' => :'String',
    :'allow_phone_auth_override_metadata' => :'SettingsMetadata',
    :'allow_private_signing_groups' => :'String',
    :'allow_private_signing_groups_metadata' => :'SettingsMetadata',
    :'allow_recipient_connect' => :'String',
    :'allow_recipient_connect_metadata' => :'SettingsMetadata',
    :'allow_reminders' => :'String',
    :'allow_reminders_metadata' => :'SettingsMetadata',
    :'allow_remote_notary' => :'String',
    :'allow_remote_notary_metadata' => :'SettingsMetadata',
    :'allow_resource_file_branding' => :'String',
    :'allow_resource_file_branding_metadata' => :'SettingsMetadata',
    :'allow_safe_bio_pharma_signer_certificate' => :'String',
    :'allow_safe_bio_pharma_signer_certificate_metadata' => :'SettingsMetadata',
    :'allow_scheduled_sending' => :'String',
    :'allow_scheduled_sending_metadata' => :'SettingsMetadata',
    :'allow_security_appliance' => :'String',
    :'allow_security_appliance_metadata' => :'SettingsMetadata',
    :'allow_sending_envelopes_on_behalf_of_others' => :'String',
    :'allow_sending_envelopes_on_behalf_of_others_metadata' => :'SettingsMetadata',
    :'allow_send_to_certified_delivery' => :'String',
    :'allow_send_to_certified_delivery_metadata' => :'SettingsMetadata',
    :'allow_send_to_intermediary' => :'String',
    :'allow_send_to_intermediary_metadata' => :'SettingsMetadata',
    :'allow_server_templates' => :'String',
    :'allow_server_templates_metadata' => :'SettingsMetadata',
    :'allow_set_embedded_recipient_start_url' => :'String',
    :'allow_set_embedded_recipient_start_url_metadata' => :'SettingsMetadata',
    :'allow_shared_tabs' => :'String',
    :'allow_shared_tabs_metadata' => :'SettingsMetadata',
    :'allow_signature_stamps' => :'String',
    :'allow_signature_stamps_metadata' => :'SettingsMetadata',
    :'allow_sign_document_from_home_page' => :'String',
    :'allow_sign_document_from_home_page_metadata' => :'SettingsMetadata',
    :'allow_signer_reassign' => :'String',
    :'allow_signer_reassign_metadata' => :'SettingsMetadata',
    :'allow_signer_reassign_override' => :'String',
    :'allow_signer_reassign_override_metadata' => :'SettingsMetadata',
    :'allow_signing_extensions' => :'String',
    :'allow_signing_extensions_metadata' => :'SettingsMetadata',
    :'allow_signing_groups' => :'String',
    :'allow_signing_groups_metadata' => :'SettingsMetadata',
    :'allow_signing_insights' => :'String',
    :'allow_signing_insights_metadata' => :'SettingsMetadata',
    :'allow_signing_radio_deselect' => :'String',
    :'allow_signing_radio_deselect_metadata' => :'SettingsMetadata',
    :'allow_sign_now' => :'String',
    :'allow_sign_now_metadata' => :'String',
    :'allow_sms_delivery' => :'String',
    :'allow_sms_delivery_metadata' => :'SettingsMetadata',
    :'allow_social_id_login' => :'String',
    :'allow_social_id_login_metadata' => :'SettingsMetadata',
    :'allow_supplemental_documents' => :'String',
    :'allow_supplemental_documents_metadata' => :'SettingsMetadata',
    :'allow_third_party_electronic_notary' => :'String',
    :'allow_third_party_electronic_notary_metadata' => :'SettingsMetadata',
    :'allow_users_to_access_directory' => :'String',
    :'allow_users_to_access_directory_metadata' => :'SettingsMetadata',
    :'allow_value_insights' => :'String',
    :'allow_value_insights_metadata' => :'SettingsMetadata',
    :'allow_web_forms' => :'String',
    :'allow_web_forms_metadata' => :'SettingsMetadata',
    :'anchor_population_scope' => :'String',
    :'anchor_population_scope_metadata' => :'SettingsMetadata',
    :'anchor_tag_versioned_placement_enabled' => :'String',
    :'anchor_tag_versioned_placement_metadata_enabled' => :'SettingsMetadata',
    :'attach_completed_envelope' => :'String',
    :'attach_completed_envelope_metadata' => :'SettingsMetadata',
    :'authentication_check' => :'String',
    :'authentication_check_metadata' => :'SettingsMetadata',
    :'auto_nav_rule' => :'String',
    :'auto_nav_rule_metadata' => :'SettingsMetadata',
    :'auto_provision_signer_account' => :'String',
    :'auto_provision_signer_account_metadata' => :'SettingsMetadata',
    :'bcc_email_archive' => :'String',
    :'bcc_email_archive_metadata' => :'SettingsMetadata',
    :'beta_switch_configuration' => :'String',
    :'beta_switch_configuration_metadata' => :'SettingsMetadata',
    :'billing_address' => :'AddressInformation',
    :'billing_address_metadata' => :'SettingsMetadata',
    :'bulk_send' => :'String',
    :'bulk_send_action_resend_limit' => :'String',
    :'bulk_send_max_copies_in_batch' => :'String',
    :'bulk_send_max_unprocessed_envelopes_count' => :'String',
    :'bulk_send_metadata' => :'SettingsMetadata',
    :'can_self_brand_send' => :'String',
    :'can_self_brand_send_metadata' => :'SettingsMetadata',
    :'can_self_brand_sign' => :'String',
    :'can_self_brand_sign_metadata' => :'SettingsMetadata',
    :'can_use_salesforce_o_auth' => :'String',
    :'can_use_salesforce_o_auth_metadata' => :'SettingsMetadata',
    :'capture_voice_recording' => :'String',
    :'capture_voice_recording_metadata' => :'SettingsMetadata',
    :'cfr21_simplified_signing_enabled' => :'String',
    :'cfr21_simplified_signing_enabled_metadata' => :'SettingsMetadata',
    :'cfr_use_wide_image' => :'String',
    :'cfr_use_wide_image_metadata' => :'SettingsMetadata',
    :'check_for_multiple_admins_on_account' => :'String',
    :'check_for_multiple_admins_on_account_metadata' => :'SettingsMetadata',
    :'chrome_signature_enabled' => :'String',
    :'chrome_signature_enabled_metadata' => :'SettingsMetadata',
    :'comment_email_show_message_text' => :'String',
    :'comment_email_show_message_text_metadata' => :'SettingsMetadata',
    :'comments_allow_envelope_override' => :'String',
    :'comments_allow_envelope_override_metadata' => :'SettingsMetadata',
    :'conditional_fields_enabled' => :'String',
    :'conditional_fields_enabled_metadata' => :'SettingsMetadata',
    :'consumer_disclosure_frequency' => :'String',
    :'consumer_disclosure_frequency_metadata' => :'SettingsMetadata',
    :'convert_pdf_fields' => :'String',
    :'convert_pdf_fields_metadata' => :'SettingsMetadata',
    :'data_population_scope' => :'String',
    :'data_population_scope_metadata' => :'SettingsMetadata',
    :'disable_auto_template_matching' => :'String',
    :'disable_auto_template_matching_metadata' => :'SettingsMetadata',
    :'disable_mobile_app' => :'String',
    :'disable_mobile_app_metadata' => :'SettingsMetadata',
    :'disable_mobile_push_notifications' => :'String',
    :'disable_mobile_push_notifications_metadata' => :'SettingsMetadata',
    :'disable_mobile_sending' => :'String',
    :'disable_mobile_sending_metadata' => :'SettingsMetadata',
    :'disable_multiple_sessions' => :'String',
    :'disable_multiple_sessions_metadata' => :'SettingsMetadata',
    :'disable_purge_notifications_for_sender_metadata' => :'SettingsMetadata',
    :'disable_signer_cert_view' => :'String',
    :'disable_signer_cert_view_metadata' => :'SettingsMetadata',
    :'disable_signer_history_view' => :'String',
    :'disable_signer_history_view_metadata' => :'SettingsMetadata',
    :'disable_style_signature' => :'String',
    :'disable_style_signature_metadata' => :'SettingsMetadata',
    :'disable_upload_signature' => :'String',
    :'disable_upload_signature_metadata' => :'SettingsMetadata',
    :'disable_user_sharing' => :'String',
    :'disable_user_sharing_metadata' => :'SettingsMetadata',
    :'display_beta_switch' => :'String',
    :'display_beta_switch_metadata' => :'SettingsMetadata',
    :'document_conversion_restrictions' => :'String',
    :'document_conversion_restrictions_metadata' => :'SettingsMetadata',
    :'document_retention' => :'String',
    :'document_retention_metadata' => :'SettingsMetadata',
    :'document_retention_purge_tabs' => :'String',
    :'document_visibility' => :'String',
    :'document_visibility_metadata' => :'SettingsMetadata',
    :'dss_sign_28411_enable_leave_page_prompt_radmin_option' => :'String',
    :'dss_sign_29182_slide_up_bar_radmin_option' => :'String',
    :'email_template_version' => :'String',
    :'email_template_version_metadata' => :'SettingsMetadata',
    :'enable_access_code_generator' => :'String',
    :'enable_access_code_generator_metadata' => :'SettingsMetadata',
    :'enable_advanced_payments' => :'String',
    :'enable_advanced_payments_metadata' => :'SettingsMetadata',
    :'enable_advanced_power_forms' => :'String',
    :'enable_advanced_power_forms_metadata' => :'SettingsMetadata',
    :'enable_agreement_actions_for_clm' => :'String',
    :'enable_agreement_actions_for_clm_metadata' => :'SettingsMetadata',
    :'enable_agreement_actions_for_e_sign' => :'String',
    :'enable_agreement_actions_for_e_sign_metadata' => :'SettingsMetadata',
    :'enable_auto_nav' => :'String',
    :'enable_auto_nav_metadata' => :'SettingsMetadata',
    :'enable_bcc_dummy_link' => :'String',
    :'enable_bcc_dummy_link_metadata' => :'SettingsMetadata',
    :'enable_calculated_fields' => :'String',
    :'enable_calculated_fields_metadata' => :'SettingsMetadata',
    :'enable_clickwraps' => :'String',
    :'enable_clickwraps_metadata' => :'SettingsMetadata',
    :'enable_combined_pdf_download_for_sbs' => :'String',
    :'enable_comments_history_download_in_signing' => :'String',
    :'enable_comments_history_download_in_signing_metadata' => :'SettingsMetadata',
    :'enable_customer_satisfaction_metric_tracking' => :'String',
    :'enable_customer_satisfaction_metric_tracking_metadata' => :'SettingsMetadata',
    :'enable_ds_pro' => :'String',
    :'enable_ds_pro_metadata' => :'SettingsMetadata',
    :'enable_envelope_stamping_by_account_admin' => :'String',
    :'enable_envelope_stamping_by_account_admin_metadata' => :'SettingsMetadata',
    :'enable_envelope_stamping_by_ds_admin' => :'String',
    :'enable_envelope_stamping_by_ds_admin_metadata' => :'SettingsMetadata',
    :'enable_esign_communities' => :'String',
    :'enable_esign_communities_metadata' => :'SettingsMetadata',
    :'enable_id_fx_accountless_sms_auth_for_part11' => :'String',
    :'enable_id_fx_accountless_sms_auth_for_part11_metadata' => :'SettingsMetadata',
    :'enable_id_fx_intuit_kba' => :'String',
    :'enable_id_fx_intuit_kba_metadata' => :'SettingsMetadata',
    :'enable_id_fx_phone_authentication' => :'String',
    :'enable_id_fx_phone_authentication_metadata' => :'SettingsMetadata',
    :'enable_in_browser_editor' => :'String',
    :'enable_in_browser_editor_metadata' => :'SettingsMetadata',
    :'enable_key_terms_suggestions_by_document_type' => :'String',
    :'enable_key_terms_suggestions_by_document_type_metadata' => :'SettingsMetadata',
    :'enable_payment_processing' => :'String',
    :'enable_payment_processing_metadata' => :'SettingsMetadata',
    :'enable_pdfa_conversion' => :'String',
    :'enable_pdfa_conversion_metadata' => :'SettingsMetadata',
    :'enable_power_form' => :'String',
    :'enable_power_form_direct' => :'String',
    :'enable_power_form_direct_metadata' => :'SettingsMetadata',
    :'enable_power_form_metadata' => :'SettingsMetadata',
    :'enable_recipient_domain_validation' => :'String',
    :'enable_recipient_domain_validation_metadata' => :'SettingsMetadata',
    :'enable_recipient_may_provide_phone_number' => :'String',
    :'enable_recipient_may_provide_phone_number_metadata' => :'SettingsMetadata',
    :'enable_report_links' => :'String',
    :'enable_report_links_metadata' => :'SettingsMetadata',
    :'enable_require_sign_on_paper' => :'String',
    :'enable_require_sign_on_paper_metadata' => :'SettingsMetadata',
    :'enable_reserved_domain' => :'String',
    :'enable_reserved_domain_metadata' => :'SettingsMetadata',
    :'enable_responsive_signing' => :'String',
    :'enable_responsive_signing_metadata' => :'SettingsMetadata',
    :'enable_scheduled_release' => :'String',
    :'enable_scheduled_release_metadata' => :'SettingsMetadata',
    :'enable_search' => :'String',
    :'enable_search_metadata' => :'SettingsMetadata',
    :'enable_search_site_specific_api' => :'String',
    :'enable_search_site_specific_api_metadata' => :'SettingsMetadata',
    :'enable_search_ui' => :'String',
    :'enable_search_ui_metadata' => :'SettingsMetadata',
    :'enable_sending_tags_font_settings' => :'String',
    :'enable_sending_tags_font_settings_metadata' => :'SettingsMetadata',
    :'enable_send_to_agent' => :'String',
    :'enable_send_to_agent_metadata' => :'SettingsMetadata',
    :'enable_send_to_intermediary' => :'String',
    :'enable_send_to_intermediary_metadata' => :'SettingsMetadata',
    :'enable_send_to_manage' => :'String',
    :'enable_send_to_manage_metadata' => :'SettingsMetadata',
    :'enable_sequential_signing_api' => :'String',
    :'enable_sequential_signing_api_metadata' => :'SettingsMetadata',
    :'enable_sequential_signing_ui' => :'String',
    :'enable_sequential_signing_ui_metadata' => :'SettingsMetadata',
    :'enable_signer_attachments' => :'String',
    :'enable_signer_attachments_metadata' => :'SettingsMetadata',
    :'enable_signing_extension_comments' => :'String',
    :'enable_signing_extension_comments_metadata' => :'SettingsMetadata',
    :'enable_signing_extension_conversations' => :'String',
    :'enable_signing_extension_conversations_metadata' => :'SettingsMetadata',
    :'enable_signing_order_settings_for_account' => :'String',
    :'enable_signing_order_settings_for_account_metadata' => :'SettingsMetadata',
    :'enable_sign_on_paper' => :'String',
    :'enable_sign_on_paper_metadata' => :'SettingsMetadata',
    :'enable_sign_on_paper_override' => :'String',
    :'enable_sign_on_paper_override_metadata' => :'SettingsMetadata',
    :'enable_sign_with_notary' => :'String',
    :'enable_sign_with_notary_metadata' => :'SettingsMetadata',
    :'enable_smart_contracts' => :'String',
    :'enable_smart_contracts_metadata' => :'SettingsMetadata',
    :'enable_sms_authentication' => :'String',
    :'enable_sms_authentication_metadata' => :'SettingsMetadata',
    :'enable_sms_delivery_additional_notification' => :'String',
    :'enable_sms_delivery_additional_notification_metadata' => :'SettingsMetadata',
    :'enable_sms_delivery_primary' => :'String',
    :'enable_social_id_login' => :'String',
    :'enable_social_id_login_metadata' => :'SettingsMetadata',
    :'enable_strike_through' => :'String',
    :'enable_strike_through_metadata' => :'SettingsMetadata',
    :'enable_transaction_point' => :'String',
    :'enable_transaction_point_metadata' => :'SettingsMetadata',
    :'enable_vaulting' => :'String',
    :'enable_vaulting_metadata' => :'SettingsMetadata',
    :'enable_witnessing' => :'String',
    :'enable_witnessing_metadata' => :'SettingsMetadata',
    :'enforce_template_name_uniqueness' => :'String',
    :'enforce_template_name_uniqueness_metadata' => :'SettingsMetadata',
    :'envelope_integration_allowed' => :'String',
    :'envelope_integration_allowed_metadata' => :'SettingsMetadata',
    :'envelope_integration_enabled' => :'String',
    :'envelope_integration_enabled_metadata' => :'SettingsMetadata',
    :'envelope_stamping_default_value' => :'String',
    :'envelope_stamping_default_value_metadata' => :'SettingsMetadata',
    :'exit_prompt' => :'String',
    :'exit_prompt_metadata' => :'SettingsMetadata',
    :'express_send' => :'String',
    :'express_send_allow_tabs' => :'String',
    :'express_send_allow_tabs_metadata' => :'SettingsMetadata',
    :'express_send_metadata' => :'SettingsMetadata',
    :'external_document_sources' => :'ExternalDocumentSources',
    :'external_signature_pad_type' => :'String',
    :'external_signature_pad_type_metadata' => :'SettingsMetadata',
    :'fax_out_enabled' => :'String',
    :'fax_out_enabled_metadata' => :'SettingsMetadata',
    :'finish_reminder' => :'String',
    :'finish_reminder_metadata' => :'SettingsMetadata',
    :'guided_forms_html_allowed' => :'String',
    :'guided_forms_html_allowed_metadata' => :'SettingsMetadata',
    :'has_recipient_connect_claimed_domain' => :'String',
    :'hide_account_address_in_co_c' => :'String',
    :'hide_account_address_in_co_c_metadata' => :'SettingsMetadata',
    :'hide_pricing' => :'String',
    :'hide_pricing_metadata' => :'SettingsMetadata',
    :'id_check_configurations' => :'Array<IdCheckConfiguration>',
    :'id_check_expire' => :'String',
    :'id_check_expire_days' => :'String',
    :'id_check_expire_days_metadata' => :'SettingsMetadata',
    :'id_check_expire_metadata' => :'SettingsMetadata',
    :'id_check_expire_minutes' => :'String',
    :'id_check_expire_minutes_metadata' => :'SettingsMetadata',
    :'id_check_required' => :'String',
    :'id_check_required_metadata' => :'SettingsMetadata',
    :'identity_verification' => :'Array<AccountIdentityVerificationWorkflow>',
    :'identity_verification_metadata' => :'SettingsMetadata',
    :'idfx_phone_authentication_override' => :'String',
    :'idfx_phone_authentication_override_metadata' => :'SettingsMetadata',
    :'ignore_error_if_anchor_tab_not_found' => :'String',
    :'ignore_error_if_anchor_tab_not_found_metadata_enabled' => :'SettingsMetadata',
    :'in_person_id_check_question' => :'String',
    :'in_person_id_check_question_metadata' => :'SettingsMetadata',
    :'in_person_signing_enabled' => :'String',
    :'in_person_signing_enabled_metadata' => :'SettingsMetadata',
    :'in_session_enabled' => :'String',
    :'in_session_enabled_metadata' => :'SettingsMetadata',
    :'in_session_suppress_emails' => :'String',
    :'in_session_suppress_emails_metadata' => :'SettingsMetadata',
    :'linked_external_primary_accounts' => :'Array<LinkedExternalPrimaryAccount>',
    :'maximum_signing_groups' => :'String',
    :'maximum_signing_groups_metadata' => :'SettingsMetadata',
    :'maximum_users_per_signing_group' => :'String',
    :'maximum_users_per_signing_group_metadata' => :'SettingsMetadata',
    :'max_number_of_custom_stamps' => :'String',
    :'mobile_session_timeout' => :'String',
    :'mobile_session_timeout_metadata' => :'SettingsMetadata',
    :'number_of_active_custom_stamps' => :'String',
    :'opt_in_mobile_signing_v02' => :'String',
    :'opt_in_mobile_signing_v02_metadata' => :'SettingsMetadata',
    :'opt_out_auto_nav_text_and_tab_color_updates' => :'String',
    :'opt_out_auto_nav_text_and_tab_color_updates_metadata' => :'SettingsMetadata',
    :'opt_out_new_platform_seal' => :'String',
    :'opt_out_new_platform_seal_platform_metadata' => :'SettingsMetadata',
    :'phone_auth_recipient_may_provide_phone_number' => :'String',
    :'phone_auth_recipient_may_provide_phone_number_metadata' => :'SettingsMetadata',
    :'pki_sign_downloaded_pdf_docs' => :'String',
    :'pki_sign_downloaded_pdf_docs_metadata' => :'SettingsMetadata',
    :'read_only_mode' => :'String',
    :'read_only_mode_metadata' => :'SettingsMetadata',
    :'recipients_can_sign_offline' => :'String',
    :'recipients_can_sign_offline_metadata' => :'SettingsMetadata',
    :'recipient_signing_auto_navigation_control' => :'String',
    :'recipient_signing_auto_navigation_control_metadata' => :'SettingsMetadata',
    :'require21_cf_rpt11_compliance' => :'String',
    :'require21_cf_rpt11_compliance_metadata' => :'SettingsMetadata',
    :'require_decline_reason' => :'String',
    :'require_decline_reason_metadata' => :'SettingsMetadata',
    :'require_external_user_management' => :'String',
    :'require_external_user_management_metadata' => :'SettingsMetadata',
    :'require_signer_certificate_type' => :'String',
    :'require_signer_certificate_type_metadata' => :'SettingsMetadata',
    :'rsa_verid_account_name' => :'String',
    :'rsa_verid_password' => :'String',
    :'rsa_verid_ruleset' => :'String',
    :'rsa_verid_user_id' => :'String',
    :'self_signed_recipient_email_document' => :'String',
    :'self_signed_recipient_email_document_metadata' => :'SettingsMetadata',
    :'self_signed_recipient_email_document_user_override' => :'String',
    :'self_signed_recipient_email_document_user_override_metadata' => :'SettingsMetadata',
    :'sender_can_sign_in_each_location' => :'String',
    :'sender_can_sign_in_each_location_metadata' => :'SettingsMetadata',
    :'sender_must_authenticate_signing' => :'String',
    :'sender_must_authenticate_signing_metadata' => :'SettingsMetadata',
    :'sending_tags_font_color' => :'String',
    :'sending_tags_font_color_metadata' => :'SettingsMetadata',
    :'sending_tags_font_name' => :'String',
    :'sending_tags_font_name_metadata' => :'SettingsMetadata',
    :'sending_tags_font_size' => :'String',
    :'sending_tags_font_size_metadata' => :'SettingsMetadata',
    :'send_lockout_recipient_notification' => :'String',
    :'send_lockout_recipient_notification_metadata' => :'SettingsMetadata',
    :'send_to_certified_delivery_enabled' => :'String',
    :'send_to_certified_delivery_enabled_metadata' => :'SettingsMetadata',
    :'session_timeout' => :'String',
    :'session_timeout_metadata' => :'SettingsMetadata',
    :'set_recip_email_lang' => :'String',
    :'set_recip_email_lang_metadata' => :'SettingsMetadata',
    :'set_recip_sign_lang' => :'String',
    :'set_recip_sign_lang_metadata' => :'SettingsMetadata',
    :'shared_template_folders' => :'String',
    :'shared_template_folders_metadata' => :'SettingsMetadata',
    :'show_complete_dialog_in_embedded_session' => :'String',
    :'show_complete_dialog_in_embedded_session_metadata' => :'SettingsMetadata',
    :'show_conditional_routing_on_send' => :'String',
    :'show_conditional_routing_on_send_metadata' => :'SettingsMetadata',
    :'show_initial_conditional_fields' => :'String',
    :'show_initial_conditional_fields_metadata' => :'SettingsMetadata',
    :'show_localized_watermarks' => :'String',
    :'show_localized_watermarks_metadata' => :'SettingsMetadata',
    :'show_masked_fields_when_downloading_document_as_sender' => :'String',
    :'show_masked_fields_when_downloading_document_as_sender_metadata' => :'SettingsMetadata',
    :'show_tutorials' => :'String',
    :'show_tutorials_metadata' => :'SettingsMetadata',
    :'signature_providers' => :'Array<String>',
    :'signature_providers_metadata' => :'SettingsMetadata',
    :'sign_date_format' => :'String',
    :'sign_date_format_metadata' => :'SettingsMetadata',
    :'sign_date_time_account_language_override' => :'String',
    :'sign_date_time_account_language_override_metadata' => :'SettingsMetadata',
    :'sign_date_time_account_timezone_override' => :'String',
    :'sign_date_time_account_timezone_override_metadata' => :'SettingsMetadata',
    :'signer_attach_certificate_to_envelope_pdf' => :'String',
    :'signer_attach_certificate_to_envelope_pdf_metadata' => :'SettingsMetadata',
    :'signer_attach_concat' => :'String',
    :'signer_attach_concat_metadata' => :'SettingsMetadata',
    :'signer_can_create_account' => :'String',
    :'signer_can_create_account_metadata' => :'SettingsMetadata',
    :'signer_can_sign_on_mobile' => :'String',
    :'signer_can_sign_on_mobile_metadata' => :'SettingsMetadata',
    :'signer_in_session_use_envelope_complete_email' => :'String',
    :'signer_in_session_use_envelope_complete_email_metadata' => :'SettingsMetadata',
    :'signer_login_requirements' => :'String',
    :'signer_login_requirements_metadata' => :'SettingsMetadata',
    :'signer_must_have_account' => :'String',
    :'signer_must_have_account_metadata' => :'SettingsMetadata',
    :'signer_must_login_to_sign' => :'String',
    :'signer_must_login_to_sign_metadata' => :'SettingsMetadata',
    :'signer_show_secure_field_initial_values' => :'String',
    :'signer_show_secure_field_initial_values_metadata' => :'SettingsMetadata',
    :'signing_session_timeout' => :'String',
    :'signing_session_timeout_metadata' => :'SettingsMetadata',
    :'signing_ui_version' => :'String',
    :'signing_ui_version_metadata' => :'SettingsMetadata',
    :'sign_time_format' => :'String',
    :'sign_time_format_metadata' => :'SettingsMetadata',
    :'sign_time_show_am_pm' => :'String',
    :'sign_time_show_am_pm_metadata' => :'SettingsMetadata',
    :'simplified_sending_enabled' => :'String',
    :'simplified_sending_enabled_metadata' => :'SettingsMetadata',
    :'single_sign_on_enabled' => :'String',
    :'single_sign_on_enabled_metadata' => :'SettingsMetadata',
    :'skip_auth_completed_envelopes' => :'String',
    :'skip_auth_completed_envelopes_metadata' => :'SettingsMetadata',
    :'social_id_recip_auth' => :'String',
    :'social_id_recip_auth_metadata' => :'SettingsMetadata',
    :'specify_document_visibility' => :'String',
    :'specify_document_visibility_metadata' => :'SettingsMetadata',
    :'start_in_advanced_correct' => :'String',
    :'start_in_advanced_correct_metadata' => :'SettingsMetadata',
    :'supplemental_documents_must_accept' => :'String',
    :'supplemental_documents_must_accept_metadata' => :'SettingsMetadata',
    :'supplemental_documents_must_read' => :'String',
    :'supplemental_documents_must_read_metadata' => :'SettingsMetadata',
    :'supplemental_documents_must_view' => :'String',
    :'supplemental_documents_must_view_metadata' => :'SettingsMetadata',
    :'suppress_certificate_enforcement' => :'String',
    :'suppress_certificate_enforcement_metadata' => :'SettingsMetadata',
    :'tab_account_settings' => :'TabAccountSettings',
    :'timezone_offset_api' => :'String',
    :'timezone_offset_api_metadata' => :'SettingsMetadata',
    :'timezone_offset_ui' => :'String',
    :'timezone_offset_ui_metadata' => :'SettingsMetadata',
    :'universal_signature_opt_in' => :'String',
    :'use_account_level_email' => :'String',
    :'use_account_level_email_metadata' => :'SettingsMetadata',
    :'use_consumer_disclosure' => :'String',
    :'use_consumer_disclosure_metadata' => :'SettingsMetadata',
    :'use_consumer_disclosure_within_account' => :'String',
    :'use_consumer_disclosure_within_account_metadata' => :'SettingsMetadata',
    :'use_derived_keys' => :'String',
    :'use_derived_keys_metadata' => :'SettingsMetadata',
    :'use_docu_sign_express_signer_certificate' => :'String',
    :'use_docu_sign_express_signer_certificate_metadata' => :'SettingsMetadata',
    :'use_multi_app_groups_data' => :'String',
    :'use_multi_app_groups_data_metadata' => :'SettingsMetadata',
    :'use_new_blob_for_pdf' => :'String',
    :'use_new_blob_for_pdf_metadata' => :'SettingsMetadata',
    :'use_safe_signer_certificates' => :'String',
    :'use_safe_signer_certificates_metadata' => :'SettingsMetadata',
    :'uses_api' => :'String',
    :'uses_api_metadata' => :'SettingsMetadata',
    :'use_signature_provider_platform' => :'String',
    :'use_signature_provider_platform_metadata' => :'SettingsMetadata',
    :'use_smart_contracts_v1' => :'String',
    :'validations_allowed' => :'String',
    :'validations_allowed_metadata' => :'SettingsMetadata',
    :'validations_brand' => :'String',
    :'validations_brand_metadata' => :'SettingsMetadata',
    :'validations_cadence' => :'String',
    :'validations_cadence_metadata' => :'SettingsMetadata',
    :'validations_enabled' => :'String',
    :'validations_enabled_metadata' => :'SettingsMetadata',
    :'validations_report' => :'String',
    :'validations_report_metadata' => :'SettingsMetadata',
    :'water_mark_enabled' => :'String',
    :'water_mark_enabled_metadata' => :'SettingsMetadata',
    :'write_reminder_to_envelope_history' => :'String',
    :'write_reminder_to_envelope_history_metadata' => :'SettingsMetadata',
    :'wurfl_min_allowable_screen_size' => :'String',
    :'wurfl_min_allowable_screen_size_metadata' => :'SettingsMetadata'
  }
end

Instance Method Details

#==(o) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • Object (Object)

    to be compared



5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
# File 'lib/docusign_esign/models/account_settings_information.rb', line 5247

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
      access_code_format == o.access_code_format &&
       == o. &&
       == o. &&
       == o. &&
       == o. &&
       == o. &&
       == o. &&
       == o. &&
       == o. &&
      adopt_sig_config == o.adopt_sig_config &&
       == o. &&
      advanced_correct == o.advanced_correct &&
       == o. &&
      allow_access_code_format == o.allow_access_code_format &&
       == o. &&
       == o. &&
       == o. &&
       == o. &&
       == o. &&
      allow_advanced_recipient_routing_conditional == o.allow_advanced_recipient_routing_conditional &&
       == o. &&
      allow_agent_name_email_edit == o.allow_agent_name_email_edit &&
       == o. &&
      allow_agreement_actions == o.allow_agreement_actions &&
       == o. &&
      allow_auto_nav_settings == o.allow_auto_nav_settings &&
       == o. &&
      allow_auto_tagging == o.allow_auto_tagging &&
       == o. &&
      allow_bulk_send == o.allow_bulk_send &&
       == o. &&
      allow_cd_withdraw == o.allow_cd_withdraw &&
       == o. &&
      allow_connect_http_listener_configs == o.allow_connect_http_listener_configs &&
      allow_connect_send_finish_later == o.allow_connect_send_finish_later &&
       == o. &&
      allow_connect_unified_payload_ui == o.allow_connect_unified_payload_ui &&
      allow_consumer_disclosure_override == o.allow_consumer_disclosure_override &&
       == o. &&
      allow_data_download == o.allow_data_download &&
       == o. &&
      allow_delayed_routing == o.allow_delayed_routing &&
       == o. &&
      allow_delegated_signing == o.allow_delegated_signing &&
       == o. &&
      allow_document_disclosures == o.allow_document_disclosures &&
       == o. &&
      allow_documents_on_signed_envelopes == o.allow_documents_on_signed_envelopes &&
       == o. &&
      allow_document_visibility == o.allow_document_visibility &&
       == o. &&
      allow_e_hanko_stamps == o.allow_e_hanko_stamps &&
       == o. &&
      allow_e_note_e_original == o.allow_e_note_e_original &&
       == o. &&
      allow_envelope_correct == o.allow_envelope_correct &&
       == o. &&
      allow_envelope_custody_transfer == o.allow_envelope_custody_transfer &&
       == o. &&
      allow_envelope_custom_fields == o.allow_envelope_custom_fields &&
       == o. &&
      allow_envelope_publish_reporting == o.allow_envelope_publish_reporting &&
       == o. &&
      allow_envelope_reporting == o.allow_envelope_reporting &&
       == o. &&
      allow_expression == o.allow_expression &&
       == o. &&
      allow_express_signer_certificate == o.allow_express_signer_certificate &&
       == o. &&
      allow_extended_sending_resource_file == o.allow_extended_sending_resource_file &&
       == o. &&
      allow_external_linked_accounts == o.allow_external_linked_accounts &&
       == o. &&
      allow_external_signature_pad == o.allow_external_signature_pad &&
       == o. &&
      allow_idv_level1 == o.allow_idv_level1 &&
       == o. &&
      allow_idv_level2 == o.allow_idv_level2 &&
       == o. &&
      allow_idv_level3 == o.allow_idv_level3 &&
       == o. &&
      allow_idv_platform == o.allow_idv_platform &&
       == o. &&
      allow_in_person == o.allow_in_person &&
      allow_in_person_electronic_notary == o.allow_in_person_electronic_notary &&
       == o. &&
       == o. &&
      allow_managed_stamps == o.allow_managed_stamps &&
       == o. &&
      allow_managing_envelopes_on_behalf_of_others == o.allow_managing_envelopes_on_behalf_of_others &&
       == o. &&
      allow_markup == o.allow_markup &&
       == o. &&
      allow_member_time_zone == o.allow_member_time_zone &&
       == o. &&
      allow_merge_fields == o.allow_merge_fields &&
       == o. &&
      allow_multiple_brand_profiles == o.allow_multiple_brand_profiles &&
       == o. &&
      allow_multiple_signer_attachments == o.allow_multiple_signer_attachments &&
       == o. &&
      allow_non_us_phone_auth == o.allow_non_us_phone_auth &&
       == o. &&
      allow_ocr_of_envelope_documents == o.allow_ocr_of_envelope_documents &&
       == o. &&
      allow_offline_signing == o.allow_offline_signing &&
       == o. &&
      allow_open_trust_signer_certificate == o.allow_open_trust_signer_certificate &&
       == o. &&
      allow_organization_docusign_monitor == o.allow_organization_docusign_monitor &&
       == o. &&
      allow_organization_domain_user_management == o.allow_organization_domain_user_management &&
       == o. &&
      allow_organizations == o.allow_organizations &&
       == o. &&
      allow_organization_sso_management == o.allow_organization_sso_management &&
       == o. &&
      allow_organization_to_use_in_person_electronic_notary == o.allow_organization_to_use_in_person_electronic_notary &&
       == o. &&
      allow_organization_to_use_remote_notary == o.allow_organization_to_use_remote_notary &&
       == o. &&
      allow_organization_to_use_third_party_electronic_notary == o.allow_organization_to_use_third_party_electronic_notary &&
       == o. &&
      allow_payment_processing == o.allow_payment_processing &&
       == o. &&
      allow_phone_authentication == o.allow_phone_authentication &&
       == o. &&
      allow_phone_auth_override == o.allow_phone_auth_override &&
       == o. &&
      allow_private_signing_groups == o.allow_private_signing_groups &&
       == o. &&
      allow_recipient_connect == o.allow_recipient_connect &&
       == o. &&
      allow_reminders == o.allow_reminders &&
       == o. &&
      allow_remote_notary == o.allow_remote_notary &&
       == o. &&
      allow_resource_file_branding == o.allow_resource_file_branding &&
       == o. &&
      allow_safe_bio_pharma_signer_certificate == o.allow_safe_bio_pharma_signer_certificate &&
       == o. &&
      allow_scheduled_sending == o.allow_scheduled_sending &&
       == o. &&
      allow_security_appliance == o.allow_security_appliance &&
       == o. &&
      allow_sending_envelopes_on_behalf_of_others == o.allow_sending_envelopes_on_behalf_of_others &&
       == o. &&
      allow_send_to_certified_delivery == o.allow_send_to_certified_delivery &&
       == o. &&
      allow_send_to_intermediary == o.allow_send_to_intermediary &&
       == o. &&
      allow_server_templates == o.allow_server_templates &&
       == o. &&
      allow_set_embedded_recipient_start_url == o.allow_set_embedded_recipient_start_url &&
       == o. &&
      allow_shared_tabs == o.allow_shared_tabs &&
       == o. &&
      allow_signature_stamps == o.allow_signature_stamps &&
       == o. &&
      allow_sign_document_from_home_page == o.allow_sign_document_from_home_page &&
       == o. &&
      allow_signer_reassign == o.allow_signer_reassign &&
       == o. &&
      allow_signer_reassign_override == o.allow_signer_reassign_override &&
       == o. &&
      allow_signing_extensions == o.allow_signing_extensions &&
       == o. &&
      allow_signing_groups == o.allow_signing_groups &&
       == o. &&
      allow_signing_insights == o.allow_signing_insights &&
       == o. &&
      allow_signing_radio_deselect == o.allow_signing_radio_deselect &&
       == o. &&
      allow_sign_now == o.allow_sign_now &&
       == o. &&
      allow_sms_delivery == o.allow_sms_delivery &&
       == o. &&
       == o. &&
       == o. &&
      allow_supplemental_documents == o.allow_supplemental_documents &&
       == o. &&
      allow_third_party_electronic_notary == o.allow_third_party_electronic_notary &&
       == o. &&
      allow_users_to_access_directory == o.allow_users_to_access_directory &&
       == o. &&
      allow_value_insights == o.allow_value_insights &&
       == o. &&
      allow_web_forms == o.allow_web_forms &&
       == o. &&
      anchor_population_scope == o.anchor_population_scope &&
       == o. &&
      anchor_tag_versioned_placement_enabled == o.anchor_tag_versioned_placement_enabled &&
       == o. &&
      attach_completed_envelope == o.attach_completed_envelope &&
       == o. &&
      authentication_check == o.authentication_check &&
       == o. &&
      auto_nav_rule == o.auto_nav_rule &&
       == o. &&
       == o. &&
       == o. &&
      bcc_email_archive == o.bcc_email_archive &&
       == o. &&
      beta_switch_configuration == o.beta_switch_configuration &&
       == o. &&
      billing_address == o.billing_address &&
       == o. &&
      bulk_send == o.bulk_send &&
      bulk_send_action_resend_limit == o.bulk_send_action_resend_limit &&
      bulk_send_max_copies_in_batch == o.bulk_send_max_copies_in_batch &&
      bulk_send_max_unprocessed_envelopes_count == o.bulk_send_max_unprocessed_envelopes_count &&
       == o. &&
      can_self_brand_send == o.can_self_brand_send &&
       == o. &&
      can_self_brand_sign == o.can_self_brand_sign &&
       == o. &&
      can_use_salesforce_o_auth == o.can_use_salesforce_o_auth &&
       == o. &&
      capture_voice_recording == o.capture_voice_recording &&
       == o. &&
      cfr21_simplified_signing_enabled == o.cfr21_simplified_signing_enabled &&
       == o. &&
      cfr_use_wide_image == o.cfr_use_wide_image &&
       == o. &&
       == o. &&
       == o. &&
      chrome_signature_enabled == o.chrome_signature_enabled &&
       == o. &&
      comment_email_show_message_text == o.comment_email_show_message_text &&
       == o. &&
      comments_allow_envelope_override == o.comments_allow_envelope_override &&
       == o. &&
      conditional_fields_enabled == o.conditional_fields_enabled &&
       == o. &&
      consumer_disclosure_frequency == o.consumer_disclosure_frequency &&
       == o. &&
      convert_pdf_fields == o.convert_pdf_fields &&
       == o. &&
      data_population_scope == o.data_population_scope &&
       == o. &&
      disable_auto_template_matching == o.disable_auto_template_matching &&
       == o. &&
      disable_mobile_app == o.disable_mobile_app &&
       == o. &&
      disable_mobile_push_notifications == o.disable_mobile_push_notifications &&
       == o. &&
      disable_mobile_sending == o.disable_mobile_sending &&
       == o. &&
      disable_multiple_sessions == o.disable_multiple_sessions &&
       == o. &&
       == o. &&
      disable_signer_cert_view == o.disable_signer_cert_view &&
       == o. &&
      disable_signer_history_view == o.disable_signer_history_view &&
       == o. &&
      disable_style_signature == o.disable_style_signature &&
       == o. &&
      disable_upload_signature == o.disable_upload_signature &&
       == o. &&
      disable_user_sharing == o.disable_user_sharing &&
       == o. &&
      display_beta_switch == o.display_beta_switch &&
       == o. &&
      document_conversion_restrictions == o.document_conversion_restrictions &&
       == o. &&
      document_retention == o.document_retention &&
       == o. &&
      document_retention_purge_tabs == o.document_retention_purge_tabs &&
      document_visibility == o.document_visibility &&
       == o. &&
      dss_sign_28411_enable_leave_page_prompt_radmin_option == o.dss_sign_28411_enable_leave_page_prompt_radmin_option &&
      dss_sign_29182_slide_up_bar_radmin_option == o.dss_sign_29182_slide_up_bar_radmin_option &&
      email_template_version == o.email_template_version &&
       == o. &&
      enable_access_code_generator == o.enable_access_code_generator &&
       == o. &&
      enable_advanced_payments == o.enable_advanced_payments &&
       == o. &&
      enable_advanced_power_forms == o.enable_advanced_power_forms &&
       == o. &&
      enable_agreement_actions_for_clm == o.enable_agreement_actions_for_clm &&
       == o. &&
      enable_agreement_actions_for_e_sign == o.enable_agreement_actions_for_e_sign &&
       == o. &&
      enable_auto_nav == o.enable_auto_nav &&
       == o. &&
      enable_bcc_dummy_link == o.enable_bcc_dummy_link &&
       == o. &&
      enable_calculated_fields == o.enable_calculated_fields &&
       == o. &&
      enable_clickwraps == o.enable_clickwraps &&
       == o. &&
      enable_combined_pdf_download_for_sbs == o.enable_combined_pdf_download_for_sbs &&
      enable_comments_history_download_in_signing == o.enable_comments_history_download_in_signing &&
       == o. &&
      enable_customer_satisfaction_metric_tracking == o.enable_customer_satisfaction_metric_tracking &&
       == o. &&
      enable_ds_pro == o.enable_ds_pro &&
       == o. &&
       == o. &&
       == o. &&
      enable_envelope_stamping_by_ds_admin == o.enable_envelope_stamping_by_ds_admin &&
       == o. &&
      enable_esign_communities == o.enable_esign_communities &&
       == o. &&
      enable_id_fx_accountless_sms_auth_for_part11 == o.enable_id_fx_accountless_sms_auth_for_part11 &&
       == o. &&
      enable_id_fx_intuit_kba == o.enable_id_fx_intuit_kba &&
       == o. &&
      enable_id_fx_phone_authentication == o.enable_id_fx_phone_authentication &&
       == o. &&
      enable_in_browser_editor == o.enable_in_browser_editor &&
       == o. &&
      enable_key_terms_suggestions_by_document_type == o.enable_key_terms_suggestions_by_document_type &&
       == o. &&
      enable_payment_processing == o.enable_payment_processing &&
       == o. &&
      enable_pdfa_conversion == o.enable_pdfa_conversion &&
       == o. &&
      enable_power_form == o.enable_power_form &&
      enable_power_form_direct == o.enable_power_form_direct &&
       == o. &&
       == o. &&
      enable_recipient_domain_validation == o.enable_recipient_domain_validation &&
       == o. &&
      enable_recipient_may_provide_phone_number == o.enable_recipient_may_provide_phone_number &&
       == o. &&
      enable_report_links == o.enable_report_links &&
       == o. &&
      enable_require_sign_on_paper == o.enable_require_sign_on_paper &&
       == o. &&
      enable_reserved_domain == o.enable_reserved_domain &&
       == o. &&
      enable_responsive_signing == o.enable_responsive_signing &&
       == o. &&
      enable_scheduled_release == o.enable_scheduled_release &&
       == o. &&
      enable_search == o.enable_search &&
       == o. &&
      enable_search_site_specific_api == o.enable_search_site_specific_api &&
       == o. &&
      enable_search_ui == o.enable_search_ui &&
       == o. &&
      enable_sending_tags_font_settings == o.enable_sending_tags_font_settings &&
       == o. &&
      enable_send_to_agent == o.enable_send_to_agent &&
       == o. &&
      enable_send_to_intermediary == o.enable_send_to_intermediary &&
       == o. &&
      enable_send_to_manage == o.enable_send_to_manage &&
       == o. &&
      enable_sequential_signing_api == o.enable_sequential_signing_api &&
       == o. &&
      enable_sequential_signing_ui == o.enable_sequential_signing_ui &&
       == o. &&
      enable_signer_attachments == o.enable_signer_attachments &&
       == o. &&
      enable_signing_extension_comments == o.enable_signing_extension_comments &&
       == o. &&
      enable_signing_extension_conversations == o.enable_signing_extension_conversations &&
       == o. &&
       == o. &&
       == o. &&
      enable_sign_on_paper == o.enable_sign_on_paper &&
       == o. &&
      enable_sign_on_paper_override == o.enable_sign_on_paper_override &&
       == o. &&
      enable_sign_with_notary == o.enable_sign_with_notary &&
       == o. &&
      enable_smart_contracts == o.enable_smart_contracts &&
       == o. &&
      enable_sms_authentication == o.enable_sms_authentication &&
       == o. &&
      enable_sms_delivery_additional_notification == o.enable_sms_delivery_additional_notification &&
       == o. &&
      enable_sms_delivery_primary == o.enable_sms_delivery_primary &&
       == o. &&
       == o. &&
      enable_strike_through == o.enable_strike_through &&
       == o. &&
      enable_transaction_point == o.enable_transaction_point &&
       == o. &&
      enable_vaulting == o.enable_vaulting &&
       == o. &&
      enable_witnessing == o.enable_witnessing &&
       == o. &&
      enforce_template_name_uniqueness == o.enforce_template_name_uniqueness &&
       == o. &&
      envelope_integration_allowed == o.envelope_integration_allowed &&
       == o. &&
      envelope_integration_enabled == o.envelope_integration_enabled &&
       == o. &&
      envelope_stamping_default_value == o.envelope_stamping_default_value &&
       == o. &&
      exit_prompt == o.exit_prompt &&
       == o. &&
      express_send == o.express_send &&
      express_send_allow_tabs == o.express_send_allow_tabs &&
       == o. &&
       == o. &&
      external_document_sources == o.external_document_sources &&
      external_signature_pad_type == o.external_signature_pad_type &&
       == o. &&
      fax_out_enabled == o.fax_out_enabled &&
       == o. &&
      finish_reminder == o.finish_reminder &&
       == o. &&
      guided_forms_html_allowed == o.guided_forms_html_allowed &&
       == o. &&
      has_recipient_connect_claimed_domain == o.has_recipient_connect_claimed_domain &&
       == o. &&
       == o. &&
      hide_pricing == o.hide_pricing &&
       == o. &&
      id_check_configurations == o.id_check_configurations &&
      id_check_expire == o.id_check_expire &&
      id_check_expire_days == o.id_check_expire_days &&
       == o. &&
       == o. &&
      id_check_expire_minutes == o.id_check_expire_minutes &&
       == o. &&
      id_check_required == o.id_check_required &&
       == o. &&
      identity_verification == o.identity_verification &&
       == o. &&
      idfx_phone_authentication_override == o.idfx_phone_authentication_override &&
       == o. &&
      ignore_error_if_anchor_tab_not_found == o.ignore_error_if_anchor_tab_not_found &&
       == o. &&
      in_person_id_check_question == o.in_person_id_check_question &&
       == o. &&
      in_person_signing_enabled == o.in_person_signing_enabled &&
       == o. &&
      in_session_enabled == o.in_session_enabled &&
       == o. &&
      in_session_suppress_emails == o.in_session_suppress_emails &&
       == o. &&
      linked_external_primary_accounts == o.linked_external_primary_accounts &&
      maximum_signing_groups == o.maximum_signing_groups &&
       == o. &&
      maximum_users_per_signing_group == o.maximum_users_per_signing_group &&
       == o. &&
      max_number_of_custom_stamps == o.max_number_of_custom_stamps &&
      mobile_session_timeout == o.mobile_session_timeout &&
       == o. &&
      number_of_active_custom_stamps == o.number_of_active_custom_stamps &&
      opt_in_mobile_signing_v02 == o.opt_in_mobile_signing_v02 &&
       == o. &&
      opt_out_auto_nav_text_and_tab_color_updates == o.opt_out_auto_nav_text_and_tab_color_updates &&
       == o. &&
      opt_out_new_platform_seal == o.opt_out_new_platform_seal &&
       == o. &&
      phone_auth_recipient_may_provide_phone_number == o.phone_auth_recipient_may_provide_phone_number &&
       == o. &&
      pki_sign_downloaded_pdf_docs == o.pki_sign_downloaded_pdf_docs &&
       == o. &&
      read_only_mode == o.read_only_mode &&
       == o. &&
      recipients_can_sign_offline == o.recipients_can_sign_offline &&
       == o. &&
      recipient_signing_auto_navigation_control == o.recipient_signing_auto_navigation_control &&
       == o. &&
      require21_cf_rpt11_compliance == o.require21_cf_rpt11_compliance &&
       == o. &&
      require_decline_reason == o.require_decline_reason &&
       == o. &&
      require_external_user_management == o.require_external_user_management &&
       == o. &&
      require_signer_certificate_type == o.require_signer_certificate_type &&
       == o. &&
       == o. &&
      rsa_verid_password == o.rsa_verid_password &&
      rsa_verid_ruleset == o.rsa_verid_ruleset &&
      rsa_verid_user_id == o.rsa_verid_user_id &&
      self_signed_recipient_email_document == o.self_signed_recipient_email_document &&
       == o. &&
      self_signed_recipient_email_document_user_override == o.self_signed_recipient_email_document_user_override &&
       == o. &&
       == o. &&
       == o. &&
      sender_must_authenticate_signing == o.sender_must_authenticate_signing &&
       == o. &&
      sending_tags_font_color == o.sending_tags_font_color &&
       == o. &&
      sending_tags_font_name == o.sending_tags_font_name &&
       == o. &&
      sending_tags_font_size == o.sending_tags_font_size &&
       == o. &&
      send_lockout_recipient_notification == o.send_lockout_recipient_notification &&
       == o. &&
      send_to_certified_delivery_enabled == o.send_to_certified_delivery_enabled &&
       == o. &&
      session_timeout == o.session_timeout &&
       == o. &&
      set_recip_email_lang == o.set_recip_email_lang &&
       == o. &&
      set_recip_sign_lang == o.set_recip_sign_lang &&
       == o. &&
      shared_template_folders == o.shared_template_folders &&
       == o. &&
      show_complete_dialog_in_embedded_session == o.show_complete_dialog_in_embedded_session &&
       == o. &&
      show_conditional_routing_on_send == o.show_conditional_routing_on_send &&
       == o. &&
      show_initial_conditional_fields == o.show_initial_conditional_fields &&
       == o. &&
      show_localized_watermarks == o.show_localized_watermarks &&
       == o. &&
      show_masked_fields_when_downloading_document_as_sender == o.show_masked_fields_when_downloading_document_as_sender &&
       == o. &&
      show_tutorials == o.show_tutorials &&
       == o. &&
      signature_providers == o.signature_providers &&
       == o. &&
      sign_date_format == o.sign_date_format &&
       == o. &&
       == o. &&
       == o. &&
       == o. &&
       == o. &&
      signer_attach_certificate_to_envelope_pdf == o.signer_attach_certificate_to_envelope_pdf &&
       == o. &&
      signer_attach_concat == o.signer_attach_concat &&
       == o. &&
       == o. &&
       == o. &&
      signer_can_sign_on_mobile == o.signer_can_sign_on_mobile &&
       == o. &&
      signer_in_session_use_envelope_complete_email == o.signer_in_session_use_envelope_complete_email &&
       == o. &&
       == o. &&
       == o. &&
       == o. &&
       == o. &&
       == o. &&
       == o. &&
      signer_show_secure_field_initial_values == o.signer_show_secure_field_initial_values &&
       == o. &&
      signing_session_timeout == o.signing_session_timeout &&
       == o. &&
      signing_ui_version == o.signing_ui_version &&
       == o. &&
      sign_time_format == o.sign_time_format &&
       == o. &&
      sign_time_show_am_pm == o.sign_time_show_am_pm &&
       == o. &&
      simplified_sending_enabled == o.simplified_sending_enabled &&
       == o. &&
      single_sign_on_enabled == o.single_sign_on_enabled &&
       == o. &&
      skip_auth_completed_envelopes == o.skip_auth_completed_envelopes &&
       == o. &&
      social_id_recip_auth == o.social_id_recip_auth &&
       == o. &&
      specify_document_visibility == o.specify_document_visibility &&
       == o. &&
      start_in_advanced_correct == o.start_in_advanced_correct &&
       == o. &&
      supplemental_documents_must_accept == o.supplemental_documents_must_accept &&
       == o. &&
      supplemental_documents_must_read == o.supplemental_documents_must_read &&
       == o. &&
      supplemental_documents_must_view == o.supplemental_documents_must_view &&
       == o. &&
      suppress_certificate_enforcement == o.suppress_certificate_enforcement &&
       == o. &&
       == o. &&
      timezone_offset_api == o.timezone_offset_api &&
       == o. &&
      timezone_offset_ui == o.timezone_offset_ui &&
       == o. &&
      universal_signature_opt_in == o.universal_signature_opt_in &&
       == o. &&
       == o. &&
      use_consumer_disclosure == o.use_consumer_disclosure &&
       == o. &&
       == o. &&
       == o. &&
      use_derived_keys == o.use_derived_keys &&
       == o. &&
      use_docu_sign_express_signer_certificate == o.use_docu_sign_express_signer_certificate &&
       == o. &&
      use_multi_app_groups_data == o.use_multi_app_groups_data &&
       == o. &&
      use_new_blob_for_pdf == o.use_new_blob_for_pdf &&
       == o. &&
      use_safe_signer_certificates == o.use_safe_signer_certificates &&
       == o. &&
      uses_api == o.uses_api &&
       == o. &&
      use_signature_provider_platform == o.use_signature_provider_platform &&
       == o. &&
      use_smart_contracts_v1 == o.use_smart_contracts_v1 &&
      validations_allowed == o.validations_allowed &&
       == o. &&
      validations_brand == o.validations_brand &&
       == o. &&
      validations_cadence == o.validations_cadence &&
       == o. &&
      validations_enabled == o.validations_enabled &&
       == o. &&
      validations_report == o.validations_report &&
       == o. &&
      water_mark_enabled == o.water_mark_enabled &&
       == o. &&
      write_reminder_to_envelope_history == o.write_reminder_to_envelope_history &&
       == o. &&
      wurfl_min_allowable_screen_size == o.wurfl_min_allowable_screen_size &&
       == o.
end

#_deserialize(type, value) ⇒ Object

Deserializes the data based on type

Parameters:

  • string

    type Data type

  • string

    value Value to be deserialized

Returns:

  • (Object)

    Deserialized data



5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
# File 'lib/docusign_esign/models/account_settings_information.rb', line 5897

def _deserialize(type, value)
  case type.to_sym
  when :DateTime
    DateTime.parse(value)
  when :Date
    Date.parse(value)
  when :String
    value.to_s
  when :Integer
    value.to_i
  when :Float
    value.to_f
  when :BOOLEAN
    if value.to_s =~ /\A(true|t|yes|y|1)\z/i
      true
    else
      false
    end
  when :Object
    # generic object (usually a Hash), return directly
    value
  when /\AArray<(?<inner_type>.+)>\z/
    inner_type = Regexp.last_match[:inner_type]
    value.map { |v| _deserialize(inner_type, v) }
  when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
    k_type = Regexp.last_match[:k_type]
    v_type = Regexp.last_match[:v_type]
    {}.tap do |hash|
      value.each do |k, v|
        hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
      end
    end
  else # model
    temp_model = DocuSign_eSign.const_get(type).new
    temp_model.build_from_hash(value)
  end
end

#_to_hash(value) ⇒ Hash

Outputs non-array value in the form of hash For object, use to_hash. Otherwise, just return the value

Parameters:

  • value (Object)

    Any valid value

Returns:

  • (Hash)

    Returns the value in the form of hash



5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
# File 'lib/docusign_esign/models/account_settings_information.rb', line 5963

def _to_hash(value)
  if value.is_a?(Array)
    value.compact.map { |v| _to_hash(v) }
  elsif value.is_a?(Hash)
    {}.tap do |hash|
      value.each { |k, v| hash[k] = _to_hash(v) }
    end
  elsif value.respond_to? :to_hash
    value.to_hash
  else
    value
  end
end

#build_from_hash(attributes) ⇒ Object

Builds the object from hash

Parameters:

  • attributes (Hash)

    Model attributes in the form of hash

Returns:

  • (Object)

    Returns the model itself



5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
# File 'lib/docusign_esign/models/account_settings_information.rb', line 5876

def build_from_hash(attributes)
  return nil unless attributes.is_a?(Hash)
  self.class.swagger_types.each_pair do |key, type|
    if type =~ /\AArray<(.*)>/i
      # check to ensure the input is an array given that the attribute
      # is documented as an array but the input is not
      if attributes[self.class.attribute_map[key]].is_a?(Array)
        self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
      end
    elsif !attributes[self.class.attribute_map[key]].nil?
      self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
    end # or else data not found in attributes(hash), not an issue as the data can be optional
  end

  self
end

#eql?(o) ⇒ Boolean

Parameters:

  • Object (Object)

    to be compared

Returns:

  • (Boolean)

See Also:

  • `==` method


5863
5864
5865
# File 'lib/docusign_esign/models/account_settings_information.rb', line 5863

def eql?(o)
  self == o
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



5869
5870
5871
# File 'lib/docusign_esign/models/account_settings_information.rb', line 5869

def hash
  [access_code_format, , , , , , , , , adopt_sig_config, , advanced_correct, , allow_access_code_format, , , , , , allow_advanced_recipient_routing_conditional, , allow_agent_name_email_edit, , allow_agreement_actions, , allow_auto_nav_settings, , allow_auto_tagging, , allow_bulk_send, , allow_cd_withdraw, , allow_connect_http_listener_configs, allow_connect_send_finish_later, , allow_connect_unified_payload_ui, allow_consumer_disclosure_override, , allow_data_download, , allow_delayed_routing, , allow_delegated_signing, , allow_document_disclosures, , allow_documents_on_signed_envelopes, , allow_document_visibility, , allow_e_hanko_stamps, , allow_e_note_e_original, , allow_envelope_correct, , allow_envelope_custody_transfer, , allow_envelope_custom_fields, , allow_envelope_publish_reporting, , allow_envelope_reporting, , allow_expression, , allow_express_signer_certificate, , allow_extended_sending_resource_file, , allow_external_linked_accounts, , allow_external_signature_pad, , allow_idv_level1, , allow_idv_level2, , allow_idv_level3, , allow_idv_platform, , allow_in_person, allow_in_person_electronic_notary, , , allow_managed_stamps, , allow_managing_envelopes_on_behalf_of_others, , allow_markup, , allow_member_time_zone, , allow_merge_fields, , allow_multiple_brand_profiles, , allow_multiple_signer_attachments, , allow_non_us_phone_auth, , allow_ocr_of_envelope_documents, , allow_offline_signing, , allow_open_trust_signer_certificate, , allow_organization_docusign_monitor, , allow_organization_domain_user_management, , allow_organizations, , allow_organization_sso_management, , allow_organization_to_use_in_person_electronic_notary, , allow_organization_to_use_remote_notary, , allow_organization_to_use_third_party_electronic_notary, , allow_payment_processing, , allow_phone_authentication, , allow_phone_auth_override, , allow_private_signing_groups, , allow_recipient_connect, , allow_reminders, , allow_remote_notary, , allow_resource_file_branding, , allow_safe_bio_pharma_signer_certificate, , allow_scheduled_sending, , allow_security_appliance, , allow_sending_envelopes_on_behalf_of_others, , allow_send_to_certified_delivery, , allow_send_to_intermediary, , allow_server_templates, , allow_set_embedded_recipient_start_url, , allow_shared_tabs, , allow_signature_stamps, , allow_sign_document_from_home_page, , allow_signer_reassign, , allow_signer_reassign_override, , allow_signing_extensions, , allow_signing_groups, , allow_signing_insights, , allow_signing_radio_deselect, , allow_sign_now, , allow_sms_delivery, , , , allow_supplemental_documents, , allow_third_party_electronic_notary, , allow_users_to_access_directory, , allow_value_insights, , allow_web_forms, , anchor_population_scope, , anchor_tag_versioned_placement_enabled, , attach_completed_envelope, , authentication_check, , auto_nav_rule, , , , bcc_email_archive, , beta_switch_configuration, , billing_address, , bulk_send, bulk_send_action_resend_limit, bulk_send_max_copies_in_batch, bulk_send_max_unprocessed_envelopes_count, , can_self_brand_send, , can_self_brand_sign, , can_use_salesforce_o_auth, , capture_voice_recording, , cfr21_simplified_signing_enabled, , cfr_use_wide_image, , , , chrome_signature_enabled, , comment_email_show_message_text, , comments_allow_envelope_override, , conditional_fields_enabled, , consumer_disclosure_frequency, , convert_pdf_fields, , data_population_scope, , disable_auto_template_matching, , disable_mobile_app, , disable_mobile_push_notifications, , disable_mobile_sending, , disable_multiple_sessions, , , disable_signer_cert_view, , disable_signer_history_view, , disable_style_signature, , disable_upload_signature, , disable_user_sharing, , display_beta_switch, , document_conversion_restrictions, , document_retention, , document_retention_purge_tabs, document_visibility, , dss_sign_28411_enable_leave_page_prompt_radmin_option, dss_sign_29182_slide_up_bar_radmin_option, email_template_version, , enable_access_code_generator, , enable_advanced_payments, , enable_advanced_power_forms, , enable_agreement_actions_for_clm, , enable_agreement_actions_for_e_sign, , enable_auto_nav, , enable_bcc_dummy_link, , enable_calculated_fields, , enable_clickwraps, , enable_combined_pdf_download_for_sbs, enable_comments_history_download_in_signing, , enable_customer_satisfaction_metric_tracking, , enable_ds_pro, , , , enable_envelope_stamping_by_ds_admin, , enable_esign_communities, , enable_id_fx_accountless_sms_auth_for_part11, , enable_id_fx_intuit_kba, , enable_id_fx_phone_authentication, , enable_in_browser_editor, , enable_key_terms_suggestions_by_document_type, , enable_payment_processing, , enable_pdfa_conversion, , enable_power_form, enable_power_form_direct, , , enable_recipient_domain_validation, , enable_recipient_may_provide_phone_number, , enable_report_links, , enable_require_sign_on_paper, , enable_reserved_domain, , enable_responsive_signing, , enable_scheduled_release, , enable_search, , enable_search_site_specific_api, , enable_search_ui, , enable_sending_tags_font_settings, , enable_send_to_agent, , enable_send_to_intermediary, , enable_send_to_manage, , enable_sequential_signing_api, , enable_sequential_signing_ui, , enable_signer_attachments, , enable_signing_extension_comments, , enable_signing_extension_conversations, , , , enable_sign_on_paper, , enable_sign_on_paper_override, , enable_sign_with_notary, , enable_smart_contracts, , enable_sms_authentication, , enable_sms_delivery_additional_notification, , enable_sms_delivery_primary, , , enable_strike_through, , enable_transaction_point, , enable_vaulting, , enable_witnessing, , enforce_template_name_uniqueness, , envelope_integration_allowed, , envelope_integration_enabled, , envelope_stamping_default_value, , exit_prompt, , express_send, express_send_allow_tabs, , , external_document_sources, external_signature_pad_type, , fax_out_enabled, , finish_reminder, , guided_forms_html_allowed, , has_recipient_connect_claimed_domain, , , hide_pricing, , id_check_configurations, id_check_expire, id_check_expire_days, , , id_check_expire_minutes, , id_check_required, , identity_verification, , idfx_phone_authentication_override, , ignore_error_if_anchor_tab_not_found, , in_person_id_check_question, , in_person_signing_enabled, , in_session_enabled, , in_session_suppress_emails, , linked_external_primary_accounts, maximum_signing_groups, , maximum_users_per_signing_group, , max_number_of_custom_stamps, mobile_session_timeout, , number_of_active_custom_stamps, opt_in_mobile_signing_v02, , opt_out_auto_nav_text_and_tab_color_updates, , opt_out_new_platform_seal, , phone_auth_recipient_may_provide_phone_number, , pki_sign_downloaded_pdf_docs, , read_only_mode, , recipients_can_sign_offline, , recipient_signing_auto_navigation_control, , require21_cf_rpt11_compliance, , require_decline_reason, , require_external_user_management, , require_signer_certificate_type, , , rsa_verid_password, rsa_verid_ruleset, rsa_verid_user_id, self_signed_recipient_email_document, , self_signed_recipient_email_document_user_override, , , , sender_must_authenticate_signing, , sending_tags_font_color, , sending_tags_font_name, , sending_tags_font_size, , send_lockout_recipient_notification, , send_to_certified_delivery_enabled, , session_timeout, , set_recip_email_lang, , set_recip_sign_lang, , shared_template_folders, , show_complete_dialog_in_embedded_session, , show_conditional_routing_on_send, , show_initial_conditional_fields, , show_localized_watermarks, , show_masked_fields_when_downloading_document_as_sender, , show_tutorials, , signature_providers, , sign_date_format, , , , , , signer_attach_certificate_to_envelope_pdf, , signer_attach_concat, , , , signer_can_sign_on_mobile, , signer_in_session_use_envelope_complete_email, , , , , , , , signer_show_secure_field_initial_values, , signing_session_timeout, , signing_ui_version, , sign_time_format, , sign_time_show_am_pm, , simplified_sending_enabled, , single_sign_on_enabled, , skip_auth_completed_envelopes, , social_id_recip_auth, , specify_document_visibility, , start_in_advanced_correct, , supplemental_documents_must_accept, , supplemental_documents_must_read, , supplemental_documents_must_view, , suppress_certificate_enforcement, , , timezone_offset_api, , timezone_offset_ui, , universal_signature_opt_in, , , use_consumer_disclosure, , , , use_derived_keys, , use_docu_sign_express_signer_certificate, , use_multi_app_groups_data, , use_new_blob_for_pdf, , use_safe_signer_certificates, , uses_api, , use_signature_provider_platform, , use_smart_contracts_v1, validations_allowed, , validations_brand, , validations_cadence, , validations_enabled, , validations_report, , water_mark_enabled, , write_reminder_to_envelope_history, , wurfl_min_allowable_screen_size, ].hash
end

#list_invalid_propertiesObject

Show invalid properties with the reasons. Usually used together with valid?

Returns:

  • Array for valid properties with the reasons



5234
5235
5236
5237
# File 'lib/docusign_esign/models/account_settings_information.rb', line 5234

def list_invalid_properties
  invalid_properties = Array.new
  invalid_properties
end

#to_bodyHash

to_body is an alias to to_hash (backward compatibility)

Returns:

  • (Hash)

    Returns the object in the form of hash



5943
5944
5945
# File 'lib/docusign_esign/models/account_settings_information.rb', line 5943

def to_body
  to_hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



5949
5950
5951
5952
5953
5954
5955
5956
5957
# File 'lib/docusign_esign/models/account_settings_information.rb', line 5949

def to_hash
  hash = {}
  self.class.attribute_map.each_pair do |attr, param|
    value = self.send(attr)
    next if value.nil?
    hash[param] = _to_hash(value)
  end
  hash
end

#to_sString

Returns the string representation of the object

Returns:

  • (String)

    String presentation of the object



5937
5938
5939
# File 'lib/docusign_esign/models/account_settings_information.rb', line 5937

def to_s
  to_hash.to_s
end

#valid?Boolean

Check to see if the all the properties in the model are valid

Returns:

  • (Boolean)

    true if the model is valid



5241
5242
5243
# File 'lib/docusign_esign/models/account_settings_information.rb', line 5241

def valid?
  true
end