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



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
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2348

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Instance Attribute Details

#access_code_formatObject

Returns the value of attribute access_code_format.



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

Returns the value of attribute account_date_time_format_metadata.



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

def 
  
end

#account_nameObject

Returns the value of attribute account_name.



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

def 
  @account_name
end

#account_name_metadataObject

Returns the value of attribute account_name_metadata.



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

def 
  
end

#account_notificationObject

Returns the value of attribute account_notification.



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

def 
  @account_notification
end

#account_ui_settingsObject

Returns the value of attribute account_ui_settings.



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

def 
  @account_ui_settings
end

#adopt_sig_configObject

Returns the value of attribute adopt_sig_config.



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

def adopt_sig_config
  @adopt_sig_config
end

#adopt_sig_config_metadataObject

Returns the value of attribute adopt_sig_config_metadata.



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

def 
  
end

#advanced_correctObject

Returns the value of attribute advanced_correct.



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

def advanced_correct
  @advanced_correct
end

#advanced_correct_metadataObject

Returns the value of attribute advanced_correct_metadata.



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

def 
  
end

#allow_access_code_formatObject

Returns the value of attribute allow_access_code_format.



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

def allow_access_code_format
  @allow_access_code_format
end

#allow_access_code_format_metadataObject

Returns the value of attribute allow_access_code_format_metadata.



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

def 
  
end

#allow_account_management_granularObject

Returns the value of attribute allow_account_management_granular.



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

def 
  
end

#allow_account_management_granular_metadataObject

Returns the value of attribute allow_account_management_granular_metadata.



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

def 
  
end

#allow_account_member_name_changeObject

Returns the value of attribute allow_account_member_name_change.



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

def 
  
end

#allow_account_member_name_change_metadataObject

Returns the value of attribute allow_account_member_name_change_metadata.



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

def 
  
end

#allow_advanced_recipient_routing_conditionalObject

Returns the value of attribute allow_advanced_recipient_routing_conditional.



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

def allow_advanced_recipient_routing_conditional
  @allow_advanced_recipient_routing_conditional
end

#allow_advanced_recipient_routing_conditional_metadataObject

Returns the value of attribute allow_advanced_recipient_routing_conditional_metadata.



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

def 
  
end

#allow_agent_name_email_editObject

Returns the value of attribute allow_agent_name_email_edit.



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

def allow_agent_name_email_edit
  @allow_agent_name_email_edit
end

#allow_agent_name_email_edit_metadataObject

Returns the value of attribute allow_agent_name_email_edit_metadata.



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

def 
  
end

#allow_agreement_actionsObject

Returns the value of attribute allow_agreement_actions.



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

def allow_agreement_actions
  @allow_agreement_actions
end

#allow_agreement_actions_metadataObject

Returns the value of attribute allow_agreement_actions_metadata.



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

def 
  
end

#allow_auto_nav_settingsObject

Returns the value of attribute allow_auto_nav_settings.



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

def allow_auto_nav_settings
  @allow_auto_nav_settings
end

#allow_auto_nav_settings_metadataObject

Returns the value of attribute allow_auto_nav_settings_metadata.



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

def 
  
end

#allow_auto_taggingObject

Returns the value of attribute allow_auto_tagging.



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

def allow_auto_tagging
  @allow_auto_tagging
end

#allow_auto_tagging_metadataObject

Returns the value of attribute allow_auto_tagging_metadata.



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

def 
  
end

#allow_bulk_sendObject

Returns the value of attribute allow_bulk_send.



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

def allow_bulk_send
  @allow_bulk_send
end

#allow_bulk_send_metadataObject

Returns the value of attribute allow_bulk_send_metadata.



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

def 
  
end

#allow_cd_withdrawObject

Returns the value of attribute allow_cd_withdraw.



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

def allow_cd_withdraw
  @allow_cd_withdraw
end

#allow_cd_withdraw_metadataObject

Returns the value of attribute allow_cd_withdraw_metadata.



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

def 
  
end

#allow_connect_http_listener_configsObject

Returns the value of attribute allow_connect_http_listener_configs.



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

def allow_connect_http_listener_configs
  @allow_connect_http_listener_configs
end

#allow_connect_send_finish_laterObject

Returns the value of attribute allow_connect_send_finish_later.



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

def allow_connect_send_finish_later
  @allow_connect_send_finish_later
end

#allow_connect_send_finish_later_metadataObject

Returns the value of attribute allow_connect_send_finish_later_metadata.



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

def 
  
end

#allow_consumer_disclosure_overrideObject

Returns the value of attribute allow_consumer_disclosure_override.



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

def allow_consumer_disclosure_override
  @allow_consumer_disclosure_override
end

#allow_consumer_disclosure_override_metadataObject

Returns the value of attribute allow_consumer_disclosure_override_metadata.



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

def 
  
end

#allow_data_downloadObject

Returns the value of attribute allow_data_download.



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

def allow_data_download
  @allow_data_download
end

#allow_data_download_metadataObject

Returns the value of attribute allow_data_download_metadata.



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

def 
  
end

#allow_document_disclosuresObject

Returns the value of attribute allow_document_disclosures.



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

def allow_document_disclosures
  @allow_document_disclosures
end

#allow_document_disclosures_metadataObject

Returns the value of attribute allow_document_disclosures_metadata.



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

def 
  
end

#allow_document_visibilityObject

Returns the value of attribute allow_document_visibility.



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

def allow_document_visibility
  @allow_document_visibility
end

#allow_document_visibility_metadataObject

Returns the value of attribute allow_document_visibility_metadata.



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

def 
  
end

#allow_documents_on_signed_envelopesObject

Returns the value of attribute allow_documents_on_signed_envelopes.



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

def allow_documents_on_signed_envelopes
  @allow_documents_on_signed_envelopes
end

#allow_documents_on_signed_envelopes_metadataObject

Returns the value of attribute allow_documents_on_signed_envelopes_metadata.



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

def 
  
end

#allow_e_hanko_stampsObject

Returns the value of attribute allow_e_hanko_stamps.



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

def allow_e_hanko_stamps
  @allow_e_hanko_stamps
end

#allow_e_hanko_stamps_metadataObject

Returns the value of attribute allow_e_hanko_stamps_metadata.



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

def 
  
end

#allow_e_note_e_originalObject

Returns the value of attribute allow_e_note_e_original.



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

def allow_e_note_e_original
  @allow_e_note_e_original
end

#allow_e_note_e_original_metadataObject

Returns the value of attribute allow_e_note_e_original_metadata.



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

def 
  
end

#allow_envelope_correctObject

Returns the value of attribute allow_envelope_correct.



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

def allow_envelope_correct
  @allow_envelope_correct
end

#allow_envelope_correct_metadataObject

Returns the value of attribute allow_envelope_correct_metadata.



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

def 
  
end

#allow_envelope_custody_transferObject

Returns the value of attribute allow_envelope_custody_transfer.



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

def allow_envelope_custody_transfer
  @allow_envelope_custody_transfer
end

#allow_envelope_custody_transfer_metadataObject

Returns the value of attribute allow_envelope_custody_transfer_metadata.



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

def 
  
end

#allow_envelope_custom_fieldsObject

Returns the value of attribute allow_envelope_custom_fields.



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

def allow_envelope_custom_fields
  @allow_envelope_custom_fields
end

#allow_envelope_custom_fields_metadataObject

Returns the value of attribute allow_envelope_custom_fields_metadata.



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

def 
  
end

#allow_envelope_publish_reportingObject

Returns the value of attribute allow_envelope_publish_reporting.



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

def allow_envelope_publish_reporting
  @allow_envelope_publish_reporting
end

#allow_envelope_publish_reporting_metadataObject

Returns the value of attribute allow_envelope_publish_reporting_metadata.



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

def 
  
end

#allow_envelope_reportingObject

Returns the value of attribute allow_envelope_reporting.



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

def allow_envelope_reporting
  @allow_envelope_reporting
end

#allow_envelope_reporting_metadataObject

Returns the value of attribute allow_envelope_reporting_metadata.



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

def 
  
end

#allow_express_signer_certificateObject

Returns the value of attribute allow_express_signer_certificate.



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

def allow_express_signer_certificate
  @allow_express_signer_certificate
end

#allow_express_signer_certificate_metadataObject

Returns the value of attribute allow_express_signer_certificate_metadata.



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

def 
  
end

#allow_expressionObject

Returns the value of attribute allow_expression.



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

def allow_expression
  @allow_expression
end

#allow_expression_metadataObject

Returns the value of attribute allow_expression_metadata.



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

def 
  
end

#allow_extended_sending_resource_fileObject

Returns the value of attribute allow_extended_sending_resource_file.



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

def allow_extended_sending_resource_file
  @allow_extended_sending_resource_file
end

#allow_extended_sending_resource_file_metadataObject

Returns the value of attribute allow_extended_sending_resource_file_metadata.



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

def 
  
end

#allow_external_signature_padObject

Returns the value of attribute allow_external_signature_pad.



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

def allow_external_signature_pad
  @allow_external_signature_pad
end

#allow_external_signature_pad_metadataObject

Returns the value of attribute allow_external_signature_pad_metadata.



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

def 
  
end

#allow_idv_level1Object

Returns the value of attribute allow_idv_level1.



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

def allow_idv_level1
  @allow_idv_level1
end

#allow_idv_level1_metadataObject

Returns the value of attribute allow_idv_level1_metadata.



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

def 
  
end

#allow_idv_platformObject

Returns the value of attribute allow_idv_platform.



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

def allow_idv_platform
  @allow_idv_platform
end

#allow_idv_platform_metadataObject

Returns the value of attribute allow_idv_platform_metadata.



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

def 
  
end

#allow_in_personObject

Returns the value of attribute allow_in_person.



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

def allow_in_person
  @allow_in_person
end

#allow_in_person_metadataObject

Returns the value of attribute allow_in_person_metadata.



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

def 
  
end

#allow_managed_stampsObject

Returns the value of attribute allow_managed_stamps.



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

def allow_managed_stamps
  @allow_managed_stamps
end

#allow_managed_stamps_metadataObject

Returns the value of attribute allow_managed_stamps_metadata.



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

def 
  
end

#allow_markupObject

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



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

def allow_markup
  @allow_markup
end

#allow_markup_metadataObject

Returns the value of attribute allow_markup_metadata.



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

def 
  
end

#allow_member_time_zoneObject

Returns the value of attribute allow_member_time_zone.



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

def allow_member_time_zone
  @allow_member_time_zone
end

#allow_member_time_zone_metadataObject

Returns the value of attribute allow_member_time_zone_metadata.



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

def 
  
end

#allow_merge_fieldsObject

Returns the value of attribute allow_merge_fields.



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

def allow_merge_fields
  @allow_merge_fields
end

#allow_merge_fields_metadataObject

Returns the value of attribute allow_merge_fields_metadata.



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

def 
  
end

#allow_multiple_brand_profilesObject

Returns the value of attribute allow_multiple_brand_profiles.



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

def allow_multiple_brand_profiles
  @allow_multiple_brand_profiles
end

#allow_multiple_brand_profiles_metadataObject

Returns the value of attribute allow_multiple_brand_profiles_metadata.



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

def 
  
end

#allow_multiple_signer_attachmentsObject

Returns the value of attribute allow_multiple_signer_attachments.



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

def allow_multiple_signer_attachments
  @allow_multiple_signer_attachments
end

#allow_multiple_signer_attachments_metadataObject

Returns the value of attribute allow_multiple_signer_attachments_metadata.



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

def 
  
end

#allow_non_us_phone_authObject

Returns the value of attribute allow_non_us_phone_auth.



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

def allow_non_us_phone_auth
  @allow_non_us_phone_auth
end

#allow_non_us_phone_auth_metadataObject

Returns the value of attribute allow_non_us_phone_auth_metadata.



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

def 
  
end

#allow_ocr_of_envelope_documentsObject

Returns the value of attribute allow_ocr_of_envelope_documents.



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

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.



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

def 
  
end

#allow_offline_signingObject

Returns the value of attribute allow_offline_signing.



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

def allow_offline_signing
  @allow_offline_signing
end

#allow_offline_signing_metadataObject

Returns the value of attribute allow_offline_signing_metadata.



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

def 
  
end

#allow_open_trust_signer_certificateObject

Returns the value of attribute allow_open_trust_signer_certificate.



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

def allow_open_trust_signer_certificate
  @allow_open_trust_signer_certificate
end

#allow_open_trust_signer_certificate_metadataObject

Returns the value of attribute allow_open_trust_signer_certificate_metadata.



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

def 
  
end

#allow_organizationsObject

Returns the value of attribute allow_organizations.



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

def allow_organizations
  @allow_organizations
end

#allow_organizations_metadataObject

Returns the value of attribute allow_organizations_metadata.



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

def 
  
end

#allow_payment_processingObject

Returns the value of attribute allow_payment_processing.



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

def allow_payment_processing
  @allow_payment_processing
end

#allow_payment_processing_metadataObject

Returns the value of attribute allow_payment_processing_metadata.



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

def 
  
end

#allow_personal_signer_certificateObject

Returns the value of attribute allow_personal_signer_certificate.



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

def allow_personal_signer_certificate
  @allow_personal_signer_certificate
end

#allow_personal_signer_certificate_metadataObject

Returns the value of attribute allow_personal_signer_certificate_metadata.



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

def 
  
end

#allow_phone_auth_overrideObject

Returns the value of attribute allow_phone_auth_override.



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

def allow_phone_auth_override
  @allow_phone_auth_override
end

#allow_phone_auth_override_metadataObject

Returns the value of attribute allow_phone_auth_override_metadata.



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

def 
  
end

#allow_phone_authenticationObject

Returns the value of attribute allow_phone_authentication.



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

def allow_phone_authentication
  @allow_phone_authentication
end

#allow_phone_authentication_metadataObject

Returns the value of attribute allow_phone_authentication_metadata.



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

def 
  
end

#allow_private_signing_groupsObject

Returns the value of attribute allow_private_signing_groups.



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

def allow_private_signing_groups
  @allow_private_signing_groups
end

#allow_private_signing_groups_metadataObject

Returns the value of attribute allow_private_signing_groups_metadata.



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

def 
  
end

#allow_remindersObject

Returns the value of attribute allow_reminders.



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

def allow_reminders
  @allow_reminders
end

#allow_reminders_metadataObject

Returns the value of attribute allow_reminders_metadata.



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

def 
  
end

#allow_resource_file_brandingObject

Returns the value of attribute allow_resource_file_branding.



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

def allow_resource_file_branding
  @allow_resource_file_branding
end

#allow_resource_file_branding_metadataObject

Returns the value of attribute allow_resource_file_branding_metadata.



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

def 
  
end

#allow_safe_bio_pharma_signer_certificateObject

Returns the value of attribute allow_safe_bio_pharma_signer_certificate.



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

def allow_safe_bio_pharma_signer_certificate
  @allow_safe_bio_pharma_signer_certificate
end

#allow_safe_bio_pharma_signer_certificate_metadataObject

Returns the value of attribute allow_safe_bio_pharma_signer_certificate_metadata.



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

def 
  
end

#allow_security_applianceObject

Returns the value of attribute allow_security_appliance.



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

def allow_security_appliance
  @allow_security_appliance
end

#allow_security_appliance_metadataObject

Returns the value of attribute allow_security_appliance_metadata.



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

def 
  
end

#allow_send_to_certified_deliveryObject

Returns the value of attribute allow_send_to_certified_delivery.



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

def allow_send_to_certified_delivery
  @allow_send_to_certified_delivery
end

#allow_send_to_certified_delivery_metadataObject

Returns the value of attribute allow_send_to_certified_delivery_metadata.



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

def 
  
end

#allow_send_to_intermediaryObject

Returns the value of attribute allow_send_to_intermediary.



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

def allow_send_to_intermediary
  @allow_send_to_intermediary
end

#allow_send_to_intermediary_metadataObject

Returns the value of attribute allow_send_to_intermediary_metadata.



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

def 
  
end

#allow_server_templatesObject

Returns the value of attribute allow_server_templates.



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

def allow_server_templates
  @allow_server_templates
end

#allow_server_templates_metadataObject

Returns the value of attribute allow_server_templates_metadata.



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

def 
  
end

#allow_set_embedded_recipient_start_urlObject

Returns the value of attribute allow_set_embedded_recipient_start_url.



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

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.



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

def 
  
end

#allow_shared_tabsObject

Returns the value of attribute allow_shared_tabs.



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

def allow_shared_tabs
  @allow_shared_tabs
end

#allow_shared_tabs_metadataObject

Returns the value of attribute allow_shared_tabs_metadata.



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

def 
  
end

#allow_sign_document_from_home_pageObject

Returns the value of attribute allow_sign_document_from_home_page.



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

def allow_sign_document_from_home_page
  @allow_sign_document_from_home_page
end

#allow_sign_document_from_home_page_metadataObject

Returns the value of attribute allow_sign_document_from_home_page_metadata.



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

def 
  
end

#allow_sign_nowObject

Returns the value of attribute allow_sign_now.



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

def allow_sign_now
  @allow_sign_now
end

#allow_sign_now_metadataObject

Returns the value of attribute allow_sign_now_metadata.



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

def 
  
end

#allow_signature_stampsObject

Returns the value of attribute allow_signature_stamps.



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

def allow_signature_stamps
  @allow_signature_stamps
end

#allow_signature_stamps_metadataObject

Returns the value of attribute allow_signature_stamps_metadata.



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

def 
  
end

#allow_signer_reassignObject

Returns the value of attribute allow_signer_reassign.



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

def allow_signer_reassign
  @allow_signer_reassign
end

#allow_signer_reassign_metadataObject

Returns the value of attribute allow_signer_reassign_metadata.



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

def 
  
end

#allow_signer_reassign_overrideObject

Returns the value of attribute allow_signer_reassign_override.



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

def allow_signer_reassign_override
  @allow_signer_reassign_override
end

#allow_signer_reassign_override_metadataObject

Returns the value of attribute allow_signer_reassign_override_metadata.



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

def 
  
end

#allow_signing_extensionsObject

Returns the value of attribute allow_signing_extensions.



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

def allow_signing_extensions
  @allow_signing_extensions
end

#allow_signing_extensions_metadataObject

Returns the value of attribute allow_signing_extensions_metadata.



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

def 
  
end

#allow_signing_groupsObject

Returns the value of attribute allow_signing_groups.



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

def allow_signing_groups
  @allow_signing_groups
end

#allow_signing_groups_metadataObject

Returns the value of attribute allow_signing_groups_metadata.



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

def 
  
end

#allow_signing_radio_deselectObject

Returns the value of attribute allow_signing_radio_deselect.



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

def allow_signing_radio_deselect
  @allow_signing_radio_deselect
end

#allow_signing_radio_deselect_metadataObject

Returns the value of attribute allow_signing_radio_deselect_metadata.



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

def 
  
end

#allow_sms_deliveryObject

Returns the value of attribute allow_sms_delivery.



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

def allow_sms_delivery
  @allow_sms_delivery
end

#allow_sms_delivery_metadataObject

Returns the value of attribute allow_sms_delivery_metadata.



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

def 
  
end

#allow_social_id_loginObject

Returns the value of attribute allow_social_id_login.



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

def 
  
end

#allow_social_id_login_metadataObject

Returns the value of attribute allow_social_id_login_metadata.



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

def 
  
end

#allow_supplemental_documentsObject

Returns the value of attribute allow_supplemental_documents.



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

def allow_supplemental_documents
  @allow_supplemental_documents
end

#allow_supplemental_documents_metadataObject

Returns the value of attribute allow_supplemental_documents_metadata.



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

def 
  
end

#allow_users_to_access_directoryObject

Returns the value of attribute allow_users_to_access_directory.



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

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.



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

def 
  
end

#allow_value_insightsObject

Returns the value of attribute allow_value_insights.



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

def allow_value_insights
  @allow_value_insights
end

#allow_value_insights_metadataObject

Returns the value of attribute allow_value_insights_metadata.



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

def 
  
end

#anchor_population_scopeObject

Returns the value of attribute anchor_population_scope.



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

def anchor_population_scope
  @anchor_population_scope
end

#anchor_population_scope_metadataObject

Returns the value of attribute anchor_population_scope_metadata.



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

def 
  
end

#anchor_tag_versioned_placement_enabledObject

Returns the value of attribute anchor_tag_versioned_placement_enabled.



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

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.



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

def 
  
end

#attach_completed_envelopeObject

Returns the value of attribute attach_completed_envelope.



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

def attach_completed_envelope
  @attach_completed_envelope
end

#attach_completed_envelope_metadataObject

Returns the value of attribute attach_completed_envelope_metadata.



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

def 
  
end

#authentication_checkObject

Returns the value of attribute authentication_check.



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

def authentication_check
  @authentication_check
end

#authentication_check_metadataObject

Returns the value of attribute authentication_check_metadata.



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

def 
  
end

#auto_nav_ruleObject

Returns the value of attribute auto_nav_rule.



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

def auto_nav_rule
  @auto_nav_rule
end

#auto_nav_rule_metadataObject

Returns the value of attribute auto_nav_rule_metadata.



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

def 
  
end

#auto_provision_signer_accountObject

Returns the value of attribute auto_provision_signer_account.



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

def 
  
end

#auto_provision_signer_account_metadataObject

Returns the value of attribute auto_provision_signer_account_metadata.



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

def 
  
end

#bcc_email_archiveObject

Returns the value of attribute bcc_email_archive.



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

def bcc_email_archive
  @bcc_email_archive
end

#bcc_email_archive_metadataObject

Returns the value of attribute bcc_email_archive_metadata.



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

def 
  
end

#beta_switch_configurationObject

Returns the value of attribute beta_switch_configuration.



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

def beta_switch_configuration
  @beta_switch_configuration
end

#beta_switch_configuration_metadataObject

Returns the value of attribute beta_switch_configuration_metadata.



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

def 
  
end

#billing_addressObject

Returns the value of attribute billing_address.



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

def billing_address
  @billing_address
end

#billing_address_metadataObject

Returns the value of attribute billing_address_metadata.



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

def 
  
end

#bulk_sendObject

Returns the value of attribute bulk_send.



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

def bulk_send
  @bulk_send
end

#bulk_send_max_copies_in_batchObject

Returns the value of attribute bulk_send_max_copies_in_batch.



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

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.



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

def bulk_send_max_unprocessed_envelopes_count
  @bulk_send_max_unprocessed_envelopes_count
end

#bulk_send_metadataObject

Returns the value of attribute bulk_send_metadata.



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

def 
  
end

#can_self_brand_sendObject

Returns the value of attribute can_self_brand_send.



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

def can_self_brand_send
  @can_self_brand_send
end

#can_self_brand_send_metadataObject

Returns the value of attribute can_self_brand_send_metadata.



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

def 
  
end

#can_self_brand_signObject

Returns the value of attribute can_self_brand_sign.



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

def can_self_brand_sign
  @can_self_brand_sign
end

#can_self_brand_sign_metadataObject

Returns the value of attribute can_self_brand_sign_metadata.



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

def 
  
end

#can_use_salesforce_o_authObject

Returns the value of attribute can_use_salesforce_o_auth.



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

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.



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

def 
  
end

#capture_voice_recordingObject

Returns the value of attribute capture_voice_recording.



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

def capture_voice_recording
  @capture_voice_recording
end

#capture_voice_recording_metadataObject

Returns the value of attribute capture_voice_recording_metadata.



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

def 
  
end

#cfr_use_wide_imageObject

Returns the value of attribute cfr_use_wide_image.



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

def cfr_use_wide_image
  @cfr_use_wide_image
end

#cfr_use_wide_image_metadataObject

Returns the value of attribute cfr_use_wide_image_metadata.



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

def 
  
end

#check_for_multiple_admins_on_accountObject

Returns the value of attribute check_for_multiple_admins_on_account.



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

def 
  
end

#check_for_multiple_admins_on_account_metadataObject

Returns the value of attribute check_for_multiple_admins_on_account_metadata.



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

def 
  
end

#chrome_signature_enabledObject

Returns the value of attribute chrome_signature_enabled.



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

def chrome_signature_enabled
  @chrome_signature_enabled
end

#chrome_signature_enabled_metadataObject

Returns the value of attribute chrome_signature_enabled_metadata.



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

def 
  
end

#comment_email_show_message_textObject

Returns the value of attribute comment_email_show_message_text.



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

def comment_email_show_message_text
  @comment_email_show_message_text
end

#comment_email_show_message_text_metadataObject

Returns the value of attribute comment_email_show_message_text_metadata.



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

def 
  
end

#comments_allow_envelope_overrideObject

Returns the value of attribute comments_allow_envelope_override.



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

def comments_allow_envelope_override
  @comments_allow_envelope_override
end

#comments_allow_envelope_override_metadataObject

Returns the value of attribute comments_allow_envelope_override_metadata.



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

def 
  
end

#conditional_fields_enabledObject

Returns the value of attribute conditional_fields_enabled.



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

def conditional_fields_enabled
  @conditional_fields_enabled
end

#conditional_fields_enabled_metadataObject

Returns the value of attribute conditional_fields_enabled_metadata.



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

def 
  
end

#consumer_disclosure_frequencyObject

Returns the value of attribute consumer_disclosure_frequency.



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

def consumer_disclosure_frequency
  @consumer_disclosure_frequency
end

#consumer_disclosure_frequency_metadataObject

Returns the value of attribute consumer_disclosure_frequency_metadata.



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

def 
  
end

#convert_pdf_fieldsObject

Returns the value of attribute convert_pdf_fields.



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

def convert_pdf_fields
  @convert_pdf_fields
end

#convert_pdf_fields_metadataObject

Returns the value of attribute convert_pdf_fields_metadata.



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

def 
  
end

#data_population_scopeObject

Returns the value of attribute data_population_scope.



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

def data_population_scope
  @data_population_scope
end

#data_population_scope_metadataObject

Returns the value of attribute data_population_scope_metadata.



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

def 
  
end

#disable_mobile_appObject

Returns the value of attribute disable_mobile_app.



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

def disable_mobile_app
  @disable_mobile_app
end

#disable_mobile_app_metadataObject

Returns the value of attribute disable_mobile_app_metadata.



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

def 
  
end

#disable_mobile_push_notificationsObject

Returns the value of attribute disable_mobile_push_notifications.



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

def disable_mobile_push_notifications
  @disable_mobile_push_notifications
end

#disable_mobile_push_notifications_metadataObject

Returns the value of attribute disable_mobile_push_notifications_metadata.



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

def 
  
end

#disable_mobile_sendingObject

Returns the value of attribute disable_mobile_sending.



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

def disable_mobile_sending
  @disable_mobile_sending
end

#disable_mobile_sending_metadataObject

Returns the value of attribute disable_mobile_sending_metadata.



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

def 
  
end

#disable_multiple_sessionsObject

Returns the value of attribute disable_multiple_sessions.



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

def disable_multiple_sessions
  @disable_multiple_sessions
end

#disable_multiple_sessions_metadataObject

Returns the value of attribute disable_multiple_sessions_metadata.



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

def 
  
end

#disable_purge_notifications_for_sender_metadataObject

Returns the value of attribute disable_purge_notifications_for_sender_metadata.



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

def 
  
end

#disable_signer_cert_viewObject

Returns the value of attribute disable_signer_cert_view.



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

def disable_signer_cert_view
  @disable_signer_cert_view
end

#disable_signer_cert_view_metadataObject

Returns the value of attribute disable_signer_cert_view_metadata.



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

def 
  
end

#disable_signer_history_viewObject

Returns the value of attribute disable_signer_history_view.



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

def disable_signer_history_view
  @disable_signer_history_view
end

#disable_signer_history_view_metadataObject

Returns the value of attribute disable_signer_history_view_metadata.



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

def 
  
end

#disable_style_signatureObject

Returns the value of attribute disable_style_signature.



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

def disable_style_signature
  @disable_style_signature
end

#disable_style_signature_metadataObject

Returns the value of attribute disable_style_signature_metadata.



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

def 
  
end

#disable_upload_signatureObject

Returns the value of attribute disable_upload_signature.



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

def disable_upload_signature
  @disable_upload_signature
end

#disable_upload_signature_metadataObject

Returns the value of attribute disable_upload_signature_metadata.



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

def 
  
end

#disable_user_sharingObject

Returns the value of attribute disable_user_sharing.



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

def disable_user_sharing
  @disable_user_sharing
end

#disable_user_sharing_metadataObject

Returns the value of attribute disable_user_sharing_metadata.



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

def 
  
end

#display_beta_switchObject

Returns the value of attribute display_beta_switch.



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

def display_beta_switch
  @display_beta_switch
end

#display_beta_switch_metadataObject

Returns the value of attribute display_beta_switch_metadata.



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

def 
  
end

#document_conversion_restrictionsObject

Returns the value of attribute document_conversion_restrictions.



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

def document_conversion_restrictions
  @document_conversion_restrictions
end

#document_conversion_restrictions_metadataObject

Returns the value of attribute document_conversion_restrictions_metadata.



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

def 
  
end

#document_retentionObject

Returns the value of attribute document_retention.



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

def document_retention
  @document_retention
end

#document_retention_metadataObject

Returns the value of attribute document_retention_metadata.



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

def 
  
end

#document_retention_purge_tabsObject

Returns the value of attribute document_retention_purge_tabs.



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

def document_retention_purge_tabs
  @document_retention_purge_tabs
end

#document_visibilityObject

Returns the value of attribute document_visibility.



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

def document_visibility
  @document_visibility
end

#document_visibility_metadataObject

Returns the value of attribute document_visibility_metadata.



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

def 
  
end

#email_template_versionObject

Returns the value of attribute email_template_version.



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

def email_template_version
  @email_template_version
end

#email_template_version_metadataObject

Returns the value of attribute email_template_version_metadata.



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

def 
  
end

#enable_access_code_generatorObject

Returns the value of attribute enable_access_code_generator.



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

def enable_access_code_generator
  @enable_access_code_generator
end

#enable_access_code_generator_metadataObject

Returns the value of attribute enable_access_code_generator_metadata.



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

def 
  
end

#enable_advanced_paymentsObject

Returns the value of attribute enable_advanced_payments.



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

def enable_advanced_payments
  @enable_advanced_payments
end

#enable_advanced_payments_metadataObject

Returns the value of attribute enable_advanced_payments_metadata.



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

def 
  
end

#enable_advanced_power_formsObject

Returns the value of attribute enable_advanced_power_forms.



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

def enable_advanced_power_forms
  @enable_advanced_power_forms
end

#enable_advanced_power_forms_metadataObject

Returns the value of attribute enable_advanced_power_forms_metadata.



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

def 
  
end

#enable_auto_navObject

Returns the value of attribute enable_auto_nav.



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

def enable_auto_nav
  @enable_auto_nav
end

#enable_auto_nav_metadataObject

Returns the value of attribute enable_auto_nav_metadata.



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

def 
  
end

#enable_calculated_fieldsObject

Returns the value of attribute enable_calculated_fields.



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

def enable_calculated_fields
  @enable_calculated_fields
end

#enable_calculated_fields_metadataObject

Returns the value of attribute enable_calculated_fields_metadata.



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

def 
  
end

#enable_clickwrapsObject

Returns the value of attribute enable_clickwraps.



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

def enable_clickwraps
  @enable_clickwraps
end

#enable_clickwraps_metadataObject

Returns the value of attribute enable_clickwraps_metadata.



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

def 
  
end

#enable_comments_history_download_in_signingObject

Returns the value of attribute enable_comments_history_download_in_signing.



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

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.



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

def 
  
end

#enable_customer_satisfaction_metric_trackingObject

Returns the value of attribute enable_customer_satisfaction_metric_tracking.



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

def enable_customer_satisfaction_metric_tracking
  @enable_customer_satisfaction_metric_tracking
end

#enable_customer_satisfaction_metric_tracking_metadataObject

Returns the value of attribute enable_customer_satisfaction_metric_tracking_metadata.



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

def 
  
end

#enable_ds_proObject

Returns the value of attribute enable_ds_pro.



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

def enable_ds_pro
  @enable_ds_pro
end

#enable_ds_pro_metadataObject

Returns the value of attribute enable_ds_pro_metadata.



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

def 
  
end

#enable_envelope_stamping_by_account_adminObject

Returns the value of attribute enable_envelope_stamping_by_account_admin.



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

def 
  
end

#enable_envelope_stamping_by_account_admin_metadataObject

Returns the value of attribute enable_envelope_stamping_by_account_admin_metadata.



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

def 
  
end

#enable_envelope_stamping_by_ds_adminObject

Returns the value of attribute enable_envelope_stamping_by_ds_admin.



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

def enable_envelope_stamping_by_ds_admin
  @enable_envelope_stamping_by_ds_admin
end

#enable_envelope_stamping_by_ds_admin_metadataObject

Returns the value of attribute enable_envelope_stamping_by_ds_admin_metadata.



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

def 
  
end

#enable_in_browser_editorObject

Returns the value of attribute enable_in_browser_editor.



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

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.



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

def 
  
end

#enable_payment_processingObject

Returns the value of attribute enable_payment_processing.



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

def enable_payment_processing
  @enable_payment_processing
end

#enable_payment_processing_metadataObject

Returns the value of attribute enable_payment_processing_metadata.



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

def 
  
end

#enable_power_formObject

Returns the value of attribute enable_power_form.



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

def enable_power_form
  @enable_power_form
end

#enable_power_form_directObject

Returns the value of attribute enable_power_form_direct.



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

def enable_power_form_direct
  @enable_power_form_direct
end

#enable_power_form_direct_metadataObject

Returns the value of attribute enable_power_form_direct_metadata.



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

def 
  
end

#enable_power_form_metadataObject

Returns the value of attribute enable_power_form_metadata.



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

def 
  
end

#enable_recipient_domain_validationObject

Returns the value of attribute enable_recipient_domain_validation.



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

def enable_recipient_domain_validation
  @enable_recipient_domain_validation
end

#enable_recipient_domain_validation_metadataObject

Returns the value of attribute enable_recipient_domain_validation_metadata.



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

def 
  
end

Returns the value of attribute enable_report_links.



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

def enable_report_links
  @enable_report_links
end

Returns the value of attribute enable_report_links_metadata.



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

def 
  
end

#enable_require_sign_on_paperObject

Returns the value of attribute enable_require_sign_on_paper.



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

def enable_require_sign_on_paper
  @enable_require_sign_on_paper
end

#enable_require_sign_on_paper_metadataObject

Returns the value of attribute enable_require_sign_on_paper_metadata.



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

def 
  
end

#enable_reserved_domainObject

Returns the value of attribute enable_reserved_domain.



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

def enable_reserved_domain
  @enable_reserved_domain
end

#enable_reserved_domain_metadataObject

Returns the value of attribute enable_reserved_domain_metadata.



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

def 
  
end

#enable_responsive_signingObject

Returns the value of attribute enable_responsive_signing.



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

def enable_responsive_signing
  @enable_responsive_signing
end

#enable_responsive_signing_metadataObject

Returns the value of attribute enable_responsive_signing_metadata.



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

def 
  
end

#enable_scheduled_releaseObject

Returns the value of attribute enable_scheduled_release.



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

def enable_scheduled_release
  @enable_scheduled_release
end

#enable_scheduled_release_metadataObject

Returns the value of attribute enable_scheduled_release_metadata.



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

def 
  
end

#enable_search_uiObject

Returns the value of attribute enable_search_ui.



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

def enable_search_ui
  @enable_search_ui
end

#enable_search_ui_metadataObject

Returns the value of attribute enable_search_ui_metadata.



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

def 
  
end

#enable_send_to_agentObject

Returns the value of attribute enable_send_to_agent.



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

def enable_send_to_agent
  @enable_send_to_agent
end

#enable_send_to_agent_metadataObject

Returns the value of attribute enable_send_to_agent_metadata.



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

def 
  
end

#enable_send_to_intermediaryObject

Returns the value of attribute enable_send_to_intermediary.



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

def enable_send_to_intermediary
  @enable_send_to_intermediary
end

#enable_send_to_intermediary_metadataObject

Returns the value of attribute enable_send_to_intermediary_metadata.



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

def 
  
end

#enable_send_to_manageObject

Returns the value of attribute enable_send_to_manage.



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

def enable_send_to_manage
  @enable_send_to_manage
end

#enable_send_to_manage_metadataObject

Returns the value of attribute enable_send_to_manage_metadata.



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

def 
  
end

#enable_sending_tags_font_settingsObject

Returns the value of attribute enable_sending_tags_font_settings.



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

def enable_sending_tags_font_settings
  @enable_sending_tags_font_settings
end

#enable_sending_tags_font_settings_metadataObject

Returns the value of attribute enable_sending_tags_font_settings_metadata.



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

def 
  
end

#enable_sequential_signing_apiObject

Returns the value of attribute enable_sequential_signing_api.



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

def enable_sequential_signing_api
  @enable_sequential_signing_api
end

#enable_sequential_signing_api_metadataObject

Returns the value of attribute enable_sequential_signing_api_metadata.



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

def 
  
end

#enable_sequential_signing_uiObject

Returns the value of attribute enable_sequential_signing_ui.



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

def enable_sequential_signing_ui
  @enable_sequential_signing_ui
end

#enable_sequential_signing_ui_metadataObject

Returns the value of attribute enable_sequential_signing_ui_metadata.



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

def 
  
end

#enable_sign_on_paperObject

Returns the value of attribute enable_sign_on_paper.



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

def enable_sign_on_paper
  @enable_sign_on_paper
end

#enable_sign_on_paper_metadataObject

Returns the value of attribute enable_sign_on_paper_metadata.



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

def 
  
end

#enable_sign_on_paper_overrideObject

Returns the value of attribute enable_sign_on_paper_override.



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

def enable_sign_on_paper_override
  @enable_sign_on_paper_override
end

#enable_sign_on_paper_override_metadataObject

Returns the value of attribute enable_sign_on_paper_override_metadata.



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

def 
  
end

#enable_sign_with_notaryObject

Returns the value of attribute enable_sign_with_notary.



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

def enable_sign_with_notary
  @enable_sign_with_notary
end

#enable_sign_with_notary_metadataObject

Returns the value of attribute enable_sign_with_notary_metadata.



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

def 
  
end

#enable_signer_attachmentsObject

Returns the value of attribute enable_signer_attachments.



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

def enable_signer_attachments
  @enable_signer_attachments
end

#enable_signer_attachments_metadataObject

Returns the value of attribute enable_signer_attachments_metadata.



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

def 
  
end

#enable_signing_extension_commentsObject

Returns the value of attribute enable_signing_extension_comments.



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

def enable_signing_extension_comments
  @enable_signing_extension_comments
end

#enable_signing_extension_comments_metadataObject

Returns the value of attribute enable_signing_extension_comments_metadata.



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

def 
  
end

#enable_signing_extension_conversationsObject

Returns the value of attribute enable_signing_extension_conversations.



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

def enable_signing_extension_conversations
  @enable_signing_extension_conversations
end

#enable_signing_extension_conversations_metadataObject

Returns the value of attribute enable_signing_extension_conversations_metadata.



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

def 
  
end

#enable_signing_order_settings_for_accountObject

Returns the value of attribute enable_signing_order_settings_for_account.



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

def 
  
end

#enable_signing_order_settings_for_account_metadataObject

Returns the value of attribute enable_signing_order_settings_for_account_metadata.



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

def 
  
end

#enable_smart_contractsObject

Returns the value of attribute enable_smart_contracts.



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

def enable_smart_contracts
  @enable_smart_contracts
end

#enable_smart_contracts_metadataObject

Returns the value of attribute enable_smart_contracts_metadata.



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

def 
  
end

#enable_sms_authenticationObject

Returns the value of attribute enable_sms_authentication.



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

def enable_sms_authentication
  @enable_sms_authentication
end

#enable_sms_authentication_metadataObject

Returns the value of attribute enable_sms_authentication_metadata.



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

def 
  
end

#enable_social_id_loginObject

Returns the value of attribute enable_social_id_login.



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

def 
  
end

#enable_social_id_login_metadataObject

Returns the value of attribute enable_social_id_login_metadata.



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

def 
  
end

#enable_strike_throughObject

Returns the value of attribute enable_strike_through.



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

def enable_strike_through
  @enable_strike_through
end

#enable_strike_through_metadataObject

Returns the value of attribute enable_strike_through_metadata.



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

def 
  
end

#enable_transaction_pointObject

Returns the value of attribute enable_transaction_point.



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

def enable_transaction_point
  @enable_transaction_point
end

#enable_transaction_point_metadataObject

Returns the value of attribute enable_transaction_point_metadata.



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

def 
  
end

#enable_vaultingObject

Returns the value of attribute enable_vaulting.



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

def enable_vaulting
  @enable_vaulting
end

#enable_vaulting_metadataObject

Returns the value of attribute enable_vaulting_metadata.



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

def 
  
end

#enable_witnessingObject

Returns the value of attribute enable_witnessing.



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

def enable_witnessing
  @enable_witnessing
end

#enable_witnessing_metadataObject

Returns the value of attribute enable_witnessing_metadata.



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

def 
  
end

#enforce_template_name_uniquenessObject

Returns the value of attribute enforce_template_name_uniqueness.



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

def enforce_template_name_uniqueness
  @enforce_template_name_uniqueness
end

#enforce_template_name_uniqueness_metadataObject

Returns the value of attribute enforce_template_name_uniqueness_metadata.



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

def 
  
end

#envelope_integration_allowedObject

Returns the value of attribute envelope_integration_allowed.



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

def envelope_integration_allowed
  @envelope_integration_allowed
end

#envelope_integration_allowed_metadataObject

Returns the value of attribute envelope_integration_allowed_metadata.



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

def 
  
end

#envelope_integration_enabledObject

Returns the value of attribute envelope_integration_enabled.



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

def envelope_integration_enabled
  @envelope_integration_enabled
end

#envelope_integration_enabled_metadataObject

Returns the value of attribute envelope_integration_enabled_metadata.



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

def 
  
end

#envelope_stamping_default_valueObject

Returns the value of attribute envelope_stamping_default_value.



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

def envelope_stamping_default_value
  @envelope_stamping_default_value
end

#envelope_stamping_default_value_metadataObject

Returns the value of attribute envelope_stamping_default_value_metadata.



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

def 
  
end

#express_sendObject

Returns the value of attribute express_send.



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

def express_send
  @express_send
end

#express_send_allow_tabsObject

Returns the value of attribute express_send_allow_tabs.



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

def express_send_allow_tabs
  @express_send_allow_tabs
end

#express_send_allow_tabs_metadataObject

Returns the value of attribute express_send_allow_tabs_metadata.



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

def 
  
end

#express_send_metadataObject

Returns the value of attribute express_send_metadata.



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

def 
  
end

#external_document_sourcesObject

Returns the value of attribute external_document_sources.



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

def external_document_sources
  @external_document_sources
end

#external_signature_pad_typeObject

Returns the value of attribute external_signature_pad_type.



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

def external_signature_pad_type
  @external_signature_pad_type
end

#external_signature_pad_type_metadataObject

Returns the value of attribute external_signature_pad_type_metadata.



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

def 
  
end

#fax_out_enabledObject

Returns the value of attribute fax_out_enabled.



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

def fax_out_enabled
  @fax_out_enabled
end

#fax_out_enabled_metadataObject

Returns the value of attribute fax_out_enabled_metadata.



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

def 
  
end

#guided_forms_html_allowedObject

Returns the value of attribute guided_forms_html_allowed.



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

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.



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

def 
  
end

#hide_account_address_in_co_cObject

Returns the value of attribute hide_account_address_in_co_c.



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

def 
  
end

#hide_account_address_in_co_c_metadataObject

Returns the value of attribute hide_account_address_in_co_c_metadata.



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

def 
  
end

#hide_pricingObject

Returns the value of attribute hide_pricing.



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

def hide_pricing
  @hide_pricing
end

#hide_pricing_metadataObject

Returns the value of attribute hide_pricing_metadata.



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

def 
  
end

#id_check_configurationsObject

Returns the value of attribute id_check_configurations.



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

def id_check_configurations
  @id_check_configurations
end

#id_check_expireObject

Returns the value of attribute id_check_expire.



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

def id_check_expire
  @id_check_expire
end

#id_check_expire_daysObject

Returns the value of attribute id_check_expire_days.



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

def id_check_expire_days
  @id_check_expire_days
end

#id_check_expire_days_metadataObject

Returns the value of attribute id_check_expire_days_metadata.



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

def 
  
end

#id_check_expire_metadataObject

Returns the value of attribute id_check_expire_metadata.



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

def 
  
end

#id_check_expire_minutesObject

Returns the value of attribute id_check_expire_minutes.



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

def id_check_expire_minutes
  @id_check_expire_minutes
end

#id_check_expire_minutes_metadataObject

Returns the value of attribute id_check_expire_minutes_metadata.



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

def 
  
end

#id_check_requiredObject

Returns the value of attribute id_check_required.



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

def id_check_required
  @id_check_required
end

#id_check_required_metadataObject

Returns the value of attribute id_check_required_metadata.



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

def 
  
end

#identity_verificationObject

Returns the value of attribute identity_verification.



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

def identity_verification
  @identity_verification
end

#identity_verification_metadataObject

Returns the value of attribute identity_verification_metadata.



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

def 
  
end

#ignore_error_if_anchor_tab_not_foundObject

Returns the value of attribute ignore_error_if_anchor_tab_not_found.



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

def ignore_error_if_anchor_tab_not_found
  @ignore_error_if_anchor_tab_not_found
end

#ignore_error_if_anchor_tab_not_found_metadata_enabledObject

Returns the value of attribute ignore_error_if_anchor_tab_not_found_metadata_enabled.



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

def 
  
end

#in_person_id_check_questionObject

Returns the value of attribute in_person_id_check_question.



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

def in_person_id_check_question
  @in_person_id_check_question
end

#in_person_id_check_question_metadataObject

Returns the value of attribute in_person_id_check_question_metadata.



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

def 
  
end

#in_person_signing_enabledObject

Returns the value of attribute in_person_signing_enabled.



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

def in_person_signing_enabled
  @in_person_signing_enabled
end

#in_person_signing_enabled_metadataObject

Returns the value of attribute in_person_signing_enabled_metadata.



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

def 
  
end

#in_session_enabledObject

Returns the value of attribute in_session_enabled.



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

def in_session_enabled
  @in_session_enabled
end

#in_session_enabled_metadataObject

Returns the value of attribute in_session_enabled_metadata.



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

def 
  
end

#in_session_suppress_emailsObject

Returns the value of attribute in_session_suppress_emails.



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

def in_session_suppress_emails
  @in_session_suppress_emails
end

#in_session_suppress_emails_metadataObject

Returns the value of attribute in_session_suppress_emails_metadata.



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

def 
  
end

#max_number_of_custom_stampsObject

Returns the value of attribute max_number_of_custom_stamps.



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

def max_number_of_custom_stamps
  @max_number_of_custom_stamps
end

#maximum_signing_groupsObject

Returns the value of attribute maximum_signing_groups.



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

def maximum_signing_groups
  @maximum_signing_groups
end

#maximum_signing_groups_metadataObject

Returns the value of attribute maximum_signing_groups_metadata.



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

def 
  
end

#maximum_users_per_signing_groupObject

Returns the value of attribute maximum_users_per_signing_group.



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

def maximum_users_per_signing_group
  @maximum_users_per_signing_group
end

#maximum_users_per_signing_group_metadataObject

Returns the value of attribute maximum_users_per_signing_group_metadata.



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

def 
  
end

#mobile_session_timeoutObject

Returns the value of attribute mobile_session_timeout.



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

def mobile_session_timeout
  @mobile_session_timeout
end

#mobile_session_timeout_metadataObject

Returns the value of attribute mobile_session_timeout_metadata.



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

def 
  
end

#number_of_active_custom_stampsObject

Returns the value of attribute number_of_active_custom_stamps.



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

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.



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

def opt_in_mobile_signing_v02
  @opt_in_mobile_signing_v02
end

#opt_in_mobile_signing_v02_metadataObject

Returns the value of attribute opt_in_mobile_signing_v02_metadata.



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

def 
  
end

#opt_out_auto_nav_text_and_tab_color_updatesObject

Returns the value of attribute opt_out_auto_nav_text_and_tab_color_updates.



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

def opt_out_auto_nav_text_and_tab_color_updates
  @opt_out_auto_nav_text_and_tab_color_updates
end

#opt_out_auto_nav_text_and_tab_color_updates_metadataObject

Returns the value of attribute opt_out_auto_nav_text_and_tab_color_updates_metadata.



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

def 
  
end

#opt_out_new_platform_sealObject

Returns the value of attribute opt_out_new_platform_seal.



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

def opt_out_new_platform_seal
  @opt_out_new_platform_seal
end

#opt_out_new_platform_seal_platform_metadataObject

Returns the value of attribute opt_out_new_platform_seal_platform_metadata.



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

def 
  
end

#phone_auth_recipient_may_provide_phone_numberObject

Returns the value of attribute phone_auth_recipient_may_provide_phone_number.



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

def phone_auth_recipient_may_provide_phone_number
  @phone_auth_recipient_may_provide_phone_number
end

#phone_auth_recipient_may_provide_phone_number_metadataObject

Returns the value of attribute phone_auth_recipient_may_provide_phone_number_metadata.



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

def 
  
end

#pki_sign_downloaded_pdf_docsObject

Returns the value of attribute pki_sign_downloaded_pdf_docs.



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

def pki_sign_downloaded_pdf_docs
  @pki_sign_downloaded_pdf_docs
end

#pki_sign_downloaded_pdf_docs_metadataObject

Returns the value of attribute pki_sign_downloaded_pdf_docs_metadata.



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

def 
  
end

#recipient_signing_auto_navigation_controlObject

Returns the value of attribute recipient_signing_auto_navigation_control.



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

def recipient_signing_auto_navigation_control
  @recipient_signing_auto_navigation_control
end

#recipient_signing_auto_navigation_control_metadataObject

Returns the value of attribute recipient_signing_auto_navigation_control_metadata.



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

def 
  
end

#recipients_can_sign_offlineObject

Returns the value of attribute recipients_can_sign_offline.



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

def recipients_can_sign_offline
  @recipients_can_sign_offline
end

#recipients_can_sign_offline_metadataObject

Returns the value of attribute recipients_can_sign_offline_metadata.



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

def 
  
end

#require21_cf_rpt11_complianceObject

Returns the value of attribute require21_cf_rpt11_compliance.



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

def require21_cf_rpt11_compliance
  @require21_cf_rpt11_compliance
end

#require21_cf_rpt11_compliance_metadataObject

Returns the value of attribute require21_cf_rpt11_compliance_metadata.



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

def 
  
end

#require_decline_reasonObject

Returns the value of attribute require_decline_reason.



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

def require_decline_reason
  @require_decline_reason
end

#require_decline_reason_metadataObject

Returns the value of attribute require_decline_reason_metadata.



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

def 
  
end

#require_external_user_managementObject

Returns the value of attribute require_external_user_management.



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

def require_external_user_management
  @require_external_user_management
end

#require_external_user_management_metadataObject

Returns the value of attribute require_external_user_management_metadata.



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

def 
  
end

#require_signer_certificate_typeObject

Returns the value of attribute require_signer_certificate_type.



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

def require_signer_certificate_type
  @require_signer_certificate_type
end

#require_signer_certificate_type_metadataObject

Returns the value of attribute require_signer_certificate_type_metadata.



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

def 
  
end

#rsa_verid_account_nameObject

Returns the value of attribute rsa_verid_account_name.



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

def 
  
end

#rsa_verid_passwordObject

Returns the value of attribute rsa_verid_password.



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

def rsa_verid_password
  @rsa_verid_password
end

#rsa_verid_rulesetObject

Returns the value of attribute rsa_verid_ruleset.



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

def rsa_verid_ruleset
  @rsa_verid_ruleset
end

#rsa_verid_user_idObject

Returns the value of attribute rsa_verid_user_id.



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

def rsa_verid_user_id
  @rsa_verid_user_id
end

#self_signed_recipient_email_documentObject

Returns the value of attribute self_signed_recipient_email_document.



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

def self_signed_recipient_email_document
  @self_signed_recipient_email_document
end

#self_signed_recipient_email_document_metadataObject

Returns the value of attribute self_signed_recipient_email_document_metadata.



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

def 
  
end

#self_signed_recipient_email_document_user_overrideObject

Returns the value of attribute self_signed_recipient_email_document_user_override.



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

def self_signed_recipient_email_document_user_override
  @self_signed_recipient_email_document_user_override
end

#self_signed_recipient_email_document_user_override_metadataObject

Returns the value of attribute self_signed_recipient_email_document_user_override_metadata.



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

def 
  
end

#send_to_certified_delivery_enabledObject

Returns the value of attribute send_to_certified_delivery_enabled.



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

def send_to_certified_delivery_enabled
  @send_to_certified_delivery_enabled
end

#send_to_certified_delivery_enabled_metadataObject

Returns the value of attribute send_to_certified_delivery_enabled_metadata.



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

def 
  
end

#sender_can_sign_in_each_locationObject

Returns the value of attribute sender_can_sign_in_each_location.



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

def 
  
end

#sender_can_sign_in_each_location_metadataObject

Returns the value of attribute sender_can_sign_in_each_location_metadata.



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

def 
  
end

#sender_must_authenticate_signingObject

Returns the value of attribute sender_must_authenticate_signing.



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

def sender_must_authenticate_signing
  @sender_must_authenticate_signing
end

#sender_must_authenticate_signing_metadataObject

Returns the value of attribute sender_must_authenticate_signing_metadata.



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

def 
  
end

#sending_tags_font_colorObject

Returns the value of attribute sending_tags_font_color.



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

def sending_tags_font_color
  @sending_tags_font_color
end

#sending_tags_font_color_metadataObject

Returns the value of attribute sending_tags_font_color_metadata.



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

def 
  
end

#sending_tags_font_nameObject

Returns the value of attribute sending_tags_font_name.



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

def sending_tags_font_name
  @sending_tags_font_name
end

#sending_tags_font_name_metadataObject

Returns the value of attribute sending_tags_font_name_metadata.



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

def 
  
end

#sending_tags_font_sizeObject

Returns the value of attribute sending_tags_font_size.



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

def sending_tags_font_size
  @sending_tags_font_size
end

#sending_tags_font_size_metadataObject

Returns the value of attribute sending_tags_font_size_metadata.



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

def 
  
end

#session_timeoutObject

Returns the value of attribute session_timeout.



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

def session_timeout
  @session_timeout
end

#session_timeout_metadataObject

Returns the value of attribute session_timeout_metadata.



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

def 
  
end

#set_recip_email_langObject

Returns the value of attribute set_recip_email_lang.



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

def set_recip_email_lang
  @set_recip_email_lang
end

#set_recip_email_lang_metadataObject

Returns the value of attribute set_recip_email_lang_metadata.



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

def 
  
end

#set_recip_sign_langObject

Returns the value of attribute set_recip_sign_lang.



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

def set_recip_sign_lang
  @set_recip_sign_lang
end

#set_recip_sign_lang_metadataObject

Returns the value of attribute set_recip_sign_lang_metadata.



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

def 
  
end

#shared_template_foldersObject

Returns the value of attribute shared_template_folders.



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

def shared_template_folders
  @shared_template_folders
end

#shared_template_folders_metadataObject

Returns the value of attribute shared_template_folders_metadata.



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

def 
  
end

#show_complete_dialog_in_embedded_sessionObject

Returns the value of attribute show_complete_dialog_in_embedded_session.



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

def show_complete_dialog_in_embedded_session
  @show_complete_dialog_in_embedded_session
end

#show_complete_dialog_in_embedded_session_metadataObject

Returns the value of attribute show_complete_dialog_in_embedded_session_metadata.



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

def 
  
end

#show_conditional_routing_on_sendObject

Returns the value of attribute show_conditional_routing_on_send.



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

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.



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

def 
  
end

#show_initial_conditional_fieldsObject

Returns the value of attribute show_initial_conditional_fields.



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

def show_initial_conditional_fields
  @show_initial_conditional_fields
end

#show_initial_conditional_fields_metadataObject

Returns the value of attribute show_initial_conditional_fields_metadata.



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

def 
  
end

#show_localized_watermarksObject

Returns the value of attribute show_localized_watermarks.



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

def show_localized_watermarks
  @show_localized_watermarks
end

#show_localized_watermarks_metadataObject

Returns the value of attribute show_localized_watermarks_metadata.



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

def 
  
end

#show_tutorialsObject

Returns the value of attribute show_tutorials.



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

def show_tutorials
  @show_tutorials
end

#show_tutorials_metadataObject

Returns the value of attribute show_tutorials_metadata.



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

def 
  
end

#sign_date_formatObject

Returns the value of attribute sign_date_format.



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

def sign_date_format
  @sign_date_format
end

#sign_date_format_metadataObject

Returns the value of attribute sign_date_format_metadata.



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

def 
  
end

#sign_time_formatObject

Returns the value of attribute sign_time_format.



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

def sign_time_format
  @sign_time_format
end

#sign_time_format_metadataObject

Returns the value of attribute sign_time_format_metadata.



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

def 
  
end

#sign_time_show_am_pmObject

Returns the value of attribute sign_time_show_am_pm.



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

def sign_time_show_am_pm
  @sign_time_show_am_pm
end

#sign_time_show_am_pm_metadataObject

Returns the value of attribute sign_time_show_am_pm_metadata.



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

def 
  
end

#signature_providersObject

Returns the value of attribute signature_providers.



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

def signature_providers
  @signature_providers
end

#signature_providers_metadataObject

Returns the value of attribute signature_providers_metadata.



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

def 
  
end

#signer_attach_certificate_to_envelope_pdfObject

Returns the value of attribute signer_attach_certificate_to_envelope_pdf.



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

def signer_attach_certificate_to_envelope_pdf
  @signer_attach_certificate_to_envelope_pdf
end

#signer_attach_certificate_to_envelope_pdf_metadataObject

Returns the value of attribute signer_attach_certificate_to_envelope_pdf_metadata.



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

def 
  
end

#signer_attach_concatObject

Returns the value of attribute signer_attach_concat.



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

def signer_attach_concat
  @signer_attach_concat
end

#signer_attach_concat_metadataObject

Returns the value of attribute signer_attach_concat_metadata.



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

def 
  
end

#signer_can_create_accountObject

Returns the value of attribute signer_can_create_account.



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

def 
  
end

#signer_can_create_account_metadataObject

Returns the value of attribute signer_can_create_account_metadata.



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

def 
  
end

#signer_can_sign_on_mobileObject

Returns the value of attribute signer_can_sign_on_mobile.



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

def signer_can_sign_on_mobile
  @signer_can_sign_on_mobile
end

#signer_can_sign_on_mobile_metadataObject

Returns the value of attribute signer_can_sign_on_mobile_metadata.



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

def 
  
end

#signer_in_session_use_envelope_complete_emailObject

Returns the value of attribute signer_in_session_use_envelope_complete_email.



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

def signer_in_session_use_envelope_complete_email
  @signer_in_session_use_envelope_complete_email
end

#signer_in_session_use_envelope_complete_email_metadataObject

Returns the value of attribute signer_in_session_use_envelope_complete_email_metadata.



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

def 
  
end

#signer_login_requirementsObject

Returns the value of attribute signer_login_requirements.



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

def 
  
end

#signer_login_requirements_metadataObject

Returns the value of attribute signer_login_requirements_metadata.



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

def 
  
end

#signer_must_have_accountObject

Returns the value of attribute signer_must_have_account.



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

def 
  
end

#signer_must_have_account_metadataObject

Returns the value of attribute signer_must_have_account_metadata.



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

def 
  
end

#signer_must_login_to_signObject

Returns the value of attribute signer_must_login_to_sign.



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

def 
  
end

#signer_must_login_to_sign_metadataObject

Returns the value of attribute signer_must_login_to_sign_metadata.



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

def 
  
end

#signer_show_secure_field_initial_valuesObject

Returns the value of attribute signer_show_secure_field_initial_values.



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

def signer_show_secure_field_initial_values
  @signer_show_secure_field_initial_values
end

#signer_show_secure_field_initial_values_metadataObject

Returns the value of attribute signer_show_secure_field_initial_values_metadata.



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

def 
  
end

#signing_session_timeoutObject

Returns the value of attribute signing_session_timeout.



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

def signing_session_timeout
  @signing_session_timeout
end

#signing_session_timeout_metadataObject

Returns the value of attribute signing_session_timeout_metadata.



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

def 
  
end

#signing_ui_versionObject

Returns the value of attribute signing_ui_version.



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

def signing_ui_version
  @signing_ui_version
end

#signing_ui_version_metadataObject

Returns the value of attribute signing_ui_version_metadata.



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

def 
  
end

#simplified_sending_enabledObject

Returns the value of attribute simplified_sending_enabled.



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

def simplified_sending_enabled
  @simplified_sending_enabled
end

#simplified_sending_enabled_metadataObject

Returns the value of attribute simplified_sending_enabled_metadata.



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

def 
  
end

#single_sign_on_enabledObject

Returns the value of attribute single_sign_on_enabled.



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

def single_sign_on_enabled
  @single_sign_on_enabled
end

#single_sign_on_enabled_metadataObject

Returns the value of attribute single_sign_on_enabled_metadata.



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

def 
  
end

#skip_auth_completed_envelopesObject

Returns the value of attribute skip_auth_completed_envelopes.



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

def skip_auth_completed_envelopes
  @skip_auth_completed_envelopes
end

#skip_auth_completed_envelopes_metadataObject

Returns the value of attribute skip_auth_completed_envelopes_metadata.



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

def 
  
end

#social_id_recip_authObject

Returns the value of attribute social_id_recip_auth.



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

def social_id_recip_auth
  @social_id_recip_auth
end

#social_id_recip_auth_metadataObject

Returns the value of attribute social_id_recip_auth_metadata.



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

def 
  
end

#specify_document_visibilityObject

Returns the value of attribute specify_document_visibility.



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

def specify_document_visibility
  @specify_document_visibility
end

#specify_document_visibility_metadataObject

Returns the value of attribute specify_document_visibility_metadata.



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

def 
  
end

#start_in_advanced_correctObject

Returns the value of attribute start_in_advanced_correct.



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

def start_in_advanced_correct
  @start_in_advanced_correct
end

#start_in_advanced_correct_metadataObject

Returns the value of attribute start_in_advanced_correct_metadata.



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

def 
  
end

#supplemental_documents_must_acceptObject

Returns the value of attribute supplemental_documents_must_accept.



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

def supplemental_documents_must_accept
  @supplemental_documents_must_accept
end

#supplemental_documents_must_accept_metadataObject

Returns the value of attribute supplemental_documents_must_accept_metadata.



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

def 
  
end

#supplemental_documents_must_readObject

Returns the value of attribute supplemental_documents_must_read.



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

def supplemental_documents_must_read
  @supplemental_documents_must_read
end

#supplemental_documents_must_read_metadataObject

Returns the value of attribute supplemental_documents_must_read_metadata.



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

def 
  
end

#supplemental_documents_must_viewObject

Returns the value of attribute supplemental_documents_must_view.



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

def supplemental_documents_must_view
  @supplemental_documents_must_view
end

#supplemental_documents_must_view_metadataObject

Returns the value of attribute supplemental_documents_must_view_metadata.



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

def 
  
end

#suppress_certificate_enforcementObject

Returns the value of attribute suppress_certificate_enforcement.



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

def suppress_certificate_enforcement
  @suppress_certificate_enforcement
end

#suppress_certificate_enforcement_metadataObject

Returns the value of attribute suppress_certificate_enforcement_metadata.



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

def 
  
end

#tab_account_settingsObject

Returns the value of attribute tab_account_settings.



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

def 
  
end

#timezone_offset_apiObject

Returns the value of attribute timezone_offset_api.



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

def timezone_offset_api
  @timezone_offset_api
end

#timezone_offset_api_metadataObject

Returns the value of attribute timezone_offset_api_metadata.



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

def 
  
end

#timezone_offset_uiObject

Returns the value of attribute timezone_offset_ui.



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

def timezone_offset_ui
  @timezone_offset_ui
end

#timezone_offset_ui_metadataObject

Returns the value of attribute timezone_offset_ui_metadata.



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

def 
  
end

#universal_signature_opt_inObject

Returns the value of attribute universal_signature_opt_in.



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

def universal_signature_opt_in
  @universal_signature_opt_in
end

#use_account_level_emailObject

Returns the value of attribute use_account_level_email.



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

def 
  
end

#use_account_level_email_metadataObject

Returns the value of attribute use_account_level_email_metadata.



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

def 
  
end

#use_consumer_disclosureObject

Returns the value of attribute use_consumer_disclosure.



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

def use_consumer_disclosure
  @use_consumer_disclosure
end

#use_consumer_disclosure_metadataObject

Returns the value of attribute use_consumer_disclosure_metadata.



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

def 
  
end

#use_consumer_disclosure_within_accountObject

Returns the value of attribute use_consumer_disclosure_within_account.



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

def 
  
end

#use_consumer_disclosure_within_account_metadataObject

Returns the value of attribute use_consumer_disclosure_within_account_metadata.



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

def 
  
end

#use_derived_keysObject

Returns the value of attribute use_derived_keys.



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

def use_derived_keys
  @use_derived_keys
end

#use_derived_keys_metadataObject

Returns the value of attribute use_derived_keys_metadata.



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

def 
  
end

#use_docu_sign_express_signer_certificateObject

Returns the value of attribute use_docu_sign_express_signer_certificate.



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

def use_docu_sign_express_signer_certificate
  @use_docu_sign_express_signer_certificate
end

#use_docu_sign_express_signer_certificate_metadataObject

Returns the value of attribute use_docu_sign_express_signer_certificate_metadata.



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

def 
  
end

#use_multi_app_groups_dataObject

Returns the value of attribute use_multi_app_groups_data.



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

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.



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

def 
  
end

#use_new_blob_for_pdfObject

Returns the value of attribute use_new_blob_for_pdf.



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

def use_new_blob_for_pdf
  @use_new_blob_for_pdf
end

#use_new_blob_for_pdf_metadataObject

Returns the value of attribute use_new_blob_for_pdf_metadata.



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

def 
  
end

#use_safe_signer_certificatesObject

Returns the value of attribute use_safe_signer_certificates.



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

def use_safe_signer_certificates
  @use_safe_signer_certificates
end

#use_safe_signer_certificates_metadataObject

Returns the value of attribute use_safe_signer_certificates_metadata.



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

def 
  
end

#use_signature_provider_platformObject

Returns the value of attribute use_signature_provider_platform.



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

def use_signature_provider_platform
  @use_signature_provider_platform
end

#use_signature_provider_platform_metadataObject

Returns the value of attribute use_signature_provider_platform_metadata.



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

def 
  
end

#uses_apiObject

Returns the value of attribute uses_api.



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

def uses_api
  @uses_api
end

#uses_api_metadataObject

Returns the value of attribute uses_api_metadata.



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

def 
  
end

#validations_allowedObject

Returns the value of attribute validations_allowed.



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

def validations_allowed
  @validations_allowed
end

#validations_allowed_metadataObject

Returns the value of attribute validations_allowed_metadata.



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

def 
  
end

#validations_brandObject

Returns the value of attribute validations_brand.



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

def validations_brand
  @validations_brand
end

#validations_brand_metadataObject

Returns the value of attribute validations_brand_metadata.



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

def 
  
end

#validations_cadenceObject

Returns the value of attribute validations_cadence.



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

def validations_cadence
  @validations_cadence
end

#validations_cadence_metadataObject

Returns the value of attribute validations_cadence_metadata.



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

def 
  
end

#validations_enabledObject

Returns the value of attribute validations_enabled.



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

def validations_enabled
  @validations_enabled
end

#validations_enabled_metadataObject

Returns the value of attribute validations_enabled_metadata.



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

def 
  
end

#validations_reportObject

Returns the value of attribute validations_report.



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

def validations_report
  @validations_report
end

#validations_report_metadataObject

Returns the value of attribute validations_report_metadata.



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

def 
  
end

#water_mark_enabledObject

Returns the value of attribute water_mark_enabled.



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

def water_mark_enabled
  @water_mark_enabled
end

#water_mark_enabled_metadataObject

Returns the value of attribute water_mark_enabled_metadata.



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

def 
  
end

#write_reminder_to_envelope_historyObject

Returns the value of attribute write_reminder_to_envelope_history.



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

def write_reminder_to_envelope_history
  @write_reminder_to_envelope_history
end

#write_reminder_to_envelope_history_metadataObject

Returns the value of attribute write_reminder_to_envelope_history_metadata.



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

def 
  
end

#wurfl_min_allowable_screen_sizeObject

Returns the value of attribute wurfl_min_allowable_screen_size.



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

def wurfl_min_allowable_screen_size
  @wurfl_min_allowable_screen_size
end

#wurfl_min_allowable_screen_size_metadataObject

Returns the value of attribute wurfl_min_allowable_screen_size_metadata.



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

def 
  
end

Class Method Details

.attribute_mapObject

Attribute mapping from ruby-style variable name to JSON key.



1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1307

def self.attribute_map
  {
    :'access_code_format' => :'accessCodeFormat',
    :'account_date_time_format' => :'accountDateTimeFormat',
    :'account_date_time_format_metadata' => :'accountDateTimeFormatMetadata',
    :'account_name' => :'accountName',
    :'account_name_metadata' => :'accountNameMetadata',
    :'account_notification' => :'accountNotification',
    :'account_ui_settings' => :'accountUISettings',
    :'adopt_sig_config' => :'adoptSigConfig',
    :'adopt_sig_config_metadata' => :'adoptSigConfigMetadata',
    :'advanced_correct' => :'advancedCorrect',
    :'advanced_correct_metadata' => :'advancedCorrectMetadata',
    :'allow_access_code_format' => :'allowAccessCodeFormat',
    :'allow_access_code_format_metadata' => :'allowAccessCodeFormatMetadata',
    :'allow_account_management_granular' => :'allowAccountManagementGranular',
    :'allow_account_management_granular_metadata' => :'allowAccountManagementGranularMetadata',
    :'allow_account_member_name_change' => :'allowAccountMemberNameChange',
    :'allow_account_member_name_change_metadata' => :'allowAccountMemberNameChangeMetadata',
    :'allow_advanced_recipient_routing_conditional' => :'allowAdvancedRecipientRoutingConditional',
    :'allow_advanced_recipient_routing_conditional_metadata' => :'allowAdvancedRecipientRoutingConditionalMetadata',
    :'allow_agent_name_email_edit' => :'allowAgentNameEmailEdit',
    :'allow_agent_name_email_edit_metadata' => :'allowAgentNameEmailEditMetadata',
    :'allow_agreement_actions' => :'allowAgreementActions',
    :'allow_agreement_actions_metadata' => :'allowAgreementActionsMetadata',
    :'allow_auto_nav_settings' => :'allowAutoNavSettings',
    :'allow_auto_nav_settings_metadata' => :'allowAutoNavSettingsMetadata',
    :'allow_auto_tagging' => :'allowAutoTagging',
    :'allow_auto_tagging_metadata' => :'allowAutoTaggingMetadata',
    :'allow_bulk_send' => :'allowBulkSend',
    :'allow_bulk_send_metadata' => :'allowBulkSendMetadata',
    :'allow_cd_withdraw' => :'allowCDWithdraw',
    :'allow_cd_withdraw_metadata' => :'allowCDWithdrawMetadata',
    :'allow_connect_http_listener_configs' => :'allowConnectHttpListenerConfigs',
    :'allow_connect_send_finish_later' => :'allowConnectSendFinishLater',
    :'allow_connect_send_finish_later_metadata' => :'allowConnectSendFinishLaterMetadata',
    :'allow_consumer_disclosure_override' => :'allowConsumerDisclosureOverride',
    :'allow_consumer_disclosure_override_metadata' => :'allowConsumerDisclosureOverrideMetadata',
    :'allow_data_download' => :'allowDataDownload',
    :'allow_data_download_metadata' => :'allowDataDownloadMetadata',
    :'allow_document_disclosures' => :'allowDocumentDisclosures',
    :'allow_document_disclosures_metadata' => :'allowDocumentDisclosuresMetadata',
    :'allow_documents_on_signed_envelopes' => :'allowDocumentsOnSignedEnvelopes',
    :'allow_documents_on_signed_envelopes_metadata' => :'allowDocumentsOnSignedEnvelopesMetadata',
    :'allow_document_visibility' => :'allowDocumentVisibility',
    :'allow_document_visibility_metadata' => :'allowDocumentVisibilityMetadata',
    :'allow_e_hanko_stamps' => :'allowEHankoStamps',
    :'allow_e_hanko_stamps_metadata' => :'allowEHankoStampsMetadata',
    :'allow_e_note_e_original' => :'allowENoteEOriginal',
    :'allow_e_note_e_original_metadata' => :'allowENoteEOriginalMetadata',
    :'allow_envelope_correct' => :'allowEnvelopeCorrect',
    :'allow_envelope_correct_metadata' => :'allowEnvelopeCorrectMetadata',
    :'allow_envelope_custody_transfer' => :'allowEnvelopeCustodyTransfer',
    :'allow_envelope_custody_transfer_metadata' => :'allowEnvelopeCustodyTransferMetadata',
    :'allow_envelope_custom_fields' => :'allowEnvelopeCustomFields',
    :'allow_envelope_custom_fields_metadata' => :'allowEnvelopeCustomFieldsMetadata',
    :'allow_envelope_publish_reporting' => :'allowEnvelopePublishReporting',
    :'allow_envelope_publish_reporting_metadata' => :'allowEnvelopePublishReportingMetadata',
    :'allow_envelope_reporting' => :'allowEnvelopeReporting',
    :'allow_envelope_reporting_metadata' => :'allowEnvelopeReportingMetadata',
    :'allow_expression' => :'allowExpression',
    :'allow_expression_metadata' => :'allowExpressionMetadata',
    :'allow_express_signer_certificate' => :'allowExpressSignerCertificate',
    :'allow_express_signer_certificate_metadata' => :'allowExpressSignerCertificateMetadata',
    :'allow_extended_sending_resource_file' => :'allowExtendedSendingResourceFile',
    :'allow_extended_sending_resource_file_metadata' => :'allowExtendedSendingResourceFileMetadata',
    :'allow_external_signature_pad' => :'allowExternalSignaturePad',
    :'allow_external_signature_pad_metadata' => :'allowExternalSignaturePadMetadata',
    :'allow_idv_level1' => :'allowIDVLevel1',
    :'allow_idv_level1_metadata' => :'allowIDVLevel1Metadata',
    :'allow_idv_platform' => :'allowIDVPlatform',
    :'allow_idv_platform_metadata' => :'allowIDVPlatformMetadata',
    :'allow_in_person' => :'allowInPerson',
    :'allow_in_person_metadata' => :'allowInPersonMetadata',
    :'allow_managed_stamps' => :'allowManagedStamps',
    :'allow_managed_stamps_metadata' => :'allowManagedStampsMetadata',
    :'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_organizations' => :'allowOrganizations',
    :'allow_organizations_metadata' => :'allowOrganizationsMetadata',
    :'allow_payment_processing' => :'allowPaymentProcessing',
    :'allow_payment_processing_metadata' => :'allowPaymentProcessingMetadata',
    :'allow_personal_signer_certificate' => :'allowPersonalSignerCertificate',
    :'allow_personal_signer_certificate_metadata' => :'allowPersonalSignerCertificateMetadata',
    :'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_reminders' => :'allowReminders',
    :'allow_reminders_metadata' => :'allowRemindersMetadata',
    :'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_security_appliance' => :'allowSecurityAppliance',
    :'allow_security_appliance_metadata' => :'allowSecurityApplianceMetadata',
    :'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_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_users_to_access_directory' => :'allowUsersToAccessDirectory',
    :'allow_users_to_access_directory_metadata' => :'allowUsersToAccessDirectoryMetadata',
    :'allow_value_insights' => :'allowValueInsights',
    :'allow_value_insights_metadata' => :'allowValueInsightsMetadata',
    :'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_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',
    :'cfr_use_wide_image' => :'cfrUseWideImage',
    :'cfr_use_wide_image_metadata' => :'cfrUseWideImageMetadata',
    :'check_for_multiple_admins_on_account' => :'checkForMultipleAdminsOnAccount',
    :'check_for_multiple_admins_on_account_metadata' => :'checkForMultipleAdminsOnAccountMetadata',
    :'chrome_signature_enabled' => :'chromeSignatureEnabled',
    :'chrome_signature_enabled_metadata' => :'chromeSignatureEnabledMetadata',
    :'comment_email_show_message_text' => :'commentEmailShowMessageText',
    :'comment_email_show_message_text_metadata' => :'commentEmailShowMessageTextMetadata',
    :'comments_allow_envelope_override' => :'commentsAllowEnvelopeOverride',
    :'comments_allow_envelope_override_metadata' => :'commentsAllowEnvelopeOverrideMetadata',
    :'conditional_fields_enabled' => :'conditionalFieldsEnabled',
    :'conditional_fields_enabled_metadata' => :'conditionalFieldsEnabledMetadata',
    :'consumer_disclosure_frequency' => :'consumerDisclosureFrequency',
    :'consumer_disclosure_frequency_metadata' => :'consumerDisclosureFrequencyMetadata',
    :'convert_pdf_fields' => :'convertPdfFields',
    :'convert_pdf_fields_metadata' => :'convertPdfFieldsMetadata',
    :'data_population_scope' => :'dataPopulationScope',
    :'data_population_scope_metadata' => :'dataPopulationScopeMetadata',
    :'disable_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',
    :'email_template_version' => :'emailTemplateVersion',
    :'email_template_version_metadata' => :'emailTemplateVersionMetadata',
    :'enable_access_code_generator' => :'enableAccessCodeGenerator',
    :'enable_access_code_generator_metadata' => :'enableAccessCodeGeneratorMetadata',
    :'enable_advanced_payments' => :'enableAdvancedPayments',
    :'enable_advanced_payments_metadata' => :'enableAdvancedPaymentsMetadata',
    :'enable_advanced_power_forms' => :'enableAdvancedPowerForms',
    :'enable_advanced_power_forms_metadata' => :'enableAdvancedPowerFormsMetadata',
    :'enable_auto_nav' => :'enableAutoNav',
    :'enable_auto_nav_metadata' => :'enableAutoNavMetadata',
    :'enable_calculated_fields' => :'enableCalculatedFields',
    :'enable_calculated_fields_metadata' => :'enableCalculatedFieldsMetadata',
    :'enable_clickwraps' => :'enableClickwraps',
    :'enable_clickwraps_metadata' => :'enableClickwrapsMetadata',
    :'enable_comments_history_download_in_signing' => :'enableCommentsHistoryDownloadInSigning',
    :'enable_comments_history_download_in_signing_metadata' => :'enableCommentsHistoryDownloadInSigningMetadata',
    :'enable_customer_satisfaction_metric_tracking' => :'enableCustomerSatisfactionMetricTracking',
    :'enable_customer_satisfaction_metric_tracking_metadata' => :'enableCustomerSatisfactionMetricTrackingMetadata',
    :'enable_ds_pro' => :'enableDSPro',
    :'enable_ds_pro_metadata' => :'enableDSProMetadata',
    :'enable_envelope_stamping_by_account_admin' => :'enableEnvelopeStampingByAccountAdmin',
    :'enable_envelope_stamping_by_account_admin_metadata' => :'enableEnvelopeStampingByAccountAdminMetadata',
    :'enable_envelope_stamping_by_ds_admin' => :'enableEnvelopeStampingByDSAdmin',
    :'enable_envelope_stamping_by_ds_admin_metadata' => :'enableEnvelopeStampingByDSAdminMetadata',
    :'enable_in_browser_editor' => :'enableInBrowserEditor',
    :'enable_in_browser_editor_metadata' => :'enableInBrowserEditorMetadata',
    :'enable_payment_processing' => :'enablePaymentProcessing',
    :'enable_payment_processing_metadata' => :'enablePaymentProcessingMetadata',
    :'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_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_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_social_id_login' => :'enableSocialIdLogin',
    :'enable_social_id_login_metadata' => :'enableSocialIdLoginMetadata',
    :'enable_strike_through' => :'enableStrikeThrough',
    :'enable_strike_through_metadata' => :'enableStrikeThroughMetadata',
    :'enable_transaction_point' => :'enableTransactionPoint',
    :'enable_transaction_point_metadata' => :'enableTransactionPointMetadata',
    :'enable_vaulting' => :'enableVaulting',
    :'enable_vaulting_metadata' => :'enableVaultingMetadata',
    :'enable_witnessing' => :'enableWitnessing',
    :'enable_witnessing_metadata' => :'enableWitnessingMetadata',
    :'enforce_template_name_uniqueness' => :'enforceTemplateNameUniqueness',
    :'enforce_template_name_uniqueness_metadata' => :'enforceTemplateNameUniquenessMetadata',
    :'envelope_integration_allowed' => :'envelopeIntegrationAllowed',
    :'envelope_integration_allowed_metadata' => :'envelopeIntegrationAllowedMetadata',
    :'envelope_integration_enabled' => :'envelopeIntegrationEnabled',
    :'envelope_integration_enabled_metadata' => :'envelopeIntegrationEnabledMetadata',
    :'envelope_stamping_default_value' => :'envelopeStampingDefaultValue',
    :'envelope_stamping_default_value_metadata' => :'envelopeStampingDefaultValueMetadata',
    :'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',
    :'guided_forms_html_allowed' => :'guidedFormsHtmlAllowed',
    :'guided_forms_html_allowed_metadata' => :'guidedFormsHtmlAllowedMetadata',
    :'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',
    :'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',
    :'maximum_signing_groups' => :'maximumSigningGroups',
    :'maximum_signing_groups_metadata' => :'maximumSigningGroupsMetadata',
    :'maximum_users_per_signing_group' => :'maximumUsersPerSigningGroup',
    :'maximum_users_per_signing_group_metadata' => :'maximumUsersPerSigningGroupMetadata',
    :'max_number_of_custom_stamps' => :'maxNumberOfCustomStamps',
    :'mobile_session_timeout' => :'mobileSessionTimeout',
    :'mobile_session_timeout_metadata' => :'mobileSessionTimeoutMetadata',
    :'number_of_active_custom_stamps' => :'numberOfActiveCustomStamps',
    :'opt_in_mobile_signing_v02' => :'optInMobileSigningV02',
    :'opt_in_mobile_signing_v02_metadata' => :'optInMobileSigningV02Metadata',
    :'opt_out_auto_nav_text_and_tab_color_updates' => :'optOutAutoNavTextAndTabColorUpdates',
    :'opt_out_auto_nav_text_and_tab_color_updates_metadata' => :'optOutAutoNavTextAndTabColorUpdatesMetadata',
    :'opt_out_new_platform_seal' => :'optOutNewPlatformSeal',
    :'opt_out_new_platform_seal_platform_metadata' => :'optOutNewPlatformSealPlatformMetadata',
    :'phone_auth_recipient_may_provide_phone_number' => :'phoneAuthRecipientMayProvidePhoneNumber',
    :'phone_auth_recipient_may_provide_phone_number_metadata' => :'phoneAuthRecipientMayProvidePhoneNumberMetadata',
    :'pki_sign_downloaded_pdf_docs' => :'pkiSignDownloadedPDFDocs',
    :'pki_sign_downloaded_pdf_docs_metadata' => :'pkiSignDownloadedPDFDocsMetadata',
    :'recipients_can_sign_offline' => :'recipientsCanSignOffline',
    :'recipients_can_sign_offline_metadata' => :'recipientsCanSignOfflineMetadata',
    :'recipient_signing_auto_navigation_control' => :'recipientSigningAutoNavigationControl',
    :'recipient_signing_auto_navigation_control_metadata' => :'recipientSigningAutoNavigationControlMetadata',
    :'require21_cf_rpt11_compliance' => :'require21CFRpt11Compliance',
    :'require21_cf_rpt11_compliance_metadata' => :'require21CFRpt11ComplianceMetadata',
    :'require_decline_reason' => :'requireDeclineReason',
    :'require_decline_reason_metadata' => :'requireDeclineReasonMetadata',
    :'require_external_user_management' => :'requireExternalUserManagement',
    :'require_external_user_management_metadata' => :'requireExternalUserManagementMetadata',
    :'require_signer_certificate_type' => :'requireSignerCertificateType',
    :'require_signer_certificate_type_metadata' => :'requireSignerCertificateTypeMetadata',
    :'rsa_verid_account_name' => :'rsaVeridAccountName',
    :'rsa_verid_password' => :'rsaVeridPassword',
    :'rsa_verid_ruleset' => :'rsaVeridRuleset',
    :'rsa_verid_user_id' => :'rsaVeridUserId',
    :'self_signed_recipient_email_document' => :'selfSignedRecipientEmailDocument',
    :'self_signed_recipient_email_document_metadata' => :'selfSignedRecipientEmailDocumentMetadata',
    :'self_signed_recipient_email_document_user_override' => :'selfSignedRecipientEmailDocumentUserOverride',
    :'self_signed_recipient_email_document_user_override_metadata' => :'selfSignedRecipientEmailDocumentUserOverrideMetadata',
    :'sender_can_sign_in_each_location' => :'senderCanSignInEachLocation',
    :'sender_can_sign_in_each_location_metadata' => :'senderCanSignInEachLocationMetadata',
    :'sender_must_authenticate_signing' => :'senderMustAuthenticateSigning',
    :'sender_must_authenticate_signing_metadata' => :'senderMustAuthenticateSigningMetadata',
    :'sending_tags_font_color' => :'sendingTagsFontColor',
    :'sending_tags_font_color_metadata' => :'sendingTagsFontColorMetadata',
    :'sending_tags_font_name' => :'sendingTagsFontName',
    :'sending_tags_font_name_metadata' => :'sendingTagsFontNameMetadata',
    :'sending_tags_font_size' => :'sendingTagsFontSize',
    :'sending_tags_font_size_metadata' => :'sendingTagsFontSizeMetadata',
    :'send_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_tutorials' => :'showTutorials',
    :'show_tutorials_metadata' => :'showTutorialsMetadata',
    :'signature_providers' => :'signatureProviders',
    :'signature_providers_metadata' => :'signatureProvidersMetadata',
    :'sign_date_format' => :'signDateFormat',
    :'sign_date_format_metadata' => :'signDateFormatMetadata',
    :'signer_attach_certificate_to_envelope_pdf' => :'signerAttachCertificateToEnvelopePDF',
    :'signer_attach_certificate_to_envelope_pdf_metadata' => :'signerAttachCertificateToEnvelopePDFMetadata',
    :'signer_attach_concat' => :'signerAttachConcat',
    :'signer_attach_concat_metadata' => :'signerAttachConcatMetadata',
    :'signer_can_create_account' => :'signerCanCreateAccount',
    :'signer_can_create_account_metadata' => :'signerCanCreateAccountMetadata',
    :'signer_can_sign_on_mobile' => :'signerCanSignOnMobile',
    :'signer_can_sign_on_mobile_metadata' => :'signerCanSignOnMobileMetadata',
    :'signer_in_session_use_envelope_complete_email' => :'signerInSessionUseEnvelopeCompleteEmail',
    :'signer_in_session_use_envelope_complete_email_metadata' => :'signerInSessionUseEnvelopeCompleteEmailMetadata',
    :'signer_login_requirements' => :'signerLoginRequirements',
    :'signer_login_requirements_metadata' => :'signerLoginRequirementsMetadata',
    :'signer_must_have_account' => :'signerMustHaveAccount',
    :'signer_must_have_account_metadata' => :'signerMustHaveAccountMetadata',
    :'signer_must_login_to_sign' => :'signerMustLoginToSign',
    :'signer_must_login_to_sign_metadata' => :'signerMustLoginToSignMetadata',
    :'signer_show_secure_field_initial_values' => :'signerShowSecureFieldInitialValues',
    :'signer_show_secure_field_initial_values_metadata' => :'signerShowSecureFieldInitialValuesMetadata',
    :'signing_session_timeout' => :'signingSessionTimeout',
    :'signing_session_timeout_metadata' => :'signingSessionTimeoutMetadata',
    :'signing_ui_version' => :'signingUiVersion',
    :'signing_ui_version_metadata' => :'signingUiVersionMetadata',
    :'sign_time_format' => :'signTimeFormat',
    :'sign_time_format_metadata' => :'signTimeFormatMetadata',
    :'sign_time_show_am_pm' => :'signTimeShowAmPm',
    :'sign_time_show_am_pm_metadata' => :'signTimeShowAmPmMetadata',
    :'simplified_sending_enabled' => :'simplifiedSendingEnabled',
    :'simplified_sending_enabled_metadata' => :'simplifiedSendingEnabledMetadata',
    :'single_sign_on_enabled' => :'singleSignOnEnabled',
    :'single_sign_on_enabled_metadata' => :'singleSignOnEnabledMetadata',
    :'skip_auth_completed_envelopes' => :'skipAuthCompletedEnvelopes',
    :'skip_auth_completed_envelopes_metadata' => :'skipAuthCompletedEnvelopesMetadata',
    :'social_id_recip_auth' => :'socialIdRecipAuth',
    :'social_id_recip_auth_metadata' => :'socialIdRecipAuthMetadata',
    :'specify_document_visibility' => :'specifyDocumentVisibility',
    :'specify_document_visibility_metadata' => :'specifyDocumentVisibilityMetadata',
    :'start_in_advanced_correct' => :'startInAdvancedCorrect',
    :'start_in_advanced_correct_metadata' => :'startInAdvancedCorrectMetadata',
    :'supplemental_documents_must_accept' => :'supplementalDocumentsMustAccept',
    :'supplemental_documents_must_accept_metadata' => :'supplementalDocumentsMustAcceptMetadata',
    :'supplemental_documents_must_read' => :'supplementalDocumentsMustRead',
    :'supplemental_documents_must_read_metadata' => :'supplementalDocumentsMustReadMetadata',
    :'supplemental_documents_must_view' => :'supplementalDocumentsMustView',
    :'supplemental_documents_must_view_metadata' => :'supplementalDocumentsMustViewMetadata',
    :'suppress_certificate_enforcement' => :'suppressCertificateEnforcement',
    :'suppress_certificate_enforcement_metadata' => :'suppressCertificateEnforcementMetadata',
    :'tab_account_settings' => :'tabAccountSettings',
    :'timezone_offset_api' => :'timezoneOffsetAPI',
    :'timezone_offset_api_metadata' => :'timezoneOffsetAPIMetadata',
    :'timezone_offset_ui' => :'timezoneOffsetUI',
    :'timezone_offset_ui_metadata' => :'timezoneOffsetUIMetadata',
    :'universal_signature_opt_in' => :'universalSignatureOptIn',
    :'use_account_level_email' => :'useAccountLevelEmail',
    :'use_account_level_email_metadata' => :'useAccountLevelEmailMetadata',
    :'use_consumer_disclosure' => :'useConsumerDisclosure',
    :'use_consumer_disclosure_metadata' => :'useConsumerDisclosureMetadata',
    :'use_consumer_disclosure_within_account' => :'useConsumerDisclosureWithinAccount',
    :'use_consumer_disclosure_within_account_metadata' => :'useConsumerDisclosureWithinAccountMetadata',
    :'use_derived_keys' => :'useDerivedKeys',
    :'use_derived_keys_metadata' => :'useDerivedKeysMetadata',
    :'use_docu_sign_express_signer_certificate' => :'useDocuSignExpressSignerCertificate',
    :'use_docu_sign_express_signer_certificate_metadata' => :'useDocuSignExpressSignerCertificateMetadata',
    :'use_multi_app_groups_data' => :'useMultiAppGroupsData',
    :'use_multi_app_groups_data_metadata' => :'useMultiAppGroupsDataMetadata',
    :'use_new_blob_for_pdf' => :'useNewBlobForPdf',
    :'use_new_blob_for_pdf_metadata' => :'useNewBlobForPdfMetadata',
    :'use_safe_signer_certificates' => :'useSAFESignerCertificates',
    :'use_safe_signer_certificates_metadata' => :'useSAFESignerCertificatesMetadata',
    :'uses_api' => :'usesAPI',
    :'uses_api_metadata' => :'usesAPIMetadata',
    :'use_signature_provider_platform' => :'useSignatureProviderPlatform',
    :'use_signature_provider_platform_metadata' => :'useSignatureProviderPlatformMetadata',
    :'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.



1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1827

def self.swagger_types
  {
    :'access_code_format' => :'AccessCodeFormat',
    :'account_date_time_format' => :'String',
    :'account_date_time_format_metadata' => :'SettingsMetadata',
    :'account_name' => :'String',
    :'account_name_metadata' => :'SettingsMetadata',
    :'account_notification' => :'AccountNotification',
    :'account_ui_settings' => :'AccountUISettings',
    :'adopt_sig_config' => :'String',
    :'adopt_sig_config_metadata' => :'SettingsMetadata',
    :'advanced_correct' => :'String',
    :'advanced_correct_metadata' => :'SettingsMetadata',
    :'allow_access_code_format' => :'String',
    :'allow_access_code_format_metadata' => :'SettingsMetadata',
    :'allow_account_management_granular' => :'String',
    :'allow_account_management_granular_metadata' => :'SettingsMetadata',
    :'allow_account_member_name_change' => :'String',
    :'allow_account_member_name_change_metadata' => :'SettingsMetadata',
    :'allow_advanced_recipient_routing_conditional' => :'String',
    :'allow_advanced_recipient_routing_conditional_metadata' => :'SettingsMetadata',
    :'allow_agent_name_email_edit' => :'String',
    :'allow_agent_name_email_edit_metadata' => :'SettingsMetadata',
    :'allow_agreement_actions' => :'String',
    :'allow_agreement_actions_metadata' => :'SettingsMetadata',
    :'allow_auto_nav_settings' => :'String',
    :'allow_auto_nav_settings_metadata' => :'SettingsMetadata',
    :'allow_auto_tagging' => :'String',
    :'allow_auto_tagging_metadata' => :'SettingsMetadata',
    :'allow_bulk_send' => :'String',
    :'allow_bulk_send_metadata' => :'SettingsMetadata',
    :'allow_cd_withdraw' => :'String',
    :'allow_cd_withdraw_metadata' => :'SettingsMetadata',
    :'allow_connect_http_listener_configs' => :'String',
    :'allow_connect_send_finish_later' => :'String',
    :'allow_connect_send_finish_later_metadata' => :'SettingsMetadata',
    :'allow_consumer_disclosure_override' => :'String',
    :'allow_consumer_disclosure_override_metadata' => :'SettingsMetadata',
    :'allow_data_download' => :'String',
    :'allow_data_download_metadata' => :'SettingsMetadata',
    :'allow_document_disclosures' => :'String',
    :'allow_document_disclosures_metadata' => :'SettingsMetadata',
    :'allow_documents_on_signed_envelopes' => :'String',
    :'allow_documents_on_signed_envelopes_metadata' => :'SettingsMetadata',
    :'allow_document_visibility' => :'String',
    :'allow_document_visibility_metadata' => :'SettingsMetadata',
    :'allow_e_hanko_stamps' => :'String',
    :'allow_e_hanko_stamps_metadata' => :'SettingsMetadata',
    :'allow_e_note_e_original' => :'String',
    :'allow_e_note_e_original_metadata' => :'SettingsMetadata',
    :'allow_envelope_correct' => :'String',
    :'allow_envelope_correct_metadata' => :'SettingsMetadata',
    :'allow_envelope_custody_transfer' => :'String',
    :'allow_envelope_custody_transfer_metadata' => :'SettingsMetadata',
    :'allow_envelope_custom_fields' => :'String',
    :'allow_envelope_custom_fields_metadata' => :'SettingsMetadata',
    :'allow_envelope_publish_reporting' => :'String',
    :'allow_envelope_publish_reporting_metadata' => :'SettingsMetadata',
    :'allow_envelope_reporting' => :'String',
    :'allow_envelope_reporting_metadata' => :'SettingsMetadata',
    :'allow_expression' => :'String',
    :'allow_expression_metadata' => :'SettingsMetadata',
    :'allow_express_signer_certificate' => :'String',
    :'allow_express_signer_certificate_metadata' => :'SettingsMetadata',
    :'allow_extended_sending_resource_file' => :'String',
    :'allow_extended_sending_resource_file_metadata' => :'SettingsMetadata',
    :'allow_external_signature_pad' => :'String',
    :'allow_external_signature_pad_metadata' => :'SettingsMetadata',
    :'allow_idv_level1' => :'String',
    :'allow_idv_level1_metadata' => :'SettingsMetadata',
    :'allow_idv_platform' => :'String',
    :'allow_idv_platform_metadata' => :'SettingsMetadata',
    :'allow_in_person' => :'String',
    :'allow_in_person_metadata' => :'SettingsMetadata',
    :'allow_managed_stamps' => :'String',
    :'allow_managed_stamps_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_organizations' => :'String',
    :'allow_organizations_metadata' => :'SettingsMetadata',
    :'allow_payment_processing' => :'String',
    :'allow_payment_processing_metadata' => :'SettingsMetadata',
    :'allow_personal_signer_certificate' => :'String',
    :'allow_personal_signer_certificate_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_reminders' => :'String',
    :'allow_reminders_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_security_appliance' => :'String',
    :'allow_security_appliance_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_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_users_to_access_directory' => :'String',
    :'allow_users_to_access_directory_metadata' => :'SettingsMetadata',
    :'allow_value_insights' => :'String',
    :'allow_value_insights_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_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',
    :'cfr_use_wide_image' => :'String',
    :'cfr_use_wide_image_metadata' => :'SettingsMetadata',
    :'check_for_multiple_admins_on_account' => :'String',
    :'check_for_multiple_admins_on_account_metadata' => :'SettingsMetadata',
    :'chrome_signature_enabled' => :'String',
    :'chrome_signature_enabled_metadata' => :'SettingsMetadata',
    :'comment_email_show_message_text' => :'String',
    :'comment_email_show_message_text_metadata' => :'SettingsMetadata',
    :'comments_allow_envelope_override' => :'String',
    :'comments_allow_envelope_override_metadata' => :'SettingsMetadata',
    :'conditional_fields_enabled' => :'String',
    :'conditional_fields_enabled_metadata' => :'SettingsMetadata',
    :'consumer_disclosure_frequency' => :'String',
    :'consumer_disclosure_frequency_metadata' => :'SettingsMetadata',
    :'convert_pdf_fields' => :'String',
    :'convert_pdf_fields_metadata' => :'SettingsMetadata',
    :'data_population_scope' => :'String',
    :'data_population_scope_metadata' => :'SettingsMetadata',
    :'disable_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',
    :'email_template_version' => :'String',
    :'email_template_version_metadata' => :'SettingsMetadata',
    :'enable_access_code_generator' => :'String',
    :'enable_access_code_generator_metadata' => :'SettingsMetadata',
    :'enable_advanced_payments' => :'String',
    :'enable_advanced_payments_metadata' => :'SettingsMetadata',
    :'enable_advanced_power_forms' => :'String',
    :'enable_advanced_power_forms_metadata' => :'SettingsMetadata',
    :'enable_auto_nav' => :'String',
    :'enable_auto_nav_metadata' => :'SettingsMetadata',
    :'enable_calculated_fields' => :'String',
    :'enable_calculated_fields_metadata' => :'SettingsMetadata',
    :'enable_clickwraps' => :'String',
    :'enable_clickwraps_metadata' => :'SettingsMetadata',
    :'enable_comments_history_download_in_signing' => :'String',
    :'enable_comments_history_download_in_signing_metadata' => :'SettingsMetadata',
    :'enable_customer_satisfaction_metric_tracking' => :'String',
    :'enable_customer_satisfaction_metric_tracking_metadata' => :'SettingsMetadata',
    :'enable_ds_pro' => :'String',
    :'enable_ds_pro_metadata' => :'SettingsMetadata',
    :'enable_envelope_stamping_by_account_admin' => :'String',
    :'enable_envelope_stamping_by_account_admin_metadata' => :'SettingsMetadata',
    :'enable_envelope_stamping_by_ds_admin' => :'String',
    :'enable_envelope_stamping_by_ds_admin_metadata' => :'SettingsMetadata',
    :'enable_in_browser_editor' => :'String',
    :'enable_in_browser_editor_metadata' => :'SettingsMetadata',
    :'enable_payment_processing' => :'String',
    :'enable_payment_processing_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_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_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_social_id_login' => :'String',
    :'enable_social_id_login_metadata' => :'SettingsMetadata',
    :'enable_strike_through' => :'String',
    :'enable_strike_through_metadata' => :'SettingsMetadata',
    :'enable_transaction_point' => :'String',
    :'enable_transaction_point_metadata' => :'SettingsMetadata',
    :'enable_vaulting' => :'String',
    :'enable_vaulting_metadata' => :'SettingsMetadata',
    :'enable_witnessing' => :'String',
    :'enable_witnessing_metadata' => :'SettingsMetadata',
    :'enforce_template_name_uniqueness' => :'String',
    :'enforce_template_name_uniqueness_metadata' => :'SettingsMetadata',
    :'envelope_integration_allowed' => :'String',
    :'envelope_integration_allowed_metadata' => :'SettingsMetadata',
    :'envelope_integration_enabled' => :'String',
    :'envelope_integration_enabled_metadata' => :'SettingsMetadata',
    :'envelope_stamping_default_value' => :'String',
    :'envelope_stamping_default_value_metadata' => :'SettingsMetadata',
    :'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',
    :'guided_forms_html_allowed' => :'String',
    :'guided_forms_html_allowed_metadata' => :'SettingsMetadata',
    :'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',
    :'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',
    :'maximum_signing_groups' => :'String',
    :'maximum_signing_groups_metadata' => :'SettingsMetadata',
    :'maximum_users_per_signing_group' => :'String',
    :'maximum_users_per_signing_group_metadata' => :'SettingsMetadata',
    :'max_number_of_custom_stamps' => :'String',
    :'mobile_session_timeout' => :'String',
    :'mobile_session_timeout_metadata' => :'SettingsMetadata',
    :'number_of_active_custom_stamps' => :'String',
    :'opt_in_mobile_signing_v02' => :'String',
    :'opt_in_mobile_signing_v02_metadata' => :'SettingsMetadata',
    :'opt_out_auto_nav_text_and_tab_color_updates' => :'String',
    :'opt_out_auto_nav_text_and_tab_color_updates_metadata' => :'SettingsMetadata',
    :'opt_out_new_platform_seal' => :'String',
    :'opt_out_new_platform_seal_platform_metadata' => :'SettingsMetadata',
    :'phone_auth_recipient_may_provide_phone_number' => :'String',
    :'phone_auth_recipient_may_provide_phone_number_metadata' => :'SettingsMetadata',
    :'pki_sign_downloaded_pdf_docs' => :'String',
    :'pki_sign_downloaded_pdf_docs_metadata' => :'SettingsMetadata',
    :'recipients_can_sign_offline' => :'String',
    :'recipients_can_sign_offline_metadata' => :'SettingsMetadata',
    :'recipient_signing_auto_navigation_control' => :'String',
    :'recipient_signing_auto_navigation_control_metadata' => :'SettingsMetadata',
    :'require21_cf_rpt11_compliance' => :'String',
    :'require21_cf_rpt11_compliance_metadata' => :'SettingsMetadata',
    :'require_decline_reason' => :'String',
    :'require_decline_reason_metadata' => :'SettingsMetadata',
    :'require_external_user_management' => :'String',
    :'require_external_user_management_metadata' => :'SettingsMetadata',
    :'require_signer_certificate_type' => :'String',
    :'require_signer_certificate_type_metadata' => :'SettingsMetadata',
    :'rsa_verid_account_name' => :'String',
    :'rsa_verid_password' => :'String',
    :'rsa_verid_ruleset' => :'String',
    :'rsa_verid_user_id' => :'String',
    :'self_signed_recipient_email_document' => :'String',
    :'self_signed_recipient_email_document_metadata' => :'SettingsMetadata',
    :'self_signed_recipient_email_document_user_override' => :'String',
    :'self_signed_recipient_email_document_user_override_metadata' => :'SettingsMetadata',
    :'sender_can_sign_in_each_location' => :'String',
    :'sender_can_sign_in_each_location_metadata' => :'SettingsMetadata',
    :'sender_must_authenticate_signing' => :'String',
    :'sender_must_authenticate_signing_metadata' => :'SettingsMetadata',
    :'sending_tags_font_color' => :'String',
    :'sending_tags_font_color_metadata' => :'SettingsMetadata',
    :'sending_tags_font_name' => :'String',
    :'sending_tags_font_name_metadata' => :'SettingsMetadata',
    :'sending_tags_font_size' => :'String',
    :'sending_tags_font_size_metadata' => :'SettingsMetadata',
    :'send_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_tutorials' => :'String',
    :'show_tutorials_metadata' => :'SettingsMetadata',
    :'signature_providers' => :'Array<String>',
    :'signature_providers_metadata' => :'SettingsMetadata',
    :'sign_date_format' => :'String',
    :'sign_date_format_metadata' => :'SettingsMetadata',
    :'signer_attach_certificate_to_envelope_pdf' => :'String',
    :'signer_attach_certificate_to_envelope_pdf_metadata' => :'SettingsMetadata',
    :'signer_attach_concat' => :'String',
    :'signer_attach_concat_metadata' => :'SettingsMetadata',
    :'signer_can_create_account' => :'String',
    :'signer_can_create_account_metadata' => :'SettingsMetadata',
    :'signer_can_sign_on_mobile' => :'String',
    :'signer_can_sign_on_mobile_metadata' => :'SettingsMetadata',
    :'signer_in_session_use_envelope_complete_email' => :'String',
    :'signer_in_session_use_envelope_complete_email_metadata' => :'SettingsMetadata',
    :'signer_login_requirements' => :'String',
    :'signer_login_requirements_metadata' => :'SettingsMetadata',
    :'signer_must_have_account' => :'String',
    :'signer_must_have_account_metadata' => :'SettingsMetadata',
    :'signer_must_login_to_sign' => :'String',
    :'signer_must_login_to_sign_metadata' => :'SettingsMetadata',
    :'signer_show_secure_field_initial_values' => :'String',
    :'signer_show_secure_field_initial_values_metadata' => :'SettingsMetadata',
    :'signing_session_timeout' => :'String',
    :'signing_session_timeout_metadata' => :'SettingsMetadata',
    :'signing_ui_version' => :'String',
    :'signing_ui_version_metadata' => :'SettingsMetadata',
    :'sign_time_format' => :'String',
    :'sign_time_format_metadata' => :'SettingsMetadata',
    :'sign_time_show_am_pm' => :'String',
    :'sign_time_show_am_pm_metadata' => :'SettingsMetadata',
    :'simplified_sending_enabled' => :'String',
    :'simplified_sending_enabled_metadata' => :'SettingsMetadata',
    :'single_sign_on_enabled' => :'String',
    :'single_sign_on_enabled_metadata' => :'SettingsMetadata',
    :'skip_auth_completed_envelopes' => :'String',
    :'skip_auth_completed_envelopes_metadata' => :'SettingsMetadata',
    :'social_id_recip_auth' => :'String',
    :'social_id_recip_auth_metadata' => :'SettingsMetadata',
    :'specify_document_visibility' => :'String',
    :'specify_document_visibility_metadata' => :'SettingsMetadata',
    :'start_in_advanced_correct' => :'String',
    :'start_in_advanced_correct_metadata' => :'SettingsMetadata',
    :'supplemental_documents_must_accept' => :'String',
    :'supplemental_documents_must_accept_metadata' => :'SettingsMetadata',
    :'supplemental_documents_must_read' => :'String',
    :'supplemental_documents_must_read_metadata' => :'SettingsMetadata',
    :'supplemental_documents_must_view' => :'String',
    :'supplemental_documents_must_view_metadata' => :'SettingsMetadata',
    :'suppress_certificate_enforcement' => :'String',
    :'suppress_certificate_enforcement_metadata' => :'SettingsMetadata',
    :'tab_account_settings' => :'TabAccountSettings',
    :'timezone_offset_api' => :'String',
    :'timezone_offset_api_metadata' => :'SettingsMetadata',
    :'timezone_offset_ui' => :'String',
    :'timezone_offset_ui_metadata' => :'SettingsMetadata',
    :'universal_signature_opt_in' => :'String',
    :'use_account_level_email' => :'String',
    :'use_account_level_email_metadata' => :'SettingsMetadata',
    :'use_consumer_disclosure' => :'String',
    :'use_consumer_disclosure_metadata' => :'SettingsMetadata',
    :'use_consumer_disclosure_within_account' => :'String',
    :'use_consumer_disclosure_within_account_metadata' => :'SettingsMetadata',
    :'use_derived_keys' => :'String',
    :'use_derived_keys_metadata' => :'SettingsMetadata',
    :'use_docu_sign_express_signer_certificate' => :'String',
    :'use_docu_sign_express_signer_certificate_metadata' => :'SettingsMetadata',
    :'use_multi_app_groups_data' => :'String',
    :'use_multi_app_groups_data_metadata' => :'SettingsMetadata',
    :'use_new_blob_for_pdf' => :'String',
    :'use_new_blob_for_pdf_metadata' => :'SettingsMetadata',
    :'use_safe_signer_certificates' => :'String',
    :'use_safe_signer_certificates_metadata' => :'SettingsMetadata',
    :'uses_api' => :'String',
    :'uses_api_metadata' => :'SettingsMetadata',
    :'use_signature_provider_platform' => :'String',
    :'use_signature_provider_platform_metadata' => :'SettingsMetadata',
    :'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



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
# File 'lib/docusign_esign/models/account_settings_information.rb', line 4432

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. &&
      adopt_sig_config == o.adopt_sig_config &&
       == o. &&
      advanced_correct == o.advanced_correct &&
       == o. &&
      allow_access_code_format == o.allow_access_code_format &&
       == o. &&
       == o. &&
       == o. &&
       == o. &&
       == o. &&
      allow_advanced_recipient_routing_conditional == o.allow_advanced_recipient_routing_conditional &&
       == o. &&
      allow_agent_name_email_edit == o.allow_agent_name_email_edit &&
       == o. &&
      allow_agreement_actions == o.allow_agreement_actions &&
       == o. &&
      allow_auto_nav_settings == o.allow_auto_nav_settings &&
       == o. &&
      allow_auto_tagging == o.allow_auto_tagging &&
       == o. &&
      allow_bulk_send == o.allow_bulk_send &&
       == o. &&
      allow_cd_withdraw == o.allow_cd_withdraw &&
       == o. &&
      allow_connect_http_listener_configs == o.allow_connect_http_listener_configs &&
      allow_connect_send_finish_later == o.allow_connect_send_finish_later &&
       == o. &&
      allow_consumer_disclosure_override == o.allow_consumer_disclosure_override &&
       == o. &&
      allow_data_download == o.allow_data_download &&
       == o. &&
      allow_document_disclosures == o.allow_document_disclosures &&
       == o. &&
      allow_documents_on_signed_envelopes == o.allow_documents_on_signed_envelopes &&
       == o. &&
      allow_document_visibility == o.allow_document_visibility &&
       == o. &&
      allow_e_hanko_stamps == o.allow_e_hanko_stamps &&
       == o. &&
      allow_e_note_e_original == o.allow_e_note_e_original &&
       == o. &&
      allow_envelope_correct == o.allow_envelope_correct &&
       == o. &&
      allow_envelope_custody_transfer == o.allow_envelope_custody_transfer &&
       == o. &&
      allow_envelope_custom_fields == o.allow_envelope_custom_fields &&
       == o. &&
      allow_envelope_publish_reporting == o.allow_envelope_publish_reporting &&
       == o. &&
      allow_envelope_reporting == o.allow_envelope_reporting &&
       == o. &&
      allow_expression == o.allow_expression &&
       == o. &&
      allow_express_signer_certificate == o.allow_express_signer_certificate &&
       == o. &&
      allow_extended_sending_resource_file == o.allow_extended_sending_resource_file &&
       == o. &&
      allow_external_signature_pad == o.allow_external_signature_pad &&
       == o. &&
      allow_idv_level1 == o.allow_idv_level1 &&
       == o. &&
      allow_idv_platform == o.allow_idv_platform &&
       == o. &&
      allow_in_person == o.allow_in_person &&
       == o. &&
      allow_managed_stamps == o.allow_managed_stamps &&
       == 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_organizations == o.allow_organizations &&
       == o. &&
      allow_payment_processing == o.allow_payment_processing &&
       == o. &&
      allow_personal_signer_certificate == o.allow_personal_signer_certificate &&
       == 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_reminders == o.allow_reminders &&
       == 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_security_appliance == o.allow_security_appliance &&
       == 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_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_users_to_access_directory == o.allow_users_to_access_directory &&
       == o. &&
      allow_value_insights == o.allow_value_insights &&
       == 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_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. &&
      cfr_use_wide_image == o.cfr_use_wide_image &&
       == o. &&
       == o. &&
       == o. &&
      chrome_signature_enabled == o.chrome_signature_enabled &&
       == o. &&
      comment_email_show_message_text == o.comment_email_show_message_text &&
       == o. &&
      comments_allow_envelope_override == o.comments_allow_envelope_override &&
       == o. &&
      conditional_fields_enabled == o.conditional_fields_enabled &&
       == o. &&
      consumer_disclosure_frequency == o.consumer_disclosure_frequency &&
       == o. &&
      convert_pdf_fields == o.convert_pdf_fields &&
       == o. &&
      data_population_scope == o.data_population_scope &&
       == o. &&
      disable_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. &&
      email_template_version == o.email_template_version &&
       == o. &&
      enable_access_code_generator == o.enable_access_code_generator &&
       == o. &&
      enable_advanced_payments == o.enable_advanced_payments &&
       == o. &&
      enable_advanced_power_forms == o.enable_advanced_power_forms &&
       == o. &&
      enable_auto_nav == o.enable_auto_nav &&
       == o. &&
      enable_calculated_fields == o.enable_calculated_fields &&
       == o. &&
      enable_clickwraps == o.enable_clickwraps &&
       == o. &&
      enable_comments_history_download_in_signing == o.enable_comments_history_download_in_signing &&
       == o. &&
      enable_customer_satisfaction_metric_tracking == o.enable_customer_satisfaction_metric_tracking &&
       == o. &&
      enable_ds_pro == o.enable_ds_pro &&
       == o. &&
       == o. &&
       == o. &&
      enable_envelope_stamping_by_ds_admin == o.enable_envelope_stamping_by_ds_admin &&
       == o. &&
      enable_in_browser_editor == o.enable_in_browser_editor &&
       == o. &&
      enable_payment_processing == o.enable_payment_processing &&
       == 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_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_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. &&
       == o. &&
       == o. &&
      enable_strike_through == o.enable_strike_through &&
       == o. &&
      enable_transaction_point == o.enable_transaction_point &&
       == o. &&
      enable_vaulting == o.enable_vaulting &&
       == o. &&
      enable_witnessing == o.enable_witnessing &&
       == o. &&
      enforce_template_name_uniqueness == o.enforce_template_name_uniqueness &&
       == o. &&
      envelope_integration_allowed == o.envelope_integration_allowed &&
       == o. &&
      envelope_integration_enabled == o.envelope_integration_enabled &&
       == o. &&
      envelope_stamping_default_value == o.envelope_stamping_default_value &&
       == o. &&
      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. &&
      guided_forms_html_allowed == o.guided_forms_html_allowed &&
       == o. &&
       == 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. &&
      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. &&
      maximum_signing_groups == o.maximum_signing_groups &&
       == o. &&
      maximum_users_per_signing_group == o.maximum_users_per_signing_group &&
       == o. &&
      max_number_of_custom_stamps == o.max_number_of_custom_stamps &&
      mobile_session_timeout == o.mobile_session_timeout &&
       == o. &&
      number_of_active_custom_stamps == o.number_of_active_custom_stamps &&
      opt_in_mobile_signing_v02 == o.opt_in_mobile_signing_v02 &&
       == o. &&
      opt_out_auto_nav_text_and_tab_color_updates == o.opt_out_auto_nav_text_and_tab_color_updates &&
       == o. &&
      opt_out_new_platform_seal == o.opt_out_new_platform_seal &&
       == o. &&
      phone_auth_recipient_may_provide_phone_number == o.phone_auth_recipient_may_provide_phone_number &&
       == o. &&
      pki_sign_downloaded_pdf_docs == o.pki_sign_downloaded_pdf_docs &&
       == o. &&
      recipients_can_sign_offline == o.recipients_can_sign_offline &&
       == o. &&
      recipient_signing_auto_navigation_control == o.recipient_signing_auto_navigation_control &&
       == o. &&
      require21_cf_rpt11_compliance == o.require21_cf_rpt11_compliance &&
       == o. &&
      require_decline_reason == o.require_decline_reason &&
       == o. &&
      require_external_user_management == o.require_external_user_management &&
       == o. &&
      require_signer_certificate_type == o.require_signer_certificate_type &&
       == o. &&
       == o. &&
      rsa_verid_password == o.rsa_verid_password &&
      rsa_verid_ruleset == o.rsa_verid_ruleset &&
      rsa_verid_user_id == o.rsa_verid_user_id &&
      self_signed_recipient_email_document == o.self_signed_recipient_email_document &&
       == o. &&
      self_signed_recipient_email_document_user_override == o.self_signed_recipient_email_document_user_override &&
       == o. &&
       == o. &&
       == o. &&
      sender_must_authenticate_signing == o.sender_must_authenticate_signing &&
       == o. &&
      sending_tags_font_color == o.sending_tags_font_color &&
       == o. &&
      sending_tags_font_name == o.sending_tags_font_name &&
       == o. &&
      sending_tags_font_size == o.sending_tags_font_size &&
       == o. &&
      send_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_tutorials == o.show_tutorials &&
       == o. &&
      signature_providers == o.signature_providers &&
       == o. &&
      sign_date_format == o.sign_date_format &&
       == o. &&
      signer_attach_certificate_to_envelope_pdf == o.signer_attach_certificate_to_envelope_pdf &&
       == o. &&
      signer_attach_concat == o.signer_attach_concat &&
       == o. &&
       == o. &&
       == o. &&
      signer_can_sign_on_mobile == o.signer_can_sign_on_mobile &&
       == o. &&
      signer_in_session_use_envelope_complete_email == o.signer_in_session_use_envelope_complete_email &&
       == o. &&
       == o. &&
       == o. &&
       == o. &&
       == o. &&
       == o. &&
       == o. &&
      signer_show_secure_field_initial_values == o.signer_show_secure_field_initial_values &&
       == o. &&
      signing_session_timeout == o.signing_session_timeout &&
       == o. &&
      signing_ui_version == o.signing_ui_version &&
       == o. &&
      sign_time_format == o.sign_time_format &&
       == o. &&
      sign_time_show_am_pm == o.sign_time_show_am_pm &&
       == o. &&
      simplified_sending_enabled == o.simplified_sending_enabled &&
       == o. &&
      single_sign_on_enabled == o.single_sign_on_enabled &&
       == o. &&
      skip_auth_completed_envelopes == o.skip_auth_completed_envelopes &&
       == o. &&
      social_id_recip_auth == o.social_id_recip_auth &&
       == o. &&
      specify_document_visibility == o.specify_document_visibility &&
       == o. &&
      start_in_advanced_correct == o.start_in_advanced_correct &&
       == o. &&
      supplemental_documents_must_accept == o.supplemental_documents_must_accept &&
       == o. &&
      supplemental_documents_must_read == o.supplemental_documents_must_read &&
       == o. &&
      supplemental_documents_must_view == o.supplemental_documents_must_view &&
       == o. &&
      suppress_certificate_enforcement == o.suppress_certificate_enforcement &&
       == o. &&
       == o. &&
      timezone_offset_api == o.timezone_offset_api &&
       == o. &&
      timezone_offset_ui == o.timezone_offset_ui &&
       == o. &&
      universal_signature_opt_in == o.universal_signature_opt_in &&
       == o. &&
       == o. &&
      use_consumer_disclosure == o.use_consumer_disclosure &&
       == o. &&
       == o. &&
       == o. &&
      use_derived_keys == o.use_derived_keys &&
       == o. &&
      use_docu_sign_express_signer_certificate == o.use_docu_sign_express_signer_certificate &&
       == o. &&
      use_multi_app_groups_data == o.use_multi_app_groups_data &&
       == o. &&
      use_new_blob_for_pdf == o.use_new_blob_for_pdf &&
       == o. &&
      use_safe_signer_certificates == o.use_safe_signer_certificates &&
       == o. &&
      uses_api == o.uses_api &&
       == o. &&
      use_signature_provider_platform == o.use_signature_provider_platform &&
       == o. &&
      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



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
# File 'lib/docusign_esign/models/account_settings_information.rb', line 4987

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



5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
# File 'lib/docusign_esign/models/account_settings_information.rb', line 5053

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



4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
# File 'lib/docusign_esign/models/account_settings_information.rb', line 4966

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


4953
4954
4955
# File 'lib/docusign_esign/models/account_settings_information.rb', line 4953

def eql?(o)
  self == o
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



4959
4960
4961
# File 'lib/docusign_esign/models/account_settings_information.rb', line 4959

def hash
  [access_code_format, , , , , , , adopt_sig_config, , advanced_correct, , allow_access_code_format, , , , , , allow_advanced_recipient_routing_conditional, , allow_agent_name_email_edit, , allow_agreement_actions, , allow_auto_nav_settings, , allow_auto_tagging, , allow_bulk_send, , allow_cd_withdraw, , allow_connect_http_listener_configs, allow_connect_send_finish_later, , allow_consumer_disclosure_override, , allow_data_download, , allow_document_disclosures, , allow_documents_on_signed_envelopes, , allow_document_visibility, , allow_e_hanko_stamps, , allow_e_note_e_original, , allow_envelope_correct, , allow_envelope_custody_transfer, , allow_envelope_custom_fields, , allow_envelope_publish_reporting, , allow_envelope_reporting, , allow_expression, , allow_express_signer_certificate, , allow_extended_sending_resource_file, , allow_external_signature_pad, , allow_idv_level1, , allow_idv_platform, , allow_in_person, , allow_managed_stamps, , 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_organizations, , allow_payment_processing, , allow_personal_signer_certificate, , allow_phone_authentication, , allow_phone_auth_override, , allow_private_signing_groups, , allow_reminders, , allow_resource_file_branding, , allow_safe_bio_pharma_signer_certificate, , allow_security_appliance, , 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_radio_deselect, , allow_sign_now, , allow_sms_delivery, , , , allow_supplemental_documents, , allow_users_to_access_directory, , allow_value_insights, , 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_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, , cfr_use_wide_image, , , , chrome_signature_enabled, , comment_email_show_message_text, , comments_allow_envelope_override, , conditional_fields_enabled, , consumer_disclosure_frequency, , convert_pdf_fields, , data_population_scope, , disable_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, , email_template_version, , enable_access_code_generator, , enable_advanced_payments, , enable_advanced_power_forms, , enable_auto_nav, , enable_calculated_fields, , enable_clickwraps, , enable_comments_history_download_in_signing, , enable_customer_satisfaction_metric_tracking, , enable_ds_pro, , , , enable_envelope_stamping_by_ds_admin, , enable_in_browser_editor, , enable_payment_processing, , enable_power_form, enable_power_form_direct, , , enable_recipient_domain_validation, , enable_report_links, , enable_require_sign_on_paper, , enable_reserved_domain, , enable_responsive_signing, , enable_scheduled_release, , 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_strike_through, , enable_transaction_point, , enable_vaulting, , enable_witnessing, , enforce_template_name_uniqueness, , envelope_integration_allowed, , envelope_integration_enabled, , envelope_stamping_default_value, , express_send, express_send_allow_tabs, , , external_document_sources, external_signature_pad_type, , fax_out_enabled, , guided_forms_html_allowed, , , , hide_pricing, , id_check_configurations, id_check_expire, id_check_expire_days, , , id_check_expire_minutes, , id_check_required, , identity_verification, , ignore_error_if_anchor_tab_not_found, , in_person_id_check_question, , in_person_signing_enabled, , in_session_enabled, , in_session_suppress_emails, , maximum_signing_groups, , maximum_users_per_signing_group, , max_number_of_custom_stamps, mobile_session_timeout, , number_of_active_custom_stamps, opt_in_mobile_signing_v02, , opt_out_auto_nav_text_and_tab_color_updates, , opt_out_new_platform_seal, , phone_auth_recipient_may_provide_phone_number, , pki_sign_downloaded_pdf_docs, , recipients_can_sign_offline, , recipient_signing_auto_navigation_control, , require21_cf_rpt11_compliance, , require_decline_reason, , require_external_user_management, , require_signer_certificate_type, , , rsa_verid_password, rsa_verid_ruleset, rsa_verid_user_id, self_signed_recipient_email_document, , self_signed_recipient_email_document_user_override, , , , sender_must_authenticate_signing, , sending_tags_font_color, , sending_tags_font_name, , sending_tags_font_size, , send_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_tutorials, , signature_providers, , sign_date_format, , signer_attach_certificate_to_envelope_pdf, , signer_attach_concat, , , , signer_can_sign_on_mobile, , signer_in_session_use_envelope_complete_email, , , , , , , , signer_show_secure_field_initial_values, , signing_session_timeout, , signing_ui_version, , sign_time_format, , sign_time_show_am_pm, , simplified_sending_enabled, , single_sign_on_enabled, , skip_auth_completed_envelopes, , social_id_recip_auth, , specify_document_visibility, , start_in_advanced_correct, , supplemental_documents_must_accept, , supplemental_documents_must_read, , supplemental_documents_must_view, , suppress_certificate_enforcement, , , timezone_offset_api, , timezone_offset_ui, , universal_signature_opt_in, , , use_consumer_disclosure, , , , use_derived_keys, , use_docu_sign_express_signer_certificate, , use_multi_app_groups_data, , use_new_blob_for_pdf, , use_safe_signer_certificates, , uses_api, , use_signature_provider_platform, , 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



4419
4420
4421
4422
# File 'lib/docusign_esign/models/account_settings_information.rb', line 4419

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



5033
5034
5035
# File 'lib/docusign_esign/models/account_settings_information.rb', line 5033

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



5039
5040
5041
5042
5043
5044
5045
5046
5047
# File 'lib/docusign_esign/models/account_settings_information.rb', line 5039

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



5027
5028
5029
# File 'lib/docusign_esign/models/account_settings_information.rb', line 5027

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



4426
4427
4428
# File 'lib/docusign_esign/models/account_settings_information.rb', line 4426

def valid?
  true
end