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



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
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
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
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
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
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
6126
6127
6128
6129
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
6234
6235
6236
6237
6238
6239
6240
6241
6242
6243
6244
6245
6246
6247
6248
6249
6250
6251
6252
6253
6254
6255
6256
6257
6258
6259
6260
6261
6262
6263
6264
6265
6266
6267
6268
6269
6270
6271
6272
6273
6274
6275
6276
6277
6278
6279
6280
6281
6282
6283
6284
6285
6286
6287
6288
6289
6290
6291
6292
6293
6294
6295
6296
6297
6298
6299
6300
6301
6302
6303
6304
6305
6306
6307
6308
6309
6310
6311
6312
6313
6314
6315
6316
6317
6318
6319
6320
6321
6322
6323
6324
6325
6326
6327
6328
6329
6330
6331
6332
6333
6334
6335
6336
6337
6338
6339
6340
6341
6342
6343
6344
6345
6346
6347
6348
6349
6350
6351
6352
6353
6354
6355
6356
6357
6358
6359
6360
6361
6362
6363
6364
6365
6366
6367
6368
6369
6370
6371
6372
6373
6374
6375
6376
6377
6378
6379
6380
6381
6382
6383
6384
6385
6386
6387
6388
6389
6390
6391
6392
6393
6394
6395
6396
6397
6398
6399
6400
6401
6402
6403
6404
6405
6406
6407
6408
6409
6410
6411
6412
6413
6414
6415
6416
6417
6418
6419
6420
6421
6422
6423
6424
6425
6426
6427
6428
6429
6430
6431
6432
6433
6434
6435
6436
6437
6438
6439
6440
6441
6442
6443
6444
6445
6446
6447
6448
6449
6450
6451
6452
6453
6454
6455
6456
6457
6458
6459
6460
6461
6462
6463
6464
6465
6466
6467
6468
6469
6470
6471
6472
6473
6474
6475
6476
6477
6478
6479
6480
6481
6482
6483
6484
6485
6486
6487
6488
6489
6490
6491
6492
6493
6494
6495
6496
6497
6498
6499
6500
6501
6502
6503
6504
6505
6506
6507
6508
6509
6510
6511
6512
6513
6514
6515
6516
6517
6518
6519
6520
6521
6522
6523
6524
6525
6526
6527
6528
6529
6530
6531
6532
6533
6534
6535
6536
6537
6538
6539
6540
6541
6542
6543
6544
6545
6546
6547
6548
6549
6550
6551
6552
6553
6554
6555
6556
6557
6558
6559
6560
6561
6562
6563
6564
6565
6566
6567
6568
6569
# File 'lib/docusign_esign/models/account_settings_information.rb', line 3656

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?(:'advancedSearchEnableTabField')
    self.advanced_search_enable_tab_field = attributes[:'advancedSearchEnableTabField']
  end

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

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

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

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

  if attributes.has_key?(:'advancedSearchEnableTemplateNameFieldMetadata')
    self. = attributes[:'advancedSearchEnableTemplateNameFieldMetadata']
  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?(:'allowACE')
    self.allow_ace = attributes[:'allowACE']
  end

  if attributes.has_key?(:'allowACEMetadata')
    self. = attributes[:'allowACEMetadata']
  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?(:'allowAgreementOrchestrations')
    self.allow_agreement_orchestrations = attributes[:'allowAgreementOrchestrations']
  end

  if attributes.has_key?(:'allowAgreementOrchestrationsMetadata')
    self. = attributes[:'allowAgreementOrchestrationsMetadata']
  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?(:'AllowConnectIdentityVerificationUI')
    self.allow_connect_identity_verification_ui = attributes[:'AllowConnectIdentityVerificationUI']
  end

  if attributes.has_key?(:'allowConnectOAuthUI')
    self.allow_connect_o_auth_ui = attributes[:'allowConnectOAuthUI']
  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?(:'allowDocGenDocuments')
    self.allow_doc_gen_documents = attributes[:'allowDocGenDocuments']
  end

  if attributes.has_key?(:'allowDocGenDocumentsMetadata')
    self. = attributes[:'allowDocGenDocumentsMetadata']
  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?(:'allowEditingEnvelopesOnBehalfOfOthers')
    self.allow_editing_envelopes_on_behalf_of_others = attributes[:'allowEditingEnvelopesOnBehalfOfOthers']
  end

  if attributes.has_key?(:'allowEditingEnvelopesOnBehalfOfOthersMetadata')
    self. = attributes[:'allowEditingEnvelopesOnBehalfOfOthersMetadata']
  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?(:'allowIDVForEUQualifiedSignatures')
    self.allow_idv_for_eu_qualified_signatures = attributes[:'allowIDVForEUQualifiedSignatures']
  end

  if attributes.has_key?(:'allowIDVForEUQualifiedSignaturesMetadata')
    self. = attributes[:'allowIDVForEUQualifiedSignaturesMetadata']
  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?(:'allowIDVLevel1Trial')
    self.allow_idv_level1_trial = attributes[:'allowIDVLevel1Trial']
  end

  if attributes.has_key?(:'allowIDVLevel1TrialMetadata')
    self. = attributes[:'allowIDVLevel1TrialMetadata']
  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?(:'allowOrganizationDocusignMonitorFree')
    self.allow_organization_docusign_monitor_free = attributes[:'allowOrganizationDocusignMonitorFree']
  end

  if attributes.has_key?(:'allowOrganizationDocusignMonitorFreeMetadata')
    self. = attributes[:'allowOrganizationDocusignMonitorFreeMetadata']
  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?(:'allowParticipantRecipientType')
    self.allow_participant_recipient_type = attributes[:'allowParticipantRecipientType']
  end

  if attributes.has_key?(:'allowParticipantRecipientTypeMetadata')
    self. = attributes[:'allowParticipantRecipientTypeMetadata']
  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?(:'allowPerformanceAnalytics')
    self.allow_performance_analytics = attributes[:'allowPerformanceAnalytics']
  end

  if attributes.has_key?(:'allowPerformanceAnalyticsMetadata')
    self. = attributes[:'allowPerformanceAnalyticsMetadata']
  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?(:'allowTransactionsWorkspace')
    self.allow_transactions_workspace = attributes[:'allowTransactionsWorkspace']
  end

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

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

  if attributes.has_key?(:'allowTransactionsWorkspaceOriginalMetadata')
    self. = attributes[:'allowTransactionsWorkspaceOriginalMetadata']
  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?(:'allowWhatsAppDelivery')
    self.allow_whats_app_delivery = attributes[:'allowWhatsAppDelivery']
  end

  if attributes.has_key?(:'allowWhatsAppDeliveryMetadata')
    self. = attributes[:'allowWhatsAppDeliveryMetadata']
  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?(:'defaultToAdvancedEnvelopesFilterForm')
    self.default_to_advanced_envelopes_filter_form = attributes[:'defaultToAdvancedEnvelopesFilterForm']
  end

  if attributes.has_key?(:'defaultToAdvancedEnvelopesFilterFormMetadata')
    self. = attributes[:'defaultToAdvancedEnvelopesFilterFormMetadata']
  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?(:'draftEnvelopeRetention')
    self.draft_envelope_retention = attributes[:'draftEnvelopeRetention']
  end

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

  if attributes.has_key?(:'dss_EnableProvisioningPenConfiguration_RadminOption')
    self.dss_enable_provisioning_pen_configuration_radmin_option = attributes[:'dss_EnableProvisioningPenConfiguration_RadminOption']
  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?(:'enableAccountWideSearch')
    self. = attributes[:'enableAccountWideSearch']
  end

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

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

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

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

  if attributes.has_key?(:'enableAdvancedEnvelopesSearchMetadata')
    self. = attributes[:'enableAdvancedEnvelopesSearchMetadata']
  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?(:'enableClickPlus')
    self.enable_click_plus = attributes[:'enableClickPlus']
  end

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

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

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

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

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

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

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

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

  if attributes.has_key?(:'enableClickPlusMetaData')
    self. = attributes[:'enableClickPlusMetaData']
  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?(:'enableContactSuggestions')
    self.enable_contact_suggestions = attributes[:'enableContactSuggestions']
  end

  if attributes.has_key?(:'enableContactSuggestionsMetadata')
    self. = attributes[:'enableContactSuggestionsMetadata']
  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?(:'enableDSigEUAdvancedPens')
    self.enable_d_sig_eu_advanced_pens = attributes[:'enableDSigEUAdvancedPens']
  end

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

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

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

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

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

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

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

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

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

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

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

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

  if attributes.has_key?(:'enableDSigIDVerificationPremierPensMetadata')
    self. = attributes[:'enableDSigIDVerificationPremierPensMetadata']
  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?(:'enableEnforceTlsEmailsSettingMetadata')
    self. = attributes[:'enableEnforceTlsEmailsSettingMetadata']
  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?(:'enableESignAPIHourlyLimitManagement')
    self.enable_e_sign_api_hourly_limit_management = attributes[:'enableESignAPIHourlyLimitManagement']
  end

  if attributes.has_key?(:'enableESignAPIHourlyLimitManagementMetadata')
    self. = attributes[:'enableESignAPIHourlyLimitManagementMetadata']
  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?(:'enableIdfxPhoneAuthSignatureAuthStatus')
    self.enable_idfx_phone_auth_signature_auth_status = attributes[:'enableIdfxPhoneAuthSignatureAuthStatus']
  end

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

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

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

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

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

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

  if attributes.has_key?(:'enableInboxRelevanceSortMetadata')
    self. = attributes[:'enableInboxRelevanceSortMetadata']
  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?(:'enableParticipantRecipientSettingMetadata')
    self. = attributes[:'enableParticipantRecipientSettingMetadata']
  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?(:'enableSearchServiceAzureUri')
    self.enable_search_service_azure_uri = attributes[:'enableSearchServiceAzureUri']
  end

  if attributes.has_key?(:'enableSearchServiceAzureUriMetadata')
    self. = attributes[:'enableSearchServiceAzureUriMetadata']
  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?(:'enableWebFormsSeparateUserPermissions')
    self.enable_web_forms_separate_user_permissions = attributes[:'enableWebFormsSeparateUserPermissions']
  end

  if attributes.has_key?(:'enableWebFormsSeparateUserPermissionsMetadata')
    self. = attributes[:'enableWebFormsSeparateUserPermissionsMetadata']
  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?(:'enforceTlsEmails')
    self.enforce_tls_emails = attributes[:'enforceTlsEmails']
  end

  if attributes.has_key?(:'enforceTlsEmailsMetadata')
    self. = attributes[:'enforceTlsEmailsMetadata']
  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?(:'EnvelopeLimitsTotalDocumentSizeAllowedInMB')
    self.envelope_limits_total_document_size_allowed_in_mb = attributes[:'EnvelopeLimitsTotalDocumentSizeAllowedInMB']
  end

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

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

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

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

  if attributes.has_key?(:'envelopeSearchModeMetadata')
    self. = attributes[:'envelopeSearchModeMetadata']
  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?(:'guidedFormsHtmlConversionPolicy')
    self.guided_forms_html_conversion_policy = attributes[:'guidedFormsHtmlConversionPolicy']
  end

  if attributes.has_key?(:'guidedFormsHtmlConversionPolicyMetadata')
    self. = attributes[:'guidedFormsHtmlConversionPolicyMetadata']
  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?(:'idfxKBAAuthenticationOverride')
    self.idfx_kba_authentication_override = attributes[:'idfxKBAAuthenticationOverride']
  end

  if attributes.has_key?(:'idfxKBAAuthenticationOverrideMetadata')
    self. = attributes[:'idfxKBAAuthenticationOverrideMetadata']
  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?(:'isConnectDocumentFieldsEnabled')
    self.is_connect_document_fields_enabled = attributes[:'isConnectDocumentFieldsEnabled']
  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?(:'mergeMixedModeResults')
    self.merge_mixed_mode_results = attributes[:'mergeMixedModeResults']
  end

  if attributes.has_key?(:'mergeMixedModeResultsMetadata')
    self. = attributes[:'mergeMixedModeResultsMetadata']
  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?(:'optInUniversalSignatures')
    self.opt_in_universal_signatures = attributes[:'optInUniversalSignatures']
  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?(:'pdfMaxChunkedUploadPartSize')
    self.pdf_max_chunked_upload_part_size = attributes[:'pdfMaxChunkedUploadPartSize']
  end

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

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

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

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

  if attributes.has_key?(:'pdfMaxIndividualUploadSizeMetadata')
    self. = attributes[:'pdfMaxIndividualUploadSizeMetadata']
  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?(:'sbsTransactionLevel')
    self.sbs_transaction_level = attributes[:'sbsTransactionLevel']
  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?(:'useEnvelopeSearchMixedMode')
    self.use_envelope_search_mixed_mode = attributes[:'useEnvelopeSearchMixedMode']
  end

  if attributes.has_key?(:'useEnvelopeSearchMixedModeMetadata')
    self. = attributes[:'useEnvelopeSearchMixedModeMetadata']
  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?(:'useNewEnvelopeSearch')
    self.use_new_envelope_search = attributes[:'useNewEnvelopeSearch']
  end

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

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

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

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

  if attributes.has_key?(:'useNewEnvelopeSearchOnlyWithSearchTermMetadata')
    self. = attributes[:'useNewEnvelopeSearchOnlyWithSearchTermMetadata']
  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

Format of the string provided to a recipient in order to access an envelope.



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

def access_code_format
  @access_code_format
end

#account_date_time_formatObject

Returns the value of attribute account_date_time_format.



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

def 
  @account_date_time_format
end

#account_date_time_format_metadataObject

Metadata that indicates whether the ‘accountDateTimeFormat` property is editable.



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

def 
  @account_date_time_format_metadata
end

#account_default_languageObject

Returns the value of attribute account_default_language.



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

def 
  @account_default_language
end

#account_default_language_metadataObject

Returns the value of attribute account_default_language_metadata.



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

def 
  @account_default_language_metadata
end

#account_nameObject

Returns the value of attribute account_name.



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

def 
  @account_name
end

#account_name_metadataObject

Metadata that indicates whether the ‘accountName` property is editable.



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

def 
  @account_name_metadata
end

#account_notificationObject

An object that specifies notifications (expirations and reminders) for the envelope.



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

def 
  @account_notification
end

#account_ui_settingsObject

An object that defines the settings to use in the UI.



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

def 
  @account_ui_settings
end

#adopt_sig_configObject

Returns the value of attribute adopt_sig_config.



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

def adopt_sig_config
  @adopt_sig_config
end

#adopt_sig_config_metadataObject

Metadata that indicates whether the ‘adoptSigConfig` property is editable.



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

def 
  @adopt_sig_config_metadata
end

#advanced_correctObject

Returns the value of attribute advanced_correct.



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

def advanced_correct
  @advanced_correct
end

#advanced_correct_metadataObject

Metadata that indicates whether the ‘advancedCorrect` property is editable.



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

def 
  @advanced_correct_metadata
end

#advanced_search_enable_tab_fieldObject

Returns the value of attribute advanced_search_enable_tab_field.



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

def advanced_search_enable_tab_field
  @advanced_search_enable_tab_field
end

#advanced_search_enable_tab_field_metadataObject

Returns the value of attribute advanced_search_enable_tab_field_metadata.



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

def 
  @advanced_search_enable_tab_field_metadata
end

#advanced_search_enable_template_id_fieldObject

Returns the value of attribute advanced_search_enable_template_id_field.



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

def advanced_search_enable_template_id_field
  @advanced_search_enable_template_id_field
end

#advanced_search_enable_template_id_field_metadataObject

Returns the value of attribute advanced_search_enable_template_id_field_metadata.



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

def 
  @advanced_search_enable_template_id_field_metadata
end

#advanced_search_enable_template_name_fieldObject

Returns the value of attribute advanced_search_enable_template_name_field.



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

def advanced_search_enable_template_name_field
  @advanced_search_enable_template_name_field
end

#advanced_search_enable_template_name_field_metadataObject

Returns the value of attribute advanced_search_enable_template_name_field_metadata.



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

def 
  @advanced_search_enable_template_name_field_metadata
end

#allow_access_code_formatObject

Returns the value of attribute allow_access_code_format.



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

def allow_access_code_format
  @allow_access_code_format
end

#allow_access_code_format_metadataObject

Metadata that indicates whether the ‘allowAccessCodeFormat` property is editable.



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

def 
  @allow_access_code_format_metadata
end

#allow_account_management_granularObject

Returns the value of attribute allow_account_management_granular.



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

def 
  @allow_account_management_granular
end

#allow_account_management_granular_metadataObject

Metadata that indicates whether the ‘allowAccountManagementGranular` property is editable.



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

def 
  @allow_account_management_granular_metadata
end

#allow_account_member_name_changeObject

Returns the value of attribute allow_account_member_name_change.



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

def 
  @allow_account_member_name_change
end

#allow_account_member_name_change_metadataObject

Metadata that indicates whether the ‘allowAccountMemberNameChange` property is editable.



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

def 
  @allow_account_member_name_change_metadata
end

#allow_aceObject

Returns the value of attribute allow_ace.



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

def allow_ace
  @allow_ace
end

#allow_ace_metadataObject

Returns the value of attribute allow_ace_metadata.



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

def 
  @allow_ace_metadata
end

#allow_advanced_recipient_routing_conditionalObject

Returns the value of attribute allow_advanced_recipient_routing_conditional.



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

def allow_advanced_recipient_routing_conditional
  @allow_advanced_recipient_routing_conditional
end

#allow_advanced_recipient_routing_conditional_metadataObject

Metadata that indicates whether the ‘ allowAdvancedRecipientRoutingConditional` property is editable.



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

def 
  @allow_advanced_recipient_routing_conditional_metadata
end

#allow_agent_name_email_editObject

Returns the value of attribute allow_agent_name_email_edit.



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

def allow_agent_name_email_edit
  @allow_agent_name_email_edit
end

#allow_agent_name_email_edit_metadataObject

Metadata that indicates whether the ‘allowAgentNameEmailEdit` property is editable.



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

def 
  @allow_agent_name_email_edit_metadata
end

#allow_agreement_actionsObject

Returns the value of attribute allow_agreement_actions.



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

def allow_agreement_actions
  @allow_agreement_actions
end

#allow_agreement_actions_metadataObject

Metadata about the ‘allowAgreementActions` property.



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

def 
  @allow_agreement_actions_metadata
end

#allow_agreement_orchestrationsObject

Returns the value of attribute allow_agreement_orchestrations.



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

def allow_agreement_orchestrations
  @allow_agreement_orchestrations
end

#allow_agreement_orchestrations_metadataObject

Returns the value of attribute allow_agreement_orchestrations_metadata.



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

def 
  @allow_agreement_orchestrations_metadata
end

#allow_auto_nav_settingsObject

Returns the value of attribute allow_auto_nav_settings.



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

def allow_auto_nav_settings
  @allow_auto_nav_settings
end

#allow_auto_nav_settings_metadataObject

Metadata that indicates whether the ‘allowAutoNavSettings` property is editable.



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

def 
  @allow_auto_nav_settings_metadata
end

#allow_auto_taggingObject

Returns the value of attribute allow_auto_tagging.



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

def allow_auto_tagging
  @allow_auto_tagging
end

#allow_auto_tagging_metadataObject

Metadata that indicates whether the ‘allowAutoTagging` property is editable.



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

def 
  @allow_auto_tagging_metadata
end

#allow_bulk_sendObject

Returns the value of attribute allow_bulk_send.



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

def allow_bulk_send
  @allow_bulk_send
end

#allow_bulk_send_metadataObject

Metadata that indicates whether the ‘allowBulkSend` property is editable.



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

def 
  @allow_bulk_send_metadata
end

#allow_cd_withdrawObject

Returns the value of attribute allow_cd_withdraw.



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

def allow_cd_withdraw
  @allow_cd_withdraw
end

#allow_cd_withdraw_metadataObject

Metadata that indicates whether the ‘allowCDWithdraw` property is editable.



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

def 
  @allow_cd_withdraw_metadata
end

#allow_connect_http_listener_configsObject

Returns the value of attribute allow_connect_http_listener_configs.



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

def allow_connect_http_listener_configs
  @allow_connect_http_listener_configs
end

#allow_connect_identity_verification_uiObject

Returns the value of attribute allow_connect_identity_verification_ui.



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

def allow_connect_identity_verification_ui
  @allow_connect_identity_verification_ui
end

#allow_connect_o_auth_uiObject

Returns the value of attribute allow_connect_o_auth_ui.



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

def allow_connect_o_auth_ui
  @allow_connect_o_auth_ui
end

#allow_connect_send_finish_laterObject

Returns the value of attribute allow_connect_send_finish_later.



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

def allow_connect_send_finish_later
  @allow_connect_send_finish_later
end

#allow_connect_send_finish_later_metadataObject

Metadata that indicates whether the ‘allowConnectSendFinishLater` property is editable.



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

def 
  @allow_connect_send_finish_later_metadata
end

#allow_connect_unified_payload_uiObject

Returns the value of attribute allow_connect_unified_payload_ui.



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

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.



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

def allow_consumer_disclosure_override
  @allow_consumer_disclosure_override
end

#allow_consumer_disclosure_override_metadataObject

Metadata that indicates whether the ‘allowConsumerDisclosureOverride` property is editable.



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

def 
  @allow_consumer_disclosure_override_metadata
end

#allow_data_downloadObject

Returns the value of attribute allow_data_download.



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

def allow_data_download
  @allow_data_download
end

#allow_data_download_metadataObject

Metadata that indicates whether the ‘allowDataDownload` property is editable.



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

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.



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

def allow_delayed_routing
  @allow_delayed_routing
end

#allow_delayed_routing_metadataObject

Returns the value of attribute allow_delayed_routing_metadata.



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

def 
  @allow_delayed_routing_metadata
end

#allow_delegated_signingObject

Returns the value of attribute allow_delegated_signing.



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

def allow_delegated_signing
  @allow_delegated_signing
end

#allow_delegated_signing_metadataObject

Returns the value of attribute allow_delegated_signing_metadata.



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

def 
  @allow_delegated_signing_metadata
end

#allow_doc_gen_documentsObject

Returns the value of attribute allow_doc_gen_documents.



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

def allow_doc_gen_documents
  @allow_doc_gen_documents
end

#allow_doc_gen_documents_metadataObject

Returns the value of attribute allow_doc_gen_documents_metadata.



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

def 
  @allow_doc_gen_documents_metadata
end

#allow_document_disclosuresObject

Returns the value of attribute allow_document_disclosures.



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

def allow_document_disclosures
  @allow_document_disclosures
end

#allow_document_disclosures_metadataObject

Metadata that indicates whether the ‘allowDocumentDisclosures` property is editable.



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

def 
  @allow_document_disclosures_metadata
end

#allow_document_visibilityObject

Returns the value of attribute allow_document_visibility.



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

def allow_document_visibility
  @allow_document_visibility
end

#allow_document_visibility_metadataObject

Metadata that indicates whether the ‘allowDocumentVisibility` property is editable.



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

def 
  @allow_document_visibility_metadata
end

#allow_documents_on_signed_envelopesObject

Returns the value of attribute allow_documents_on_signed_envelopes.



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

def allow_documents_on_signed_envelopes
  @allow_documents_on_signed_envelopes
end

#allow_documents_on_signed_envelopes_metadataObject

Metadata that indicates whether the ‘allowDocumentsOnSignedEnvelopes` property is editable.



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

def 
  @allow_documents_on_signed_envelopes_metadata
end

#allow_e_hanko_stampsObject

Returns the value of attribute allow_e_hanko_stamps.



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

def allow_e_hanko_stamps
  @allow_e_hanko_stamps
end

#allow_e_hanko_stamps_metadataObject

Metadata that indicates whether the ‘allowEHankoStamps` property is editable.



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

def 
  @allow_e_hanko_stamps_metadata
end

#allow_e_note_e_originalObject

Returns the value of attribute allow_e_note_e_original.



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

def allow_e_note_e_original
  @allow_e_note_e_original
end

#allow_e_note_e_original_metadataObject

Metadata that indicates whether the ‘allowENoteEOriginal` property is editable.



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

def 
  @allow_e_note_e_original_metadata
end

#allow_editing_envelopes_on_behalf_of_othersObject

Returns the value of attribute allow_editing_envelopes_on_behalf_of_others.



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

def allow_editing_envelopes_on_behalf_of_others
  @allow_editing_envelopes_on_behalf_of_others
end

#allow_editing_envelopes_on_behalf_of_others_metadataObject

Returns the value of attribute allow_editing_envelopes_on_behalf_of_others_metadata.



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

def 
  @allow_editing_envelopes_on_behalf_of_others_metadata
end

#allow_envelope_correctObject

Returns the value of attribute allow_envelope_correct.



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

def allow_envelope_correct
  @allow_envelope_correct
end

#allow_envelope_correct_metadataObject

Metadata that indicates whether the ‘allowEnvelopeCorrect` property is editable.



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

def 
  @allow_envelope_correct_metadata
end

#allow_envelope_custody_transferObject

Returns the value of attribute allow_envelope_custody_transfer.



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

def allow_envelope_custody_transfer
  @allow_envelope_custody_transfer
end

#allow_envelope_custody_transfer_metadataObject

Metadata that indicates whether the ‘allowEnvelopeCustodyTransfer` property is editable.



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

def 
  @allow_envelope_custody_transfer_metadata
end

#allow_envelope_custom_fieldsObject

Returns the value of attribute allow_envelope_custom_fields.



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

def allow_envelope_custom_fields
  @allow_envelope_custom_fields
end

#allow_envelope_custom_fields_metadataObject

Metadata that indicates whether the ‘allowEnvelopeCustomFields` property is editable.



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

def 
  @allow_envelope_custom_fields_metadata
end

#allow_envelope_publish_reportingObject

Returns the value of attribute allow_envelope_publish_reporting.



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

def allow_envelope_publish_reporting
  @allow_envelope_publish_reporting
end

#allow_envelope_publish_reporting_metadataObject

Metadata that indicates whether the ‘allowEnvelopePublishReporting` property is editable.



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

def 
  @allow_envelope_publish_reporting_metadata
end

#allow_envelope_reportingObject

Returns the value of attribute allow_envelope_reporting.



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

def allow_envelope_reporting
  @allow_envelope_reporting
end

#allow_envelope_reporting_metadataObject

Metadata that indicates whether the ‘allowEnvelopeReporting` property is editable.



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

def 
  @allow_envelope_reporting_metadata
end

#allow_express_signer_certificateObject

Returns the value of attribute allow_express_signer_certificate.



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

def allow_express_signer_certificate
  @allow_express_signer_certificate
end

#allow_express_signer_certificate_metadataObject

Metadata that indicates whether the ‘allowExpressSignerCertificate` property is editable.



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

def 
  @allow_express_signer_certificate_metadata
end

#allow_expressionObject

Returns the value of attribute allow_expression.



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

def allow_expression
  @allow_expression
end

#allow_expression_metadataObject

Metadata that indicates whether the ‘allowExpression` property is editable.



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

def 
  @allow_expression_metadata
end

#allow_extended_sending_resource_fileObject

Returns the value of attribute allow_extended_sending_resource_file.



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

def allow_extended_sending_resource_file
  @allow_extended_sending_resource_file
end

#allow_extended_sending_resource_file_metadataObject

Metadata that indicates whether the ‘allowExtendedSendingResourceFile` property is editable.



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

def 
  @allow_extended_sending_resource_file_metadata
end

#allow_external_linked_accountsObject

Returns the value of attribute allow_external_linked_accounts.



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

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.



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

def 
  @allow_external_linked_accounts_metadata
end

#allow_external_signature_padObject

Returns the value of attribute allow_external_signature_pad.



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

def allow_external_signature_pad
  @allow_external_signature_pad
end

#allow_external_signature_pad_metadataObject

Metadata that indicates whether the ‘allowExternalSignaturePad` property is editable.



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

def 
  @allow_external_signature_pad_metadata
end

#allow_idv_for_eu_qualified_signaturesObject

Returns the value of attribute allow_idv_for_eu_qualified_signatures.



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

def allow_idv_for_eu_qualified_signatures
  @allow_idv_for_eu_qualified_signatures
end

#allow_idv_for_eu_qualified_signatures_metadataObject

Returns the value of attribute allow_idv_for_eu_qualified_signatures_metadata.



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

def 
  @allow_idv_for_eu_qualified_signatures_metadata
end

#allow_idv_level1Object

Returns the value of attribute allow_idv_level1.



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

def allow_idv_level1
  @allow_idv_level1
end

#allow_idv_level1_metadataObject

Metadata that indicates whether the ‘allowIDVLevel1` property is editable.



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

def 
  @allow_idv_level1_metadata
end

#allow_idv_level1_trialObject

Returns the value of attribute allow_idv_level1_trial.



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

def allow_idv_level1_trial
  @allow_idv_level1_trial
end

#allow_idv_level1_trial_metadataObject

Returns the value of attribute allow_idv_level1_trial_metadata.



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

def 
  @allow_idv_level1_trial_metadata
end

#allow_idv_level2Object

Returns the value of attribute allow_idv_level2.



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

def allow_idv_level2
  @allow_idv_level2
end

#allow_idv_level2_metadataObject

Returns the value of attribute allow_idv_level2_metadata.



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

def 
  @allow_idv_level2_metadata
end

#allow_idv_level3Object

Returns the value of attribute allow_idv_level3.



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

def allow_idv_level3
  @allow_idv_level3
end

#allow_idv_level3_metadataObject

Returns the value of attribute allow_idv_level3_metadata.



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

def 
  @allow_idv_level3_metadata
end

#allow_idv_platformObject

Returns the value of attribute allow_idv_platform.



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

def allow_idv_platform
  @allow_idv_platform
end

#allow_idv_platform_metadataObject

Metadata that indicates whether the ‘allowIDVPlatform` property is editable.



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

def 
  @allow_idv_platform_metadata
end

#allow_in_personObject

Returns the value of attribute allow_in_person.



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

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



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

def allow_in_person_electronic_notary
  @allow_in_person_electronic_notary
end

#allow_in_person_electronic_notary_metadataObject

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



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

def 
  @allow_in_person_electronic_notary_metadata
end

#allow_in_person_metadataObject

Metadata that indicates whether the ‘allowInPerson` property is editable.



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

def 
  @allow_in_person_metadata
end

#allow_managed_stampsObject

Returns the value of attribute allow_managed_stamps.



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

def allow_managed_stamps
  @allow_managed_stamps
end

#allow_managed_stamps_metadataObject

Metadata that indicates whether the ‘allowManagedStamps` property is editable.



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

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.



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

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.



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

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



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

def allow_markup
  @allow_markup
end

#allow_markup_metadataObject

Metadata that indicates whether the ‘allowMarkup` property is editable.



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

def 
  @allow_markup_metadata
end

#allow_member_time_zoneObject

Returns the value of attribute allow_member_time_zone.



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

def allow_member_time_zone
  @allow_member_time_zone
end

#allow_member_time_zone_metadataObject

Metadata that indicates whether the ‘allowMemberTimeZone` property is editable.



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

def 
  @allow_member_time_zone_metadata
end

#allow_merge_fieldsObject

Returns the value of attribute allow_merge_fields.



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

def allow_merge_fields
  @allow_merge_fields
end

#allow_merge_fields_metadataObject

Metadata that indicates whether the ‘allowMergeFields` property is editable.



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

def 
  @allow_merge_fields_metadata
end

#allow_multiple_brand_profilesObject

Returns the value of attribute allow_multiple_brand_profiles.



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

def allow_multiple_brand_profiles
  @allow_multiple_brand_profiles
end

#allow_multiple_brand_profiles_metadataObject

Metadata that indicates whether the ‘allowMultipleBrandProfiles` property is editable.



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

def 
  @allow_multiple_brand_profiles_metadata
end

#allow_multiple_signer_attachmentsObject

Returns the value of attribute allow_multiple_signer_attachments.



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

def allow_multiple_signer_attachments
  @allow_multiple_signer_attachments
end

#allow_multiple_signer_attachments_metadataObject

Metadata that indicates whether the ‘allowMultipleSignerAttachments` property is editable.



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

def 
  @allow_multiple_signer_attachments_metadata
end

#allow_non_us_phone_authObject

Returns the value of attribute allow_non_us_phone_auth.



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

def allow_non_us_phone_auth
  @allow_non_us_phone_auth
end

#allow_non_us_phone_auth_metadataObject

Metadata that indicates whether the ‘allowNonUSPhoneAuth` property is editable.



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

def 
  @allow_non_us_phone_auth_metadata
end

#allow_ocr_of_envelope_documentsObject

Returns the value of attribute allow_ocr_of_envelope_documents.



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

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.



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

def 
  @allow_ocr_of_envelope_documents_metadata
end

#allow_offline_signingObject

Returns the value of attribute allow_offline_signing.



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

def allow_offline_signing
  @allow_offline_signing
end

#allow_offline_signing_metadataObject

Metadata that indicates whether the ‘allowOfflineSigning` property is editable.



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

def 
  @allow_offline_signing_metadata
end

#allow_open_trust_signer_certificateObject

Returns the value of attribute allow_open_trust_signer_certificate.



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

def allow_open_trust_signer_certificate
  @allow_open_trust_signer_certificate
end

#allow_open_trust_signer_certificate_metadataObject

Metadata that indicates whether the ‘allowOpenTrustSignerCertificate` property is editable.



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

def 
  @allow_open_trust_signer_certificate_metadata
end

#allow_organization_docusign_monitorObject

Returns the value of attribute allow_organization_docusign_monitor.



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

def allow_organization_docusign_monitor
  @allow_organization_docusign_monitor
end

#allow_organization_docusign_monitor_freeObject

Returns the value of attribute allow_organization_docusign_monitor_free.



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

def allow_organization_docusign_monitor_free
  @allow_organization_docusign_monitor_free
end

#allow_organization_docusign_monitor_free_metadataObject

Returns the value of attribute allow_organization_docusign_monitor_free_metadata.



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

def 
  @allow_organization_docusign_monitor_free_metadata
end

#allow_organization_docusign_monitor_metadataObject

Returns the value of attribute allow_organization_docusign_monitor_metadata.



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

def 
  @allow_organization_docusign_monitor_metadata
end

#allow_organization_domain_user_managementObject

Returns the value of attribute allow_organization_domain_user_management.



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

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.



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

def 
  @allow_organization_domain_user_management_metadata
end

#allow_organization_sso_managementObject

Returns the value of attribute allow_organization_sso_management.



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

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.



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

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



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

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 Organization Level Flag that determines the availability to perform In Person Electronic Notarial (IPEN) actions



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

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.



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

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.



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

def 
  @allow_organization_to_use_remote_notary_metadata
end

#allow_organization_to_use_third_party_electronic_notaryObject

Org level flag that determines the abailability to perform Third Party Notary (3PN) actions.



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

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

Metadata for the org level flag that dtermines the availablity to perform Third Party Notary (3PN) actions.



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

def 
  @allow_organization_to_use_third_party_electronic_notary_metadata
end

#allow_organizationsObject

Returns the value of attribute allow_organizations.



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

def allow_organizations
  @allow_organizations
end

#allow_organizations_metadataObject

Metadata that indicates whether the ‘allowOrganizations` property is editable.



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

def 
  @allow_organizations_metadata
end

#allow_participant_recipient_typeObject

Returns the value of attribute allow_participant_recipient_type.



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

def allow_participant_recipient_type
  @allow_participant_recipient_type
end

#allow_participant_recipient_type_metadataObject

Returns the value of attribute allow_participant_recipient_type_metadata.



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

def 
  @allow_participant_recipient_type_metadata
end

#allow_payment_processingObject

Returns the value of attribute allow_payment_processing.



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

def allow_payment_processing
  @allow_payment_processing
end

#allow_payment_processing_metadataObject

Metadata that indicates whether the ‘allowPaymentProcessing` property is editable.



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

def 
  @allow_payment_processing_metadata
end

#allow_performance_analyticsObject

Returns the value of attribute allow_performance_analytics.



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

def allow_performance_analytics
  @allow_performance_analytics
end

#allow_performance_analytics_metadataObject

Returns the value of attribute allow_performance_analytics_metadata.



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

def 
  @allow_performance_analytics_metadata
end

#allow_phone_auth_overrideObject

Returns the value of attribute allow_phone_auth_override.



477
478
479
# File 'lib/docusign_esign/models/account_settings_information.rb', line 477

def allow_phone_auth_override
  @allow_phone_auth_override
end

#allow_phone_auth_override_metadataObject

Metadata that indicates whether the ‘allowPhoneAuthOverride` property is editable.



480
481
482
# File 'lib/docusign_esign/models/account_settings_information.rb', line 480

def 
  @allow_phone_auth_override_metadata
end

#allow_phone_authenticationObject

Returns the value of attribute allow_phone_authentication.



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

def allow_phone_authentication
  @allow_phone_authentication
end

#allow_phone_authentication_metadataObject

Metadata that indicates whether the ‘allowPhoneAuthentication` property is editable.



474
475
476
# File 'lib/docusign_esign/models/account_settings_information.rb', line 474

def 
  @allow_phone_authentication_metadata
end

#allow_private_signing_groupsObject

Returns the value of attribute allow_private_signing_groups.



483
484
485
# File 'lib/docusign_esign/models/account_settings_information.rb', line 483

def allow_private_signing_groups
  @allow_private_signing_groups
end

#allow_private_signing_groups_metadataObject

Metadata that indicates whether the ‘allowPrivateSigningGroups` property is editable.



486
487
488
# File 'lib/docusign_esign/models/account_settings_information.rb', line 486

def 
  @allow_private_signing_groups_metadata
end

#allow_recipient_connectObject

Returns the value of attribute allow_recipient_connect.



489
490
491
# File 'lib/docusign_esign/models/account_settings_information.rb', line 489

def allow_recipient_connect
  @allow_recipient_connect
end

#allow_recipient_connect_metadataObject

Returns the value of attribute allow_recipient_connect_metadata.



492
493
494
# File 'lib/docusign_esign/models/account_settings_information.rb', line 492

def 
  @allow_recipient_connect_metadata
end

#allow_remindersObject

Returns the value of attribute allow_reminders.



495
496
497
# File 'lib/docusign_esign/models/account_settings_information.rb', line 495

def allow_reminders
  @allow_reminders
end

#allow_reminders_metadataObject

Metadata that indicates whether the ‘allowReminders` property is editable.



498
499
500
# File 'lib/docusign_esign/models/account_settings_information.rb', line 498

def 
  @allow_reminders_metadata
end

#allow_remote_notaryObject

Returns the value of attribute allow_remote_notary.



501
502
503
# File 'lib/docusign_esign/models/account_settings_information.rb', line 501

def allow_remote_notary
  @allow_remote_notary
end

#allow_remote_notary_metadataObject

Returns the value of attribute allow_remote_notary_metadata.



504
505
506
# File 'lib/docusign_esign/models/account_settings_information.rb', line 504

def 
  @allow_remote_notary_metadata
end

#allow_resource_file_brandingObject

Returns the value of attribute allow_resource_file_branding.



507
508
509
# File 'lib/docusign_esign/models/account_settings_information.rb', line 507

def allow_resource_file_branding
  @allow_resource_file_branding
end

#allow_resource_file_branding_metadataObject

Metadata that indicates whether the ‘allowResourceFileBranding` property is editable.



510
511
512
# File 'lib/docusign_esign/models/account_settings_information.rb', line 510

def 
  @allow_resource_file_branding_metadata
end

#allow_safe_bio_pharma_signer_certificateObject

Returns the value of attribute allow_safe_bio_pharma_signer_certificate.



513
514
515
# File 'lib/docusign_esign/models/account_settings_information.rb', line 513

def allow_safe_bio_pharma_signer_certificate
  @allow_safe_bio_pharma_signer_certificate
end

#allow_safe_bio_pharma_signer_certificate_metadataObject

Metadata that indicates whether the ‘allowSafeBioPharmaSignerCertificate` property is editable.



516
517
518
# File 'lib/docusign_esign/models/account_settings_information.rb', line 516

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.



519
520
521
# File 'lib/docusign_esign/models/account_settings_information.rb', line 519

def allow_scheduled_sending
  @allow_scheduled_sending
end

#allow_scheduled_sending_metadataObject

Returns the value of attribute allow_scheduled_sending_metadata.



522
523
524
# File 'lib/docusign_esign/models/account_settings_information.rb', line 522

def 
  @allow_scheduled_sending_metadata
end

#allow_security_applianceObject

Returns the value of attribute allow_security_appliance.



525
526
527
# File 'lib/docusign_esign/models/account_settings_information.rb', line 525

def allow_security_appliance
  @allow_security_appliance
end

#allow_security_appliance_metadataObject

Metadata that indicates whether the ‘allowSecurityAppliance` property is editable.



528
529
530
# File 'lib/docusign_esign/models/account_settings_information.rb', line 528

def 
  @allow_security_appliance_metadata
end

#allow_send_to_certified_deliveryObject

Returns the value of attribute allow_send_to_certified_delivery.



537
538
539
# File 'lib/docusign_esign/models/account_settings_information.rb', line 537

def allow_send_to_certified_delivery
  @allow_send_to_certified_delivery
end

#allow_send_to_certified_delivery_metadataObject

Metadata that indicates whether the ‘allowSendToCertifiedDelivery` property is editable.



540
541
542
# File 'lib/docusign_esign/models/account_settings_information.rb', line 540

def 
  @allow_send_to_certified_delivery_metadata
end

#allow_send_to_intermediaryObject

Returns the value of attribute allow_send_to_intermediary.



543
544
545
# File 'lib/docusign_esign/models/account_settings_information.rb', line 543

def allow_send_to_intermediary
  @allow_send_to_intermediary
end

#allow_send_to_intermediary_metadataObject

Metadata that indicates whether the ‘allowSendToIntermediary` property is editable.



546
547
548
# File 'lib/docusign_esign/models/account_settings_information.rb', line 546

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.



531
532
533
# File 'lib/docusign_esign/models/account_settings_information.rb', line 531

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.



534
535
536
# File 'lib/docusign_esign/models/account_settings_information.rb', line 534

def 
  @allow_sending_envelopes_on_behalf_of_others_metadata
end

#allow_server_templatesObject

Returns the value of attribute allow_server_templates.



549
550
551
# File 'lib/docusign_esign/models/account_settings_information.rb', line 549

def allow_server_templates
  @allow_server_templates
end

#allow_server_templates_metadataObject

Metadata that indicates whether the ‘allowServerTemplates` property is editable.



552
553
554
# File 'lib/docusign_esign/models/account_settings_information.rb', line 552

def 
  @allow_server_templates_metadata
end

#allow_set_embedded_recipient_start_urlObject

Returns the value of attribute allow_set_embedded_recipient_start_url.



555
556
557
# File 'lib/docusign_esign/models/account_settings_information.rb', line 555

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.



558
559
560
# File 'lib/docusign_esign/models/account_settings_information.rb', line 558

def 
  @allow_set_embedded_recipient_start_url_metadata
end

#allow_shared_tabsObject

Returns the value of attribute allow_shared_tabs.



561
562
563
# File 'lib/docusign_esign/models/account_settings_information.rb', line 561

def allow_shared_tabs
  @allow_shared_tabs
end

#allow_shared_tabs_metadataObject

Metadata that indicates whether the ‘allowSharedTabs` property is editable.



564
565
566
# File 'lib/docusign_esign/models/account_settings_information.rb', line 564

def 
  @allow_shared_tabs_metadata
end

#allow_sign_document_from_home_pageObject

Returns the value of attribute allow_sign_document_from_home_page.



573
574
575
# File 'lib/docusign_esign/models/account_settings_information.rb', line 573

def allow_sign_document_from_home_page
  @allow_sign_document_from_home_page
end

#allow_sign_document_from_home_page_metadataObject

Metadata that indicates whether the ‘allowSignDocumentFromHomePage` property is editable.



576
577
578
# File 'lib/docusign_esign/models/account_settings_information.rb', line 576

def 
  @allow_sign_document_from_home_page_metadata
end

#allow_sign_nowObject

Returns the value of attribute allow_sign_now.



615
616
617
# File 'lib/docusign_esign/models/account_settings_information.rb', line 615

def allow_sign_now
  @allow_sign_now
end

#allow_sign_now_metadataObject

Returns the value of attribute allow_sign_now_metadata.



618
619
620
# File 'lib/docusign_esign/models/account_settings_information.rb', line 618

def 
  @allow_sign_now_metadata
end

#allow_signature_stampsObject

Returns the value of attribute allow_signature_stamps.



567
568
569
# File 'lib/docusign_esign/models/account_settings_information.rb', line 567

def allow_signature_stamps
  @allow_signature_stamps
end

#allow_signature_stamps_metadataObject

Metadata that indicates whether the ‘allowSignatureStamps` property is editable.



570
571
572
# File 'lib/docusign_esign/models/account_settings_information.rb', line 570

def 
  @allow_signature_stamps_metadata
end

#allow_signer_reassignObject

Returns the value of attribute allow_signer_reassign.



579
580
581
# File 'lib/docusign_esign/models/account_settings_information.rb', line 579

def allow_signer_reassign
  @allow_signer_reassign
end

#allow_signer_reassign_metadataObject

Metadata that indicates whether the ‘allowSignerReassign` property is editable.



582
583
584
# File 'lib/docusign_esign/models/account_settings_information.rb', line 582

def 
  @allow_signer_reassign_metadata
end

#allow_signer_reassign_overrideObject

Returns the value of attribute allow_signer_reassign_override.



585
586
587
# File 'lib/docusign_esign/models/account_settings_information.rb', line 585

def allow_signer_reassign_override
  @allow_signer_reassign_override
end

#allow_signer_reassign_override_metadataObject

Metadata that indicates whether the ‘allowSignerReassignOverride` property is editable.



588
589
590
# File 'lib/docusign_esign/models/account_settings_information.rb', line 588

def 
  @allow_signer_reassign_override_metadata
end

#allow_signing_extensionsObject

Returns the value of attribute allow_signing_extensions.



591
592
593
# File 'lib/docusign_esign/models/account_settings_information.rb', line 591

def allow_signing_extensions
  @allow_signing_extensions
end

#allow_signing_extensions_metadataObject

Metadata that indicates whether the ‘allowSigningExtensions` property is editable.



594
595
596
# File 'lib/docusign_esign/models/account_settings_information.rb', line 594

def 
  @allow_signing_extensions_metadata
end

#allow_signing_groupsObject

Returns the value of attribute allow_signing_groups.



597
598
599
# File 'lib/docusign_esign/models/account_settings_information.rb', line 597

def allow_signing_groups
  @allow_signing_groups
end

#allow_signing_groups_metadataObject

Metadata that indicates whether the ‘allowSigningGroups` property is editable.



600
601
602
# File 'lib/docusign_esign/models/account_settings_information.rb', line 600

def 
  @allow_signing_groups_metadata
end

#allow_signing_insightsObject

Returns the value of attribute allow_signing_insights.



603
604
605
# File 'lib/docusign_esign/models/account_settings_information.rb', line 603

def allow_signing_insights
  @allow_signing_insights
end

#allow_signing_insights_metadataObject

Returns the value of attribute allow_signing_insights_metadata.



606
607
608
# File 'lib/docusign_esign/models/account_settings_information.rb', line 606

def 
  @allow_signing_insights_metadata
end

#allow_signing_radio_deselectObject

Returns the value of attribute allow_signing_radio_deselect.



609
610
611
# File 'lib/docusign_esign/models/account_settings_information.rb', line 609

def allow_signing_radio_deselect
  @allow_signing_radio_deselect
end

#allow_signing_radio_deselect_metadataObject

Metadata that indicates whether the ‘allowSigningRadioDeselect` property is editable.



612
613
614
# File 'lib/docusign_esign/models/account_settings_information.rb', line 612

def 
  @allow_signing_radio_deselect_metadata
end

#allow_sms_deliveryObject

Returns the value of attribute allow_sms_delivery.



621
622
623
# File 'lib/docusign_esign/models/account_settings_information.rb', line 621

def allow_sms_delivery
  @allow_sms_delivery
end

#allow_sms_delivery_metadataObject

Returns the value of attribute allow_sms_delivery_metadata.



624
625
626
# File 'lib/docusign_esign/models/account_settings_information.rb', line 624

def 
  @allow_sms_delivery_metadata
end

#allow_social_id_loginObject

Returns the value of attribute allow_social_id_login.



627
628
629
# File 'lib/docusign_esign/models/account_settings_information.rb', line 627

def 
  @allow_social_id_login
end

#allow_social_id_login_metadataObject

Deprecated.



630
631
632
# File 'lib/docusign_esign/models/account_settings_information.rb', line 630

def 
  @allow_social_id_login_metadata
end

#allow_supplemental_documentsObject

Returns the value of attribute allow_supplemental_documents.



633
634
635
# File 'lib/docusign_esign/models/account_settings_information.rb', line 633

def allow_supplemental_documents
  @allow_supplemental_documents
end

#allow_supplemental_documents_metadataObject

Metadata that indicates whether the ‘allowSupplementalDocuments` property is editable.



636
637
638
# File 'lib/docusign_esign/models/account_settings_information.rb', line 636

def 
  @allow_supplemental_documents_metadata
end

#allow_third_party_electronic_notaryObject

Account level flag that determines the availability to perform Third Party Notary (3PN) actions.



639
640
641
# File 'lib/docusign_esign/models/account_settings_information.rb', line 639

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.



642
643
644
# File 'lib/docusign_esign/models/account_settings_information.rb', line 642

def 
  @allow_third_party_electronic_notary_metadata
end

#allow_transactions_workspaceObject

Returns the value of attribute allow_transactions_workspace.



645
646
647
# File 'lib/docusign_esign/models/account_settings_information.rb', line 645

def allow_transactions_workspace
  @allow_transactions_workspace
end

#allow_transactions_workspace_metadataObject

Returns the value of attribute allow_transactions_workspace_metadata.



648
649
650
# File 'lib/docusign_esign/models/account_settings_information.rb', line 648

def 
  @allow_transactions_workspace_metadata
end

#allow_transactions_workspace_originalObject

Returns the value of attribute allow_transactions_workspace_original.



651
652
653
# File 'lib/docusign_esign/models/account_settings_information.rb', line 651

def allow_transactions_workspace_original
  @allow_transactions_workspace_original
end

#allow_transactions_workspace_original_metadataObject

Returns the value of attribute allow_transactions_workspace_original_metadata.



654
655
656
# File 'lib/docusign_esign/models/account_settings_information.rb', line 654

def 
  @allow_transactions_workspace_original_metadata
end

#allow_users_to_access_directoryObject

Returns the value of attribute allow_users_to_access_directory.



657
658
659
# File 'lib/docusign_esign/models/account_settings_information.rb', line 657

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.



660
661
662
# File 'lib/docusign_esign/models/account_settings_information.rb', line 660

def 
  @allow_users_to_access_directory_metadata
end

#allow_value_insightsObject

Returns the value of attribute allow_value_insights.



663
664
665
# File 'lib/docusign_esign/models/account_settings_information.rb', line 663

def allow_value_insights
  @allow_value_insights
end

#allow_value_insights_metadataObject

Returns the value of attribute allow_value_insights_metadata.



666
667
668
# File 'lib/docusign_esign/models/account_settings_information.rb', line 666

def 
  @allow_value_insights_metadata
end

#allow_web_formsObject

Returns the value of attribute allow_web_forms.



669
670
671
# File 'lib/docusign_esign/models/account_settings_information.rb', line 669

def allow_web_forms
  @allow_web_forms
end

#allow_web_forms_metadataObject

Returns the value of attribute allow_web_forms_metadata.



672
673
674
# File 'lib/docusign_esign/models/account_settings_information.rb', line 672

def 
  @allow_web_forms_metadata
end

#allow_whats_app_deliveryObject

Returns the value of attribute allow_whats_app_delivery.



675
676
677
# File 'lib/docusign_esign/models/account_settings_information.rb', line 675

def allow_whats_app_delivery
  @allow_whats_app_delivery
end

#allow_whats_app_delivery_metadataObject

Returns the value of attribute allow_whats_app_delivery_metadata.



678
679
680
# File 'lib/docusign_esign/models/account_settings_information.rb', line 678

def 
  @allow_whats_app_delivery_metadata
end

#anchor_population_scopeObject

Returns the value of attribute anchor_population_scope.



681
682
683
# File 'lib/docusign_esign/models/account_settings_information.rb', line 681

def anchor_population_scope
  @anchor_population_scope
end

#anchor_population_scope_metadataObject

Metadata that indicates whether the ‘anchorPopulationScope` property is editable.



684
685
686
# File 'lib/docusign_esign/models/account_settings_information.rb', line 684

def 
  @anchor_population_scope_metadata
end

#anchor_tag_versioned_placement_enabledObject

Returns the value of attribute anchor_tag_versioned_placement_enabled.



687
688
689
# File 'lib/docusign_esign/models/account_settings_information.rb', line 687

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.



690
691
692
# File 'lib/docusign_esign/models/account_settings_information.rb', line 690

def 
  @anchor_tag_versioned_placement_metadata_enabled
end

#attach_completed_envelopeObject

Returns the value of attribute attach_completed_envelope.



693
694
695
# File 'lib/docusign_esign/models/account_settings_information.rb', line 693

def attach_completed_envelope
  @attach_completed_envelope
end

#attach_completed_envelope_metadataObject

Metadata that indicates whether the ‘attachCompletedEnvelope` property is editable.



696
697
698
# File 'lib/docusign_esign/models/account_settings_information.rb', line 696

def 
  @attach_completed_envelope_metadata
end

#authentication_checkObject

Returns the value of attribute authentication_check.



699
700
701
# File 'lib/docusign_esign/models/account_settings_information.rb', line 699

def authentication_check
  @authentication_check
end

#authentication_check_metadataObject

Metadata that indicates whether the ‘authenticationCheck` property is editable.



702
703
704
# File 'lib/docusign_esign/models/account_settings_information.rb', line 702

def 
  @authentication_check_metadata
end

#auto_nav_ruleObject

Returns the value of attribute auto_nav_rule.



705
706
707
# File 'lib/docusign_esign/models/account_settings_information.rb', line 705

def auto_nav_rule
  @auto_nav_rule
end

#auto_nav_rule_metadataObject

Metadata that indicates whether the ‘autoNavRule` property is editable.



708
709
710
# File 'lib/docusign_esign/models/account_settings_information.rb', line 708

def 
  @auto_nav_rule_metadata
end

#auto_provision_signer_accountObject

Returns the value of attribute auto_provision_signer_account.



711
712
713
# File 'lib/docusign_esign/models/account_settings_information.rb', line 711

def 
  @auto_provision_signer_account
end

#auto_provision_signer_account_metadataObject

Metadata that indicates whether the ‘autoProvisionSignerAccount` property is editable.



714
715
716
# File 'lib/docusign_esign/models/account_settings_information.rb', line 714

def 
  @auto_provision_signer_account_metadata
end

#bcc_email_archiveObject

Returns the value of attribute bcc_email_archive.



717
718
719
# File 'lib/docusign_esign/models/account_settings_information.rb', line 717

def bcc_email_archive
  @bcc_email_archive
end

#bcc_email_archive_metadataObject

Metadata that indicates whether the ‘bccEmailArchive` property is editable.



720
721
722
# File 'lib/docusign_esign/models/account_settings_information.rb', line 720

def 
  @bcc_email_archive_metadata
end

#beta_switch_configurationObject

Returns the value of attribute beta_switch_configuration.



723
724
725
# File 'lib/docusign_esign/models/account_settings_information.rb', line 723

def beta_switch_configuration
  @beta_switch_configuration
end

#beta_switch_configuration_metadataObject

Reserved for DocuSign.



726
727
728
# File 'lib/docusign_esign/models/account_settings_information.rb', line 726

def 
  @beta_switch_configuration_metadata
end

#billing_addressObject

The billing address for the account.



729
730
731
# File 'lib/docusign_esign/models/account_settings_information.rb', line 729

def billing_address
  @billing_address
end

#billing_address_metadataObject

Metadata that indicates whether the ‘billingAddress` property is editable.



732
733
734
# File 'lib/docusign_esign/models/account_settings_information.rb', line 732

def 
  @billing_address_metadata
end

#bulk_sendObject

Returns the value of attribute bulk_send.



735
736
737
# File 'lib/docusign_esign/models/account_settings_information.rb', line 735

def bulk_send
  @bulk_send
end

#bulk_send_action_resend_limitObject

Returns the value of attribute bulk_send_action_resend_limit.



738
739
740
# File 'lib/docusign_esign/models/account_settings_information.rb', line 738

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.



741
742
743
# File 'lib/docusign_esign/models/account_settings_information.rb', line 741

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.



744
745
746
# File 'lib/docusign_esign/models/account_settings_information.rb', line 744

def bulk_send_max_unprocessed_envelopes_count
  @bulk_send_max_unprocessed_envelopes_count
end

#bulk_send_metadataObject

Metadata that indicates whether the ‘bulkSend` property is editable.



747
748
749
# File 'lib/docusign_esign/models/account_settings_information.rb', line 747

def 
  @bulk_send_metadata
end

#can_self_brand_sendObject

Returns the value of attribute can_self_brand_send.



750
751
752
# File 'lib/docusign_esign/models/account_settings_information.rb', line 750

def can_self_brand_send
  @can_self_brand_send
end

#can_self_brand_send_metadataObject

Metadata that indicates whether the ‘canSelfBrandSend` property is editable.



753
754
755
# File 'lib/docusign_esign/models/account_settings_information.rb', line 753

def 
  @can_self_brand_send_metadata
end

#can_self_brand_signObject

Returns the value of attribute can_self_brand_sign.



756
757
758
# File 'lib/docusign_esign/models/account_settings_information.rb', line 756

def can_self_brand_sign
  @can_self_brand_sign
end

#can_self_brand_sign_metadataObject

Metadata that indicates whether the ‘canSelfBrandSign` property is editable.



759
760
761
# File 'lib/docusign_esign/models/account_settings_information.rb', line 759

def 
  @can_self_brand_sign_metadata
end

#can_use_salesforce_o_authObject

Returns the value of attribute can_use_salesforce_o_auth.



762
763
764
# File 'lib/docusign_esign/models/account_settings_information.rb', line 762

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.



765
766
767
# File 'lib/docusign_esign/models/account_settings_information.rb', line 765

def 
  @can_use_salesforce_o_auth_metadata
end

#capture_voice_recordingObject

Returns the value of attribute capture_voice_recording.



768
769
770
# File 'lib/docusign_esign/models/account_settings_information.rb', line 768

def capture_voice_recording
  @capture_voice_recording
end

#capture_voice_recording_metadataObject

Reserved for DocuSign.



771
772
773
# File 'lib/docusign_esign/models/account_settings_information.rb', line 771

def 
  @capture_voice_recording_metadata
end

#cfr21_simplified_signing_enabledObject

Returns the value of attribute cfr21_simplified_signing_enabled.



774
775
776
# File 'lib/docusign_esign/models/account_settings_information.rb', line 774

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.



777
778
779
# File 'lib/docusign_esign/models/account_settings_information.rb', line 777

def 
  @cfr21_simplified_signing_enabled_metadata
end

#cfr_use_wide_imageObject

Returns the value of attribute cfr_use_wide_image.



780
781
782
# File 'lib/docusign_esign/models/account_settings_information.rb', line 780

def cfr_use_wide_image
  @cfr_use_wide_image
end

#cfr_use_wide_image_metadataObject

Metadata that indicates whether the ‘cfrUseWideImage` property is editable.



783
784
785
# File 'lib/docusign_esign/models/account_settings_information.rb', line 783

def 
  @cfr_use_wide_image_metadata
end

#check_for_multiple_admins_on_accountObject

Returns the value of attribute check_for_multiple_admins_on_account.



786
787
788
# File 'lib/docusign_esign/models/account_settings_information.rb', line 786

def 
  @check_for_multiple_admins_on_account
end

#check_for_multiple_admins_on_account_metadataObject

Metadata that indicates whether the ‘checkForMultipleAdminsOnAccount` property is editable.



789
790
791
# File 'lib/docusign_esign/models/account_settings_information.rb', line 789

def 
  @check_for_multiple_admins_on_account_metadata
end

#chrome_signature_enabledObject

Returns the value of attribute chrome_signature_enabled.



792
793
794
# File 'lib/docusign_esign/models/account_settings_information.rb', line 792

def chrome_signature_enabled
  @chrome_signature_enabled
end

#chrome_signature_enabled_metadataObject

Metadata that indicates whether the ‘chromeSignatureEnabled` property is editable.



795
796
797
# File 'lib/docusign_esign/models/account_settings_information.rb', line 795

def 
  @chrome_signature_enabled_metadata
end

#comment_email_show_message_textObject

Returns the value of attribute comment_email_show_message_text.



798
799
800
# File 'lib/docusign_esign/models/account_settings_information.rb', line 798

def comment_email_show_message_text
  @comment_email_show_message_text
end

#comment_email_show_message_text_metadataObject

Metadata that indicates whether the ‘commentEmailShowMessageText` property is editable.



801
802
803
# File 'lib/docusign_esign/models/account_settings_information.rb', line 801

def 
  @comment_email_show_message_text_metadata
end

#comments_allow_envelope_overrideObject

Returns the value of attribute comments_allow_envelope_override.



804
805
806
# File 'lib/docusign_esign/models/account_settings_information.rb', line 804

def comments_allow_envelope_override
  @comments_allow_envelope_override
end

#comments_allow_envelope_override_metadataObject

Metadata that indicates whether the ‘commentsAllowEnvelopeOverride` property is editable.



807
808
809
# File 'lib/docusign_esign/models/account_settings_information.rb', line 807

def 
  @comments_allow_envelope_override_metadata
end

#conditional_fields_enabledObject

Returns the value of attribute conditional_fields_enabled.



810
811
812
# File 'lib/docusign_esign/models/account_settings_information.rb', line 810

def conditional_fields_enabled
  @conditional_fields_enabled
end

#conditional_fields_enabled_metadataObject

Metadata that indicates whether the ‘conditionalFieldsEnabled` property is editable.



813
814
815
# File 'lib/docusign_esign/models/account_settings_information.rb', line 813

def 
  @conditional_fields_enabled_metadata
end

#consumer_disclosure_frequencyObject

Returns the value of attribute consumer_disclosure_frequency.



816
817
818
# File 'lib/docusign_esign/models/account_settings_information.rb', line 816

def consumer_disclosure_frequency
  @consumer_disclosure_frequency
end

#consumer_disclosure_frequency_metadataObject

Metadata that indicates whether the ‘consumerDisclosureFrequency` property is editable.



819
820
821
# File 'lib/docusign_esign/models/account_settings_information.rb', line 819

def 
  @consumer_disclosure_frequency_metadata
end

#convert_pdf_fieldsObject

Returns the value of attribute convert_pdf_fields.



822
823
824
# File 'lib/docusign_esign/models/account_settings_information.rb', line 822

def convert_pdf_fields
  @convert_pdf_fields
end

#convert_pdf_fields_metadataObject

Metadata that indicates whether the ‘convertPdfFields` property is editable.



825
826
827
# File 'lib/docusign_esign/models/account_settings_information.rb', line 825

def 
  @convert_pdf_fields_metadata
end

#data_population_scopeObject

Returns the value of attribute data_population_scope.



828
829
830
# File 'lib/docusign_esign/models/account_settings_information.rb', line 828

def data_population_scope
  @data_population_scope
end

#data_population_scope_metadataObject

Metadata that indicates whether the ‘dataPopulationScope` property is editable.



831
832
833
# File 'lib/docusign_esign/models/account_settings_information.rb', line 831

def 
  @data_population_scope_metadata
end

#default_to_advanced_envelopes_filter_formObject

Returns the value of attribute default_to_advanced_envelopes_filter_form.



834
835
836
# File 'lib/docusign_esign/models/account_settings_information.rb', line 834

def default_to_advanced_envelopes_filter_form
  @default_to_advanced_envelopes_filter_form
end

#default_to_advanced_envelopes_filter_form_metadataObject

Returns the value of attribute default_to_advanced_envelopes_filter_form_metadata.



837
838
839
# File 'lib/docusign_esign/models/account_settings_information.rb', line 837

def 
  @default_to_advanced_envelopes_filter_form_metadata
end

#disable_auto_template_matchingObject

Returns the value of attribute disable_auto_template_matching.



840
841
842
# File 'lib/docusign_esign/models/account_settings_information.rb', line 840

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.



843
844
845
# File 'lib/docusign_esign/models/account_settings_information.rb', line 843

def 
  @disable_auto_template_matching_metadata
end

#disable_mobile_appObject

Returns the value of attribute disable_mobile_app.



846
847
848
# File 'lib/docusign_esign/models/account_settings_information.rb', line 846

def disable_mobile_app
  @disable_mobile_app
end

#disable_mobile_app_metadataObject

Metadata that indicates whether the ‘disableMobileApp` property is editable.



849
850
851
# File 'lib/docusign_esign/models/account_settings_information.rb', line 849

def 
  @disable_mobile_app_metadata
end

#disable_mobile_push_notificationsObject

Returns the value of attribute disable_mobile_push_notifications.



852
853
854
# File 'lib/docusign_esign/models/account_settings_information.rb', line 852

def disable_mobile_push_notifications
  @disable_mobile_push_notifications
end

#disable_mobile_push_notifications_metadataObject

Metadata that indicates whether the ‘disableMobilePushNotifications` property is editable.



855
856
857
# File 'lib/docusign_esign/models/account_settings_information.rb', line 855

def 
  @disable_mobile_push_notifications_metadata
end

#disable_mobile_sendingObject

Returns the value of attribute disable_mobile_sending.



858
859
860
# File 'lib/docusign_esign/models/account_settings_information.rb', line 858

def disable_mobile_sending
  @disable_mobile_sending
end

#disable_mobile_sending_metadataObject

Metadata that indicates whether the ‘disableMobileSending` property is editable.



861
862
863
# File 'lib/docusign_esign/models/account_settings_information.rb', line 861

def 
  @disable_mobile_sending_metadata
end

#disable_multiple_sessionsObject

Returns the value of attribute disable_multiple_sessions.



864
865
866
# File 'lib/docusign_esign/models/account_settings_information.rb', line 864

def disable_multiple_sessions
  @disable_multiple_sessions
end

#disable_multiple_sessions_metadataObject

Metadata that indicates whether the ‘disableMultipleSessions` property is editable.



867
868
869
# File 'lib/docusign_esign/models/account_settings_information.rb', line 867

def 
  @disable_multiple_sessions_metadata
end

#disable_purge_notifications_for_sender_metadataObject

Reserved for DocuSign.



870
871
872
# File 'lib/docusign_esign/models/account_settings_information.rb', line 870

def 
  @disable_purge_notifications_for_sender_metadata
end

#disable_signer_cert_viewObject

Returns the value of attribute disable_signer_cert_view.



873
874
875
# File 'lib/docusign_esign/models/account_settings_information.rb', line 873

def disable_signer_cert_view
  @disable_signer_cert_view
end

#disable_signer_cert_view_metadataObject

Metadata that indicates whether the ‘disableSignerCertView` property is editable.



876
877
878
# File 'lib/docusign_esign/models/account_settings_information.rb', line 876

def 
  @disable_signer_cert_view_metadata
end

#disable_signer_history_viewObject

Returns the value of attribute disable_signer_history_view.



879
880
881
# File 'lib/docusign_esign/models/account_settings_information.rb', line 879

def disable_signer_history_view
  @disable_signer_history_view
end

#disable_signer_history_view_metadataObject

Metadata that indicates whether the ‘disableSignerHistoryView` property is editable.



882
883
884
# File 'lib/docusign_esign/models/account_settings_information.rb', line 882

def 
  @disable_signer_history_view_metadata
end

#disable_style_signatureObject

Returns the value of attribute disable_style_signature.



885
886
887
# File 'lib/docusign_esign/models/account_settings_information.rb', line 885

def disable_style_signature
  @disable_style_signature
end

#disable_style_signature_metadataObject

Metadata that indicates whether the ‘disableStyleSignature` property is editable.



888
889
890
# File 'lib/docusign_esign/models/account_settings_information.rb', line 888

def 
  @disable_style_signature_metadata
end

#disable_upload_signatureObject

Returns the value of attribute disable_upload_signature.



891
892
893
# File 'lib/docusign_esign/models/account_settings_information.rb', line 891

def disable_upload_signature
  @disable_upload_signature
end

#disable_upload_signature_metadataObject

Metadata that indicates whether the ‘disableUploadSignature` property is editable.



894
895
896
# File 'lib/docusign_esign/models/account_settings_information.rb', line 894

def 
  @disable_upload_signature_metadata
end

#disable_user_sharingObject

Returns the value of attribute disable_user_sharing.



897
898
899
# File 'lib/docusign_esign/models/account_settings_information.rb', line 897

def disable_user_sharing
  @disable_user_sharing
end

#disable_user_sharing_metadataObject

Metadata that indicates whether the ‘disableUserSharing` property is editable.



900
901
902
# File 'lib/docusign_esign/models/account_settings_information.rb', line 900

def 
  @disable_user_sharing_metadata
end

#display_beta_switchObject

Returns the value of attribute display_beta_switch.



903
904
905
# File 'lib/docusign_esign/models/account_settings_information.rb', line 903

def display_beta_switch
  @display_beta_switch
end

#display_beta_switch_metadataObject

Metadata that indicates whether the ‘displayBetaSwitch` property is editable.



906
907
908
# File 'lib/docusign_esign/models/account_settings_information.rb', line 906

def 
  @display_beta_switch_metadata
end

#document_conversion_restrictionsObject

Returns the value of attribute document_conversion_restrictions.



909
910
911
# File 'lib/docusign_esign/models/account_settings_information.rb', line 909

def document_conversion_restrictions
  @document_conversion_restrictions
end

#document_conversion_restrictions_metadataObject

Metadata that indicates whether the ‘documentConversionRestrictions` property is editable.



912
913
914
# File 'lib/docusign_esign/models/account_settings_information.rb', line 912

def 
  @document_conversion_restrictions_metadata
end

#document_retentionObject

Returns the value of attribute document_retention.



915
916
917
# File 'lib/docusign_esign/models/account_settings_information.rb', line 915

def document_retention
  @document_retention
end

#document_retention_metadataObject

Metadata that indicates whether the ‘documentRetention` property is editable.



918
919
920
# File 'lib/docusign_esign/models/account_settings_information.rb', line 918

def 
  @document_retention_metadata
end

#document_retention_purge_tabsObject

Returns the value of attribute document_retention_purge_tabs.



921
922
923
# File 'lib/docusign_esign/models/account_settings_information.rb', line 921

def document_retention_purge_tabs
  @document_retention_purge_tabs
end

#document_visibilityObject

Returns the value of attribute document_visibility.



924
925
926
# File 'lib/docusign_esign/models/account_settings_information.rb', line 924

def document_visibility
  @document_visibility
end

#document_visibility_metadataObject

Metadata that indicates whether the ‘documentVisibility` property is editable.



927
928
929
# File 'lib/docusign_esign/models/account_settings_information.rb', line 927

def 
  @document_visibility_metadata
end

#draft_envelope_retentionObject

Returns the value of attribute draft_envelope_retention.



930
931
932
# File 'lib/docusign_esign/models/account_settings_information.rb', line 930

def draft_envelope_retention
  @draft_envelope_retention
end

#draft_envelope_retention_metadataObject

Returns the value of attribute draft_envelope_retention_metadata.



933
934
935
# File 'lib/docusign_esign/models/account_settings_information.rb', line 933

def 
  @draft_envelope_retention_metadata
end

#dss_enable_provisioning_pen_configuration_radmin_optionObject

Returns the value of attribute dss_enable_provisioning_pen_configuration_radmin_option.



936
937
938
# File 'lib/docusign_esign/models/account_settings_information.rb', line 936

def dss_enable_provisioning_pen_configuration_radmin_option
  @dss_enable_provisioning_pen_configuration_radmin_option
end

#dss_sign_28411_enable_leave_page_prompt_radmin_optionObject

Returns the value of attribute dss_sign_28411_enable_leave_page_prompt_radmin_option.



939
940
941
# File 'lib/docusign_esign/models/account_settings_information.rb', line 939

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.



942
943
944
# File 'lib/docusign_esign/models/account_settings_information.rb', line 942

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.



945
946
947
# File 'lib/docusign_esign/models/account_settings_information.rb', line 945

def email_template_version
  @email_template_version
end

#email_template_version_metadataObject

Metadata that indicates whether the ‘emailTemplateVersion` property is editable.



948
949
950
# File 'lib/docusign_esign/models/account_settings_information.rb', line 948

def 
  @email_template_version_metadata
end

#enable_access_code_generatorObject

Returns the value of attribute enable_access_code_generator.



951
952
953
# File 'lib/docusign_esign/models/account_settings_information.rb', line 951

def enable_access_code_generator
  @enable_access_code_generator
end

#enable_access_code_generator_metadataObject

Metadata that indicates whether the ‘enableAccessCodeGenerator` property is editable.



954
955
956
# File 'lib/docusign_esign/models/account_settings_information.rb', line 954

def 
  @enable_access_code_generator_metadata
end

#enable_account_wide_searchObject

Returns the value of attribute enable_account_wide_search.



957
958
959
# File 'lib/docusign_esign/models/account_settings_information.rb', line 957

def 
  @enable_account_wide_search
end

#enable_account_wide_search_metadataObject

Returns the value of attribute enable_account_wide_search_metadata.



960
961
962
# File 'lib/docusign_esign/models/account_settings_information.rb', line 960

def 
  @enable_account_wide_search_metadata
end

#enable_adm_healthcareObject

Account Level Flag that determines the availability to use ADM Healthcare fields



963
964
965
# File 'lib/docusign_esign/models/account_settings_information.rb', line 963

def enable_adm_healthcare
  @enable_adm_healthcare
end

#enable_adm_healthcare_metadataObject

Metadata for account Level Flag that determines the availability to use ADM Healthcare fields



966
967
968
# File 'lib/docusign_esign/models/account_settings_information.rb', line 966

def 
  @enable_adm_healthcare_metadata
end

#enable_advanced_envelopes_searchObject

Returns the value of attribute enable_advanced_envelopes_search.



969
970
971
# File 'lib/docusign_esign/models/account_settings_information.rb', line 969

def enable_advanced_envelopes_search
  @enable_advanced_envelopes_search
end

#enable_advanced_envelopes_search_metadataObject

Returns the value of attribute enable_advanced_envelopes_search_metadata.



972
973
974
# File 'lib/docusign_esign/models/account_settings_information.rb', line 972

def 
  @enable_advanced_envelopes_search_metadata
end

#enable_advanced_paymentsObject

Returns the value of attribute enable_advanced_payments.



975
976
977
# File 'lib/docusign_esign/models/account_settings_information.rb', line 975

def enable_advanced_payments
  @enable_advanced_payments
end

#enable_advanced_payments_metadataObject

Metadata that indicates whether the ‘enableAdvancedPayments` property is editable.



978
979
980
# File 'lib/docusign_esign/models/account_settings_information.rb', line 978

def 
  @enable_advanced_payments_metadata
end

#enable_advanced_power_formsObject

Returns the value of attribute enable_advanced_power_forms.



981
982
983
# File 'lib/docusign_esign/models/account_settings_information.rb', line 981

def enable_advanced_power_forms
  @enable_advanced_power_forms
end

#enable_advanced_power_forms_metadataObject

Metadata that indicates whether the ‘enableAdvancedPowerForms` property is editable.



984
985
986
# File 'lib/docusign_esign/models/account_settings_information.rb', line 984

def 
  @enable_advanced_power_forms_metadata
end

#enable_agreement_actions_for_clmObject

Returns the value of attribute enable_agreement_actions_for_clm.



987
988
989
# File 'lib/docusign_esign/models/account_settings_information.rb', line 987

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.



990
991
992
# File 'lib/docusign_esign/models/account_settings_information.rb', line 990

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.



993
994
995
# File 'lib/docusign_esign/models/account_settings_information.rb', line 993

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.



996
997
998
# File 'lib/docusign_esign/models/account_settings_information.rb', line 996

def 
  @enable_agreement_actions_for_e_sign_metadata
end

#enable_auto_navObject

Returns the value of attribute enable_auto_nav.



999
1000
1001
# File 'lib/docusign_esign/models/account_settings_information.rb', line 999

def enable_auto_nav
  @enable_auto_nav
end

#enable_auto_nav_metadataObject

Metadata that indicates whether the ‘enableAutoNav` property is editable.



1002
1003
1004
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1002

def 
  @enable_auto_nav_metadata
end

Returns the value of attribute enable_bcc_dummy_link.



1005
1006
1007
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1005

def enable_bcc_dummy_link
  @enable_bcc_dummy_link
end

Returns the value of attribute enable_bcc_dummy_link_metadata.



1008
1009
1010
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1008

def 
  @enable_bcc_dummy_link_metadata
end

#enable_calculated_fieldsObject

Returns the value of attribute enable_calculated_fields.



1011
1012
1013
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1011

def enable_calculated_fields
  @enable_calculated_fields
end

#enable_calculated_fields_metadataObject

Metadata that indicates whether the ‘enableCalculatedFields` property is editable.



1014
1015
1016
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1014

def 
  @enable_calculated_fields_metadata
end

#enable_click_plusObject

Returns the value of attribute enable_click_plus.



1017
1018
1019
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1017

def enable_click_plus
  @enable_click_plus
end

#enable_click_plus_conditional_contentObject

Returns the value of attribute enable_click_plus_conditional_content.



1020
1021
1022
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1020

def enable_click_plus_conditional_content
  @enable_click_plus_conditional_content
end

#enable_click_plus_conditional_content_meta_dataObject

Returns the value of attribute enable_click_plus_conditional_content_meta_data.



1023
1024
1025
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1023

def 
  @enable_click_plus_conditional_content_meta_data
end

#enable_click_plus_custom_fieldsObject

Returns the value of attribute enable_click_plus_custom_fields.



1026
1027
1028
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1026

def enable_click_plus_custom_fields
  @enable_click_plus_custom_fields
end

#enable_click_plus_custom_fields_meta_dataObject

Returns the value of attribute enable_click_plus_custom_fields_meta_data.



1029
1030
1031
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1029

def 
  @enable_click_plus_custom_fields_meta_data
end

#enable_click_plus_custom_styleObject

Returns the value of attribute enable_click_plus_custom_style.



1032
1033
1034
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1032

def enable_click_plus_custom_style
  @enable_click_plus_custom_style
end

#enable_click_plus_custom_style_meta_dataObject

Returns the value of attribute enable_click_plus_custom_style_meta_data.



1035
1036
1037
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1035

def 
  @enable_click_plus_custom_style_meta_data
end

#enable_click_plus_dynamic_contentObject

Returns the value of attribute enable_click_plus_dynamic_content.



1038
1039
1040
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1038

def enable_click_plus_dynamic_content
  @enable_click_plus_dynamic_content
end

#enable_click_plus_dynamic_content_meta_dataObject

Returns the value of attribute enable_click_plus_dynamic_content_meta_data.



1041
1042
1043
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1041

def 
  @enable_click_plus_dynamic_content_meta_data
end

#enable_click_plus_meta_dataObject

Returns the value of attribute enable_click_plus_meta_data.



1044
1045
1046
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1044

def 
  @enable_click_plus_meta_data
end

#enable_clickwrapsObject

Returns the value of attribute enable_clickwraps.



1047
1048
1049
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1047

def enable_clickwraps
  @enable_clickwraps
end

#enable_clickwraps_metadataObject

Metadata that indicates whether the ‘enableClickwraps` property is editable.



1050
1051
1052
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1050

def 
  @enable_clickwraps_metadata
end

#enable_combined_pdf_download_for_sbsObject

Returns the value of attribute enable_combined_pdf_download_for_sbs.



1053
1054
1055
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1053

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.



1056
1057
1058
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1056

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.



1059
1060
1061
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1059

def 
  @enable_comments_history_download_in_signing_metadata
end

#enable_contact_suggestionsObject

Returns the value of attribute enable_contact_suggestions.



1062
1063
1064
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1062

def enable_contact_suggestions
  @enable_contact_suggestions
end

#enable_contact_suggestions_metadataObject

Returns the value of attribute enable_contact_suggestions_metadata.



1065
1066
1067
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1065

def 
  @enable_contact_suggestions_metadata
end

#enable_customer_satisfaction_metric_trackingObject

Returns the value of attribute enable_customer_satisfaction_metric_tracking.



1068
1069
1070
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1068

def enable_customer_satisfaction_metric_tracking
  @enable_customer_satisfaction_metric_tracking
end

#enable_customer_satisfaction_metric_tracking_metadataObject

Metadata that indicates whether the ‘enableCustomerSatisfactionMetricTracking` property is editable.



1071
1072
1073
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1071

def 
  @enable_customer_satisfaction_metric_tracking_metadata
end

#enable_d_sig_eu_advanced_pensObject

Returns the value of attribute enable_d_sig_eu_advanced_pens.



1074
1075
1076
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1074

def enable_d_sig_eu_advanced_pens
  @enable_d_sig_eu_advanced_pens
end

#enable_d_sig_eu_advanced_pens_metadataObject

Returns the value of attribute enable_d_sig_eu_advanced_pens_metadata.



1077
1078
1079
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1077

def 
  @enable_d_sig_eu_advanced_pens_metadata
end

#enable_d_sig_express_pensObject

Returns the value of attribute enable_d_sig_express_pens.



1080
1081
1082
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1080

def enable_d_sig_express_pens
  @enable_d_sig_express_pens
end

#enable_d_sig_express_pens_metadataObject

Returns the value of attribute enable_d_sig_express_pens_metadata.



1083
1084
1085
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1083

def 
  @enable_d_sig_express_pens_metadata
end

#enable_d_sig_id_check_for_aes_pensObject

Returns the value of attribute enable_d_sig_id_check_for_aes_pens.



1086
1087
1088
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1086

def enable_d_sig_id_check_for_aes_pens
  @enable_d_sig_id_check_for_aes_pens
end

#enable_d_sig_id_check_for_aes_pens_metadataObject

Returns the value of attribute enable_d_sig_id_check_for_aes_pens_metadata.



1089
1090
1091
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1089

def 
  @enable_d_sig_id_check_for_aes_pens_metadata
end

#enable_d_sig_id_check_in_person_for_qes_pensObject

Returns the value of attribute enable_d_sig_id_check_in_person_for_qes_pens.



1092
1093
1094
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1092

def enable_d_sig_id_check_in_person_for_qes_pens
  @enable_d_sig_id_check_in_person_for_qes_pens
end

#enable_d_sig_id_check_in_person_for_qes_pens_metadataObject

Returns the value of attribute enable_d_sig_id_check_in_person_for_qes_pens_metadata.



1095
1096
1097
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1095

def 
  @enable_d_sig_id_check_in_person_for_qes_pens_metadata
end

#enable_d_sig_id_check_remote_for_qes_pensObject

Returns the value of attribute enable_d_sig_id_check_remote_for_qes_pens.



1098
1099
1100
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1098

def enable_d_sig_id_check_remote_for_qes_pens
  @enable_d_sig_id_check_remote_for_qes_pens
end

#enable_d_sig_id_check_remote_for_qes_pens_metadataObject

Returns the value of attribute enable_d_sig_id_check_remote_for_qes_pens_metadata.



1101
1102
1103
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1101

def 
  @enable_d_sig_id_check_remote_for_qes_pens_metadata
end

#enable_d_sig_id_verification_pensObject

Returns the value of attribute enable_d_sig_id_verification_pens.



1104
1105
1106
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1104

def enable_d_sig_id_verification_pens
  @enable_d_sig_id_verification_pens
end

#enable_d_sig_id_verification_pens_metadataObject

Returns the value of attribute enable_d_sig_id_verification_pens_metadata.



1107
1108
1109
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1107

def 
  @enable_d_sig_id_verification_pens_metadata
end

#enable_d_sig_id_verification_premier_pensObject

Returns the value of attribute enable_d_sig_id_verification_premier_pens.



1110
1111
1112
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1110

def enable_d_sig_id_verification_premier_pens
  @enable_d_sig_id_verification_premier_pens
end

#enable_d_sig_id_verification_premier_pens_metadataObject

Returns the value of attribute enable_d_sig_id_verification_premier_pens_metadata.



1113
1114
1115
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1113

def 
  @enable_d_sig_id_verification_premier_pens_metadata
end

#enable_ds_proObject

Returns the value of attribute enable_ds_pro.



1116
1117
1118
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1116

def enable_ds_pro
  @enable_ds_pro
end

#enable_ds_pro_metadataObject

Metadata that indicates whether the ‘enableDSPro` property is editable.



1119
1120
1121
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1119

def 
  @enable_ds_pro_metadata
end

#enable_e_sign_api_hourly_limit_managementObject

Returns the value of attribute enable_e_sign_api_hourly_limit_management.



1137
1138
1139
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1137

def enable_e_sign_api_hourly_limit_management
  @enable_e_sign_api_hourly_limit_management
end

#enable_e_sign_api_hourly_limit_management_metadataObject

Returns the value of attribute enable_e_sign_api_hourly_limit_management_metadata.



1140
1141
1142
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1140

def 
  @enable_e_sign_api_hourly_limit_management_metadata
end

#enable_enforce_tls_emails_setting_metadataObject

Returns the value of attribute enable_enforce_tls_emails_setting_metadata.



1122
1123
1124
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1122

def 
  @enable_enforce_tls_emails_setting_metadata
end

#enable_envelope_stamping_by_account_adminObject

Returns the value of attribute enable_envelope_stamping_by_account_admin.



1125
1126
1127
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1125

def 
  @enable_envelope_stamping_by_account_admin
end

#enable_envelope_stamping_by_account_admin_metadataObject

Metadata that indicates whether the ‘enableEnvelopeStampingByAccountAdmin` property is editable.



1128
1129
1130
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1128

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.



1131
1132
1133
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1131

def enable_envelope_stamping_by_ds_admin
  @enable_envelope_stamping_by_ds_admin
end

#enable_envelope_stamping_by_ds_admin_metadataObject

Metadata that indicates whether the ‘enableEnvelopeStampingByDSAdmin` property is editable.



1134
1135
1136
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1134

def 
  @enable_envelope_stamping_by_ds_admin_metadata
end

#enable_esign_communitiesObject

Returns the value of attribute enable_esign_communities.



1143
1144
1145
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1143

def enable_esign_communities
  @enable_esign_communities
end

#enable_esign_communities_metadataObject

Returns the value of attribute enable_esign_communities_metadata.



1146
1147
1148
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1146

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.



1149
1150
1151
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1149

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.



1152
1153
1154
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1152

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.



1155
1156
1157
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1155

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.



1158
1159
1160
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1158

def 
  @enable_id_fx_intuit_kba_metadata
end

#enable_id_fx_phone_authenticationObject

Returns the value of attribute enable_id_fx_phone_authentication.



1161
1162
1163
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1161

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.



1164
1165
1166
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1164

def 
  @enable_id_fx_phone_authentication_metadata
end

#enable_idfx_phone_auth_signature_auth_statusObject

Returns the value of attribute enable_idfx_phone_auth_signature_auth_status.



1167
1168
1169
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1167

def enable_idfx_phone_auth_signature_auth_status
  @enable_idfx_phone_auth_signature_auth_status
end

#enable_idfx_phone_auth_signature_auth_status_metadataObject

Returns the value of attribute enable_idfx_phone_auth_signature_auth_status_metadata.



1170
1171
1172
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1170

def 
  @enable_idfx_phone_auth_signature_auth_status_metadata
end

#enable_in_browser_editorObject

Returns the value of attribute enable_in_browser_editor.



1191
1192
1193
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1191

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.



1194
1195
1196
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1194

def 
  @enable_in_browser_editor_metadata
end

#enable_inbox_browse_views_powered_by_elastic_searchObject

Returns the value of attribute enable_inbox_browse_views_powered_by_elastic_search.



1173
1174
1175
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1173

def enable_inbox_browse_views_powered_by_elastic_search
  @enable_inbox_browse_views_powered_by_elastic_search
end

#enable_inbox_browse_views_powered_by_elastic_search_metadataObject

Returns the value of attribute enable_inbox_browse_views_powered_by_elastic_search_metadata.



1176
1177
1178
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1176

def 
  @enable_inbox_browse_views_powered_by_elastic_search_metadata
end

#enable_inbox_relevance_sortObject

Returns the value of attribute enable_inbox_relevance_sort.



1179
1180
1181
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1179

def enable_inbox_relevance_sort
  @enable_inbox_relevance_sort
end

#enable_inbox_relevance_sort_for_recent_accountsObject

Returns the value of attribute enable_inbox_relevance_sort_for_recent_accounts.



1182
1183
1184
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1182

def enable_inbox_relevance_sort_for_recent_accounts
  @enable_inbox_relevance_sort_for_recent_accounts
end

#enable_inbox_relevance_sort_for_recent_accounts_metadataObject

Returns the value of attribute enable_inbox_relevance_sort_for_recent_accounts_metadata.



1185
1186
1187
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1185

def 
  @enable_inbox_relevance_sort_for_recent_accounts_metadata
end

#enable_inbox_relevance_sort_metadataObject

Returns the value of attribute enable_inbox_relevance_sort_metadata.



1188
1189
1190
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1188

def 
  @enable_inbox_relevance_sort_metadata
end

#enable_key_terms_suggestions_by_document_typeObject

Returns the value of attribute enable_key_terms_suggestions_by_document_type.



1197
1198
1199
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1197

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.



1200
1201
1202
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1200

def 
  @enable_key_terms_suggestions_by_document_type_metadata
end

#enable_participant_recipient_setting_metadataObject

Returns the value of attribute enable_participant_recipient_setting_metadata.



1203
1204
1205
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1203

def 
  @enable_participant_recipient_setting_metadata
end

#enable_payment_processingObject

Returns the value of attribute enable_payment_processing.



1206
1207
1208
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1206

def enable_payment_processing
  @enable_payment_processing
end

#enable_payment_processing_metadataObject

Metadata that indicates whether the ‘enablePaymentProcessing` property is editable.



1209
1210
1211
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1209

def 
  @enable_payment_processing_metadata
end

#enable_pdfa_conversionObject

Returns the value of attribute enable_pdfa_conversion.



1212
1213
1214
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1212

def enable_pdfa_conversion
  @enable_pdfa_conversion
end

#enable_pdfa_conversion_metadataObject

Returns the value of attribute enable_pdfa_conversion_metadata.



1215
1216
1217
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1215

def 
  @enable_pdfa_conversion_metadata
end

#enable_power_formObject

Returns the value of attribute enable_power_form.



1218
1219
1220
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1218

def enable_power_form
  @enable_power_form
end

#enable_power_form_directObject

Returns the value of attribute enable_power_form_direct.



1221
1222
1223
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1221

def enable_power_form_direct
  @enable_power_form_direct
end

#enable_power_form_direct_metadataObject

Metadata that indicates whether the ‘enablePowerFormDirect` property is editable.



1224
1225
1226
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1224

def 
  @enable_power_form_direct_metadata
end

#enable_power_form_metadataObject

Metadata that indicates whether the ‘enablePowerForm` property is editable.



1227
1228
1229
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1227

def 
  @enable_power_form_metadata
end

#enable_recipient_domain_validationObject

Returns the value of attribute enable_recipient_domain_validation.



1230
1231
1232
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1230

def enable_recipient_domain_validation
  @enable_recipient_domain_validation
end

#enable_recipient_domain_validation_metadataObject

Metadata that indicates whether the ‘enableRecipientDomainValidation` property is editable.



1233
1234
1235
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1233

def 
  @enable_recipient_domain_validation_metadata
end

#enable_recipient_may_provide_phone_numberObject

Returns the value of attribute enable_recipient_may_provide_phone_number.



1236
1237
1238
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1236

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.



1239
1240
1241
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1239

def 
  @enable_recipient_may_provide_phone_number_metadata
end

Returns the value of attribute enable_report_links.



1242
1243
1244
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1242

def enable_report_links
  @enable_report_links
end

Metadata that indicates whether the ‘enableReportLinks` property is editable.



1245
1246
1247
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1245

def 
  @enable_report_links_metadata
end

#enable_require_sign_on_paperObject

Returns the value of attribute enable_require_sign_on_paper.



1248
1249
1250
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1248

def enable_require_sign_on_paper
  @enable_require_sign_on_paper
end

#enable_require_sign_on_paper_metadataObject

Metadata that indicates whether the ‘enableRequireSignOnPaper` property is editable.



1251
1252
1253
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1251

def 
  @enable_require_sign_on_paper_metadata
end

#enable_reserved_domainObject

Returns the value of attribute enable_reserved_domain.



1254
1255
1256
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1254

def enable_reserved_domain
  @enable_reserved_domain
end

#enable_reserved_domain_metadataObject

Metadata that indicates whether the ‘enableReservedDomain` property is editable.



1257
1258
1259
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1257

def 
  @enable_reserved_domain_metadata
end

#enable_responsive_signingObject

Returns the value of attribute enable_responsive_signing.



1260
1261
1262
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1260

def enable_responsive_signing
  @enable_responsive_signing
end

#enable_responsive_signing_metadataObject

Metadata that indicates whether the ‘enableResponsiveSigning` property is editable.



1263
1264
1265
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1263

def 
  @enable_responsive_signing_metadata
end

#enable_scheduled_releaseObject

Returns the value of attribute enable_scheduled_release.



1266
1267
1268
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1266

def enable_scheduled_release
  @enable_scheduled_release
end

#enable_scheduled_release_metadataObject

Metadata that indicates whether the ‘enableScheduledRelease` property is editable.



1269
1270
1271
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1269

def 
  @enable_scheduled_release_metadata
end

#enable_searchObject

Returns the value of attribute enable_search.



1272
1273
1274
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1272

def enable_search
  @enable_search
end

#enable_search_metadataObject

Returns the value of attribute enable_search_metadata.



1275
1276
1277
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1275

def 
  @enable_search_metadata
end

#enable_search_service_azure_uriObject

Returns the value of attribute enable_search_service_azure_uri.



1278
1279
1280
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1278

def enable_search_service_azure_uri
  @enable_search_service_azure_uri
end

#enable_search_service_azure_uri_metadataObject

Returns the value of attribute enable_search_service_azure_uri_metadata.



1281
1282
1283
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1281

def 
  @enable_search_service_azure_uri_metadata
end

#enable_search_site_specific_apiObject

Returns the value of attribute enable_search_site_specific_api.



1284
1285
1286
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1284

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.



1287
1288
1289
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1287

def 
  @enable_search_site_specific_api_metadata
end

#enable_search_uiObject

Returns the value of attribute enable_search_ui.



1290
1291
1292
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1290

def enable_search_ui
  @enable_search_ui
end

#enable_search_ui_metadataObject

Returns the value of attribute enable_search_ui_metadata.



1293
1294
1295
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1293

def 
  @enable_search_ui_metadata
end

#enable_send_to_agentObject

Returns the value of attribute enable_send_to_agent.



1302
1303
1304
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1302

def enable_send_to_agent
  @enable_send_to_agent
end

#enable_send_to_agent_metadataObject

Metadata that indicates whether the ‘enableSendToAgent` property is editable.



1305
1306
1307
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1305

def 
  @enable_send_to_agent_metadata
end

#enable_send_to_intermediaryObject

Returns the value of attribute enable_send_to_intermediary.



1308
1309
1310
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1308

def enable_send_to_intermediary
  @enable_send_to_intermediary
end

#enable_send_to_intermediary_metadataObject

Metadata that indicates whether the ‘enableSendToIntermediary` property is editable.



1311
1312
1313
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1311

def 
  @enable_send_to_intermediary_metadata
end

#enable_send_to_manageObject

Returns the value of attribute enable_send_to_manage.



1314
1315
1316
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1314

def enable_send_to_manage
  @enable_send_to_manage
end

#enable_send_to_manage_metadataObject

Metadata that indicates whether the ‘enableSendToManage` property is editable.



1317
1318
1319
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1317

def 
  @enable_send_to_manage_metadata
end

#enable_sending_tags_font_settingsObject

Returns the value of attribute enable_sending_tags_font_settings.



1296
1297
1298
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1296

def enable_sending_tags_font_settings
  @enable_sending_tags_font_settings
end

#enable_sending_tags_font_settings_metadataObject

Metadata that indicates whether the ‘enableSendingTagsFontSettings` property is editable.



1299
1300
1301
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1299

def 
  @enable_sending_tags_font_settings_metadata
end

#enable_sequential_signing_apiObject

Returns the value of attribute enable_sequential_signing_api.



1320
1321
1322
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1320

def enable_sequential_signing_api
  @enable_sequential_signing_api
end

#enable_sequential_signing_api_metadataObject

Metadata that indicates whether the ‘enableSequentialSigningAPI` property is editable.



1323
1324
1325
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1323

def 
  @enable_sequential_signing_api_metadata
end

#enable_sequential_signing_uiObject

Returns the value of attribute enable_sequential_signing_ui.



1326
1327
1328
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1326

def enable_sequential_signing_ui
  @enable_sequential_signing_ui
end

#enable_sequential_signing_ui_metadataObject

Metadata that indicates whether the ‘enableSequentialSigningUI` property is editable.



1329
1330
1331
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1329

def 
  @enable_sequential_signing_ui_metadata
end

#enable_sign_on_paperObject

Returns the value of attribute enable_sign_on_paper.



1356
1357
1358
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1356

def enable_sign_on_paper
  @enable_sign_on_paper
end

#enable_sign_on_paper_metadataObject

Metadata that indicates whether the ‘enableSignOnPaper` property is editable.



1359
1360
1361
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1359

def 
  @enable_sign_on_paper_metadata
end

#enable_sign_on_paper_overrideObject

Returns the value of attribute enable_sign_on_paper_override.



1362
1363
1364
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1362

def enable_sign_on_paper_override
  @enable_sign_on_paper_override
end

#enable_sign_on_paper_override_metadataObject

Metadata that indicates whether the ‘enableSignOnPaperOverride` property is editable.



1365
1366
1367
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1365

def 
  @enable_sign_on_paper_override_metadata
end

#enable_sign_with_notaryObject

Returns the value of attribute enable_sign_with_notary.



1368
1369
1370
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1368

def enable_sign_with_notary
  @enable_sign_with_notary
end

#enable_sign_with_notary_metadataObject

Metadata that indicates whether the ‘enableSignWithNotary` property is editable.



1371
1372
1373
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1371

def 
  @enable_sign_with_notary_metadata
end

#enable_signer_attachmentsObject

Returns the value of attribute enable_signer_attachments.



1332
1333
1334
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1332

def enable_signer_attachments
  @enable_signer_attachments
end

#enable_signer_attachments_metadataObject

Metadata that indicates whether the ‘enableSignerAttachments` property is editable.



1335
1336
1337
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1335

def 
  @enable_signer_attachments_metadata
end

#enable_signing_extension_commentsObject

Returns the value of attribute enable_signing_extension_comments.



1338
1339
1340
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1338

def enable_signing_extension_comments
  @enable_signing_extension_comments
end

#enable_signing_extension_comments_metadataObject

Metadata that indicates whether the ‘enableSigningExtensionComments` property is editable.



1341
1342
1343
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1341

def 
  @enable_signing_extension_comments_metadata
end

#enable_signing_extension_conversationsObject

Returns the value of attribute enable_signing_extension_conversations.



1344
1345
1346
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1344

def enable_signing_extension_conversations
  @enable_signing_extension_conversations
end

#enable_signing_extension_conversations_metadataObject

Metadata that indicates whether the ‘enableSigningExtensionConversations` property is editable.



1347
1348
1349
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1347

def 
  @enable_signing_extension_conversations_metadata
end

#enable_signing_order_settings_for_accountObject

Returns the value of attribute enable_signing_order_settings_for_account.



1350
1351
1352
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1350

def 
  @enable_signing_order_settings_for_account
end

#enable_signing_order_settings_for_account_metadataObject

Metadata that indicates whether the ‘enableSigningOrderSettingsForAccount` property is editable.



1353
1354
1355
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1353

def 
  @enable_signing_order_settings_for_account_metadata
end

#enable_smart_contractsObject

Returns the value of attribute enable_smart_contracts.



1374
1375
1376
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1374

def enable_smart_contracts
  @enable_smart_contracts
end

#enable_smart_contracts_metadataObject

Metadata that indicates whether the ‘enableSmartContracts` property is editable.



1377
1378
1379
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1377

def 
  @enable_smart_contracts_metadata
end

#enable_sms_authenticationObject

Returns the value of attribute enable_sms_authentication.



1380
1381
1382
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1380

def enable_sms_authentication
  @enable_sms_authentication
end

#enable_sms_authentication_metadataObject

Metadata that indicates whether the ‘enableSMSAuthentication` property is editable.



1383
1384
1385
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1383

def 
  @enable_sms_authentication_metadata
end

#enable_sms_delivery_additional_notificationObject

Returns the value of attribute enable_sms_delivery_additional_notification.



1386
1387
1388
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1386

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.



1389
1390
1391
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1389

def 
  @enable_sms_delivery_additional_notification_metadata
end

#enable_sms_delivery_primaryObject

Returns the value of attribute enable_sms_delivery_primary.



1392
1393
1394
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1392

def enable_sms_delivery_primary
  @enable_sms_delivery_primary
end

#enable_social_id_loginObject

Returns the value of attribute enable_social_id_login.



1395
1396
1397
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1395

def 
  @enable_social_id_login
end

#enable_social_id_login_metadataObject

Deprecated.



1398
1399
1400
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1398

def 
  @enable_social_id_login_metadata
end

#enable_strike_throughObject

Returns the value of attribute enable_strike_through.



1401
1402
1403
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1401

def enable_strike_through
  @enable_strike_through
end

#enable_strike_through_metadataObject

Metadata that indicates whether the ‘enableStrikeThrough` property is editable.



1404
1405
1406
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1404

def 
  @enable_strike_through_metadata
end

#enable_transaction_pointObject

Returns the value of attribute enable_transaction_point.



1407
1408
1409
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1407

def enable_transaction_point
  @enable_transaction_point
end

#enable_transaction_point_metadataObject

Reserved for DocuSign.



1410
1411
1412
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1410

def 
  @enable_transaction_point_metadata
end

#enable_vaultingObject

Returns the value of attribute enable_vaulting.



1413
1414
1415
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1413

def enable_vaulting
  @enable_vaulting
end

#enable_vaulting_metadataObject

Metadata that indicates whether the ‘enableVaulting` property is editable.



1416
1417
1418
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1416

def 
  @enable_vaulting_metadata
end

#enable_web_forms_separate_user_permissionsObject

Returns the value of attribute enable_web_forms_separate_user_permissions.



1419
1420
1421
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1419

def enable_web_forms_separate_user_permissions
  @enable_web_forms_separate_user_permissions
end

#enable_web_forms_separate_user_permissions_metadataObject

Returns the value of attribute enable_web_forms_separate_user_permissions_metadata.



1422
1423
1424
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1422

def 
  @enable_web_forms_separate_user_permissions_metadata
end

#enable_witnessingObject

Returns the value of attribute enable_witnessing.



1425
1426
1427
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1425

def enable_witnessing
  @enable_witnessing
end

#enable_witnessing_metadataObject

Metadata that indicates whether the ‘enableWitnessing` property is editable.



1428
1429
1430
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1428

def 
  @enable_witnessing_metadata
end

#enforce_template_name_uniquenessObject

Returns the value of attribute enforce_template_name_uniqueness.



1431
1432
1433
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1431

def enforce_template_name_uniqueness
  @enforce_template_name_uniqueness
end

#enforce_template_name_uniqueness_metadataObject

Metadata that indicates whether the ‘enforceTemplateNameUniqueness` property is editable.



1434
1435
1436
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1434

def 
  @enforce_template_name_uniqueness_metadata
end

#enforce_tls_emailsObject

Returns the value of attribute enforce_tls_emails.



1437
1438
1439
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1437

def enforce_tls_emails
  @enforce_tls_emails
end

#enforce_tls_emails_metadataObject

Returns the value of attribute enforce_tls_emails_metadata.



1440
1441
1442
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1440

def 
  @enforce_tls_emails_metadata
end

#envelope_integration_allowedObject

Returns the value of attribute envelope_integration_allowed.



1443
1444
1445
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1443

def envelope_integration_allowed
  @envelope_integration_allowed
end

#envelope_integration_allowed_metadataObject

Metadata that indicates whether the ‘envelopeIntegrationAllowed` property is editable.



1446
1447
1448
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1446

def 
  @envelope_integration_allowed_metadata
end

#envelope_integration_enabledObject

Returns the value of attribute envelope_integration_enabled.



1449
1450
1451
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1449

def envelope_integration_enabled
  @envelope_integration_enabled
end

#envelope_integration_enabled_metadataObject

Metadata that indicates whether the ‘envelopeIntegrationEnabled` property is editable.



1452
1453
1454
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1452

def 
  @envelope_integration_enabled_metadata
end

#envelope_limits_total_document_size_allowed_in_mbObject

Returns the value of attribute envelope_limits_total_document_size_allowed_in_mb.



1455
1456
1457
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1455

def envelope_limits_total_document_size_allowed_in_mb
  @envelope_limits_total_document_size_allowed_in_mb
end

#envelope_limits_total_document_size_allowed_in_mb_enabledObject

Returns the value of attribute envelope_limits_total_document_size_allowed_in_mb_enabled.



1458
1459
1460
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1458

def envelope_limits_total_document_size_allowed_in_mb_enabled
  @envelope_limits_total_document_size_allowed_in_mb_enabled
end

#envelope_limits_total_document_size_allowed_in_mb_enabled_metadataObject

Returns the value of attribute envelope_limits_total_document_size_allowed_in_mb_enabled_metadata.



1461
1462
1463
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1461

def 
  @envelope_limits_total_document_size_allowed_in_mb_enabled_metadata
end

#envelope_limits_total_document_size_allowed_in_mb_metadataObject

Returns the value of attribute envelope_limits_total_document_size_allowed_in_mb_metadata.



1464
1465
1466
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1464

def 
  @envelope_limits_total_document_size_allowed_in_mb_metadata
end

#envelope_search_modeObject

Returns the value of attribute envelope_search_mode.



1467
1468
1469
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1467

def envelope_search_mode
  @envelope_search_mode
end

#envelope_search_mode_metadataObject

Returns the value of attribute envelope_search_mode_metadata.



1470
1471
1472
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1470

def 
  @envelope_search_mode_metadata
end

#envelope_stamping_default_valueObject

Returns the value of attribute envelope_stamping_default_value.



1473
1474
1475
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1473

def envelope_stamping_default_value
  @envelope_stamping_default_value
end

#envelope_stamping_default_value_metadataObject

Metadata that indicates whether the ‘envelopeStampingDefaultValue` property is editable.



1476
1477
1478
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1476

def 
  @envelope_stamping_default_value_metadata
end

#exit_promptObject

Returns the value of attribute exit_prompt.



1479
1480
1481
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1479

def exit_prompt
  @exit_prompt
end

#exit_prompt_metadataObject

Returns the value of attribute exit_prompt_metadata.



1482
1483
1484
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1482

def 
  @exit_prompt_metadata
end

#express_sendObject

Returns the value of attribute express_send.



1485
1486
1487
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1485

def express_send
  @express_send
end

#express_send_allow_tabsObject

Returns the value of attribute express_send_allow_tabs.



1488
1489
1490
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1488

def express_send_allow_tabs
  @express_send_allow_tabs
end

#express_send_allow_tabs_metadataObject

Metadata that indicates whether the ‘expressSendAllowTabs` property is editable.



1491
1492
1493
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1491

def 
  @express_send_allow_tabs_metadata
end

#express_send_metadataObject

Metadata that indicates whether the ‘expressSend` property is editable.



1494
1495
1496
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1494

def 
  @express_send_metadata
end

#external_document_sourcesObject

A list of external document sources such as DropBox and OneDrive.



1497
1498
1499
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1497

def external_document_sources
  @external_document_sources
end

#external_signature_pad_typeObject

Returns the value of attribute external_signature_pad_type.



1500
1501
1502
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1500

def external_signature_pad_type
  @external_signature_pad_type
end

#external_signature_pad_type_metadataObject

Metadata that indicates whether the ‘externalSignaturePadType` property is editable.



1503
1504
1505
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1503

def 
  @external_signature_pad_type_metadata
end

#fax_out_enabledObject

Returns the value of attribute fax_out_enabled.



1506
1507
1508
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1506

def fax_out_enabled
  @fax_out_enabled
end

#fax_out_enabled_metadataObject

Metadata that indicates whether the ‘faxOutEnabled` property is editable.



1509
1510
1511
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1509

def 
  @fax_out_enabled_metadata
end

#finish_reminderObject

Returns the value of attribute finish_reminder.



1512
1513
1514
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1512

def finish_reminder
  @finish_reminder
end

#finish_reminder_metadataObject

Returns the value of attribute finish_reminder_metadata.



1515
1516
1517
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1515

def 
  @finish_reminder_metadata
end

#guided_forms_html_allowedObject

Returns the value of attribute guided_forms_html_allowed.



1518
1519
1520
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1518

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.



1521
1522
1523
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1521

def 
  @guided_forms_html_allowed_metadata
end

#guided_forms_html_conversion_policyObject

Returns the value of attribute guided_forms_html_conversion_policy.



1524
1525
1526
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1524

def guided_forms_html_conversion_policy
  @guided_forms_html_conversion_policy
end

#guided_forms_html_conversion_policy_metadataObject

Returns the value of attribute guided_forms_html_conversion_policy_metadata.



1527
1528
1529
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1527

def 
  @guided_forms_html_conversion_policy_metadata
end

#has_recipient_connect_claimed_domainObject

Returns the value of attribute has_recipient_connect_claimed_domain.



1530
1531
1532
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1530

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.



1533
1534
1535
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1533

def 
  @hide_account_address_in_co_c
end

#hide_account_address_in_co_c_metadataObject

Metadata that indicates whether the ‘hideAccountAddressInCoC` property is editable.



1536
1537
1538
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1536

def 
  @hide_account_address_in_co_c_metadata
end

#hide_pricingObject

Returns the value of attribute hide_pricing.



1539
1540
1541
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1539

def hide_pricing
  @hide_pricing
end

#hide_pricing_metadataObject

Metadata that indicates whether the ‘hidePricing` property is editable.



1542
1543
1544
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1542

def 
  @hide_pricing_metadata
end

#id_check_configurationsObject

Returns the value of attribute id_check_configurations.



1545
1546
1547
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1545

def id_check_configurations
  @id_check_configurations
end

#id_check_expireObject

Returns the value of attribute id_check_expire.



1548
1549
1550
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1548

def id_check_expire
  @id_check_expire
end

#id_check_expire_daysObject

Returns the value of attribute id_check_expire_days.



1551
1552
1553
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1551

def id_check_expire_days
  @id_check_expire_days
end

#id_check_expire_days_metadataObject

Metadata that indicates whether the ‘idCheckExpireDays` property is editable.



1554
1555
1556
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1554

def 
  @id_check_expire_days_metadata
end

#id_check_expire_metadataObject

Metadata that indicates whether the ‘idCheckExpire` property is editable.



1557
1558
1559
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1557

def 
  @id_check_expire_metadata
end

#id_check_expire_minutesObject

Returns the value of attribute id_check_expire_minutes.



1560
1561
1562
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1560

def id_check_expire_minutes
  @id_check_expire_minutes
end

#id_check_expire_minutes_metadataObject

Metadata that indicates whether the ‘idCheckExpireMinutes` property is editable.



1563
1564
1565
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1563

def 
  @id_check_expire_minutes_metadata
end

#id_check_requiredObject

Returns the value of attribute id_check_required.



1566
1567
1568
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1566

def id_check_required
  @id_check_required
end

#id_check_required_metadataObject

Metadata that indicates whether the ‘idCheckRequired` property is editable.



1569
1570
1571
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1569

def 
  @id_check_required_metadata
end

#identity_verificationObject

Returns the value of attribute identity_verification.



1572
1573
1574
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1572

def identity_verification
  @identity_verification
end

#identity_verification_metadataObject

Metadata that indicates whether the ‘identityVerification` property is editable.



1575
1576
1577
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1575

def 
  @identity_verification_metadata
end

#idfx_kba_authentication_overrideObject

Returns the value of attribute idfx_kba_authentication_override.



1578
1579
1580
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1578

def idfx_kba_authentication_override
  @idfx_kba_authentication_override
end

#idfx_kba_authentication_override_metadataObject

Returns the value of attribute idfx_kba_authentication_override_metadata.



1581
1582
1583
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1581

def 
  @idfx_kba_authentication_override_metadata
end

#idfx_phone_authentication_overrideObject

Returns the value of attribute idfx_phone_authentication_override.



1584
1585
1586
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1584

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.



1587
1588
1589
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1587

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.



1590
1591
1592
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1590

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

Reserved for DocuSign.



1593
1594
1595
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1593

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.



1596
1597
1598
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1596

def in_person_id_check_question
  @in_person_id_check_question
end

#in_person_id_check_question_metadataObject

Metadata that indicates whether the ‘inPersonIDCheckQuestion` property is editable.



1599
1600
1601
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1599

def 
  @in_person_id_check_question_metadata
end

#in_person_signing_enabledObject

Returns the value of attribute in_person_signing_enabled.



1602
1603
1604
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1602

def in_person_signing_enabled
  @in_person_signing_enabled
end

#in_person_signing_enabled_metadataObject

Metadata that indicates whether the ‘inPersonSigningEnabled` property is editable.



1605
1606
1607
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1605

def 
  @in_person_signing_enabled_metadata
end

#in_session_enabledObject

Returns the value of attribute in_session_enabled.



1608
1609
1610
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1608

def in_session_enabled
  @in_session_enabled
end

#in_session_enabled_metadataObject

Metadata that indicates whether the ‘inSessionEnabled` property is editable.



1611
1612
1613
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1611

def 
  @in_session_enabled_metadata
end

#in_session_suppress_emailsObject

Returns the value of attribute in_session_suppress_emails.



1614
1615
1616
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1614

def in_session_suppress_emails
  @in_session_suppress_emails
end

#in_session_suppress_emails_metadataObject

Metadata that indicates whether the ‘inSessionSuppressEmails` property is editable.



1617
1618
1619
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1617

def 
  @in_session_suppress_emails_metadata
end

#is_connect_document_fields_enabledObject

Returns the value of attribute is_connect_document_fields_enabled.



1620
1621
1622
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1620

def is_connect_document_fields_enabled
  @is_connect_document_fields_enabled
end

#linked_external_primary_accountsObject

Returns the value of attribute linked_external_primary_accounts.



1623
1624
1625
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1623

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.



1638
1639
1640
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1638

def max_number_of_custom_stamps
  @max_number_of_custom_stamps
end

#maximum_signing_groupsObject

Returns the value of attribute maximum_signing_groups.



1626
1627
1628
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1626

def maximum_signing_groups
  @maximum_signing_groups
end

#maximum_signing_groups_metadataObject

Metadata that indicates whether the ‘maximumSigningGroups` property is editable.



1629
1630
1631
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1629

def 
  @maximum_signing_groups_metadata
end

#maximum_users_per_signing_groupObject

Returns the value of attribute maximum_users_per_signing_group.



1632
1633
1634
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1632

def maximum_users_per_signing_group
  @maximum_users_per_signing_group
end

#maximum_users_per_signing_group_metadataObject

Metadata that indicates whether the ‘maximumUsersPerSigningGroup` property is editable.



1635
1636
1637
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1635

def 
  @maximum_users_per_signing_group_metadata
end

#merge_mixed_mode_resultsObject

Returns the value of attribute merge_mixed_mode_results.



1641
1642
1643
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1641

def merge_mixed_mode_results
  @merge_mixed_mode_results
end

#merge_mixed_mode_results_metadataObject

Returns the value of attribute merge_mixed_mode_results_metadata.



1644
1645
1646
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1644

def 
  @merge_mixed_mode_results_metadata
end

#mobile_session_timeoutObject

Returns the value of attribute mobile_session_timeout.



1647
1648
1649
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1647

def mobile_session_timeout
  @mobile_session_timeout
end

#mobile_session_timeout_metadataObject

Metadata that indicates whether the ‘mobileSessionTimeout` property is editable.



1650
1651
1652
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1650

def 
  @mobile_session_timeout_metadata
end

#number_of_active_custom_stampsObject

Returns the value of attribute number_of_active_custom_stamps.



1653
1654
1655
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1653

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.



1656
1657
1658
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1656

def opt_in_mobile_signing_v02
  @opt_in_mobile_signing_v02
end

#opt_in_mobile_signing_v02_metadataObject

Metadata that indicates whether the ‘optInMobileSigningV02` property is editable.



1659
1660
1661
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1659

def 
  @opt_in_mobile_signing_v02_metadata
end

#opt_in_universal_signaturesObject

Returns the value of attribute opt_in_universal_signatures.



1662
1663
1664
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1662

def opt_in_universal_signatures
  @opt_in_universal_signatures
end

#opt_out_auto_nav_text_and_tab_color_updatesObject

Returns the value of attribute opt_out_auto_nav_text_and_tab_color_updates.



1665
1666
1667
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1665

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

Metadata that indicates whether the ‘optOutAutoNavTextAndTabColorUpdates` property is editable.



1668
1669
1670
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1668

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.



1671
1672
1673
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1671

def opt_out_new_platform_seal
  @opt_out_new_platform_seal
end

#opt_out_new_platform_seal_platform_metadataObject

Metadata that indicates whether the ‘optOutNewPlatformSealPlatform` property is editable.



1674
1675
1676
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1674

def 
  @opt_out_new_platform_seal_platform_metadata
end

#pdf_max_chunked_upload_part_sizeObject

Returns the value of attribute pdf_max_chunked_upload_part_size.



1677
1678
1679
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1677

def pdf_max_chunked_upload_part_size
  @pdf_max_chunked_upload_part_size
end

#pdf_max_chunked_upload_part_size_metadataObject

Returns the value of attribute pdf_max_chunked_upload_part_size_metadata.



1680
1681
1682
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1680

def 
  @pdf_max_chunked_upload_part_size_metadata
end

#pdf_max_chunked_upload_total_sizeObject

Returns the value of attribute pdf_max_chunked_upload_total_size.



1683
1684
1685
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1683

def pdf_max_chunked_upload_total_size
  @pdf_max_chunked_upload_total_size
end

#pdf_max_chunked_upload_total_size_metadataObject

Returns the value of attribute pdf_max_chunked_upload_total_size_metadata.



1686
1687
1688
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1686

def 
  @pdf_max_chunked_upload_total_size_metadata
end

#pdf_max_individual_upload_sizeObject

Returns the value of attribute pdf_max_individual_upload_size.



1689
1690
1691
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1689

def pdf_max_individual_upload_size
  @pdf_max_individual_upload_size
end

#pdf_max_individual_upload_size_metadataObject

Returns the value of attribute pdf_max_individual_upload_size_metadata.



1692
1693
1694
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1692

def 
  @pdf_max_individual_upload_size_metadata
end

#phone_auth_recipient_may_provide_phone_numberObject

Returns the value of attribute phone_auth_recipient_may_provide_phone_number.



1695
1696
1697
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1695

def phone_auth_recipient_may_provide_phone_number
  @phone_auth_recipient_may_provide_phone_number
end

#phone_auth_recipient_may_provide_phone_number_metadataObject

Metadata that indicates whether the ‘phoneAuthRecipientMayProvidePhoneNumber` property is editable.



1698
1699
1700
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1698

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.



1701
1702
1703
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1701

def pki_sign_downloaded_pdf_docs
  @pki_sign_downloaded_pdf_docs
end

#pki_sign_downloaded_pdf_docs_metadataObject

Metadata that indicates whether the ‘pkiSignDownloadedPDFDocs` property is editable.



1704
1705
1706
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1704

def 
  @pki_sign_downloaded_pdf_docs_metadata
end

#read_only_modeObject

Returns the value of attribute read_only_mode.



1707
1708
1709
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1707

def read_only_mode
  @read_only_mode
end

#read_only_mode_metadataObject

Returns the value of attribute read_only_mode_metadata.



1710
1711
1712
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1710

def 
  @read_only_mode_metadata
end

#recipient_signing_auto_navigation_controlObject

Returns the value of attribute recipient_signing_auto_navigation_control.



1719
1720
1721
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1719

def recipient_signing_auto_navigation_control
  @recipient_signing_auto_navigation_control
end

#recipient_signing_auto_navigation_control_metadataObject

Metadata that indicates whether the ‘recipientSigningAutoNavigationControl` property is editable.



1722
1723
1724
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1722

def 
  @recipient_signing_auto_navigation_control_metadata
end

#recipients_can_sign_offlineObject

Returns the value of attribute recipients_can_sign_offline.



1713
1714
1715
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1713

def recipients_can_sign_offline
  @recipients_can_sign_offline
end

#recipients_can_sign_offline_metadataObject

Metadata that indicates whether the ‘recipientsCanSignOffline` property is editable.



1716
1717
1718
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1716

def 
  @recipients_can_sign_offline_metadata
end

#require21_cf_rpt11_complianceObject

Returns the value of attribute require21_cf_rpt11_compliance.



1725
1726
1727
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1725

def require21_cf_rpt11_compliance
  @require21_cf_rpt11_compliance
end

#require21_cf_rpt11_compliance_metadataObject

Metadata that indicates whether the ‘require21CFRpt11Compliance` property is editable.



1728
1729
1730
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1728

def 
  @require21_cf_rpt11_compliance_metadata
end

#require_decline_reasonObject

Returns the value of attribute require_decline_reason.



1731
1732
1733
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1731

def require_decline_reason
  @require_decline_reason
end

#require_decline_reason_metadataObject

Metadata that indicates whether the ‘requireDeclineReason` property is editable.



1734
1735
1736
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1734

def 
  @require_decline_reason_metadata
end

#require_external_user_managementObject

Returns the value of attribute require_external_user_management.



1737
1738
1739
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1737

def require_external_user_management
  @require_external_user_management
end

#require_external_user_management_metadataObject

Metadata that indicates whether the ‘requireExternalUserManagement` property is editable.



1740
1741
1742
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1740

def 
  @require_external_user_management_metadata
end

#require_signer_certificate_typeObject

Returns the value of attribute require_signer_certificate_type.



1743
1744
1745
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1743

def require_signer_certificate_type
  @require_signer_certificate_type
end

#require_signer_certificate_type_metadataObject

Metadata that indicates whether the ‘requireSignerCertificateType` property is editable.



1746
1747
1748
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1746

def 
  @require_signer_certificate_type_metadata
end

#rsa_verid_account_nameObject

Returns the value of attribute rsa_verid_account_name.



1749
1750
1751
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1749

def 
  @rsa_verid_account_name
end

#rsa_verid_passwordObject

Returns the value of attribute rsa_verid_password.



1752
1753
1754
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1752

def rsa_verid_password
  @rsa_verid_password
end

#rsa_verid_rulesetObject

Returns the value of attribute rsa_verid_ruleset.



1755
1756
1757
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1755

def rsa_verid_ruleset
  @rsa_verid_ruleset
end

#rsa_verid_user_idObject

Returns the value of attribute rsa_verid_user_id.



1758
1759
1760
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1758

def rsa_verid_user_id
  @rsa_verid_user_id
end

#sbs_transaction_levelObject

Returns the value of attribute sbs_transaction_level.



1761
1762
1763
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1761

def sbs_transaction_level
  @sbs_transaction_level
end

#self_signed_recipient_email_documentObject

Returns the value of attribute self_signed_recipient_email_document.



1764
1765
1766
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1764

def self_signed_recipient_email_document
  @self_signed_recipient_email_document
end

#self_signed_recipient_email_document_metadataObject

Metadata that indicates whether the ‘selfSignedRecipientEmailDocument` property is editable.



1767
1768
1769
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1767

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.



1770
1771
1772
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1770

def self_signed_recipient_email_document_user_override
  @self_signed_recipient_email_document_user_override
end

#self_signed_recipient_email_document_user_override_metadataObject

Metadata that indicates whether the ‘selfSignedRecipientEmailDocumentUserOverride` property is editable.



1773
1774
1775
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1773

def 
  @self_signed_recipient_email_document_user_override_metadata
end

#send_lockout_recipient_notificationObject

Returns the value of attribute send_lockout_recipient_notification.



1806
1807
1808
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1806

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.



1809
1810
1811
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1809

def 
  @send_lockout_recipient_notification_metadata
end

#send_to_certified_delivery_enabledObject

Returns the value of attribute send_to_certified_delivery_enabled.



1812
1813
1814
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1812

def send_to_certified_delivery_enabled
  @send_to_certified_delivery_enabled
end

#send_to_certified_delivery_enabled_metadataObject

Metadata that indicates whether the ‘sendToCertifiedDeliveryEnabled` property is editable.



1815
1816
1817
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1815

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.



1776
1777
1778
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1776

def 
  @sender_can_sign_in_each_location
end

#sender_can_sign_in_each_location_metadataObject

Metadata that indicates whether the ‘senderCanSignInEachLocation` property is editable.



1779
1780
1781
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1779

def 
  @sender_can_sign_in_each_location_metadata
end

#sender_must_authenticate_signingObject

Returns the value of attribute sender_must_authenticate_signing.



1782
1783
1784
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1782

def sender_must_authenticate_signing
  @sender_must_authenticate_signing
end

#sender_must_authenticate_signing_metadataObject

Metadata that indicates whether the ‘senderMustAuthenticateSigning` property is editable.



1785
1786
1787
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1785

def 
  @sender_must_authenticate_signing_metadata
end

#sending_tags_font_colorObject

Returns the value of attribute sending_tags_font_color.



1788
1789
1790
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1788

def sending_tags_font_color
  @sending_tags_font_color
end

#sending_tags_font_color_metadataObject

Metadata that indicates whether the ‘sendingTagsFontColor` property is editable.



1791
1792
1793
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1791

def 
  @sending_tags_font_color_metadata
end

#sending_tags_font_nameObject

Returns the value of attribute sending_tags_font_name.



1794
1795
1796
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1794

def sending_tags_font_name
  @sending_tags_font_name
end

#sending_tags_font_name_metadataObject

Metadata that indicates whether the ‘sendingTagsFontName` property is editable.



1797
1798
1799
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1797

def 
  @sending_tags_font_name_metadata
end

#sending_tags_font_sizeObject

Returns the value of attribute sending_tags_font_size.



1800
1801
1802
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1800

def sending_tags_font_size
  @sending_tags_font_size
end

#sending_tags_font_size_metadataObject

Metadata that indicates whether the ‘sendingTagsFontSize` property is editable.



1803
1804
1805
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1803

def 
  @sending_tags_font_size_metadata
end

#session_timeoutObject

Returns the value of attribute session_timeout.



1818
1819
1820
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1818

def session_timeout
  @session_timeout
end

#session_timeout_metadataObject

Metadata that indicates whether the ‘sessionTimeout` property is editable.



1821
1822
1823
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1821

def 
  @session_timeout_metadata
end

#set_recip_email_langObject

Returns the value of attribute set_recip_email_lang.



1824
1825
1826
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1824

def set_recip_email_lang
  @set_recip_email_lang
end

#set_recip_email_lang_metadataObject

Metadata that indicates whether the ‘setRecipEmailLang` property is editable.



1827
1828
1829
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1827

def 
  @set_recip_email_lang_metadata
end

#set_recip_sign_langObject

Returns the value of attribute set_recip_sign_lang.



1830
1831
1832
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1830

def set_recip_sign_lang
  @set_recip_sign_lang
end

#set_recip_sign_lang_metadataObject

Metadata that indicates whether the ‘setRecipSignLang` property is editable.



1833
1834
1835
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1833

def 
  @set_recip_sign_lang_metadata
end

#shared_template_foldersObject

Returns the value of attribute shared_template_folders.



1836
1837
1838
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1836

def shared_template_folders
  @shared_template_folders
end

#shared_template_folders_metadataObject

Metadata that indicates whether the ‘sharedTemplateFolders` property is editable.



1839
1840
1841
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1839

def 
  @shared_template_folders_metadata
end

#show_complete_dialog_in_embedded_sessionObject

Returns the value of attribute show_complete_dialog_in_embedded_session.



1842
1843
1844
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1842

def show_complete_dialog_in_embedded_session
  @show_complete_dialog_in_embedded_session
end

#show_complete_dialog_in_embedded_session_metadataObject

Metadata that indicates whether the ‘showCompleteDialogInEmbeddedSession` property is editable.



1845
1846
1847
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1845

def 
  @show_complete_dialog_in_embedded_session_metadata
end

#show_conditional_routing_on_sendObject

Returns the value of attribute show_conditional_routing_on_send.



1848
1849
1850
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1848

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.



1851
1852
1853
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1851

def 
  @show_conditional_routing_on_send_metadata
end

#show_initial_conditional_fieldsObject

Returns the value of attribute show_initial_conditional_fields.



1854
1855
1856
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1854

def show_initial_conditional_fields
  @show_initial_conditional_fields
end

#show_initial_conditional_fields_metadataObject

Metadata that indicates whether the ‘showInitialConditionalFields` property is editable.



1857
1858
1859
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1857

def 
  @show_initial_conditional_fields_metadata
end

#show_localized_watermarksObject

Returns the value of attribute show_localized_watermarks.



1860
1861
1862
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1860

def show_localized_watermarks
  @show_localized_watermarks
end

#show_localized_watermarks_metadataObject

Metadata that indicates whether the ‘showLocalizedWatermarks` property is editable.



1863
1864
1865
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1863

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.



1866
1867
1868
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1866

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.



1869
1870
1871
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1869

def 
  @show_masked_fields_when_downloading_document_as_sender_metadata
end

#show_tutorialsObject

Returns the value of attribute show_tutorials.



1872
1873
1874
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1872

def show_tutorials
  @show_tutorials
end

#show_tutorials_metadataObject

Metadata that indicates whether the ‘showTutorials` property is editable.



1875
1876
1877
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1875

def 
  @show_tutorials_metadata
end

#sign_date_formatObject

Returns the value of attribute sign_date_format.



1884
1885
1886
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1884

def sign_date_format
  @sign_date_format
end

#sign_date_format_metadataObject

Metadata that indicates whether the ‘signDateFormat` property is editable.



1887
1888
1889
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1887

def 
  @sign_date_format_metadata
end

#sign_date_time_account_language_overrideObject

Returns the value of attribute sign_date_time_account_language_override.



1890
1891
1892
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1890

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.



1893
1894
1895
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1893

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.



1896
1897
1898
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1896

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.



1899
1900
1901
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1899

def 
  @sign_date_time_account_timezone_override_metadata
end

#sign_time_formatObject

Returns the value of attribute sign_time_format.



1968
1969
1970
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1968

def sign_time_format
  @sign_time_format
end

#sign_time_format_metadataObject

Metadata that indicates whether the ‘signTimeFormat` property is editable.



1971
1972
1973
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1971

def 
  @sign_time_format_metadata
end

#sign_time_show_am_pmObject

Returns the value of attribute sign_time_show_am_pm.



1974
1975
1976
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1974

def sign_time_show_am_pm
  @sign_time_show_am_pm
end

#sign_time_show_am_pm_metadataObject

Metadata that indicates whether the ‘signTimeShowAmPm` property is editable.



1977
1978
1979
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1977

def 
  @sign_time_show_am_pm_metadata
end

#signature_providersObject

Returns the value of attribute signature_providers.



1878
1879
1880
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1878

def signature_providers
  @signature_providers
end

#signature_providers_metadataObject

Metadata that indicates whether the ‘signatureProviders` property is editable.



1881
1882
1883
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1881

def 
  @signature_providers_metadata
end

#signer_attach_certificate_to_envelope_pdfObject

Returns the value of attribute signer_attach_certificate_to_envelope_pdf.



1902
1903
1904
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1902

def signer_attach_certificate_to_envelope_pdf
  @signer_attach_certificate_to_envelope_pdf
end

#signer_attach_certificate_to_envelope_pdf_metadataObject

Metadata that indicates whether the ‘signerAttachCertificateToEnvelopePDF` property is editable.



1905
1906
1907
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1905

def 
  @signer_attach_certificate_to_envelope_pdf_metadata
end

#signer_attach_concatObject

Returns the value of attribute signer_attach_concat.



1908
1909
1910
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1908

def signer_attach_concat
  @signer_attach_concat
end

#signer_attach_concat_metadataObject

Metadata that indicates whether the ‘signerAttachConcat` property is editable.



1911
1912
1913
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1911

def 
  @signer_attach_concat_metadata
end

#signer_can_create_accountObject

Returns the value of attribute signer_can_create_account.



1914
1915
1916
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1914

def 
  @signer_can_create_account
end

#signer_can_create_account_metadataObject

Metadata that indicates whether the ‘signerCanCreateAccount` property is editable.



1917
1918
1919
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1917

def 
  @signer_can_create_account_metadata
end

#signer_can_sign_on_mobileObject

Returns the value of attribute signer_can_sign_on_mobile.



1920
1921
1922
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1920

def signer_can_sign_on_mobile
  @signer_can_sign_on_mobile
end

#signer_can_sign_on_mobile_metadataObject

Metadata that indicates whether the ‘signerCanSignOnMobile` property is editable.



1923
1924
1925
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1923

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.



1926
1927
1928
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1926

def signer_in_session_use_envelope_complete_email
  @signer_in_session_use_envelope_complete_email
end

#signer_in_session_use_envelope_complete_email_metadataObject

Metadata that indicates whether the ‘signerInSessionUseEnvelopeCompleteEmail` property is editable.



1929
1930
1931
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1929

def 
  @signer_in_session_use_envelope_complete_email_metadata
end

#signer_login_requirementsObject

Returns the value of attribute signer_login_requirements.



1932
1933
1934
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1932

def 
  @signer_login_requirements
end

#signer_login_requirements_metadataObject

Metadata that indicates whether the ‘signerLoginRequirements` property is editable.



1935
1936
1937
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1935

def 
  @signer_login_requirements_metadata
end

#signer_must_have_accountObject

Returns the value of attribute signer_must_have_account.



1938
1939
1940
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1938

def 
  @signer_must_have_account
end

#signer_must_have_account_metadataObject

Metadata that indicates whether the ‘signerMustHaveAccount` property is editable.



1941
1942
1943
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1941

def 
  @signer_must_have_account_metadata
end

#signer_must_login_to_signObject

Returns the value of attribute signer_must_login_to_sign.



1944
1945
1946
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1944

def 
  @signer_must_login_to_sign
end

#signer_must_login_to_sign_metadataObject

Metadata that indicates whether the ‘signerMustLoginToSign` property is editable.



1947
1948
1949
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1947

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.



1950
1951
1952
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1950

def signer_show_secure_field_initial_values
  @signer_show_secure_field_initial_values
end

#signer_show_secure_field_initial_values_metadataObject

Metadata that indicates whether the ‘signerShowSecureFieldInitialValues` property is editable.



1953
1954
1955
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1953

def 
  @signer_show_secure_field_initial_values_metadata
end

#signing_session_timeoutObject

Returns the value of attribute signing_session_timeout.



1956
1957
1958
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1956

def signing_session_timeout
  @signing_session_timeout
end

#signing_session_timeout_metadataObject

Metadata that indicates whether the ‘signingSessionTimeout` property is editable.



1959
1960
1961
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1959

def 
  @signing_session_timeout_metadata
end

#signing_ui_versionObject

Returns the value of attribute signing_ui_version.



1962
1963
1964
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1962

def signing_ui_version
  @signing_ui_version
end

#signing_ui_version_metadataObject

Reserved for DocuSign.



1965
1966
1967
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1965

def 
  @signing_ui_version_metadata
end

#simplified_sending_enabledObject

Returns the value of attribute simplified_sending_enabled.



1980
1981
1982
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1980

def simplified_sending_enabled
  @simplified_sending_enabled
end

#simplified_sending_enabled_metadataObject

Metadata that indicates whether the ‘simplifiedSendingEnabled` property is editable.



1983
1984
1985
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1983

def 
  @simplified_sending_enabled_metadata
end

#single_sign_on_enabledObject

Returns the value of attribute single_sign_on_enabled.



1986
1987
1988
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1986

def single_sign_on_enabled
  @single_sign_on_enabled
end

#single_sign_on_enabled_metadataObject

Metadata that indicates whether the ‘singleSignOnEnabled` property is editable.



1989
1990
1991
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1989

def 
  @single_sign_on_enabled_metadata
end

#skip_auth_completed_envelopesObject

Returns the value of attribute skip_auth_completed_envelopes.



1992
1993
1994
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1992

def skip_auth_completed_envelopes
  @skip_auth_completed_envelopes
end

#skip_auth_completed_envelopes_metadataObject

Metadata that indicates whether the ‘skipAuthCompletedEnvelopes` property is editable.



1995
1996
1997
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1995

def 
  @skip_auth_completed_envelopes_metadata
end

#social_id_recip_authObject

Returns the value of attribute social_id_recip_auth.



1998
1999
2000
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1998

def social_id_recip_auth
  @social_id_recip_auth
end

#social_id_recip_auth_metadataObject

Metadata that indicates whether the ‘socialIdRecipAuth` property is editable.



2001
2002
2003
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2001

def 
  @social_id_recip_auth_metadata
end

#specify_document_visibilityObject

Returns the value of attribute specify_document_visibility.



2004
2005
2006
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2004

def specify_document_visibility
  @specify_document_visibility
end

#specify_document_visibility_metadataObject

Metadata that indicates whether the ‘specifyDocumentVisibility` property is editable.



2007
2008
2009
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2007

def 
  @specify_document_visibility_metadata
end

#start_in_advanced_correctObject

Returns the value of attribute start_in_advanced_correct.



2010
2011
2012
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2010

def start_in_advanced_correct
  @start_in_advanced_correct
end

#start_in_advanced_correct_metadataObject

Metadata that indicates whether the ‘startInAdvancedCorrect` property is editable.



2013
2014
2015
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2013

def 
  @start_in_advanced_correct_metadata
end

#supplemental_documents_must_acceptObject

Returns the value of attribute supplemental_documents_must_accept.



2016
2017
2018
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2016

def supplemental_documents_must_accept
  @supplemental_documents_must_accept
end

#supplemental_documents_must_accept_metadataObject

Metadata that indicates whether the ‘supplementalDocumentsMustAccept` property is editable.



2019
2020
2021
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2019

def 
  @supplemental_documents_must_accept_metadata
end

#supplemental_documents_must_readObject

Returns the value of attribute supplemental_documents_must_read.



2022
2023
2024
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2022

def supplemental_documents_must_read
  @supplemental_documents_must_read
end

#supplemental_documents_must_read_metadataObject

Metadata that indicates whether the ‘supplementalDocumentsMustRead` property is editable.



2025
2026
2027
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2025

def 
  @supplemental_documents_must_read_metadata
end

#supplemental_documents_must_viewObject

Returns the value of attribute supplemental_documents_must_view.



2028
2029
2030
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2028

def supplemental_documents_must_view
  @supplemental_documents_must_view
end

#supplemental_documents_must_view_metadataObject

Metadata that indicates whether the ‘supplementalDocumentsMustView` property is editable.



2031
2032
2033
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2031

def 
  @supplemental_documents_must_view_metadata
end

#suppress_certificate_enforcementObject

Returns the value of attribute suppress_certificate_enforcement.



2034
2035
2036
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2034

def suppress_certificate_enforcement
  @suppress_certificate_enforcement
end

#suppress_certificate_enforcement_metadataObject

Metadata that indicates whether the ‘suppressCertificateEnforcement` property is editable.



2037
2038
2039
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2037

def 
  @suppress_certificate_enforcement_metadata
end

#tab_account_settingsObject

Account-wide tab settings.



2040
2041
2042
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2040

def 
  @tab_account_settings
end

#timezone_offset_apiObject

Returns the value of attribute timezone_offset_api.



2043
2044
2045
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2043

def timezone_offset_api
  @timezone_offset_api
end

#timezone_offset_api_metadataObject

Metadata that indicates whether the ‘timezoneOffsetAPI` property is editable.



2046
2047
2048
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2046

def 
  @timezone_offset_api_metadata
end

#timezone_offset_uiObject

Returns the value of attribute timezone_offset_ui.



2049
2050
2051
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2049

def timezone_offset_ui
  @timezone_offset_ui
end

#timezone_offset_ui_metadataObject

Metadata that indicates whether the ‘timezoneOffsetUI` property is editable.



2052
2053
2054
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2052

def 
  @timezone_offset_ui_metadata
end

#universal_signature_opt_inObject

Returns the value of attribute universal_signature_opt_in.



2055
2056
2057
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2055

def universal_signature_opt_in
  @universal_signature_opt_in
end

#use_account_level_emailObject

Returns the value of attribute use_account_level_email.



2058
2059
2060
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2058

def 
  @use_account_level_email
end

#use_account_level_email_metadataObject

Metadata that indicates whether the ‘useAccountLevelEmail` property is editable.



2061
2062
2063
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2061

def 
  @use_account_level_email_metadata
end

#use_consumer_disclosureObject

Returns the value of attribute use_consumer_disclosure.



2064
2065
2066
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2064

def use_consumer_disclosure
  @use_consumer_disclosure
end

#use_consumer_disclosure_metadataObject

Metadata that indicates whether the ‘useConsumerDisclosure` property is editable.



2067
2068
2069
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2067

def 
  @use_consumer_disclosure_metadata
end

#use_consumer_disclosure_within_accountObject

Returns the value of attribute use_consumer_disclosure_within_account.



2070
2071
2072
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2070

def 
  @use_consumer_disclosure_within_account
end

#use_consumer_disclosure_within_account_metadataObject

Metadata that indicates whether the ‘useConsumerDisclosureWithinAccount` property is editable.



2073
2074
2075
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2073

def 
  @use_consumer_disclosure_within_account_metadata
end

#use_derived_keysObject

Returns the value of attribute use_derived_keys.



2076
2077
2078
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2076

def use_derived_keys
  @use_derived_keys
end

#use_derived_keys_metadataObject

Metadata that indicates whether the ‘useDerivedKeys` property is editable.



2079
2080
2081
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2079

def 
  @use_derived_keys_metadata
end

#use_docu_sign_express_signer_certificateObject

Returns the value of attribute use_docu_sign_express_signer_certificate.



2082
2083
2084
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2082

def use_docu_sign_express_signer_certificate
  @use_docu_sign_express_signer_certificate
end

#use_docu_sign_express_signer_certificate_metadataObject

Metadata that indicates whether the ‘useDocuSignExpressSignerCertificate` property is editable.



2085
2086
2087
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2085

def 
  @use_docu_sign_express_signer_certificate_metadata
end

#use_envelope_search_mixed_modeObject

Returns the value of attribute use_envelope_search_mixed_mode.



2088
2089
2090
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2088

def use_envelope_search_mixed_mode
  @use_envelope_search_mixed_mode
end

#use_envelope_search_mixed_mode_metadataObject

Returns the value of attribute use_envelope_search_mixed_mode_metadata.



2091
2092
2093
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2091

def 
  @use_envelope_search_mixed_mode_metadata
end

#use_multi_app_groups_dataObject

Returns the value of attribute use_multi_app_groups_data.



2094
2095
2096
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2094

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.



2097
2098
2099
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2097

def 
  @use_multi_app_groups_data_metadata
end

#use_new_blob_for_pdfObject

Returns the value of attribute use_new_blob_for_pdf.



2100
2101
2102
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2100

def use_new_blob_for_pdf
  @use_new_blob_for_pdf
end

#use_new_blob_for_pdf_metadataObject

Metadata that indicates whether the ‘useNewBlobForPdf` property is editable.



2103
2104
2105
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2103

def 
  @use_new_blob_for_pdf_metadata
end

#use_new_envelope_searchObject

Returns the value of attribute use_new_envelope_search.



2106
2107
2108
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2106

def use_new_envelope_search
  @use_new_envelope_search
end

#use_new_envelope_search_metadataObject

Returns the value of attribute use_new_envelope_search_metadata.



2109
2110
2111
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2109

def 
  @use_new_envelope_search_metadata
end

#use_new_envelope_search_only_when_searching_after_dateObject

Returns the value of attribute use_new_envelope_search_only_when_searching_after_date.



2112
2113
2114
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2112

def use_new_envelope_search_only_when_searching_after_date
  @use_new_envelope_search_only_when_searching_after_date
end

#use_new_envelope_search_only_when_searching_after_date_metadataObject

Returns the value of attribute use_new_envelope_search_only_when_searching_after_date_metadata.



2115
2116
2117
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2115

def 
  @use_new_envelope_search_only_when_searching_after_date_metadata
end

#use_new_envelope_search_only_with_search_termObject

Returns the value of attribute use_new_envelope_search_only_with_search_term.



2118
2119
2120
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2118

def use_new_envelope_search_only_with_search_term
  @use_new_envelope_search_only_with_search_term
end

#use_new_envelope_search_only_with_search_term_metadataObject

Returns the value of attribute use_new_envelope_search_only_with_search_term_metadata.



2121
2122
2123
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2121

def 
  @use_new_envelope_search_only_with_search_term_metadata
end

#use_safe_signer_certificatesObject

Returns the value of attribute use_safe_signer_certificates.



2124
2125
2126
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2124

def use_safe_signer_certificates
  @use_safe_signer_certificates
end

#use_safe_signer_certificates_metadataObject

Metadata that indicates whether the ‘useSAFESignerCertificates` property is editable.



2127
2128
2129
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2127

def 
  @use_safe_signer_certificates_metadata
end

#use_signature_provider_platformObject

Returns the value of attribute use_signature_provider_platform.



2136
2137
2138
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2136

def use_signature_provider_platform
  @use_signature_provider_platform
end

#use_signature_provider_platform_metadataObject

Metadata that indicates whether the ‘useSignatureProviderPlatform` property is editable.



2139
2140
2141
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2139

def 
  @use_signature_provider_platform_metadata
end

#use_smart_contracts_v1Object

Returns the value of attribute use_smart_contracts_v1.



2142
2143
2144
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2142

def use_smart_contracts_v1
  @use_smart_contracts_v1
end

#uses_apiObject

Returns the value of attribute uses_api.



2130
2131
2132
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2130

def uses_api
  @uses_api
end

#uses_api_metadataObject

Metadata that indicates whether the ‘usesAPI` property is editable.



2133
2134
2135
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2133

def 
  @uses_api_metadata
end

#validations_allowedObject

Returns the value of attribute validations_allowed.



2145
2146
2147
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2145

def validations_allowed
  @validations_allowed
end

#validations_allowed_metadataObject

Metadata that indicates whether the ‘validationsAllowed` property is editable.



2148
2149
2150
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2148

def 
  @validations_allowed_metadata
end

#validations_brandObject

Returns the value of attribute validations_brand.



2151
2152
2153
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2151

def validations_brand
  @validations_brand
end

#validations_brand_metadataObject

Metadata that indicates whether the ‘validationsBrand` property is editable.



2154
2155
2156
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2154

def 
  @validations_brand_metadata
end

#validations_cadenceObject

Returns the value of attribute validations_cadence.



2157
2158
2159
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2157

def validations_cadence
  @validations_cadence
end

#validations_cadence_metadataObject

Metadata that indicates whether the ‘validationsCadence` property is editable.



2160
2161
2162
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2160

def 
  @validations_cadence_metadata
end

#validations_enabledObject

Returns the value of attribute validations_enabled.



2163
2164
2165
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2163

def validations_enabled
  @validations_enabled
end

#validations_enabled_metadataObject

Metadata that indicates whether the ‘validationsEnabled` property is editable.



2166
2167
2168
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2166

def 
  @validations_enabled_metadata
end

#validations_reportObject

Returns the value of attribute validations_report.



2169
2170
2171
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2169

def validations_report
  @validations_report
end

#validations_report_metadataObject

Metadata that indicates whether the ‘validationsReport` property is editable.



2172
2173
2174
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2172

def 
  @validations_report_metadata
end

#water_mark_enabledObject

Returns the value of attribute water_mark_enabled.



2175
2176
2177
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2175

def water_mark_enabled
  @water_mark_enabled
end

#water_mark_enabled_metadataObject

Metadata that indicates whether the ‘waterMarkEnabled` property is editable.



2178
2179
2180
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2178

def 
  @water_mark_enabled_metadata
end

#write_reminder_to_envelope_historyObject

Returns the value of attribute write_reminder_to_envelope_history.



2181
2182
2183
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2181

def write_reminder_to_envelope_history
  @write_reminder_to_envelope_history
end

#write_reminder_to_envelope_history_metadataObject

Metadata that indicates whether the ‘writeReminderToEnvelopeHistory` property is editable.



2184
2185
2186
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2184

def 
  @write_reminder_to_envelope_history_metadata
end

#wurfl_min_allowable_screen_sizeObject

Returns the value of attribute wurfl_min_allowable_screen_size.



2187
2188
2189
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2187

def wurfl_min_allowable_screen_size
  @wurfl_min_allowable_screen_size
end

#wurfl_min_allowable_screen_size_metadataObject

Metadata that indicates whether the ‘wurflMinAllowableScreenSize` property is editable.



2190
2191
2192
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2190

def 
  @wurfl_min_allowable_screen_size_metadata
end

Class Method Details

.attribute_mapObject

Attribute mapping from ruby-style variable name to JSON key.



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
2778
2779
2780
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
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2193

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',
    :'advanced_search_enable_tab_field' => :'advancedSearchEnableTabField',
    :'advanced_search_enable_tab_field_metadata' => :'advancedSearchEnableTabFieldMetadata',
    :'advanced_search_enable_template_id_field' => :'advancedSearchEnableTemplateIdField',
    :'advanced_search_enable_template_id_field_metadata' => :'advancedSearchEnableTemplateIdFieldMetadata',
    :'advanced_search_enable_template_name_field' => :'advancedSearchEnableTemplateNameField',
    :'advanced_search_enable_template_name_field_metadata' => :'advancedSearchEnableTemplateNameFieldMetadata',
    :'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_ace' => :'allowACE',
    :'allow_ace_metadata' => :'allowACEMetadata',
    :'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_agreement_orchestrations' => :'allowAgreementOrchestrations',
    :'allow_agreement_orchestrations_metadata' => :'allowAgreementOrchestrationsMetadata',
    :'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_identity_verification_ui' => :'AllowConnectIdentityVerificationUI',
    :'allow_connect_o_auth_ui' => :'allowConnectOAuthUI',
    :'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_doc_gen_documents' => :'allowDocGenDocuments',
    :'allow_doc_gen_documents_metadata' => :'allowDocGenDocumentsMetadata',
    :'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_editing_envelopes_on_behalf_of_others' => :'allowEditingEnvelopesOnBehalfOfOthers',
    :'allow_editing_envelopes_on_behalf_of_others_metadata' => :'allowEditingEnvelopesOnBehalfOfOthersMetadata',
    :'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_for_eu_qualified_signatures' => :'allowIDVForEUQualifiedSignatures',
    :'allow_idv_for_eu_qualified_signatures_metadata' => :'allowIDVForEUQualifiedSignaturesMetadata',
    :'allow_idv_level1' => :'allowIDVLevel1',
    :'allow_idv_level1_metadata' => :'allowIDVLevel1Metadata',
    :'allow_idv_level1_trial' => :'allowIDVLevel1Trial',
    :'allow_idv_level1_trial_metadata' => :'allowIDVLevel1TrialMetadata',
    :'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_free' => :'allowOrganizationDocusignMonitorFree',
    :'allow_organization_docusign_monitor_free_metadata' => :'allowOrganizationDocusignMonitorFreeMetadata',
    :'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_participant_recipient_type' => :'allowParticipantRecipientType',
    :'allow_participant_recipient_type_metadata' => :'allowParticipantRecipientTypeMetadata',
    :'allow_payment_processing' => :'allowPaymentProcessing',
    :'allow_payment_processing_metadata' => :'allowPaymentProcessingMetadata',
    :'allow_performance_analytics' => :'allowPerformanceAnalytics',
    :'allow_performance_analytics_metadata' => :'allowPerformanceAnalyticsMetadata',
    :'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_transactions_workspace' => :'allowTransactionsWorkspace',
    :'allow_transactions_workspace_metadata' => :'allowTransactionsWorkspaceMetadata',
    :'allow_transactions_workspace_original' => :'allowTransactionsWorkspaceOriginal',
    :'allow_transactions_workspace_original_metadata' => :'allowTransactionsWorkspaceOriginalMetadata',
    :'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',
    :'allow_whats_app_delivery' => :'allowWhatsAppDelivery',
    :'allow_whats_app_delivery_metadata' => :'allowWhatsAppDeliveryMetadata',
    :'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',
    :'default_to_advanced_envelopes_filter_form' => :'defaultToAdvancedEnvelopesFilterForm',
    :'default_to_advanced_envelopes_filter_form_metadata' => :'defaultToAdvancedEnvelopesFilterFormMetadata',
    :'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',
    :'draft_envelope_retention' => :'draftEnvelopeRetention',
    :'draft_envelope_retention_metadata' => :'draftEnvelopeRetentionMetadata',
    :'dss_enable_provisioning_pen_configuration_radmin_option' => :'dss_EnableProvisioningPenConfiguration_RadminOption',
    :'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_account_wide_search' => :'enableAccountWideSearch',
    :'enable_account_wide_search_metadata' => :'enableAccountWideSearchMetadata',
    :'enable_adm_healthcare' => :'enableAdmHealthcare',
    :'enable_adm_healthcare_metadata' => :'enableAdmHealthcareMetadata',
    :'enable_advanced_envelopes_search' => :'enableAdvancedEnvelopesSearch',
    :'enable_advanced_envelopes_search_metadata' => :'enableAdvancedEnvelopesSearchMetadata',
    :'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_click_plus' => :'enableClickPlus',
    :'enable_click_plus_conditional_content' => :'enableClickPlusConditionalContent',
    :'enable_click_plus_conditional_content_meta_data' => :'enableClickPlusConditionalContentMetaData',
    :'enable_click_plus_custom_fields' => :'enableClickPlusCustomFields',
    :'enable_click_plus_custom_fields_meta_data' => :'enableClickPlusCustomFieldsMetaData',
    :'enable_click_plus_custom_style' => :'enableClickPlusCustomStyle',
    :'enable_click_plus_custom_style_meta_data' => :'enableClickPlusCustomStyleMetaData',
    :'enable_click_plus_dynamic_content' => :'enableClickPlusDynamicContent',
    :'enable_click_plus_dynamic_content_meta_data' => :'enableClickPlusDynamicContentMetaData',
    :'enable_click_plus_meta_data' => :'enableClickPlusMetaData',
    :'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_contact_suggestions' => :'enableContactSuggestions',
    :'enable_contact_suggestions_metadata' => :'enableContactSuggestionsMetadata',
    :'enable_customer_satisfaction_metric_tracking' => :'enableCustomerSatisfactionMetricTracking',
    :'enable_customer_satisfaction_metric_tracking_metadata' => :'enableCustomerSatisfactionMetricTrackingMetadata',
    :'enable_d_sig_eu_advanced_pens' => :'enableDSigEUAdvancedPens',
    :'enable_d_sig_eu_advanced_pens_metadata' => :'enableDSigEUAdvancedPensMetadata',
    :'enable_d_sig_express_pens' => :'enableDSigExpressPens',
    :'enable_d_sig_express_pens_metadata' => :'enableDSigExpressPensMetadata',
    :'enable_d_sig_id_check_for_aes_pens' => :'enableDSigIDCheckForAESPens',
    :'enable_d_sig_id_check_for_aes_pens_metadata' => :'enableDSigIDCheckForAESPensMetadata',
    :'enable_d_sig_id_check_in_person_for_qes_pens' => :'enableDSigIDCheckInPersonForQESPens',
    :'enable_d_sig_id_check_in_person_for_qes_pens_metadata' => :'enableDSigIDCheckInPersonForQESPensMetadata',
    :'enable_d_sig_id_check_remote_for_qes_pens' => :'enableDSigIDCheckRemoteForQESPens',
    :'enable_d_sig_id_check_remote_for_qes_pens_metadata' => :'enableDSigIDCheckRemoteForQESPensMetadata',
    :'enable_d_sig_id_verification_pens' => :'enableDSigIDVerificationPens',
    :'enable_d_sig_id_verification_pens_metadata' => :'enableDSigIDVerificationPensMetadata',
    :'enable_d_sig_id_verification_premier_pens' => :'enableDSigIDVerificationPremierPens',
    :'enable_d_sig_id_verification_premier_pens_metadata' => :'enableDSigIDVerificationPremierPensMetadata',
    :'enable_ds_pro' => :'enableDSPro',
    :'enable_ds_pro_metadata' => :'enableDSProMetadata',
    :'enable_enforce_tls_emails_setting_metadata' => :'enableEnforceTlsEmailsSettingMetadata',
    :'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_e_sign_api_hourly_limit_management' => :'enableESignAPIHourlyLimitManagement',
    :'enable_e_sign_api_hourly_limit_management_metadata' => :'enableESignAPIHourlyLimitManagementMetadata',
    :'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_idfx_phone_auth_signature_auth_status' => :'enableIdfxPhoneAuthSignatureAuthStatus',
    :'enable_idfx_phone_auth_signature_auth_status_metadata' => :'enableIdfxPhoneAuthSignatureAuthStatusMetadata',
    :'enable_inbox_browse_views_powered_by_elastic_search' => :'enableInboxBrowseViewsPoweredByElasticSearch',
    :'enable_inbox_browse_views_powered_by_elastic_search_metadata' => :'enableInboxBrowseViewsPoweredByElasticSearchMetadata',
    :'enable_inbox_relevance_sort' => :'enableInboxRelevanceSort',
    :'enable_inbox_relevance_sort_for_recent_accounts' => :'enableInboxRelevanceSortForRecentAccounts',
    :'enable_inbox_relevance_sort_for_recent_accounts_metadata' => :'enableInboxRelevanceSortForRecentAccountsMetadata',
    :'enable_inbox_relevance_sort_metadata' => :'enableInboxRelevanceSortMetadata',
    :'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_participant_recipient_setting_metadata' => :'enableParticipantRecipientSettingMetadata',
    :'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_service_azure_uri' => :'enableSearchServiceAzureUri',
    :'enable_search_service_azure_uri_metadata' => :'enableSearchServiceAzureUriMetadata',
    :'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_web_forms_separate_user_permissions' => :'enableWebFormsSeparateUserPermissions',
    :'enable_web_forms_separate_user_permissions_metadata' => :'enableWebFormsSeparateUserPermissionsMetadata',
    :'enable_witnessing' => :'enableWitnessing',
    :'enable_witnessing_metadata' => :'enableWitnessingMetadata',
    :'enforce_template_name_uniqueness' => :'enforceTemplateNameUniqueness',
    :'enforce_template_name_uniqueness_metadata' => :'enforceTemplateNameUniquenessMetadata',
    :'enforce_tls_emails' => :'enforceTlsEmails',
    :'enforce_tls_emails_metadata' => :'enforceTlsEmailsMetadata',
    :'envelope_integration_allowed' => :'envelopeIntegrationAllowed',
    :'envelope_integration_allowed_metadata' => :'envelopeIntegrationAllowedMetadata',
    :'envelope_integration_enabled' => :'envelopeIntegrationEnabled',
    :'envelope_integration_enabled_metadata' => :'envelopeIntegrationEnabledMetadata',
    :'envelope_limits_total_document_size_allowed_in_mb' => :'EnvelopeLimitsTotalDocumentSizeAllowedInMB',
    :'envelope_limits_total_document_size_allowed_in_mb_enabled' => :'EnvelopeLimitsTotalDocumentSizeAllowedInMBEnabled',
    :'envelope_limits_total_document_size_allowed_in_mb_enabled_metadata' => :'EnvelopeLimitsTotalDocumentSizeAllowedInMBEnabledMetadata',
    :'envelope_limits_total_document_size_allowed_in_mb_metadata' => :'EnvelopeLimitsTotalDocumentSizeAllowedInMBMetadata',
    :'envelope_search_mode' => :'envelopeSearchMode',
    :'envelope_search_mode_metadata' => :'envelopeSearchModeMetadata',
    :'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',
    :'guided_forms_html_conversion_policy' => :'guidedFormsHtmlConversionPolicy',
    :'guided_forms_html_conversion_policy_metadata' => :'guidedFormsHtmlConversionPolicyMetadata',
    :'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_kba_authentication_override' => :'idfxKBAAuthenticationOverride',
    :'idfx_kba_authentication_override_metadata' => :'idfxKBAAuthenticationOverrideMetadata',
    :'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',
    :'is_connect_document_fields_enabled' => :'isConnectDocumentFieldsEnabled',
    :'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',
    :'merge_mixed_mode_results' => :'mergeMixedModeResults',
    :'merge_mixed_mode_results_metadata' => :'mergeMixedModeResultsMetadata',
    :'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_in_universal_signatures' => :'optInUniversalSignatures',
    :'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',
    :'pdf_max_chunked_upload_part_size' => :'pdfMaxChunkedUploadPartSize',
    :'pdf_max_chunked_upload_part_size_metadata' => :'pdfMaxChunkedUploadPartSizeMetadata',
    :'pdf_max_chunked_upload_total_size' => :'pdfMaxChunkedUploadTotalSize',
    :'pdf_max_chunked_upload_total_size_metadata' => :'pdfMaxChunkedUploadTotalSizeMetadata',
    :'pdf_max_individual_upload_size' => :'pdfMaxIndividualUploadSize',
    :'pdf_max_individual_upload_size_metadata' => :'pdfMaxIndividualUploadSizeMetadata',
    :'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',
    :'sbs_transaction_level' => :'sbsTransactionLevel',
    :'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_envelope_search_mixed_mode' => :'useEnvelopeSearchMixedMode',
    :'use_envelope_search_mixed_mode_metadata' => :'useEnvelopeSearchMixedModeMetadata',
    :'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_new_envelope_search' => :'useNewEnvelopeSearch',
    :'use_new_envelope_search_metadata' => :'useNewEnvelopeSearchMetadata',
    :'use_new_envelope_search_only_when_searching_after_date' => :'useNewEnvelopeSearchOnlyWhenSearchingAfterDate',
    :'use_new_envelope_search_only_when_searching_after_date_metadata' => :'useNewEnvelopeSearchOnlyWhenSearchingAfterDateMetadata',
    :'use_new_envelope_search_only_with_search_term' => :'useNewEnvelopeSearchOnlyWithSearchTerm',
    :'use_new_envelope_search_only_with_search_term_metadata' => :'useNewEnvelopeSearchOnlyWithSearchTermMetadata',
    :'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.



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
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2924

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',
    :'advanced_search_enable_tab_field' => :'String',
    :'advanced_search_enable_tab_field_metadata' => :'SettingsMetadata',
    :'advanced_search_enable_template_id_field' => :'String',
    :'advanced_search_enable_template_id_field_metadata' => :'SettingsMetadata',
    :'advanced_search_enable_template_name_field' => :'String',
    :'advanced_search_enable_template_name_field_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_ace' => :'String',
    :'allow_ace_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_agreement_orchestrations' => :'String',
    :'allow_agreement_orchestrations_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_identity_verification_ui' => :'String',
    :'allow_connect_o_auth_ui' => :'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_doc_gen_documents' => :'String',
    :'allow_doc_gen_documents_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_editing_envelopes_on_behalf_of_others' => :'String',
    :'allow_editing_envelopes_on_behalf_of_others_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_for_eu_qualified_signatures' => :'String',
    :'allow_idv_for_eu_qualified_signatures_metadata' => :'SettingsMetadata',
    :'allow_idv_level1' => :'String',
    :'allow_idv_level1_metadata' => :'SettingsMetadata',
    :'allow_idv_level1_trial' => :'String',
    :'allow_idv_level1_trial_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_free' => :'String',
    :'allow_organization_docusign_monitor_free_metadata' => :'SettingsMetadata',
    :'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_participant_recipient_type' => :'String',
    :'allow_participant_recipient_type_metadata' => :'SettingsMetadata',
    :'allow_payment_processing' => :'String',
    :'allow_payment_processing_metadata' => :'SettingsMetadata',
    :'allow_performance_analytics' => :'String',
    :'allow_performance_analytics_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_transactions_workspace' => :'String',
    :'allow_transactions_workspace_metadata' => :'SettingsMetadata',
    :'allow_transactions_workspace_original' => :'String',
    :'allow_transactions_workspace_original_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',
    :'allow_whats_app_delivery' => :'String',
    :'allow_whats_app_delivery_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',
    :'default_to_advanced_envelopes_filter_form' => :'String',
    :'default_to_advanced_envelopes_filter_form_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',
    :'draft_envelope_retention' => :'String',
    :'draft_envelope_retention_metadata' => :'SettingsMetadata',
    :'dss_enable_provisioning_pen_configuration_radmin_option' => :'String',
    :'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_account_wide_search' => :'String',
    :'enable_account_wide_search_metadata' => :'SettingsMetadata',
    :'enable_adm_healthcare' => :'String',
    :'enable_adm_healthcare_metadata' => :'SettingsMetadata',
    :'enable_advanced_envelopes_search' => :'String',
    :'enable_advanced_envelopes_search_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_click_plus' => :'String',
    :'enable_click_plus_conditional_content' => :'String',
    :'enable_click_plus_conditional_content_meta_data' => :'SettingsMetadata',
    :'enable_click_plus_custom_fields' => :'String',
    :'enable_click_plus_custom_fields_meta_data' => :'SettingsMetadata',
    :'enable_click_plus_custom_style' => :'String',
    :'enable_click_plus_custom_style_meta_data' => :'SettingsMetadata',
    :'enable_click_plus_dynamic_content' => :'String',
    :'enable_click_plus_dynamic_content_meta_data' => :'SettingsMetadata',
    :'enable_click_plus_meta_data' => :'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_contact_suggestions' => :'String',
    :'enable_contact_suggestions_metadata' => :'SettingsMetadata',
    :'enable_customer_satisfaction_metric_tracking' => :'String',
    :'enable_customer_satisfaction_metric_tracking_metadata' => :'SettingsMetadata',
    :'enable_d_sig_eu_advanced_pens' => :'String',
    :'enable_d_sig_eu_advanced_pens_metadata' => :'SettingsMetadata',
    :'enable_d_sig_express_pens' => :'String',
    :'enable_d_sig_express_pens_metadata' => :'SettingsMetadata',
    :'enable_d_sig_id_check_for_aes_pens' => :'String',
    :'enable_d_sig_id_check_for_aes_pens_metadata' => :'SettingsMetadata',
    :'enable_d_sig_id_check_in_person_for_qes_pens' => :'String',
    :'enable_d_sig_id_check_in_person_for_qes_pens_metadata' => :'SettingsMetadata',
    :'enable_d_sig_id_check_remote_for_qes_pens' => :'String',
    :'enable_d_sig_id_check_remote_for_qes_pens_metadata' => :'SettingsMetadata',
    :'enable_d_sig_id_verification_pens' => :'String',
    :'enable_d_sig_id_verification_pens_metadata' => :'SettingsMetadata',
    :'enable_d_sig_id_verification_premier_pens' => :'String',
    :'enable_d_sig_id_verification_premier_pens_metadata' => :'SettingsMetadata',
    :'enable_ds_pro' => :'String',
    :'enable_ds_pro_metadata' => :'SettingsMetadata',
    :'enable_enforce_tls_emails_setting_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_e_sign_api_hourly_limit_management' => :'String',
    :'enable_e_sign_api_hourly_limit_management_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_idfx_phone_auth_signature_auth_status' => :'String',
    :'enable_idfx_phone_auth_signature_auth_status_metadata' => :'SettingsMetadata',
    :'enable_inbox_browse_views_powered_by_elastic_search' => :'String',
    :'enable_inbox_browse_views_powered_by_elastic_search_metadata' => :'SettingsMetadata',
    :'enable_inbox_relevance_sort' => :'String',
    :'enable_inbox_relevance_sort_for_recent_accounts' => :'String',
    :'enable_inbox_relevance_sort_for_recent_accounts_metadata' => :'SettingsMetadata',
    :'enable_inbox_relevance_sort_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_participant_recipient_setting_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_service_azure_uri' => :'String',
    :'enable_search_service_azure_uri_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_web_forms_separate_user_permissions' => :'String',
    :'enable_web_forms_separate_user_permissions_metadata' => :'SettingsMetadata',
    :'enable_witnessing' => :'String',
    :'enable_witnessing_metadata' => :'SettingsMetadata',
    :'enforce_template_name_uniqueness' => :'String',
    :'enforce_template_name_uniqueness_metadata' => :'SettingsMetadata',
    :'enforce_tls_emails' => :'String',
    :'enforce_tls_emails_metadata' => :'SettingsMetadata',
    :'envelope_integration_allowed' => :'String',
    :'envelope_integration_allowed_metadata' => :'SettingsMetadata',
    :'envelope_integration_enabled' => :'String',
    :'envelope_integration_enabled_metadata' => :'SettingsMetadata',
    :'envelope_limits_total_document_size_allowed_in_mb' => :'String',
    :'envelope_limits_total_document_size_allowed_in_mb_enabled' => :'String',
    :'envelope_limits_total_document_size_allowed_in_mb_enabled_metadata' => :'SettingsMetadata',
    :'envelope_limits_total_document_size_allowed_in_mb_metadata' => :'SettingsMetadata',
    :'envelope_search_mode' => :'String',
    :'envelope_search_mode_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',
    :'guided_forms_html_conversion_policy' => :'String',
    :'guided_forms_html_conversion_policy_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_kba_authentication_override' => :'String',
    :'idfx_kba_authentication_override_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',
    :'is_connect_document_fields_enabled' => :'String',
    :'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',
    :'merge_mixed_mode_results' => :'String',
    :'merge_mixed_mode_results_metadata' => :'SettingsMetadata',
    :'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_in_universal_signatures' => :'String',
    :'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',
    :'pdf_max_chunked_upload_part_size' => :'String',
    :'pdf_max_chunked_upload_part_size_metadata' => :'SettingsMetadata',
    :'pdf_max_chunked_upload_total_size' => :'String',
    :'pdf_max_chunked_upload_total_size_metadata' => :'SettingsMetadata',
    :'pdf_max_individual_upload_size' => :'String',
    :'pdf_max_individual_upload_size_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',
    :'sbs_transaction_level' => :'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_envelope_search_mixed_mode' => :'String',
    :'use_envelope_search_mixed_mode_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_new_envelope_search' => :'String',
    :'use_new_envelope_search_metadata' => :'SettingsMetadata',
    :'use_new_envelope_search_only_when_searching_after_date' => :'String',
    :'use_new_envelope_search_only_when_searching_after_date_metadata' => :'SettingsMetadata',
    :'use_new_envelope_search_only_with_search_term' => :'String',
    :'use_new_envelope_search_only_with_search_term_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



6586
6587
6588
6589
6590
6591
6592
6593
6594
6595
6596
6597
6598
6599
6600
6601
6602
6603
6604
6605
6606
6607
6608
6609
6610
6611
6612
6613
6614
6615
6616
6617
6618
6619
6620
6621
6622
6623
6624
6625
6626
6627
6628
6629
6630
6631
6632
6633
6634
6635
6636
6637
6638
6639
6640
6641
6642
6643
6644
6645
6646
6647
6648
6649
6650
6651
6652
6653
6654
6655
6656
6657
6658
6659
6660
6661
6662
6663
6664
6665
6666
6667
6668
6669
6670
6671
6672
6673
6674
6675
6676
6677
6678
6679
6680
6681
6682
6683
6684
6685
6686
6687
6688
6689
6690
6691
6692
6693
6694
6695
6696
6697
6698
6699
6700
6701
6702
6703
6704
6705
6706
6707
6708
6709
6710
6711
6712
6713
6714
6715
6716
6717
6718
6719
6720
6721
6722
6723
6724
6725
6726
6727
6728
6729
6730
6731
6732
6733
6734
6735
6736
6737
6738
6739
6740
6741
6742
6743
6744
6745
6746
6747
6748
6749
6750
6751
6752
6753
6754
6755
6756
6757
6758
6759
6760
6761
6762
6763
6764
6765
6766
6767
6768
6769
6770
6771
6772
6773
6774
6775
6776
6777
6778
6779
6780
6781
6782
6783
6784
6785
6786
6787
6788
6789
6790
6791
6792
6793
6794
6795
6796
6797
6798
6799
6800
6801
6802
6803
6804
6805
6806
6807
6808
6809
6810
6811
6812
6813
6814
6815
6816
6817
6818
6819
6820
6821
6822
6823
6824
6825
6826
6827
6828
6829
6830
6831
6832
6833
6834
6835
6836
6837
6838
6839
6840
6841
6842
6843
6844
6845
6846
6847
6848
6849
6850
6851
6852
6853
6854
6855
6856
6857
6858
6859
6860
6861
6862
6863
6864
6865
6866
6867
6868
6869
6870
6871
6872
6873
6874
6875
6876
6877
6878
6879
6880
6881
6882
6883
6884
6885
6886
6887
6888
6889
6890
6891
6892
6893
6894
6895
6896
6897
6898
6899
6900
6901
6902
6903
6904
6905
6906
6907
6908
6909
6910
6911
6912
6913
6914
6915
6916
6917
6918
6919
6920
6921
6922
6923
6924
6925
6926
6927
6928
6929
6930
6931
6932
6933
6934
6935
6936
6937
6938
6939
6940
6941
6942
6943
6944
6945
6946
6947
6948
6949
6950
6951
6952
6953
6954
6955
6956
6957
6958
6959
6960
6961
6962
6963
6964
6965
6966
6967
6968
6969
6970
6971
6972
6973
6974
6975
6976
6977
6978
6979
6980
6981
6982
6983
6984
6985
6986
6987
6988
6989
6990
6991
6992
6993
6994
6995
6996
6997
6998
6999
7000
7001
7002
7003
7004
7005
7006
7007
7008
7009
7010
7011
7012
7013
7014
7015
7016
7017
7018
7019
7020
7021
7022
7023
7024
7025
7026
7027
7028
7029
7030
7031
7032
7033
7034
7035
7036
7037
7038
7039
7040
7041
7042
7043
7044
7045
7046
7047
7048
7049
7050
7051
7052
7053
7054
7055
7056
7057
7058
7059
7060
7061
7062
7063
7064
7065
7066
7067
7068
7069
7070
7071
7072
7073
7074
7075
7076
7077
7078
7079
7080
7081
7082
7083
7084
7085
7086
7087
7088
7089
7090
7091
7092
7093
7094
7095
7096
7097
7098
7099
7100
7101
7102
7103
7104
7105
7106
7107
7108
7109
7110
7111
7112
7113
7114
7115
7116
7117
7118
7119
7120
7121
7122
7123
7124
7125
7126
7127
7128
7129
7130
7131
7132
7133
7134
7135
7136
7137
7138
7139
7140
7141
7142
7143
7144
7145
7146
7147
7148
7149
7150
7151
7152
7153
7154
7155
7156
7157
7158
7159
7160
7161
7162
7163
7164
7165
7166
7167
7168
7169
7170
7171
7172
7173
7174
7175
7176
7177
7178
7179
7180
7181
7182
7183
7184
7185
7186
7187
7188
7189
7190
7191
7192
7193
7194
7195
7196
7197
7198
7199
7200
7201
7202
7203
7204
7205
7206
7207
7208
7209
7210
7211
7212
7213
7214
7215
7216
7217
7218
7219
7220
7221
7222
7223
7224
7225
7226
7227
7228
7229
7230
7231
7232
7233
7234
7235
7236
7237
7238
7239
7240
7241
7242
7243
7244
7245
7246
7247
7248
7249
7250
7251
7252
7253
7254
7255
7256
7257
7258
7259
7260
7261
7262
7263
7264
7265
7266
7267
7268
7269
7270
7271
7272
7273
7274
7275
7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
# File 'lib/docusign_esign/models/account_settings_information.rb', line 6586

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. &&
      advanced_search_enable_tab_field == o.advanced_search_enable_tab_field &&
       == o. &&
      advanced_search_enable_template_id_field == o.advanced_search_enable_template_id_field &&
       == o. &&
      advanced_search_enable_template_name_field == o.advanced_search_enable_template_name_field &&
       == o. &&
      allow_access_code_format == o.allow_access_code_format &&
       == o. &&
       == o. &&
       == o. &&
       == o. &&
       == o. &&
      allow_ace == o.allow_ace &&
       == 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_agreement_orchestrations == o.allow_agreement_orchestrations &&
       == 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_identity_verification_ui == o.allow_connect_identity_verification_ui &&
      allow_connect_o_auth_ui == o.allow_connect_o_auth_ui &&
      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_doc_gen_documents == o.allow_doc_gen_documents &&
       == 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_editing_envelopes_on_behalf_of_others == o.allow_editing_envelopes_on_behalf_of_others &&
       == 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_for_eu_qualified_signatures == o.allow_idv_for_eu_qualified_signatures &&
       == o. &&
      allow_idv_level1 == o.allow_idv_level1 &&
       == o. &&
      allow_idv_level1_trial == o.allow_idv_level1_trial &&
       == 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 &&
      allow_organization_docusign_monitor_free == o.allow_organization_docusign_monitor_free &&
       == o. &&
       == 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_participant_recipient_type == o.allow_participant_recipient_type &&
       == o. &&
      allow_payment_processing == o.allow_payment_processing &&
       == o. &&
      allow_performance_analytics == o.allow_performance_analytics &&
       == 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_transactions_workspace == o.allow_transactions_workspace &&
       == o. &&
      allow_transactions_workspace_original == o.allow_transactions_workspace_original &&
       == 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. &&
      allow_whats_app_delivery == o.allow_whats_app_delivery &&
       == 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. &&
      default_to_advanced_envelopes_filter_form == o.default_to_advanced_envelopes_filter_form &&
       == 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. &&
      draft_envelope_retention == o.draft_envelope_retention &&
       == o. &&
      dss_enable_provisioning_pen_configuration_radmin_option == o.dss_enable_provisioning_pen_configuration_radmin_option &&
      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. &&
       == o. &&
       == o. &&
      enable_adm_healthcare == o.enable_adm_healthcare &&
       == o. &&
      enable_advanced_envelopes_search == o.enable_advanced_envelopes_search &&
       == 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_click_plus == o.enable_click_plus &&
      enable_click_plus_conditional_content == o.enable_click_plus_conditional_content &&
       == o. &&
      enable_click_plus_custom_fields == o.enable_click_plus_custom_fields &&
       == o. &&
      enable_click_plus_custom_style == o.enable_click_plus_custom_style &&
       == o. &&
      enable_click_plus_dynamic_content == o.enable_click_plus_dynamic_content &&
       == o. &&
       == 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_contact_suggestions == o.enable_contact_suggestions &&
       == o. &&
      enable_customer_satisfaction_metric_tracking == o.enable_customer_satisfaction_metric_tracking &&
       == o. &&
      enable_d_sig_eu_advanced_pens == o.enable_d_sig_eu_advanced_pens &&
       == o. &&
      enable_d_sig_express_pens == o.enable_d_sig_express_pens &&
       == o. &&
      enable_d_sig_id_check_for_aes_pens == o.enable_d_sig_id_check_for_aes_pens &&
       == o. &&
      enable_d_sig_id_check_in_person_for_qes_pens == o.enable_d_sig_id_check_in_person_for_qes_pens &&
       == o. &&
      enable_d_sig_id_check_remote_for_qes_pens == o.enable_d_sig_id_check_remote_for_qes_pens &&
       == o. &&
      enable_d_sig_id_verification_pens == o.enable_d_sig_id_verification_pens &&
       == o. &&
      enable_d_sig_id_verification_premier_pens == o.enable_d_sig_id_verification_premier_pens &&
       == o. &&
      enable_ds_pro == o.enable_ds_pro &&
       == o. &&
       == o. &&
       == o. &&
       == o. &&
      enable_envelope_stamping_by_ds_admin == o.enable_envelope_stamping_by_ds_admin &&
       == o. &&
      enable_e_sign_api_hourly_limit_management == o.enable_e_sign_api_hourly_limit_management &&
       == 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_idfx_phone_auth_signature_auth_status == o.enable_idfx_phone_auth_signature_auth_status &&
       == o. &&
      enable_inbox_browse_views_powered_by_elastic_search == o.enable_inbox_browse_views_powered_by_elastic_search &&
       == o. &&
      enable_inbox_relevance_sort == o.enable_inbox_relevance_sort &&
      enable_inbox_relevance_sort_for_recent_accounts == o.enable_inbox_relevance_sort_for_recent_accounts &&
       == o. &&
       == 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. &&
       == 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_service_azure_uri == o.enable_search_service_azure_uri &&
       == 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_web_forms_separate_user_permissions == o.enable_web_forms_separate_user_permissions &&
       == o. &&
      enable_witnessing == o.enable_witnessing &&
       == o. &&
      enforce_template_name_uniqueness == o.enforce_template_name_uniqueness &&
       == o. &&
      enforce_tls_emails == o.enforce_tls_emails &&
       == o. &&
      envelope_integration_allowed == o.envelope_integration_allowed &&
       == o. &&
      envelope_integration_enabled == o.envelope_integration_enabled &&
       == o. &&
      envelope_limits_total_document_size_allowed_in_mb == o.envelope_limits_total_document_size_allowed_in_mb &&
      envelope_limits_total_document_size_allowed_in_mb_enabled == o.envelope_limits_total_document_size_allowed_in_mb_enabled &&
       == o. &&
       == o. &&
      envelope_search_mode == o.envelope_search_mode &&
       == 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. &&
      guided_forms_html_conversion_policy == o.guided_forms_html_conversion_policy &&
       == 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_kba_authentication_override == o.idfx_kba_authentication_override &&
       == 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. &&
      is_connect_document_fields_enabled == o.is_connect_document_fields_enabled &&
      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 &&
      merge_mixed_mode_results == o.merge_mixed_mode_results &&
       == o. &&
      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_in_universal_signatures == o.opt_in_universal_signatures &&
      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. &&
      pdf_max_chunked_upload_part_size == o.pdf_max_chunked_upload_part_size &&
       == o. &&
      pdf_max_chunked_upload_total_size == o.pdf_max_chunked_upload_total_size &&
       == o. &&
      pdf_max_individual_upload_size == o.pdf_max_individual_upload_size &&
       == 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 &&
      sbs_transaction_level == o.sbs_transaction_level &&
      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_envelope_search_mixed_mode == o.use_envelope_search_mixed_mode &&
       == 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_new_envelope_search == o.use_new_envelope_search &&
       == o. &&
      use_new_envelope_search_only_when_searching_after_date == o.use_new_envelope_search_only_when_searching_after_date &&
       == o. &&
      use_new_envelope_search_only_with_search_term == o.use_new_envelope_search_only_with_search_term &&
       == 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



7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
# File 'lib/docusign_esign/models/account_settings_information.rb', line 7352

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



7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
# File 'lib/docusign_esign/models/account_settings_information.rb', line 7418

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



7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
# File 'lib/docusign_esign/models/account_settings_information.rb', line 7331

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


7318
7319
7320
# File 'lib/docusign_esign/models/account_settings_information.rb', line 7318

def eql?(o)
  self == o
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



7324
7325
7326
# File 'lib/docusign_esign/models/account_settings_information.rb', line 7324

def hash
  [access_code_format, , , , , , , , , adopt_sig_config, , advanced_correct, , advanced_search_enable_tab_field, , advanced_search_enable_template_id_field, , advanced_search_enable_template_name_field, , allow_access_code_format, , , , , , allow_ace, , allow_advanced_recipient_routing_conditional, , allow_agent_name_email_edit, , allow_agreement_actions, , allow_agreement_orchestrations, , allow_auto_nav_settings, , allow_auto_tagging, , allow_bulk_send, , allow_cd_withdraw, , allow_connect_http_listener_configs, allow_connect_identity_verification_ui, allow_connect_o_auth_ui, allow_connect_send_finish_later, , allow_connect_unified_payload_ui, allow_consumer_disclosure_override, , allow_data_download, , allow_delayed_routing, , allow_delegated_signing, , allow_doc_gen_documents, , allow_document_disclosures, , allow_documents_on_signed_envelopes, , allow_document_visibility, , allow_editing_envelopes_on_behalf_of_others, , 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_for_eu_qualified_signatures, , allow_idv_level1, , allow_idv_level1_trial, , 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_docusign_monitor_free, , , 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_participant_recipient_type, , allow_payment_processing, , allow_performance_analytics, , 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_transactions_workspace, , allow_transactions_workspace_original, , allow_users_to_access_directory, , allow_value_insights, , allow_web_forms, , allow_whats_app_delivery, , 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, , default_to_advanced_envelopes_filter_form, , 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, , draft_envelope_retention, , dss_enable_provisioning_pen_configuration_radmin_option, 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_adm_healthcare, , enable_advanced_envelopes_search, , 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_click_plus, enable_click_plus_conditional_content, , enable_click_plus_custom_fields, , enable_click_plus_custom_style, , enable_click_plus_dynamic_content, , , enable_clickwraps, , enable_combined_pdf_download_for_sbs, enable_comments_history_download_in_signing, , enable_contact_suggestions, , enable_customer_satisfaction_metric_tracking, , enable_d_sig_eu_advanced_pens, , enable_d_sig_express_pens, , enable_d_sig_id_check_for_aes_pens, , enable_d_sig_id_check_in_person_for_qes_pens, , enable_d_sig_id_check_remote_for_qes_pens, , enable_d_sig_id_verification_pens, , enable_d_sig_id_verification_premier_pens, , enable_ds_pro, , , , , enable_envelope_stamping_by_ds_admin, , enable_e_sign_api_hourly_limit_management, , enable_esign_communities, , enable_id_fx_accountless_sms_auth_for_part11, , enable_id_fx_intuit_kba, , enable_id_fx_phone_authentication, , enable_idfx_phone_auth_signature_auth_status, , enable_inbox_browse_views_powered_by_elastic_search, , enable_inbox_relevance_sort, enable_inbox_relevance_sort_for_recent_accounts, , , 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_service_azure_uri, , 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_web_forms_separate_user_permissions, , enable_witnessing, , enforce_template_name_uniqueness, , enforce_tls_emails, , envelope_integration_allowed, , envelope_integration_enabled, , envelope_limits_total_document_size_allowed_in_mb, envelope_limits_total_document_size_allowed_in_mb_enabled, , , envelope_search_mode, , 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, , guided_forms_html_conversion_policy, , 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_kba_authentication_override, , 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, , is_connect_document_fields_enabled, linked_external_primary_accounts, maximum_signing_groups, , maximum_users_per_signing_group, , max_number_of_custom_stamps, merge_mixed_mode_results, , mobile_session_timeout, , number_of_active_custom_stamps, opt_in_mobile_signing_v02, , opt_in_universal_signatures, opt_out_auto_nav_text_and_tab_color_updates, , opt_out_new_platform_seal, , pdf_max_chunked_upload_part_size, , pdf_max_chunked_upload_total_size, , pdf_max_individual_upload_size, , 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, sbs_transaction_level, 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_envelope_search_mixed_mode, , use_multi_app_groups_data, , use_new_blob_for_pdf, , use_new_envelope_search, , use_new_envelope_search_only_when_searching_after_date, , use_new_envelope_search_only_with_search_term, , 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



6573
6574
6575
6576
# File 'lib/docusign_esign/models/account_settings_information.rb', line 6573

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



7398
7399
7400
# File 'lib/docusign_esign/models/account_settings_information.rb', line 7398

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



7404
7405
7406
7407
7408
7409
7410
7411
7412
# File 'lib/docusign_esign/models/account_settings_information.rb', line 7404

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



7392
7393
7394
# File 'lib/docusign_esign/models/account_settings_information.rb', line 7392

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



6580
6581
6582
# File 'lib/docusign_esign/models/account_settings_information.rb', line 6580

def valid?
  true
end