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



2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
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
# File 'lib/docusign_esign/models/account_settings_information.rb', line 2248

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?(:'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?(:'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?(:'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?(:'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?(:'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?(:'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?(:'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?(:'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?(:'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?(:'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.



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

def access_code_format
  @access_code_format
end

#account_date_time_formatObject

Returns the value of attribute account_date_time_format.



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

def 
  @account_date_time_format
end

#account_date_time_format_metadataObject

Returns the value of attribute account_date_time_format_metadata.



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

def 
  @account_date_time_format_metadata
end

#account_nameObject

Returns the value of attribute account_name.



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

def 
  @account_name
end

#account_name_metadataObject

Returns the value of attribute account_name_metadata.



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

def 
  @account_name_metadata
end

#account_notificationObject

Returns the value of attribute account_notification.



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

def 
  @account_notification
end

#account_ui_settingsObject

Returns the value of attribute account_ui_settings.



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

def 
  @account_ui_settings
end

#adopt_sig_configObject

Returns the value of attribute adopt_sig_config.



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

def adopt_sig_config
  @adopt_sig_config
end

#adopt_sig_config_metadataObject

Returns the value of attribute adopt_sig_config_metadata.



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

def 
  @adopt_sig_config_metadata
end

#advanced_correctObject

Returns the value of attribute advanced_correct.



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

def advanced_correct
  @advanced_correct
end

#advanced_correct_metadataObject

Returns the value of attribute advanced_correct_metadata.



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

def 
  @advanced_correct_metadata
end

#allow_access_code_formatObject

Returns the value of attribute allow_access_code_format.



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

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.



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

def 
  @allow_access_code_format_metadata
end

#allow_account_management_granularObject

Returns the value of attribute allow_account_management_granular.



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

def 
  @allow_account_management_granular
end

#allow_account_management_granular_metadataObject

Returns the value of attribute allow_account_management_granular_metadata.



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

def 
  @allow_account_management_granular_metadata
end

#allow_account_member_name_changeObject

Returns the value of attribute allow_account_member_name_change.



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

def 
  @allow_account_member_name_change
end

#allow_account_member_name_change_metadataObject

Returns the value of attribute allow_account_member_name_change_metadata.



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

def 
  @allow_account_member_name_change_metadata
end

#allow_advanced_recipient_routing_conditionalObject

Returns the value of attribute allow_advanced_recipient_routing_conditional.



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

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.



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

def 
  @allow_advanced_recipient_routing_conditional_metadata
end

#allow_agent_name_email_editObject

Returns the value of attribute allow_agent_name_email_edit.



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

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.



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

def 
  @allow_agent_name_email_edit_metadata
end

#allow_agreement_actionsObject

Returns the value of attribute allow_agreement_actions.



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

def allow_agreement_actions
  @allow_agreement_actions
end

#allow_agreement_actions_metadataObject

Returns the value of attribute allow_agreement_actions_metadata.



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

def 
  @allow_agreement_actions_metadata
end

#allow_auto_nav_settingsObject

Returns the value of attribute allow_auto_nav_settings.



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

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.



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

def 
  @allow_auto_nav_settings_metadata
end

#allow_auto_taggingObject

Returns the value of attribute allow_auto_tagging.



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

def allow_auto_tagging
  @allow_auto_tagging
end

#allow_auto_tagging_metadataObject

Returns the value of attribute allow_auto_tagging_metadata.



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

def 
  @allow_auto_tagging_metadata
end

#allow_bulk_sendObject

Returns the value of attribute allow_bulk_send.



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

def allow_bulk_send
  @allow_bulk_send
end

#allow_bulk_send_metadataObject

Returns the value of attribute allow_bulk_send_metadata.



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

def 
  @allow_bulk_send_metadata
end

#allow_cd_withdrawObject

Returns the value of attribute allow_cd_withdraw.



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

def allow_cd_withdraw
  @allow_cd_withdraw
end

#allow_cd_withdraw_metadataObject

Returns the value of attribute allow_cd_withdraw_metadata.



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

def 
  @allow_cd_withdraw_metadata
end

#allow_connect_http_listener_configsObject

Returns the value of attribute allow_connect_http_listener_configs.



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

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.



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

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.



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

def 
  @allow_connect_send_finish_later_metadata
end

#allow_consumer_disclosure_overrideObject

Returns the value of attribute allow_consumer_disclosure_override.



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

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.



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

def 
  @allow_consumer_disclosure_override_metadata
end

#allow_data_downloadObject

Returns the value of attribute allow_data_download.



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

def allow_data_download
  @allow_data_download
end

#allow_data_download_metadataObject

Returns the value of attribute allow_data_download_metadata.



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

def 
  @allow_data_download_metadata
end

#allow_document_disclosuresObject

Returns the value of attribute allow_document_disclosures.



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

def allow_document_disclosures
  @allow_document_disclosures
end

#allow_document_disclosures_metadataObject

Returns the value of attribute allow_document_disclosures_metadata.



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

def 
  @allow_document_disclosures_metadata
end

#allow_document_visibilityObject

Returns the value of attribute allow_document_visibility.



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

def allow_document_visibility
  @allow_document_visibility
end

#allow_document_visibility_metadataObject

Returns the value of attribute allow_document_visibility_metadata.



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

def 
  @allow_document_visibility_metadata
end

#allow_documents_on_signed_envelopesObject

Returns the value of attribute allow_documents_on_signed_envelopes.



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

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.



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

def 
  @allow_documents_on_signed_envelopes_metadata
end

#allow_e_hanko_stampsObject

Returns the value of attribute allow_e_hanko_stamps.



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

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.



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

def 
  @allow_e_hanko_stamps_metadata
end

#allow_e_note_e_originalObject

Returns the value of attribute allow_e_note_e_original.



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

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.



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

def 
  @allow_e_note_e_original_metadata
end

#allow_envelope_correctObject

Returns the value of attribute allow_envelope_correct.



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

def allow_envelope_correct
  @allow_envelope_correct
end

#allow_envelope_correct_metadataObject

Returns the value of attribute allow_envelope_correct_metadata.



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

def 
  @allow_envelope_correct_metadata
end

#allow_envelope_custody_transferObject

Returns the value of attribute allow_envelope_custody_transfer.



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

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.



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

def 
  @allow_envelope_custody_transfer_metadata
end

#allow_envelope_custom_fieldsObject

Returns the value of attribute allow_envelope_custom_fields.



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

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.



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

def 
  @allow_envelope_custom_fields_metadata
end

#allow_envelope_publish_reportingObject

Returns the value of attribute allow_envelope_publish_reporting.



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

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.



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

def 
  @allow_envelope_publish_reporting_metadata
end

#allow_envelope_reportingObject

Returns the value of attribute allow_envelope_reporting.



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

def allow_envelope_reporting
  @allow_envelope_reporting
end

#allow_envelope_reporting_metadataObject

Returns the value of attribute allow_envelope_reporting_metadata.



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

def 
  @allow_envelope_reporting_metadata
end

#allow_express_signer_certificateObject

Returns the value of attribute allow_express_signer_certificate.



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

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.



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

def 
  @allow_express_signer_certificate_metadata
end

#allow_expressionObject

Returns the value of attribute allow_expression.



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

def allow_expression
  @allow_expression
end

#allow_expression_metadataObject

Returns the value of attribute allow_expression_metadata.



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

def 
  @allow_expression_metadata
end

#allow_extended_sending_resource_fileObject

Returns the value of attribute allow_extended_sending_resource_file.



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

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.



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

def 
  @allow_extended_sending_resource_file_metadata
end

#allow_external_signature_padObject

Returns the value of attribute allow_external_signature_pad.



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

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.



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

def 
  @allow_external_signature_pad_metadata
end

#allow_idv_level1Object

Returns the value of attribute allow_idv_level1.



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

def allow_idv_level1
  @allow_idv_level1
end

#allow_idv_level1_metadataObject

Returns the value of attribute allow_idv_level1_metadata.



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

def 
  @allow_idv_level1_metadata
end

#allow_idv_platformObject

Returns the value of attribute allow_idv_platform.



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

def allow_idv_platform
  @allow_idv_platform
end

#allow_idv_platform_metadataObject

Returns the value of attribute allow_idv_platform_metadata.



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

def 
  @allow_idv_platform_metadata
end

#allow_in_personObject

When set to true, the account allows In Person Signing. Permission required: SysAdmin



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

def allow_in_person
  @allow_in_person
end

#allow_in_person_metadataObject

Returns the value of attribute allow_in_person_metadata.



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

def 
  @allow_in_person_metadata
end

#allow_managed_stampsObject

Returns the value of attribute allow_managed_stamps.



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

def allow_managed_stamps
  @allow_managed_stamps
end

#allow_managed_stamps_metadataObject

Returns the value of attribute allow_managed_stamps_metadata.



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

def 
  @allow_managed_stamps_metadata
end

#allow_markupObject

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



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

def allow_markup
  @allow_markup
end

#allow_markup_metadataObject

Returns the value of attribute allow_markup_metadata.



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

def 
  @allow_markup_metadata
end

#allow_member_time_zoneObject

Returns the value of attribute allow_member_time_zone.



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

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.



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

def 
  @allow_member_time_zone_metadata
end

#allow_merge_fieldsObject

Returns the value of attribute allow_merge_fields.



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

def allow_merge_fields
  @allow_merge_fields
end

#allow_merge_fields_metadataObject

Returns the value of attribute allow_merge_fields_metadata.



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

def 
  @allow_merge_fields_metadata
end

#allow_multiple_brand_profilesObject

Returns the value of attribute allow_multiple_brand_profiles.



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

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.



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

def 
  @allow_multiple_brand_profiles_metadata
end

#allow_multiple_signer_attachmentsObject

Returns the value of attribute allow_multiple_signer_attachments.



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

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.



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

def 
  @allow_multiple_signer_attachments_metadata
end

#allow_non_us_phone_authObject

Returns the value of attribute allow_non_us_phone_auth.



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

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.



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

def 
  @allow_non_us_phone_auth_metadata
end

#allow_offline_signingObject

When set to true, the account can use Offline Signing and envelopes signed using offline signing on mobile devices are synchronized with this account. This option and the ‘inSessionEnabled` property must both be set to true for a caller to use offline signing. Permission required: Admin



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

def allow_offline_signing
  @allow_offline_signing
end

#allow_offline_signing_metadataObject

Returns the value of attribute allow_offline_signing_metadata.



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

def 
  @allow_offline_signing_metadata
end

#allow_open_trust_signer_certificateObject

When set to true, senders are allowed to use the OpenTrust digital signatures. Permission required: Admin



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

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.



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

def 
  @allow_open_trust_signer_certificate_metadata
end

#allow_organizationsObject

Returns the value of attribute allow_organizations.



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

def allow_organizations
  @allow_organizations
end

#allow_organizations_metadataObject

Returns the value of attribute allow_organizations_metadata.



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

def 
  @allow_organizations_metadata
end

#allow_payment_processingObject

Returns the value of attribute allow_payment_processing.



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

def allow_payment_processing
  @allow_payment_processing
end

#allow_payment_processing_metadataObject

Returns the value of attribute allow_payment_processing_metadata.



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

def 
  @allow_payment_processing_metadata
end

#allow_personal_signer_certificateObject

Returns the value of attribute allow_personal_signer_certificate.



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

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.



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

def 
  @allow_personal_signer_certificate_metadata
end

#allow_phone_auth_overrideObject

Returns the value of attribute allow_phone_auth_override.



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

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.



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

def 
  @allow_phone_auth_override_metadata
end

#allow_phone_authenticationObject

Returns the value of attribute allow_phone_authentication.



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

def allow_phone_authentication
  @allow_phone_authentication
end

#allow_phone_authentication_metadataObject

Returns the value of attribute allow_phone_authentication_metadata.



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

def 
  @allow_phone_authentication_metadata
end

#allow_private_signing_groupsObject

Returns the value of attribute allow_private_signing_groups.



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

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.



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

def 
  @allow_private_signing_groups_metadata
end

#allow_remindersObject

Returns the value of attribute allow_reminders.



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

def allow_reminders
  @allow_reminders
end

#allow_reminders_metadataObject

Returns the value of attribute allow_reminders_metadata.



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

def 
  @allow_reminders_metadata
end

#allow_resource_file_brandingObject

Returns the value of attribute allow_resource_file_branding.



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

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.



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

def 
  @allow_resource_file_branding_metadata
end

#allow_safe_bio_pharma_signer_certificateObject

When set to true, senders are allowed to use the SAFE BioPharma digital signatures. Permission required: Admin



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

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.



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

def 
  @allow_safe_bio_pharma_signer_certificate_metadata
end

#allow_security_applianceObject

Returns the value of attribute allow_security_appliance.



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

def allow_security_appliance
  @allow_security_appliance
end

#allow_security_appliance_metadataObject

Returns the value of attribute allow_security_appliance_metadata.



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

def 
  @allow_security_appliance_metadata
end

#allow_send_to_certified_deliveryObject

Returns the value of attribute allow_send_to_certified_delivery.



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

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.



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

def 
  @allow_send_to_certified_delivery_metadata
end

#allow_send_to_intermediaryObject

Returns the value of attribute allow_send_to_intermediary.



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

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.



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

def 
  @allow_send_to_intermediary_metadata
end

#allow_server_templatesObject

Returns the value of attribute allow_server_templates.



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

def allow_server_templates
  @allow_server_templates
end

#allow_server_templates_metadataObject

Returns the value of attribute allow_server_templates_metadata.



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

def 
  @allow_server_templates_metadata
end

#allow_shared_tabsObject

When set to true, the account allows users to share custom tags (fields). #### Note: This setting is only shown when getting account settings. It cannot be modified. Permission required: Admin



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

def allow_shared_tabs
  @allow_shared_tabs
end

#allow_shared_tabs_metadataObject

Returns the value of attribute allow_shared_tabs_metadata.



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

def 
  @allow_shared_tabs_metadata
end

#allow_sign_document_from_home_pageObject

Returns the value of attribute allow_sign_document_from_home_page.



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

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.



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

def 
  @allow_sign_document_from_home_page_metadata
end

#allow_sign_nowObject

Returns the value of attribute allow_sign_now.



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

def allow_sign_now
  @allow_sign_now
end

#allow_sign_now_metadataObject

Returns the value of attribute allow_sign_now_metadata.



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

def 
  @allow_sign_now_metadata
end

#allow_signature_stampsObject

Returns the value of attribute allow_signature_stamps.



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

def allow_signature_stamps
  @allow_signature_stamps
end

#allow_signature_stamps_metadataObject

Returns the value of attribute allow_signature_stamps_metadata.



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

def 
  @allow_signature_stamps_metadata
end

#allow_signer_reassignObject

When set to true, the account allows signers to reassign an envelope. Permission required: Admin



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

def allow_signer_reassign
  @allow_signer_reassign
end

#allow_signer_reassign_metadataObject

Returns the value of attribute allow_signer_reassign_metadata.



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

def 
  @allow_signer_reassign_metadata
end

#allow_signer_reassign_overrideObject

Returns the value of attribute allow_signer_reassign_override.



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

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.



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

def 
  @allow_signer_reassign_override_metadata
end

#allow_signing_extensionsObject

Returns the value of attribute allow_signing_extensions.



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

def allow_signing_extensions
  @allow_signing_extensions
end

#allow_signing_extensions_metadataObject

Returns the value of attribute allow_signing_extensions_metadata.



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

def 
  @allow_signing_extensions_metadata
end

#allow_signing_groupsObject

Returns the value of attribute allow_signing_groups.



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

def allow_signing_groups
  @allow_signing_groups
end

#allow_signing_groups_metadataObject

Returns the value of attribute allow_signing_groups_metadata.



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

def 
  @allow_signing_groups_metadata
end

#allow_signing_radio_deselectObject

Returns the value of attribute allow_signing_radio_deselect.



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

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.



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

def 
  @allow_signing_radio_deselect_metadata
end

#allow_social_id_loginObject

Returns the value of attribute allow_social_id_login.



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

def 
  @allow_social_id_login
end

#allow_social_id_login_metadataObject

Returns the value of attribute allow_social_id_login_metadata.



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

def 
  @allow_social_id_login_metadata
end

#allow_supplemental_documentsObject

Returns the value of attribute allow_supplemental_documents.



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

def allow_supplemental_documents
  @allow_supplemental_documents
end

#allow_supplemental_documents_metadataObject

Returns the value of attribute allow_supplemental_documents_metadata.



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

def 
  @allow_supplemental_documents_metadata
end

#anchor_population_scopeObject

Returns the value of attribute anchor_population_scope.



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

def anchor_population_scope
  @anchor_population_scope
end

#anchor_population_scope_metadataObject

Returns the value of attribute anchor_population_scope_metadata.



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

def 
  @anchor_population_scope_metadata
end

#anchor_tag_versioned_placement_enabledObject

Returns the value of attribute anchor_tag_versioned_placement_enabled.



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

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.



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

def 
  @anchor_tag_versioned_placement_metadata_enabled
end

#attach_completed_envelopeObject

When set to true, envelope documents are included as a PDF file attachment for signing completed emails. Permission required: Admin



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

def attach_completed_envelope
  @attach_completed_envelope
end

#attach_completed_envelope_metadataObject

Returns the value of attribute attach_completed_envelope_metadata.



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

def 
  @attach_completed_envelope_metadata
end

#authentication_checkObject

Returns the value of attribute authentication_check.



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

def authentication_check
  @authentication_check
end

#authentication_check_metadataObject

Returns the value of attribute authentication_check_metadata.



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

def 
  @authentication_check_metadata
end

#auto_nav_ruleObject

Specifies the auto-navigation rule for the account. Enumeration values are: Off, RequiredFields, RequiredAndBlankFields, AllFields, PageThenRequiredFields, PageThenRequiredAndBlankFields, PageThenAllFields. Permission required: Admin



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

def auto_nav_rule
  @auto_nav_rule
end

#auto_nav_rule_metadataObject

Returns the value of attribute auto_nav_rule_metadata.



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

def 
  @auto_nav_rule_metadata
end

#auto_provision_signer_accountObject

Returns the value of attribute auto_provision_signer_account.



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

def 
  @auto_provision_signer_account
end

#auto_provision_signer_account_metadataObject

Returns the value of attribute auto_provision_signer_account_metadata.



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

def 
  @auto_provision_signer_account_metadata
end

#bcc_email_archiveObject

Returns the value of attribute bcc_email_archive.



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

def bcc_email_archive
  @bcc_email_archive
end

#bcc_email_archive_metadataObject

Returns the value of attribute bcc_email_archive_metadata.



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

def 
  @bcc_email_archive_metadata
end

#beta_switch_configurationObject

Returns the value of attribute beta_switch_configuration.



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

def beta_switch_configuration
  @beta_switch_configuration
end

#beta_switch_configuration_metadataObject

Returns the value of attribute beta_switch_configuration_metadata.



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

def 
  @beta_switch_configuration_metadata
end

#billing_addressObject

Returns the value of attribute billing_address.



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

def billing_address
  @billing_address
end

#billing_address_metadataObject

Returns the value of attribute billing_address_metadata.



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

def 
  @billing_address_metadata
end

#bulk_sendObject

Returns the value of attribute bulk_send.



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

def bulk_send
  @bulk_send
end

#bulk_send_metadataObject

Returns the value of attribute bulk_send_metadata.



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

def 
  @bulk_send_metadata
end

#can_self_brand_sendObject

Returns the value of attribute can_self_brand_send.



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

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.



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

def 
  @can_self_brand_send_metadata
end

#can_self_brand_signObject

Returns the value of attribute can_self_brand_sign.



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

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.



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

def 
  @can_self_brand_sign_metadata
end

#capture_voice_recordingObject

Returns the value of attribute capture_voice_recording.



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

def capture_voice_recording
  @capture_voice_recording
end

#capture_voice_recording_metadataObject

Returns the value of attribute capture_voice_recording_metadata.



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

def 
  @capture_voice_recording_metadata
end

#cfr_use_wide_imageObject

Returns the value of attribute cfr_use_wide_image.



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

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.



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

def 
  @cfr_use_wide_image_metadata
end

#check_for_multiple_admins_on_accountObject

Returns the value of attribute check_for_multiple_admins_on_account.



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

def 
  @check_for_multiple_admins_on_account
end

#check_for_multiple_admins_on_account_metadataObject

Returns the value of attribute check_for_multiple_admins_on_account_metadata.



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

def 
  @check_for_multiple_admins_on_account_metadata
end

#chrome_signature_enabledObject

Returns the value of attribute chrome_signature_enabled.



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

def chrome_signature_enabled
  @chrome_signature_enabled
end

#chrome_signature_enabled_metadataObject

Returns the value of attribute chrome_signature_enabled_metadata.



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

def 
  @chrome_signature_enabled_metadata
end

#comment_email_show_message_textObject

Returns the value of attribute comment_email_show_message_text.



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

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.



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

def 
  @comment_email_show_message_text_metadata
end

#comments_allow_envelope_overrideObject

Returns the value of attribute comments_allow_envelope_override.



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

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.



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

def 
  @comments_allow_envelope_override_metadata
end

#conditional_fields_enabledObject

Returns the value of attribute conditional_fields_enabled.



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

def conditional_fields_enabled
  @conditional_fields_enabled
end

#conditional_fields_enabled_metadataObject

Returns the value of attribute conditional_fields_enabled_metadata.



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

def 
  @conditional_fields_enabled_metadata
end

#consumer_disclosure_frequencyObject

Returns the value of attribute consumer_disclosure_frequency.



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

def consumer_disclosure_frequency
  @consumer_disclosure_frequency
end

#consumer_disclosure_frequency_metadataObject

Returns the value of attribute consumer_disclosure_frequency_metadata.



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

def 
  @consumer_disclosure_frequency_metadata
end

#convert_pdf_fieldsObject

Returns the value of attribute convert_pdf_fields.



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

def convert_pdf_fields
  @convert_pdf_fields
end

#convert_pdf_fields_metadataObject

Returns the value of attribute convert_pdf_fields_metadata.



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

def 
  @convert_pdf_fields_metadata
end

#data_population_scopeObject

Returns the value of attribute data_population_scope.



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

def data_population_scope
  @data_population_scope
end

#data_population_scope_metadataObject

Returns the value of attribute data_population_scope_metadata.



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

def 
  @data_population_scope_metadata
end

#disable_mobile_appObject

Returns the value of attribute disable_mobile_app.



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

def disable_mobile_app
  @disable_mobile_app
end

#disable_mobile_app_metadataObject

Returns the value of attribute disable_mobile_app_metadata.



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

def 
  @disable_mobile_app_metadata
end

#disable_mobile_push_notificationsObject

Returns the value of attribute disable_mobile_push_notifications.



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

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.



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

def 
  @disable_mobile_push_notifications_metadata
end

#disable_mobile_sendingObject

Returns the value of attribute disable_mobile_sending.



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

def disable_mobile_sending
  @disable_mobile_sending
end

#disable_mobile_sending_metadataObject

Returns the value of attribute disable_mobile_sending_metadata.



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

def 
  @disable_mobile_sending_metadata
end

#disable_multiple_sessionsObject

Returns the value of attribute disable_multiple_sessions.



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

def disable_multiple_sessions
  @disable_multiple_sessions
end

#disable_multiple_sessions_metadataObject

Returns the value of attribute disable_multiple_sessions_metadata.



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

def 
  @disable_multiple_sessions_metadata
end

#disable_purge_notifications_for_sender_metadataObject

Returns the value of attribute disable_purge_notifications_for_sender_metadata.



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

def 
  @disable_purge_notifications_for_sender_metadata
end

#disable_signer_cert_viewObject

Returns the value of attribute disable_signer_cert_view.



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

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.



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

def 
  @disable_signer_cert_view_metadata
end

#disable_signer_history_viewObject

Returns the value of attribute disable_signer_history_view.



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

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.



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

def 
  @disable_signer_history_view_metadata
end

#disable_style_signatureObject

Returns the value of attribute disable_style_signature.



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

def disable_style_signature
  @disable_style_signature
end

#disable_style_signature_metadataObject

Returns the value of attribute disable_style_signature_metadata.



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

def 
  @disable_style_signature_metadata
end

#disable_upload_signatureObject

When set to true, signers cannot use the upload signature/initials image option when signing a document. Permission required: Admin



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

def disable_upload_signature
  @disable_upload_signature
end

#disable_upload_signature_metadataObject

Returns the value of attribute disable_upload_signature_metadata.



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

def 
  @disable_upload_signature_metadata
end

#disable_user_sharingObject

Returns the value of attribute disable_user_sharing.



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

def disable_user_sharing
  @disable_user_sharing
end

#disable_user_sharing_metadataObject

Returns the value of attribute disable_user_sharing_metadata.



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

def 
  @disable_user_sharing_metadata
end

#display_beta_switchObject

Returns the value of attribute display_beta_switch.



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

def display_beta_switch
  @display_beta_switch
end

#display_beta_switch_metadataObject

Returns the value of attribute display_beta_switch_metadata.



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

def 
  @display_beta_switch_metadata
end

#document_conversion_restrictionsObject

Returns the value of attribute document_conversion_restrictions.



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

def document_conversion_restrictions
  @document_conversion_restrictions
end

#document_conversion_restrictions_metadataObject

Returns the value of attribute document_conversion_restrictions_metadata.



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

def 
  @document_conversion_restrictions_metadata
end

#document_retentionObject

Returns the value of attribute document_retention.



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

def document_retention
  @document_retention
end

#document_retention_metadataObject

Returns the value of attribute document_retention_metadata.



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

def 
  @document_retention_metadata
end

#document_retention_purge_tabsObject

Returns the value of attribute document_retention_purge_tabs.



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

def document_retention_purge_tabs
  @document_retention_purge_tabs
end

#document_visibilityObject

Returns the value of attribute document_visibility.



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

def document_visibility
  @document_visibility
end

#document_visibility_metadataObject

Returns the value of attribute document_visibility_metadata.



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

def 
  @document_visibility_metadata
end

#email_template_versionObject

Returns the value of attribute email_template_version.



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

def email_template_version
  @email_template_version
end

#email_template_version_metadataObject

Returns the value of attribute email_template_version_metadata.



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

def 
  @email_template_version_metadata
end

#enable_access_code_generatorObject

Returns the value of attribute enable_access_code_generator.



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

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.



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

def 
  @enable_access_code_generator_metadata
end

#enable_advanced_paymentsObject

Returns the value of attribute enable_advanced_payments.



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

def enable_advanced_payments
  @enable_advanced_payments
end

#enable_advanced_payments_metadataObject

Returns the value of attribute enable_advanced_payments_metadata.



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

def 
  @enable_advanced_payments_metadata
end

#enable_advanced_power_formsObject

Returns the value of attribute enable_advanced_power_forms.



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

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.



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

def 
  @enable_advanced_power_forms_metadata
end

#enable_auto_navObject

Returns the value of attribute enable_auto_nav.



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

def enable_auto_nav
  @enable_auto_nav
end

#enable_auto_nav_metadataObject

Returns the value of attribute enable_auto_nav_metadata.



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

def 
  @enable_auto_nav_metadata
end

#enable_calculated_fieldsObject

Returns the value of attribute enable_calculated_fields.



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

def enable_calculated_fields
  @enable_calculated_fields
end

#enable_calculated_fields_metadataObject

Returns the value of attribute enable_calculated_fields_metadata.



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

def 
  @enable_calculated_fields_metadata
end

#enable_clickwrapsObject

Returns the value of attribute enable_clickwraps.



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

def enable_clickwraps
  @enable_clickwraps
end

#enable_clickwraps_metadataObject

Returns the value of attribute enable_clickwraps_metadata.



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

def 
  @enable_clickwraps_metadata
end

#enable_customer_satisfaction_metric_trackingObject

Returns the value of attribute enable_customer_satisfaction_metric_tracking.



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

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.



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

def 
  @enable_customer_satisfaction_metric_tracking_metadata
end

#enable_ds_proObject

Returns the value of attribute enable_ds_pro.



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

def enable_ds_pro
  @enable_ds_pro
end

#enable_ds_pro_metadataObject

Returns the value of attribute enable_ds_pro_metadata.



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

def 
  @enable_ds_pro_metadata
end

#enable_envelope_stamping_by_account_adminObject

Returns the value of attribute enable_envelope_stamping_by_account_admin.



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

def 
  @enable_envelope_stamping_by_account_admin
end

#enable_envelope_stamping_by_account_admin_metadataObject

Returns the value of attribute enable_envelope_stamping_by_account_admin_metadata.



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

def 
  @enable_envelope_stamping_by_account_admin_metadata
end

#enable_envelope_stamping_by_ds_adminObject

Returns the value of attribute enable_envelope_stamping_by_ds_admin.



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

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.



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

def 
  @enable_envelope_stamping_by_ds_admin_metadata
end

#enable_payment_processingObject

Returns the value of attribute enable_payment_processing.



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

def enable_payment_processing
  @enable_payment_processing
end

#enable_payment_processing_metadataObject

Returns the value of attribute enable_payment_processing_metadata.



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

def 
  @enable_payment_processing_metadata
end

#enable_power_formObject

Returns the value of attribute enable_power_form.



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

def enable_power_form
  @enable_power_form
end

#enable_power_form_directObject

Returns the value of attribute enable_power_form_direct.



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

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.



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

def 
  @enable_power_form_direct_metadata
end

#enable_power_form_metadataObject

Returns the value of attribute enable_power_form_metadata.



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

def 
  @enable_power_form_metadata
end

#enable_recipient_domain_validationObject

Returns the value of attribute enable_recipient_domain_validation.



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

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.



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

def 
  @enable_recipient_domain_validation_metadata
end

Returns the value of attribute enable_report_links.



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

def enable_report_links
  @enable_report_links
end

Returns the value of attribute enable_report_links_metadata.



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

def 
  @enable_report_links_metadata
end

#enable_require_sign_on_paperObject

Returns the value of attribute enable_require_sign_on_paper.



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

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.



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

def 
  @enable_require_sign_on_paper_metadata
end

#enable_reserved_domainObject

Returns the value of attribute enable_reserved_domain.



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

def enable_reserved_domain
  @enable_reserved_domain
end

#enable_reserved_domain_metadataObject

Returns the value of attribute enable_reserved_domain_metadata.



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

def 
  @enable_reserved_domain_metadata
end

#enable_responsive_signingObject

Returns the value of attribute enable_responsive_signing.



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

def enable_responsive_signing
  @enable_responsive_signing
end

#enable_responsive_signing_metadataObject

Returns the value of attribute enable_responsive_signing_metadata.



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

def 
  @enable_responsive_signing_metadata
end

#enable_scheduled_releaseObject

Returns the value of attribute enable_scheduled_release.



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

def enable_scheduled_release
  @enable_scheduled_release
end

#enable_scheduled_release_metadataObject

Returns the value of attribute enable_scheduled_release_metadata.



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

def 
  @enable_scheduled_release_metadata
end

#enable_send_to_agentObject

Returns the value of attribute enable_send_to_agent.



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

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.



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

def 
  @enable_send_to_agent_metadata
end

#enable_send_to_intermediaryObject

Returns the value of attribute enable_send_to_intermediary.



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

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.



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

def 
  @enable_send_to_intermediary_metadata
end

#enable_send_to_manageObject

Returns the value of attribute enable_send_to_manage.



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

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.



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

def 
  @enable_send_to_manage_metadata
end

#enable_sending_tags_font_settingsObject

Returns the value of attribute enable_sending_tags_font_settings.



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

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.



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

def 
  @enable_sending_tags_font_settings_metadata
end

#enable_sequential_signing_apiObject

Returns the value of attribute enable_sequential_signing_api.



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

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.



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

def 
  @enable_sequential_signing_api_metadata
end

#enable_sequential_signing_uiObject

Returns the value of attribute enable_sequential_signing_ui.



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

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.



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

def 
  @enable_sequential_signing_ui_metadata
end

#enable_sign_on_paperObject

Returns the value of attribute enable_sign_on_paper.



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

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.



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

def 
  @enable_sign_on_paper_metadata
end

#enable_sign_on_paper_overrideObject

Returns the value of attribute enable_sign_on_paper_override.



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

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.



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

def 
  @enable_sign_on_paper_override_metadata
end

#enable_sign_with_notaryObject

Returns the value of attribute enable_sign_with_notary.



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

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.



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

def 
  @enable_sign_with_notary_metadata
end

#enable_signer_attachmentsObject

Returns the value of attribute enable_signer_attachments.



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

def enable_signer_attachments
  @enable_signer_attachments
end

#enable_signer_attachments_metadataObject

Returns the value of attribute enable_signer_attachments_metadata.



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

def 
  @enable_signer_attachments_metadata
end

#enable_signing_extension_commentsObject

Returns the value of attribute enable_signing_extension_comments.



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

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.



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

def 
  @enable_signing_extension_comments_metadata
end

#enable_signing_extension_conversationsObject

Returns the value of attribute enable_signing_extension_conversations.



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

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.



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

def 
  @enable_signing_extension_conversations_metadata
end

#enable_signing_order_settings_for_accountObject

Returns the value of attribute enable_signing_order_settings_for_account.



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

def 
  @enable_signing_order_settings_for_account
end

#enable_signing_order_settings_for_account_metadataObject

Returns the value of attribute enable_signing_order_settings_for_account_metadata.



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

def 
  @enable_signing_order_settings_for_account_metadata
end

#enable_smart_contractsObject

Returns the value of attribute enable_smart_contracts.



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

def enable_smart_contracts
  @enable_smart_contracts
end

#enable_smart_contracts_metadataObject

Returns the value of attribute enable_smart_contracts_metadata.



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

def 
  @enable_smart_contracts_metadata
end

#enable_sms_authenticationObject

Returns the value of attribute enable_sms_authentication.



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

def enable_sms_authentication
  @enable_sms_authentication
end

#enable_sms_authentication_metadataObject

Returns the value of attribute enable_sms_authentication_metadata.



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

def 
  @enable_sms_authentication_metadata
end

#enable_social_id_loginObject

Returns the value of attribute enable_social_id_login.



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

def 
  @enable_social_id_login
end

#enable_social_id_login_metadataObject

Returns the value of attribute enable_social_id_login_metadata.



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

def 
  @enable_social_id_login_metadata
end

#enable_strike_throughObject

Returns the value of attribute enable_strike_through.



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

def enable_strike_through
  @enable_strike_through
end

#enable_strike_through_metadataObject

Returns the value of attribute enable_strike_through_metadata.



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

def 
  @enable_strike_through_metadata
end

#enable_transaction_pointObject

Returns the value of attribute enable_transaction_point.



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

def enable_transaction_point
  @enable_transaction_point
end

#enable_transaction_point_metadataObject

Returns the value of attribute enable_transaction_point_metadata.



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

def 
  @enable_transaction_point_metadata
end

#enable_vaultingObject

Returns the value of attribute enable_vaulting.



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

def enable_vaulting
  @enable_vaulting
end

#enable_vaulting_metadataObject

Returns the value of attribute enable_vaulting_metadata.



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

def 
  @enable_vaulting_metadata
end

#enable_witnessingObject

Returns the value of attribute enable_witnessing.



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

def enable_witnessing
  @enable_witnessing
end

#enable_witnessing_metadataObject

Returns the value of attribute enable_witnessing_metadata.



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

def 
  @enable_witnessing_metadata
end

#enforce_template_name_uniquenessObject

Returns the value of attribute enforce_template_name_uniqueness.



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

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.



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

def 
  @enforce_template_name_uniqueness_metadata
end

#envelope_integration_allowedObject

Returns the value of attribute envelope_integration_allowed.



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

def envelope_integration_allowed
  @envelope_integration_allowed
end

#envelope_integration_allowed_metadataObject

Returns the value of attribute envelope_integration_allowed_metadata.



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

def 
  @envelope_integration_allowed_metadata
end

#envelope_integration_enabledObject

Returns the value of attribute envelope_integration_enabled.



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

def envelope_integration_enabled
  @envelope_integration_enabled
end

#envelope_integration_enabled_metadataObject

Returns the value of attribute envelope_integration_enabled_metadata.



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

def 
  @envelope_integration_enabled_metadata
end

#envelope_stamping_default_valueObject

Returns the value of attribute envelope_stamping_default_value.



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

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.



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

def 
  @envelope_stamping_default_value_metadata
end

#express_sendObject

Returns the value of attribute express_send.



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

def express_send
  @express_send
end

#express_send_allow_tabsObject

Returns the value of attribute express_send_allow_tabs.



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

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.



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

def 
  @express_send_allow_tabs_metadata
end

#express_send_metadataObject

Returns the value of attribute express_send_metadata.



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

def 
  @express_send_metadata
end

#external_document_sourcesObject

Returns the value of attribute external_document_sources.



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

def external_document_sources
  @external_document_sources
end

#external_signature_pad_typeObject

Returns the value of attribute external_signature_pad_type.



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

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.



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

def 
  @external_signature_pad_type_metadata
end

#fax_out_enabledObject

Returns the value of attribute fax_out_enabled.



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

def fax_out_enabled
  @fax_out_enabled
end

#fax_out_enabled_metadataObject

Returns the value of attribute fax_out_enabled_metadata.



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

def 
  @fax_out_enabled_metadata
end

#guided_forms_html_allowedObject

Returns the value of attribute guided_forms_html_allowed.



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

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.



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

def 
  @guided_forms_html_allowed_metadata
end

#hide_account_address_in_co_cObject

Returns the value of attribute hide_account_address_in_co_c.



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

def 
  @hide_account_address_in_co_c
end

#hide_account_address_in_co_c_metadataObject

Returns the value of attribute hide_account_address_in_co_c_metadata.



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

def 
  @hide_account_address_in_co_c_metadata
end

#hide_pricingObject

Returns the value of attribute hide_pricing.



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

def hide_pricing
  @hide_pricing
end

#hide_pricing_metadataObject

Returns the value of attribute hide_pricing_metadata.



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

def 
  @hide_pricing_metadata
end

#id_check_configurationsObject

Returns the value of attribute id_check_configurations.



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

def id_check_configurations
  @id_check_configurations
end

#id_check_expireObject

Returns the value of attribute id_check_expire.



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

def id_check_expire
  @id_check_expire
end

#id_check_expire_daysObject

Returns the value of attribute id_check_expire_days.



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

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.



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

def 
  @id_check_expire_days_metadata
end

#id_check_expire_metadataObject

Returns the value of attribute id_check_expire_metadata.



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

def 
  @id_check_expire_metadata
end

#id_check_expire_minutesObject

Returns the value of attribute id_check_expire_minutes.



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

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.



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

def 
  @id_check_expire_minutes_metadata
end

#id_check_requiredObject

Returns the value of attribute id_check_required.



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

def id_check_required
  @id_check_required
end

#id_check_required_metadataObject

Returns the value of attribute id_check_required_metadata.



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

def 
  @id_check_required_metadata
end

#identity_verificationObject

Returns the value of attribute identity_verification.



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

def identity_verification
  @identity_verification
end

#identity_verification_metadataObject

Returns the value of attribute identity_verification_metadata.



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

def 
  @identity_verification_metadata
end

#ignore_error_if_anchor_tab_not_foundObject

Returns the value of attribute ignore_error_if_anchor_tab_not_found.



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

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.



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

def 
  @ignore_error_if_anchor_tab_not_found_metadata_enabled
end

#in_person_id_check_questionObject

Returns the value of attribute in_person_id_check_question.



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

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.



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

def 
  @in_person_id_check_question_metadata
end

#in_person_signing_enabledObject

Returns the value of attribute in_person_signing_enabled.



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

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.



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

def 
  @in_person_signing_enabled_metadata
end

#in_session_enabledObject

Returns the value of attribute in_session_enabled.



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

def in_session_enabled
  @in_session_enabled
end

#in_session_enabled_metadataObject

Returns the value of attribute in_session_enabled_metadata.



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

def 
  @in_session_enabled_metadata
end

#in_session_suppress_emailsObject

Returns the value of attribute in_session_suppress_emails.



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

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.



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

def 
  @in_session_suppress_emails_metadata
end

#max_number_of_custom_stampsObject

Returns the value of attribute max_number_of_custom_stamps.



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

def max_number_of_custom_stamps
  @max_number_of_custom_stamps
end

#maximum_signing_groupsObject

Returns the value of attribute maximum_signing_groups.



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

def maximum_signing_groups
  @maximum_signing_groups
end

#maximum_signing_groups_metadataObject

Returns the value of attribute maximum_signing_groups_metadata.



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

def 
  @maximum_signing_groups_metadata
end

#maximum_users_per_signing_groupObject

Returns the value of attribute maximum_users_per_signing_group.



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

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.



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

def 
  @maximum_users_per_signing_group_metadata
end

#mobile_session_timeoutObject

Returns the value of attribute mobile_session_timeout.



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

def mobile_session_timeout
  @mobile_session_timeout
end

#mobile_session_timeout_metadataObject

Returns the value of attribute mobile_session_timeout_metadata.



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

def 
  @mobile_session_timeout_metadata
end

#number_of_active_custom_stampsObject

Returns the value of attribute number_of_active_custom_stamps.



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

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.



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

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.



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

def 
  @opt_in_mobile_signing_v02_metadata
end

#opt_out_auto_nav_text_and_tab_color_updatesObject

Returns the value of attribute opt_out_auto_nav_text_and_tab_color_updates.



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

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.



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

def 
  @opt_out_auto_nav_text_and_tab_color_updates_metadata
end

#opt_out_new_platform_sealObject

Returns the value of attribute opt_out_new_platform_seal.



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

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.



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

def 
  @opt_out_new_platform_seal_platform_metadata
end

#phone_auth_recipient_may_provide_phone_numberObject

Returns the value of attribute phone_auth_recipient_may_provide_phone_number.



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

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.



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

def 
  @phone_auth_recipient_may_provide_phone_number_metadata
end

#pki_sign_downloaded_pdf_docsObject

Returns the value of attribute pki_sign_downloaded_pdf_docs.



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

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.



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

def 
  @pki_sign_downloaded_pdf_docs_metadata
end

#recipient_signing_auto_navigation_controlObject

Returns the value of attribute recipient_signing_auto_navigation_control.



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

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.



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

def 
  @recipient_signing_auto_navigation_control_metadata
end

#recipients_can_sign_offlineObject

Returns the value of attribute recipients_can_sign_offline.



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

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.



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

def 
  @recipients_can_sign_offline_metadata
end

#require21_cf_rpt11_complianceObject

Returns the value of attribute require21_cf_rpt11_compliance.



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

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.



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

def 
  @require21_cf_rpt11_compliance_metadata
end

#require_decline_reasonObject

Returns the value of attribute require_decline_reason.



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

def require_decline_reason
  @require_decline_reason
end

#require_decline_reason_metadataObject

Returns the value of attribute require_decline_reason_metadata.



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

def 
  @require_decline_reason_metadata
end

#require_external_user_managementObject

Returns the value of attribute require_external_user_management.



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

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.



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

def 
  @require_external_user_management_metadata
end

#require_signer_certificate_typeObject

Returns the value of attribute require_signer_certificate_type.



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

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.



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

def 
  @require_signer_certificate_type_metadata
end

#rsa_verid_account_nameObject

Returns the value of attribute rsa_verid_account_name.



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

def 
  @rsa_verid_account_name
end

#rsa_verid_passwordObject

Returns the value of attribute rsa_verid_password.



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

def rsa_verid_password
  @rsa_verid_password
end

#rsa_verid_rulesetObject

Returns the value of attribute rsa_verid_ruleset.



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

def rsa_verid_ruleset
  @rsa_verid_ruleset
end

#rsa_verid_user_idObject

Returns the value of attribute rsa_verid_user_id.



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

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.



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

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.



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

def 
  @self_signed_recipient_email_document_metadata
end

#self_signed_recipient_email_document_user_overrideObject

Returns the value of attribute self_signed_recipient_email_document_user_override.



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

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.



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

def 
  @self_signed_recipient_email_document_user_override_metadata
end

#send_to_certified_delivery_enabledObject

Returns the value of attribute send_to_certified_delivery_enabled.



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

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.



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

def 
  @send_to_certified_delivery_enabled_metadata
end

#sender_can_sign_in_each_locationObject

Returns the value of attribute sender_can_sign_in_each_location.



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

def 
  @sender_can_sign_in_each_location
end

#sender_can_sign_in_each_location_metadataObject

Returns the value of attribute sender_can_sign_in_each_location_metadata.



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

def 
  @sender_can_sign_in_each_location_metadata
end

#sender_must_authenticate_signingObject

Returns the value of attribute sender_must_authenticate_signing.



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

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.



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

def 
  @sender_must_authenticate_signing_metadata
end

#sending_tags_font_colorObject

Returns the value of attribute sending_tags_font_color.



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

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.



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

def 
  @sending_tags_font_color_metadata
end

#sending_tags_font_nameObject

Returns the value of attribute sending_tags_font_name.



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

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.



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

def 
  @sending_tags_font_name_metadata
end

#sending_tags_font_sizeObject

Returns the value of attribute sending_tags_font_size.



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

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.



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

def 
  @sending_tags_font_size_metadata
end

#session_timeoutObject

Returns the value of attribute session_timeout.



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

def session_timeout
  @session_timeout
end

#session_timeout_metadataObject

Returns the value of attribute session_timeout_metadata.



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

def 
  @session_timeout_metadata
end

#set_recip_email_langObject

Returns the value of attribute set_recip_email_lang.



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

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.



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

def 
  @set_recip_email_lang_metadata
end

#set_recip_sign_langObject

Returns the value of attribute set_recip_sign_lang.



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

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.



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

def 
  @set_recip_sign_lang_metadata
end

#shared_template_foldersObject

Returns the value of attribute shared_template_folders.



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

def shared_template_folders
  @shared_template_folders
end

#shared_template_folders_metadataObject

Returns the value of attribute shared_template_folders_metadata.



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

def 
  @shared_template_folders_metadata
end

#show_complete_dialog_in_embedded_sessionObject

Returns the value of attribute show_complete_dialog_in_embedded_session.



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

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.



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

def 
  @show_complete_dialog_in_embedded_session_metadata
end

#show_conditional_routing_on_sendObject

Returns the value of attribute show_conditional_routing_on_send.



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

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.



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

def 
  @show_conditional_routing_on_send_metadata
end

#show_initial_conditional_fieldsObject

Returns the value of attribute show_initial_conditional_fields.



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

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.



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

def 
  @show_initial_conditional_fields_metadata
end

#show_localized_watermarksObject

Returns the value of attribute show_localized_watermarks.



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

def show_localized_watermarks
  @show_localized_watermarks
end

#show_localized_watermarks_metadataObject

Returns the value of attribute show_localized_watermarks_metadata.



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

def 
  @show_localized_watermarks_metadata
end

#show_tutorialsObject

Returns the value of attribute show_tutorials.



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

def show_tutorials
  @show_tutorials
end

#show_tutorials_metadataObject

Returns the value of attribute show_tutorials_metadata.



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

def 
  @show_tutorials_metadata
end

#sign_date_formatObject

Returns the value of attribute sign_date_format.



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

def sign_date_format
  @sign_date_format
end

#sign_date_format_metadataObject

Returns the value of attribute sign_date_format_metadata.



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

def 
  @sign_date_format_metadata
end

#sign_time_formatObject

Returns the value of attribute sign_time_format.



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

def sign_time_format
  @sign_time_format
end

#sign_time_format_metadataObject

Returns the value of attribute sign_time_format_metadata.



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

def 
  @sign_time_format_metadata
end

#sign_time_show_am_pmObject

Returns the value of attribute sign_time_show_am_pm.



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

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.



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

def 
  @sign_time_show_am_pm_metadata
end

#signature_providersObject

Returns the value of attribute signature_providers.



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

def signature_providers
  @signature_providers
end

#signature_providers_metadataObject

Returns the value of attribute signature_providers_metadata.



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

def 
  @signature_providers_metadata
end

#signer_attach_certificate_to_envelope_pdfObject

Returns the value of attribute signer_attach_certificate_to_envelope_pdf.



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

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.



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

def 
  @signer_attach_certificate_to_envelope_pdf_metadata
end

#signer_attach_concatObject

Returns the value of attribute signer_attach_concat.



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

def signer_attach_concat
  @signer_attach_concat
end

#signer_attach_concat_metadataObject

Returns the value of attribute signer_attach_concat_metadata.



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

def 
  @signer_attach_concat_metadata
end

#signer_can_create_accountObject

Returns the value of attribute signer_can_create_account.



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

def 
  @signer_can_create_account
end

#signer_can_create_account_metadataObject

Returns the value of attribute signer_can_create_account_metadata.



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

def 
  @signer_can_create_account_metadata
end

#signer_can_sign_on_mobileObject

Returns the value of attribute signer_can_sign_on_mobile.



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

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.



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

def 
  @signer_can_sign_on_mobile_metadata
end

#signer_in_session_use_envelope_complete_emailObject

Returns the value of attribute signer_in_session_use_envelope_complete_email.



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

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.



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

def 
  @signer_in_session_use_envelope_complete_email_metadata
end

#signer_login_requirementsObject

Returns the value of attribute signer_login_requirements.



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

def 
  @signer_login_requirements
end

#signer_login_requirements_metadataObject

Returns the value of attribute signer_login_requirements_metadata.



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

def 
  @signer_login_requirements_metadata
end

#signer_must_have_accountObject

Returns the value of attribute signer_must_have_account.



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

def 
  @signer_must_have_account
end

#signer_must_have_account_metadataObject

Returns the value of attribute signer_must_have_account_metadata.



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

def 
  @signer_must_have_account_metadata
end

#signer_must_login_to_signObject

Returns the value of attribute signer_must_login_to_sign.



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

def 
  @signer_must_login_to_sign
end

#signer_must_login_to_sign_metadataObject

Returns the value of attribute signer_must_login_to_sign_metadata.



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

def 
  @signer_must_login_to_sign_metadata
end

#signer_show_secure_field_initial_valuesObject

Returns the value of attribute signer_show_secure_field_initial_values.



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

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.



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

def 
  @signer_show_secure_field_initial_values_metadata
end

#signing_session_timeoutObject

Returns the value of attribute signing_session_timeout.



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

def signing_session_timeout
  @signing_session_timeout
end

#signing_session_timeout_metadataObject

Returns the value of attribute signing_session_timeout_metadata.



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

def 
  @signing_session_timeout_metadata
end

#signing_ui_versionObject

Returns the value of attribute signing_ui_version.



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

def signing_ui_version
  @signing_ui_version
end

#signing_ui_version_metadataObject

Returns the value of attribute signing_ui_version_metadata.



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

def 
  @signing_ui_version_metadata
end

#simplified_sending_enabledObject

Returns the value of attribute simplified_sending_enabled.



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

def simplified_sending_enabled
  @simplified_sending_enabled
end

#simplified_sending_enabled_metadataObject

Returns the value of attribute simplified_sending_enabled_metadata.



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

def 
  @simplified_sending_enabled_metadata
end

#single_sign_on_enabledObject

Returns the value of attribute single_sign_on_enabled.



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

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.



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

def 
  @single_sign_on_enabled_metadata
end

#skip_auth_completed_envelopesObject

Returns the value of attribute skip_auth_completed_envelopes.



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

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.



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

def 
  @skip_auth_completed_envelopes_metadata
end

#social_id_recip_authObject

Returns the value of attribute social_id_recip_auth.



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

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.



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

def 
  @social_id_recip_auth_metadata
end

#specify_document_visibilityObject

Returns the value of attribute specify_document_visibility.



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

def specify_document_visibility
  @specify_document_visibility
end

#specify_document_visibility_metadataObject

Returns the value of attribute specify_document_visibility_metadata.



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

def 
  @specify_document_visibility_metadata
end

#start_in_advanced_correctObject

Returns the value of attribute start_in_advanced_correct.



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

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.



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

def 
  @start_in_advanced_correct_metadata
end

#supplemental_documents_must_acceptObject

Returns the value of attribute supplemental_documents_must_accept.



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

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.



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

def 
  @supplemental_documents_must_accept_metadata
end

#supplemental_documents_must_readObject

Returns the value of attribute supplemental_documents_must_read.



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

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.



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

def 
  @supplemental_documents_must_read_metadata
end

#supplemental_documents_must_viewObject

Returns the value of attribute supplemental_documents_must_view.



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

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.



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

def 
  @supplemental_documents_must_view_metadata
end

#suppress_certificate_enforcementObject

Returns the value of attribute suppress_certificate_enforcement.



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

def suppress_certificate_enforcement
  @suppress_certificate_enforcement
end

#suppress_certificate_enforcement_metadataObject

Returns the value of attribute suppress_certificate_enforcement_metadata.



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

def 
  @suppress_certificate_enforcement_metadata
end

#tab_account_settingsObject

Returns the value of attribute tab_account_settings.



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

def 
  @tab_account_settings
end

#timezone_offset_apiObject

Returns the value of attribute timezone_offset_api.



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

def timezone_offset_api
  @timezone_offset_api
end

#timezone_offset_api_metadataObject

Returns the value of attribute timezone_offset_api_metadata.



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

def 
  @timezone_offset_api_metadata
end

#timezone_offset_uiObject

Returns the value of attribute timezone_offset_ui.



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

def timezone_offset_ui
  @timezone_offset_ui
end

#timezone_offset_ui_metadataObject

Returns the value of attribute timezone_offset_ui_metadata.



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

def 
  @timezone_offset_ui_metadata
end

#universal_signature_opt_inObject

Returns the value of attribute universal_signature_opt_in.



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

def universal_signature_opt_in
  @universal_signature_opt_in
end

#use_account_level_emailObject

Returns the value of attribute use_account_level_email.



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

def 
  @use_account_level_email
end

#use_account_level_email_metadataObject

Returns the value of attribute use_account_level_email_metadata.



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

def 
  @use_account_level_email_metadata
end

#use_consumer_disclosureObject

Returns the value of attribute use_consumer_disclosure.



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

def use_consumer_disclosure
  @use_consumer_disclosure
end

#use_consumer_disclosure_metadataObject

Returns the value of attribute use_consumer_disclosure_metadata.



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

def 
  @use_consumer_disclosure_metadata
end

#use_consumer_disclosure_within_accountObject

Returns the value of attribute use_consumer_disclosure_within_account.



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

def 
  @use_consumer_disclosure_within_account
end

#use_consumer_disclosure_within_account_metadataObject

Returns the value of attribute use_consumer_disclosure_within_account_metadata.



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

def 
  @use_consumer_disclosure_within_account_metadata
end

#use_derived_keysObject

Returns the value of attribute use_derived_keys.



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

def use_derived_keys
  @use_derived_keys
end

#use_derived_keys_metadataObject

Returns the value of attribute use_derived_keys_metadata.



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

def 
  @use_derived_keys_metadata
end

#use_docu_sign_express_signer_certificateObject

Returns the value of attribute use_docu_sign_express_signer_certificate.



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

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.



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

def 
  @use_docu_sign_express_signer_certificate_metadata
end

#use_new_blob_for_pdfObject

Returns the value of attribute use_new_blob_for_pdf.



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

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.



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

def 
  @use_new_blob_for_pdf_metadata
end

#use_safe_signer_certificatesObject

Returns the value of attribute use_safe_signer_certificates.



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

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.



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

def 
  @use_safe_signer_certificates_metadata
end

#use_signature_provider_platformObject

Returns the value of attribute use_signature_provider_platform.



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

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.



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

def 
  @use_signature_provider_platform_metadata
end

#uses_apiObject

Returns the value of attribute uses_api.



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

def uses_api
  @uses_api
end

#uses_api_metadataObject

Returns the value of attribute uses_api_metadata.



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

def 
  @uses_api_metadata
end

#validations_allowedObject

Returns the value of attribute validations_allowed.



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

def validations_allowed
  @validations_allowed
end

#validations_allowed_metadataObject

Returns the value of attribute validations_allowed_metadata.



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

def 
  @validations_allowed_metadata
end

#validations_brandObject

Returns the value of attribute validations_brand.



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

def validations_brand
  @validations_brand
end

#validations_brand_metadataObject

Returns the value of attribute validations_brand_metadata.



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

def 
  @validations_brand_metadata
end

#validations_cadenceObject

Returns the value of attribute validations_cadence.



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

def validations_cadence
  @validations_cadence
end

#validations_cadence_metadataObject

Returns the value of attribute validations_cadence_metadata.



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

def 
  @validations_cadence_metadata
end

#validations_enabledObject

Returns the value of attribute validations_enabled.



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

def validations_enabled
  @validations_enabled
end

#validations_enabled_metadataObject

Returns the value of attribute validations_enabled_metadata.



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

def 
  @validations_enabled_metadata
end

#validations_reportObject

Returns the value of attribute validations_report.



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

def validations_report
  @validations_report
end

#validations_report_metadataObject

Returns the value of attribute validations_report_metadata.



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

def 
  @validations_report_metadata
end

#water_mark_enabledObject

Returns the value of attribute water_mark_enabled.



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

def water_mark_enabled
  @water_mark_enabled
end

#water_mark_enabled_metadataObject

Returns the value of attribute water_mark_enabled_metadata.



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

def 
  @water_mark_enabled_metadata
end

#write_reminder_to_envelope_historyObject

Returns the value of attribute write_reminder_to_envelope_history.



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

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.



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

def 
  @write_reminder_to_envelope_history_metadata
end

#wurfl_min_allowable_screen_sizeObject

Returns the value of attribute wurfl_min_allowable_screen_size.



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

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.



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

def 
  @wurfl_min_allowable_screen_size_metadata
end

Class Method Details

.attribute_mapObject

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



1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
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
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1251

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_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_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_social_id_login' => :'allowSocialIdLogin',
    :'allow_social_id_login_metadata' => :'allowSocialIdLoginMetadata',
    :'allow_supplemental_documents' => :'allowSupplementalDocuments',
    :'allow_supplemental_documents_metadata' => :'allowSupplementalDocumentsMetadata',
    :'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_metadata' => :'bulkSendMetadata',
    :'can_self_brand_send' => :'canSelfBrandSend',
    :'can_self_brand_send_metadata' => :'canSelfBrandSendMetadata',
    :'can_self_brand_sign' => :'canSelfBrandSign',
    :'can_self_brand_sign_metadata' => :'canSelfBrandSignMetadata',
    :'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_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_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_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_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.



1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
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
# File 'lib/docusign_esign/models/account_settings_information.rb', line 1749

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_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_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_social_id_login' => :'String',
    :'allow_social_id_login_metadata' => :'SettingsMetadata',
    :'allow_supplemental_documents' => :'String',
    :'allow_supplemental_documents_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_metadata' => :'SettingsMetadata',
    :'can_self_brand_send' => :'String',
    :'can_self_brand_send_metadata' => :'SettingsMetadata',
    :'can_self_brand_sign' => :'String',
    :'can_self_brand_sign_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_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_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_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_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



4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
# File 'lib/docusign_esign/models/account_settings_information.rb', line 4245

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_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_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. &&
       == o. &&
       == o. &&
      allow_supplemental_documents == o.allow_supplemental_documents &&
       == 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 &&
       == o. &&
      can_self_brand_send == o.can_self_brand_send &&
       == o. &&
      can_self_brand_sign == o.can_self_brand_sign &&
       == 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_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_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_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_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



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

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



4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
# File 'lib/docusign_esign/models/account_settings_information.rb', line 4844

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



4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
# File 'lib/docusign_esign/models/account_settings_information.rb', line 4757

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 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


4744
4745
4746
# File 'lib/docusign_esign/models/account_settings_information.rb', line 4744

def eql?(o)
  self == o
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



4750
4751
4752
# File 'lib/docusign_esign/models/account_settings_information.rb', line 4750

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_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_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_supplemental_documents, , 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, , can_self_brand_send, , can_self_brand_sign, , 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_customer_satisfaction_metric_tracking, , enable_ds_pro, , , , enable_envelope_stamping_by_ds_admin, , 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_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_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 properies with the reasons



4232
4233
4234
4235
# File 'lib/docusign_esign/models/account_settings_information.rb', line 4232

def list_invalid_properties
  invalid_properties = Array.new
  return 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



4824
4825
4826
# File 'lib/docusign_esign/models/account_settings_information.rb', line 4824

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



4830
4831
4832
4833
4834
4835
4836
4837
4838
# File 'lib/docusign_esign/models/account_settings_information.rb', line 4830

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



4818
4819
4820
# File 'lib/docusign_esign/models/account_settings_information.rb', line 4818

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



4239
4240
4241
# File 'lib/docusign_esign/models/account_settings_information.rb', line 4239

def valid?
  return true
end