Class: TurnkeyClient::Intent

Inherits:
Object
  • Object
show all
Defined in:
lib/turnkey_client/models/intent.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ Intent

Initializes the object

Parameters:

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

    Model attributes in the form of hash



587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
# File 'lib/turnkey_client/models/intent.rb', line 587

def initialize(attributes = {})
  if (!attributes.is_a?(Hash))
    fail ArgumentError, "The input argument (attributes) must be a hash in `TurnkeyClient::Intent` initialize method"
  end

  # check to see if the attribute exists and convert string to symbol for hash key
  attributes = attributes.each_with_object({}) { |(k, v), h|
    if (!self.class.attribute_map.key?(k.to_sym))
      fail ArgumentError, "`#{k}` is not a valid attribute in `TurnkeyClient::Intent`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
    end
    h[k.to_sym] = v
  }

  if attributes.key?(:'create_organization_intent')
    self.create_organization_intent = attributes[:'create_organization_intent']
  end

  if attributes.key?(:'create_authenticators_intent')
    self.create_authenticators_intent = attributes[:'create_authenticators_intent']
  end

  if attributes.key?(:'create_users_intent')
    self.create_users_intent = attributes[:'create_users_intent']
  end

  if attributes.key?(:'create_private_keys_intent')
    self.create_private_keys_intent = attributes[:'create_private_keys_intent']
  end

  if attributes.key?(:'sign_raw_payload_intent')
    self.sign_raw_payload_intent = attributes[:'sign_raw_payload_intent']
  end

  if attributes.key?(:'create_invitations_intent')
    self.create_invitations_intent = attributes[:'create_invitations_intent']
  end

  if attributes.key?(:'accept_invitation_intent')
    self.accept_invitation_intent = attributes[:'accept_invitation_intent']
  end

  if attributes.key?(:'create_policy_intent')
    self.create_policy_intent = attributes[:'create_policy_intent']
  end

  if attributes.key?(:'disable_private_key_intent')
    self.disable_private_key_intent = attributes[:'disable_private_key_intent']
  end

  if attributes.key?(:'delete_users_intent')
    self.delete_users_intent = attributes[:'delete_users_intent']
  end

  if attributes.key?(:'delete_authenticators_intent')
    self.delete_authenticators_intent = attributes[:'delete_authenticators_intent']
  end

  if attributes.key?(:'delete_invitation_intent')
    self.delete_invitation_intent = attributes[:'delete_invitation_intent']
  end

  if attributes.key?(:'delete_organization_intent')
    self.delete_organization_intent = attributes[:'delete_organization_intent']
  end

  if attributes.key?(:'delete_policy_intent')
    self.delete_policy_intent = attributes[:'delete_policy_intent']
  end

  if attributes.key?(:'create_user_tag_intent')
    self.create_user_tag_intent = attributes[:'create_user_tag_intent']
  end

  if attributes.key?(:'delete_user_tags_intent')
    self.delete_user_tags_intent = attributes[:'delete_user_tags_intent']
  end

  if attributes.key?(:'sign_transaction_intent')
    self.sign_transaction_intent = attributes[:'sign_transaction_intent']
  end

  if attributes.key?(:'create_api_keys_intent')
    self.create_api_keys_intent = attributes[:'create_api_keys_intent']
  end

  if attributes.key?(:'delete_api_keys_intent')
    self.delete_api_keys_intent = attributes[:'delete_api_keys_intent']
  end

  if attributes.key?(:'approve_activity_intent')
    self.approve_activity_intent = attributes[:'approve_activity_intent']
  end

  if attributes.key?(:'reject_activity_intent')
    self.reject_activity_intent = attributes[:'reject_activity_intent']
  end

  if attributes.key?(:'create_private_key_tag_intent')
    self.create_private_key_tag_intent = attributes[:'create_private_key_tag_intent']
  end

  if attributes.key?(:'delete_private_key_tags_intent')
    self.delete_private_key_tags_intent = attributes[:'delete_private_key_tags_intent']
  end

  if attributes.key?(:'create_policy_intent_v2')
    self.create_policy_intent_v2 = attributes[:'create_policy_intent_v2']
  end

  if attributes.key?(:'set_payment_method_intent')
    self.set_payment_method_intent = attributes[:'set_payment_method_intent']
  end

  if attributes.key?(:'activate_billing_tier_intent')
    self.activate_billing_tier_intent = attributes[:'activate_billing_tier_intent']
  end

  if attributes.key?(:'delete_payment_method_intent')
    self.delete_payment_method_intent = attributes[:'delete_payment_method_intent']
  end

  if attributes.key?(:'create_policy_intent_v3')
    self.create_policy_intent_v3 = attributes[:'create_policy_intent_v3']
  end

  if attributes.key?(:'create_api_only_users_intent')
    self.create_api_only_users_intent = attributes[:'create_api_only_users_intent']
  end

  if attributes.key?(:'update_root_quorum_intent')
    self.update_root_quorum_intent = attributes[:'update_root_quorum_intent']
  end

  if attributes.key?(:'update_user_tag_intent')
    self.update_user_tag_intent = attributes[:'update_user_tag_intent']
  end

  if attributes.key?(:'update_private_key_tag_intent')
    self.update_private_key_tag_intent = attributes[:'update_private_key_tag_intent']
  end

  if attributes.key?(:'create_authenticators_intent_v2')
    self.create_authenticators_intent_v2 = attributes[:'create_authenticators_intent_v2']
  end

  if attributes.key?(:'accept_invitation_intent_v2')
    self.accept_invitation_intent_v2 = attributes[:'accept_invitation_intent_v2']
  end

  if attributes.key?(:'create_organization_intent_v2')
    self.create_organization_intent_v2 = attributes[:'create_organization_intent_v2']
  end

  if attributes.key?(:'create_users_intent_v2')
    self.create_users_intent_v2 = attributes[:'create_users_intent_v2']
  end

  if attributes.key?(:'create_sub_organization_intent')
    self.create_sub_organization_intent = attributes[:'create_sub_organization_intent']
  end

  if attributes.key?(:'create_sub_organization_intent_v2')
    self.create_sub_organization_intent_v2 = attributes[:'create_sub_organization_intent_v2']
  end

  if attributes.key?(:'update_allowed_origins_intent')
    self.update_allowed_origins_intent = attributes[:'update_allowed_origins_intent']
  end

  if attributes.key?(:'create_private_keys_intent_v2')
    self.create_private_keys_intent_v2 = attributes[:'create_private_keys_intent_v2']
  end

  if attributes.key?(:'update_user_intent')
    self.update_user_intent = attributes[:'update_user_intent']
  end

  if attributes.key?(:'update_policy_intent')
    self.update_policy_intent = attributes[:'update_policy_intent']
  end

  if attributes.key?(:'set_payment_method_intent_v2')
    self.set_payment_method_intent_v2 = attributes[:'set_payment_method_intent_v2']
  end

  if attributes.key?(:'create_sub_organization_intent_v3')
    self.create_sub_organization_intent_v3 = attributes[:'create_sub_organization_intent_v3']
  end

  if attributes.key?(:'create_wallet_intent')
    self.create_wallet_intent = attributes[:'create_wallet_intent']
  end

  if attributes.key?(:'create_wallet_accounts_intent')
    self.create_wallet_accounts_intent = attributes[:'create_wallet_accounts_intent']
  end

  if attributes.key?(:'init_user_email_recovery_intent')
    self.init_user_email_recovery_intent = attributes[:'init_user_email_recovery_intent']
  end

  if attributes.key?(:'recover_user_intent')
    self.recover_user_intent = attributes[:'recover_user_intent']
  end

  if attributes.key?(:'set_organization_feature_intent')
    self.set_organization_feature_intent = attributes[:'set_organization_feature_intent']
  end

  if attributes.key?(:'remove_organization_feature_intent')
    self.remove_organization_feature_intent = attributes[:'remove_organization_feature_intent']
  end

  if attributes.key?(:'sign_raw_payload_intent_v2')
    self.sign_raw_payload_intent_v2 = attributes[:'sign_raw_payload_intent_v2']
  end

  if attributes.key?(:'sign_transaction_intent_v2')
    self.sign_transaction_intent_v2 = attributes[:'sign_transaction_intent_v2']
  end

  if attributes.key?(:'export_private_key_intent')
    self.export_private_key_intent = attributes[:'export_private_key_intent']
  end

  if attributes.key?(:'export_wallet_intent')
    self.export_wallet_intent = attributes[:'export_wallet_intent']
  end

  if attributes.key?(:'create_sub_organization_intent_v4')
    self.create_sub_organization_intent_v4 = attributes[:'create_sub_organization_intent_v4']
  end

  if attributes.key?(:'email_auth_intent')
    self.email_auth_intent = attributes[:'email_auth_intent']
  end

  if attributes.key?(:'export_wallet_account_intent')
    self. = attributes[:'export_wallet_account_intent']
  end

  if attributes.key?(:'init_import_wallet_intent')
    self.init_import_wallet_intent = attributes[:'init_import_wallet_intent']
  end

  if attributes.key?(:'import_wallet_intent')
    self.import_wallet_intent = attributes[:'import_wallet_intent']
  end

  if attributes.key?(:'init_import_private_key_intent')
    self.init_import_private_key_intent = attributes[:'init_import_private_key_intent']
  end

  if attributes.key?(:'import_private_key_intent')
    self.import_private_key_intent = attributes[:'import_private_key_intent']
  end

  if attributes.key?(:'create_policies_intent')
    self.create_policies_intent = attributes[:'create_policies_intent']
  end

  if attributes.key?(:'sign_raw_payloads_intent')
    self.sign_raw_payloads_intent = attributes[:'sign_raw_payloads_intent']
  end

  if attributes.key?(:'create_read_only_session_intent')
    self.create_read_only_session_intent = attributes[:'create_read_only_session_intent']
  end

  if attributes.key?(:'create_oauth_providers_intent')
    self.create_oauth_providers_intent = attributes[:'create_oauth_providers_intent']
  end

  if attributes.key?(:'delete_oauth_providers_intent')
    self.delete_oauth_providers_intent = attributes[:'delete_oauth_providers_intent']
  end

  if attributes.key?(:'create_sub_organization_intent_v5')
    self.create_sub_organization_intent_v5 = attributes[:'create_sub_organization_intent_v5']
  end

  if attributes.key?(:'oauth_intent')
    self.oauth_intent = attributes[:'oauth_intent']
  end

  if attributes.key?(:'create_api_keys_intent_v2')
    self.create_api_keys_intent_v2 = attributes[:'create_api_keys_intent_v2']
  end

  if attributes.key?(:'create_read_write_session_intent')
    self.create_read_write_session_intent = attributes[:'create_read_write_session_intent']
  end

  if attributes.key?(:'email_auth_intent_v2')
    self.email_auth_intent_v2 = attributes[:'email_auth_intent_v2']
  end

  if attributes.key?(:'create_sub_organization_intent_v6')
    self.create_sub_organization_intent_v6 = attributes[:'create_sub_organization_intent_v6']
  end

  if attributes.key?(:'delete_private_keys_intent')
    self.delete_private_keys_intent = attributes[:'delete_private_keys_intent']
  end

  if attributes.key?(:'delete_wallets_intent')
    self.delete_wallets_intent = attributes[:'delete_wallets_intent']
  end

  if attributes.key?(:'create_read_write_session_intent_v2')
    self.create_read_write_session_intent_v2 = attributes[:'create_read_write_session_intent_v2']
  end

  if attributes.key?(:'delete_sub_organization_intent')
    self.delete_sub_organization_intent = attributes[:'delete_sub_organization_intent']
  end

  if attributes.key?(:'init_otp_auth_intent')
    self.init_otp_auth_intent = attributes[:'init_otp_auth_intent']
  end

  if attributes.key?(:'otp_auth_intent')
    self.otp_auth_intent = attributes[:'otp_auth_intent']
  end

  if attributes.key?(:'create_sub_organization_intent_v7')
    self.create_sub_organization_intent_v7 = attributes[:'create_sub_organization_intent_v7']
  end

  if attributes.key?(:'update_wallet_intent')
    self.update_wallet_intent = attributes[:'update_wallet_intent']
  end

  if attributes.key?(:'update_policy_intent_v2')
    self.update_policy_intent_v2 = attributes[:'update_policy_intent_v2']
  end

  if attributes.key?(:'create_users_intent_v3')
    self.create_users_intent_v3 = attributes[:'create_users_intent_v3']
  end

  if attributes.key?(:'init_otp_auth_intent_v2')
    self.init_otp_auth_intent_v2 = attributes[:'init_otp_auth_intent_v2']
  end

  if attributes.key?(:'init_otp_intent')
    self.init_otp_intent = attributes[:'init_otp_intent']
  end

  if attributes.key?(:'verify_otp_intent')
    self.verify_otp_intent = attributes[:'verify_otp_intent']
  end

  if attributes.key?(:'otp_login_intent')
    self. = attributes[:'otp_login_intent']
  end

  if attributes.key?(:'stamp_login_intent')
    self. = attributes[:'stamp_login_intent']
  end

  if attributes.key?(:'oauth_login_intent')
    self. = attributes[:'oauth_login_intent']
  end

  if attributes.key?(:'update_user_name_intent')
    self.update_user_name_intent = attributes[:'update_user_name_intent']
  end

  if attributes.key?(:'update_user_email_intent')
    self.update_user_email_intent = attributes[:'update_user_email_intent']
  end

  if attributes.key?(:'update_user_phone_number_intent')
    self.update_user_phone_number_intent = attributes[:'update_user_phone_number_intent']
  end

  if attributes.key?(:'init_fiat_on_ramp_intent')
    self.init_fiat_on_ramp_intent = attributes[:'init_fiat_on_ramp_intent']
  end

  if attributes.key?(:'create_smart_contract_interface_intent')
    self.create_smart_contract_interface_intent = attributes[:'create_smart_contract_interface_intent']
  end

  if attributes.key?(:'delete_smart_contract_interface_intent')
    self.delete_smart_contract_interface_intent = attributes[:'delete_smart_contract_interface_intent']
  end

  if attributes.key?(:'enable_auth_proxy_intent')
    self.enable_auth_proxy_intent = attributes[:'enable_auth_proxy_intent']
  end

  if attributes.key?(:'disable_auth_proxy_intent')
    self.disable_auth_proxy_intent = attributes[:'disable_auth_proxy_intent']
  end

  if attributes.key?(:'update_auth_proxy_config_intent')
    self.update_auth_proxy_config_intent = attributes[:'update_auth_proxy_config_intent']
  end

  if attributes.key?(:'create_oauth2_credential_intent')
    self.create_oauth2_credential_intent = attributes[:'create_oauth2_credential_intent']
  end

  if attributes.key?(:'update_oauth2_credential_intent')
    self.update_oauth2_credential_intent = attributes[:'update_oauth2_credential_intent']
  end

  if attributes.key?(:'delete_oauth2_credential_intent')
    self.delete_oauth2_credential_intent = attributes[:'delete_oauth2_credential_intent']
  end

  if attributes.key?(:'oauth2_authenticate_intent')
    self.oauth2_authenticate_intent = attributes[:'oauth2_authenticate_intent']
  end

  if attributes.key?(:'delete_wallet_accounts_intent')
    self.delete_wallet_accounts_intent = attributes[:'delete_wallet_accounts_intent']
  end

  if attributes.key?(:'delete_policies_intent')
    self.delete_policies_intent = attributes[:'delete_policies_intent']
  end

  if attributes.key?(:'eth_send_raw_transaction_intent')
    self.eth_send_raw_transaction_intent = attributes[:'eth_send_raw_transaction_intent']
  end

  if attributes.key?(:'eth_send_transaction_intent')
    self.eth_send_transaction_intent = attributes[:'eth_send_transaction_intent']
  end

  if attributes.key?(:'create_fiat_on_ramp_credential_intent')
    self.create_fiat_on_ramp_credential_intent = attributes[:'create_fiat_on_ramp_credential_intent']
  end

  if attributes.key?(:'update_fiat_on_ramp_credential_intent')
    self.update_fiat_on_ramp_credential_intent = attributes[:'update_fiat_on_ramp_credential_intent']
  end

  if attributes.key?(:'delete_fiat_on_ramp_credential_intent')
    self.delete_fiat_on_ramp_credential_intent = attributes[:'delete_fiat_on_ramp_credential_intent']
  end

  if attributes.key?(:'email_auth_intent_v3')
    self.email_auth_intent_v3 = attributes[:'email_auth_intent_v3']
  end

  if attributes.key?(:'init_user_email_recovery_intent_v2')
    self.init_user_email_recovery_intent_v2 = attributes[:'init_user_email_recovery_intent_v2']
  end

  if attributes.key?(:'init_otp_intent_v2')
    self.init_otp_intent_v2 = attributes[:'init_otp_intent_v2']
  end

  if attributes.key?(:'init_otp_auth_intent_v3')
    self.init_otp_auth_intent_v3 = attributes[:'init_otp_auth_intent_v3']
  end

  if attributes.key?(:'upsert_gas_usage_config_intent')
    self.upsert_gas_usage_config_intent = attributes[:'upsert_gas_usage_config_intent']
  end

  if attributes.key?(:'create_tvc_app_intent')
    self.create_tvc_app_intent = attributes[:'create_tvc_app_intent']
  end

  if attributes.key?(:'create_tvc_deployment_intent')
    self.create_tvc_deployment_intent = attributes[:'create_tvc_deployment_intent']
  end

  if attributes.key?(:'create_tvc_manifest_approvals_intent')
    self.create_tvc_manifest_approvals_intent = attributes[:'create_tvc_manifest_approvals_intent']
  end

  if attributes.key?(:'sol_send_transaction_intent')
    self.sol_send_transaction_intent = attributes[:'sol_send_transaction_intent']
  end

  if attributes.key?(:'init_otp_intent_v3')
    self.init_otp_intent_v3 = attributes[:'init_otp_intent_v3']
  end

  if attributes.key?(:'verify_otp_intent_v2')
    self.verify_otp_intent_v2 = attributes[:'verify_otp_intent_v2']
  end

  if attributes.key?(:'otp_login_intent_v2')
    self. = attributes[:'otp_login_intent_v2']
  end

  if attributes.key?(:'update_organization_name_intent')
    self.update_organization_name_intent = attributes[:'update_organization_name_intent']
  end

  if attributes.key?(:'create_sub_organization_intent_v8')
    self.create_sub_organization_intent_v8 = attributes[:'create_sub_organization_intent_v8']
  end

  if attributes.key?(:'create_oauth_providers_intent_v2')
    self.create_oauth_providers_intent_v2 = attributes[:'create_oauth_providers_intent_v2']
  end

  if attributes.key?(:'create_users_intent_v4')
    self.create_users_intent_v4 = attributes[:'create_users_intent_v4']
  end

  if attributes.key?(:'create_webhook_endpoint_intent')
    self.create_webhook_endpoint_intent = attributes[:'create_webhook_endpoint_intent']
  end

  if attributes.key?(:'update_webhook_endpoint_intent')
    self.update_webhook_endpoint_intent = attributes[:'update_webhook_endpoint_intent']
  end

  if attributes.key?(:'delete_webhook_endpoint_intent')
    self.delete_webhook_endpoint_intent = attributes[:'delete_webhook_endpoint_intent']
  end

  if attributes.key?(:'set_ip_allowlist_intent')
    self.set_ip_allowlist_intent = attributes[:'set_ip_allowlist_intent']
  end

  if attributes.key?(:'remove_ip_allowlist_intent')
    self.remove_ip_allowlist_intent = attributes[:'remove_ip_allowlist_intent']
  end

  if attributes.key?(:'update_tvc_app_live_deployment_intent')
    self.update_tvc_app_live_deployment_intent = attributes[:'update_tvc_app_live_deployment_intent']
  end

  if attributes.key?(:'delete_tvc_deployment_intent')
    self.delete_tvc_deployment_intent = attributes[:'delete_tvc_deployment_intent']
  end

  if attributes.key?(:'delete_tvc_app_and_deployments_intent')
    self.delete_tvc_app_and_deployments_intent = attributes[:'delete_tvc_app_and_deployments_intent']
  end

  if attributes.key?(:'restore_tvc_deployment_intent')
    self.restore_tvc_deployment_intent = attributes[:'restore_tvc_deployment_intent']
  end

  if attributes.key?(:'spark_sign_frost_intent')
    self.spark_sign_frost_intent = attributes[:'spark_sign_frost_intent']
  end

  if attributes.key?(:'spark_prepare_transfer_intent')
    self.spark_prepare_transfer_intent = attributes[:'spark_prepare_transfer_intent']
  end

  if attributes.key?(:'spark_claim_transfer_intent')
    self.spark_claim_transfer_intent = attributes[:'spark_claim_transfer_intent']
  end

  if attributes.key?(:'spark_prepare_lightning_receive_intent')
    self.spark_prepare_lightning_receive_intent = attributes[:'spark_prepare_lightning_receive_intent']
  end

  if attributes.key?(:'post_tvc_quorum_key_share_intent')
    self.post_tvc_quorum_key_share_intent = attributes[:'post_tvc_quorum_key_share_intent']
  end
end

Instance Attribute Details

#accept_invitation_intentObject

Returns the value of attribute accept_invitation_intent.



27
28
29
# File 'lib/turnkey_client/models/intent.rb', line 27

def accept_invitation_intent
  @accept_invitation_intent
end

#accept_invitation_intent_v2Object

Returns the value of attribute accept_invitation_intent_v2.



81
82
83
# File 'lib/turnkey_client/models/intent.rb', line 81

def accept_invitation_intent_v2
  @accept_invitation_intent_v2
end

#activate_billing_tier_intentObject

Returns the value of attribute activate_billing_tier_intent.



65
66
67
# File 'lib/turnkey_client/models/intent.rb', line 65

def activate_billing_tier_intent
  @activate_billing_tier_intent
end

#approve_activity_intentObject

Returns the value of attribute approve_activity_intent.



53
54
55
# File 'lib/turnkey_client/models/intent.rb', line 53

def approve_activity_intent
  @approve_activity_intent
end

#create_api_keys_intentObject

Returns the value of attribute create_api_keys_intent.



49
50
51
# File 'lib/turnkey_client/models/intent.rb', line 49

def create_api_keys_intent
  @create_api_keys_intent
end

#create_api_keys_intent_v2Object

Returns the value of attribute create_api_keys_intent_v2.



151
152
153
# File 'lib/turnkey_client/models/intent.rb', line 151

def create_api_keys_intent_v2
  @create_api_keys_intent_v2
end

#create_api_only_users_intentObject

Returns the value of attribute create_api_only_users_intent.



71
72
73
# File 'lib/turnkey_client/models/intent.rb', line 71

def create_api_only_users_intent
  @create_api_only_users_intent
end

#create_authenticators_intentObject

Returns the value of attribute create_authenticators_intent.



17
18
19
# File 'lib/turnkey_client/models/intent.rb', line 17

def create_authenticators_intent
  @create_authenticators_intent
end

#create_authenticators_intent_v2Object

Returns the value of attribute create_authenticators_intent_v2.



79
80
81
# File 'lib/turnkey_client/models/intent.rb', line 79

def create_authenticators_intent_v2
  @create_authenticators_intent_v2
end

#create_fiat_on_ramp_credential_intentObject

Returns the value of attribute create_fiat_on_ramp_credential_intent.



225
226
227
# File 'lib/turnkey_client/models/intent.rb', line 225

def create_fiat_on_ramp_credential_intent
  @create_fiat_on_ramp_credential_intent
end

#create_invitations_intentObject

Returns the value of attribute create_invitations_intent.



25
26
27
# File 'lib/turnkey_client/models/intent.rb', line 25

def create_invitations_intent
  @create_invitations_intent
end

#create_oauth2_credential_intentObject

Returns the value of attribute create_oauth2_credential_intent.



209
210
211
# File 'lib/turnkey_client/models/intent.rb', line 209

def create_oauth2_credential_intent
  @create_oauth2_credential_intent
end

#create_oauth_providers_intentObject

Returns the value of attribute create_oauth_providers_intent.



143
144
145
# File 'lib/turnkey_client/models/intent.rb', line 143

def create_oauth_providers_intent
  @create_oauth_providers_intent
end

#create_oauth_providers_intent_v2Object

Returns the value of attribute create_oauth_providers_intent_v2.



259
260
261
# File 'lib/turnkey_client/models/intent.rb', line 259

def create_oauth_providers_intent_v2
  @create_oauth_providers_intent_v2
end

#create_organization_intentObject

Returns the value of attribute create_organization_intent.



15
16
17
# File 'lib/turnkey_client/models/intent.rb', line 15

def create_organization_intent
  @create_organization_intent
end

#create_organization_intent_v2Object

Returns the value of attribute create_organization_intent_v2.



83
84
85
# File 'lib/turnkey_client/models/intent.rb', line 83

def create_organization_intent_v2
  @create_organization_intent_v2
end

#create_policies_intentObject

Returns the value of attribute create_policies_intent.



137
138
139
# File 'lib/turnkey_client/models/intent.rb', line 137

def create_policies_intent
  @create_policies_intent
end

#create_policy_intentObject

Returns the value of attribute create_policy_intent.



29
30
31
# File 'lib/turnkey_client/models/intent.rb', line 29

def create_policy_intent
  @create_policy_intent
end

#create_policy_intent_v2Object

Returns the value of attribute create_policy_intent_v2.



61
62
63
# File 'lib/turnkey_client/models/intent.rb', line 61

def create_policy_intent_v2
  @create_policy_intent_v2
end

#create_policy_intent_v3Object

Returns the value of attribute create_policy_intent_v3.



69
70
71
# File 'lib/turnkey_client/models/intent.rb', line 69

def create_policy_intent_v3
  @create_policy_intent_v3
end

#create_private_key_tag_intentObject

Returns the value of attribute create_private_key_tag_intent.



57
58
59
# File 'lib/turnkey_client/models/intent.rb', line 57

def create_private_key_tag_intent
  @create_private_key_tag_intent
end

#create_private_keys_intentObject

Returns the value of attribute create_private_keys_intent.



21
22
23
# File 'lib/turnkey_client/models/intent.rb', line 21

def create_private_keys_intent
  @create_private_keys_intent
end

#create_private_keys_intent_v2Object

Returns the value of attribute create_private_keys_intent_v2.



93
94
95
# File 'lib/turnkey_client/models/intent.rb', line 93

def create_private_keys_intent_v2
  @create_private_keys_intent_v2
end

#create_read_only_session_intentObject

Returns the value of attribute create_read_only_session_intent.



141
142
143
# File 'lib/turnkey_client/models/intent.rb', line 141

def create_read_only_session_intent
  @create_read_only_session_intent
end

#create_read_write_session_intentObject

Returns the value of attribute create_read_write_session_intent.



153
154
155
# File 'lib/turnkey_client/models/intent.rb', line 153

def create_read_write_session_intent
  @create_read_write_session_intent
end

#create_read_write_session_intent_v2Object

Returns the value of attribute create_read_write_session_intent_v2.



163
164
165
# File 'lib/turnkey_client/models/intent.rb', line 163

def create_read_write_session_intent_v2
  @create_read_write_session_intent_v2
end

#create_smart_contract_interface_intentObject

Returns the value of attribute create_smart_contract_interface_intent.



199
200
201
# File 'lib/turnkey_client/models/intent.rb', line 199

def create_smart_contract_interface_intent
  @create_smart_contract_interface_intent
end

#create_sub_organization_intentObject

Returns the value of attribute create_sub_organization_intent.



87
88
89
# File 'lib/turnkey_client/models/intent.rb', line 87

def create_sub_organization_intent
  @create_sub_organization_intent
end

#create_sub_organization_intent_v2Object

Returns the value of attribute create_sub_organization_intent_v2.



89
90
91
# File 'lib/turnkey_client/models/intent.rb', line 89

def create_sub_organization_intent_v2
  @create_sub_organization_intent_v2
end

#create_sub_organization_intent_v3Object

Returns the value of attribute create_sub_organization_intent_v3.



101
102
103
# File 'lib/turnkey_client/models/intent.rb', line 101

def create_sub_organization_intent_v3
  @create_sub_organization_intent_v3
end

#create_sub_organization_intent_v4Object

Returns the value of attribute create_sub_organization_intent_v4.



123
124
125
# File 'lib/turnkey_client/models/intent.rb', line 123

def create_sub_organization_intent_v4
  @create_sub_organization_intent_v4
end

#create_sub_organization_intent_v5Object

Returns the value of attribute create_sub_organization_intent_v5.



147
148
149
# File 'lib/turnkey_client/models/intent.rb', line 147

def create_sub_organization_intent_v5
  @create_sub_organization_intent_v5
end

#create_sub_organization_intent_v6Object

Returns the value of attribute create_sub_organization_intent_v6.



157
158
159
# File 'lib/turnkey_client/models/intent.rb', line 157

def create_sub_organization_intent_v6
  @create_sub_organization_intent_v6
end

#create_sub_organization_intent_v7Object

Returns the value of attribute create_sub_organization_intent_v7.



171
172
173
# File 'lib/turnkey_client/models/intent.rb', line 171

def create_sub_organization_intent_v7
  @create_sub_organization_intent_v7
end

#create_sub_organization_intent_v8Object

Returns the value of attribute create_sub_organization_intent_v8.



257
258
259
# File 'lib/turnkey_client/models/intent.rb', line 257

def create_sub_organization_intent_v8
  @create_sub_organization_intent_v8
end

#create_tvc_app_intentObject

Returns the value of attribute create_tvc_app_intent.



241
242
243
# File 'lib/turnkey_client/models/intent.rb', line 241

def create_tvc_app_intent
  @create_tvc_app_intent
end

#create_tvc_deployment_intentObject

Returns the value of attribute create_tvc_deployment_intent.



243
244
245
# File 'lib/turnkey_client/models/intent.rb', line 243

def create_tvc_deployment_intent
  @create_tvc_deployment_intent
end

#create_tvc_manifest_approvals_intentObject

Returns the value of attribute create_tvc_manifest_approvals_intent.



245
246
247
# File 'lib/turnkey_client/models/intent.rb', line 245

def create_tvc_manifest_approvals_intent
  @create_tvc_manifest_approvals_intent
end

#create_user_tag_intentObject

Returns the value of attribute create_user_tag_intent.



43
44
45
# File 'lib/turnkey_client/models/intent.rb', line 43

def create_user_tag_intent
  @create_user_tag_intent
end

#create_users_intentObject

Returns the value of attribute create_users_intent.



19
20
21
# File 'lib/turnkey_client/models/intent.rb', line 19

def create_users_intent
  @create_users_intent
end

#create_users_intent_v2Object

Returns the value of attribute create_users_intent_v2.



85
86
87
# File 'lib/turnkey_client/models/intent.rb', line 85

def create_users_intent_v2
  @create_users_intent_v2
end

#create_users_intent_v3Object

Returns the value of attribute create_users_intent_v3.



177
178
179
# File 'lib/turnkey_client/models/intent.rb', line 177

def create_users_intent_v3
  @create_users_intent_v3
end

#create_users_intent_v4Object

Returns the value of attribute create_users_intent_v4.



261
262
263
# File 'lib/turnkey_client/models/intent.rb', line 261

def create_users_intent_v4
  @create_users_intent_v4
end

#create_wallet_accounts_intentObject

Returns the value of attribute create_wallet_accounts_intent.



105
106
107
# File 'lib/turnkey_client/models/intent.rb', line 105

def create_wallet_accounts_intent
  @create_wallet_accounts_intent
end

#create_wallet_intentObject

Returns the value of attribute create_wallet_intent.



103
104
105
# File 'lib/turnkey_client/models/intent.rb', line 103

def create_wallet_intent
  @create_wallet_intent
end

#create_webhook_endpoint_intentObject

Returns the value of attribute create_webhook_endpoint_intent.



263
264
265
# File 'lib/turnkey_client/models/intent.rb', line 263

def create_webhook_endpoint_intent
  @create_webhook_endpoint_intent
end

#delete_api_keys_intentObject

Returns the value of attribute delete_api_keys_intent.



51
52
53
# File 'lib/turnkey_client/models/intent.rb', line 51

def delete_api_keys_intent
  @delete_api_keys_intent
end

#delete_authenticators_intentObject

Returns the value of attribute delete_authenticators_intent.



35
36
37
# File 'lib/turnkey_client/models/intent.rb', line 35

def delete_authenticators_intent
  @delete_authenticators_intent
end

#delete_fiat_on_ramp_credential_intentObject

Returns the value of attribute delete_fiat_on_ramp_credential_intent.



229
230
231
# File 'lib/turnkey_client/models/intent.rb', line 229

def delete_fiat_on_ramp_credential_intent
  @delete_fiat_on_ramp_credential_intent
end

#delete_invitation_intentObject

Returns the value of attribute delete_invitation_intent.



37
38
39
# File 'lib/turnkey_client/models/intent.rb', line 37

def delete_invitation_intent
  @delete_invitation_intent
end

#delete_oauth2_credential_intentObject

Returns the value of attribute delete_oauth2_credential_intent.



213
214
215
# File 'lib/turnkey_client/models/intent.rb', line 213

def delete_oauth2_credential_intent
  @delete_oauth2_credential_intent
end

#delete_oauth_providers_intentObject

Returns the value of attribute delete_oauth_providers_intent.



145
146
147
# File 'lib/turnkey_client/models/intent.rb', line 145

def delete_oauth_providers_intent
  @delete_oauth_providers_intent
end

#delete_organization_intentObject

Returns the value of attribute delete_organization_intent.



39
40
41
# File 'lib/turnkey_client/models/intent.rb', line 39

def delete_organization_intent
  @delete_organization_intent
end

#delete_payment_method_intentObject

Returns the value of attribute delete_payment_method_intent.



67
68
69
# File 'lib/turnkey_client/models/intent.rb', line 67

def delete_payment_method_intent
  @delete_payment_method_intent
end

#delete_policies_intentObject

Returns the value of attribute delete_policies_intent.



219
220
221
# File 'lib/turnkey_client/models/intent.rb', line 219

def delete_policies_intent
  @delete_policies_intent
end

#delete_policy_intentObject

Returns the value of attribute delete_policy_intent.



41
42
43
# File 'lib/turnkey_client/models/intent.rb', line 41

def delete_policy_intent
  @delete_policy_intent
end

#delete_private_key_tags_intentObject

Returns the value of attribute delete_private_key_tags_intent.



59
60
61
# File 'lib/turnkey_client/models/intent.rb', line 59

def delete_private_key_tags_intent
  @delete_private_key_tags_intent
end

#delete_private_keys_intentObject

Returns the value of attribute delete_private_keys_intent.



159
160
161
# File 'lib/turnkey_client/models/intent.rb', line 159

def delete_private_keys_intent
  @delete_private_keys_intent
end

#delete_smart_contract_interface_intentObject

Returns the value of attribute delete_smart_contract_interface_intent.



201
202
203
# File 'lib/turnkey_client/models/intent.rb', line 201

def delete_smart_contract_interface_intent
  @delete_smart_contract_interface_intent
end

#delete_sub_organization_intentObject

Returns the value of attribute delete_sub_organization_intent.



165
166
167
# File 'lib/turnkey_client/models/intent.rb', line 165

def delete_sub_organization_intent
  @delete_sub_organization_intent
end

#delete_tvc_app_and_deployments_intentObject

Returns the value of attribute delete_tvc_app_and_deployments_intent.



277
278
279
# File 'lib/turnkey_client/models/intent.rb', line 277

def delete_tvc_app_and_deployments_intent
  @delete_tvc_app_and_deployments_intent
end

#delete_tvc_deployment_intentObject

Returns the value of attribute delete_tvc_deployment_intent.



275
276
277
# File 'lib/turnkey_client/models/intent.rb', line 275

def delete_tvc_deployment_intent
  @delete_tvc_deployment_intent
end

#delete_user_tags_intentObject

Returns the value of attribute delete_user_tags_intent.



45
46
47
# File 'lib/turnkey_client/models/intent.rb', line 45

def delete_user_tags_intent
  @delete_user_tags_intent
end

#delete_users_intentObject

Returns the value of attribute delete_users_intent.



33
34
35
# File 'lib/turnkey_client/models/intent.rb', line 33

def delete_users_intent
  @delete_users_intent
end

#delete_wallet_accounts_intentObject

Returns the value of attribute delete_wallet_accounts_intent.



217
218
219
# File 'lib/turnkey_client/models/intent.rb', line 217

def delete_wallet_accounts_intent
  @delete_wallet_accounts_intent
end

#delete_wallets_intentObject

Returns the value of attribute delete_wallets_intent.



161
162
163
# File 'lib/turnkey_client/models/intent.rb', line 161

def delete_wallets_intent
  @delete_wallets_intent
end

#delete_webhook_endpoint_intentObject

Returns the value of attribute delete_webhook_endpoint_intent.



267
268
269
# File 'lib/turnkey_client/models/intent.rb', line 267

def delete_webhook_endpoint_intent
  @delete_webhook_endpoint_intent
end

#disable_auth_proxy_intentObject

Returns the value of attribute disable_auth_proxy_intent.



205
206
207
# File 'lib/turnkey_client/models/intent.rb', line 205

def disable_auth_proxy_intent
  @disable_auth_proxy_intent
end

#disable_private_key_intentObject

Returns the value of attribute disable_private_key_intent.



31
32
33
# File 'lib/turnkey_client/models/intent.rb', line 31

def disable_private_key_intent
  @disable_private_key_intent
end

#email_auth_intentObject

Returns the value of attribute email_auth_intent.



125
126
127
# File 'lib/turnkey_client/models/intent.rb', line 125

def email_auth_intent
  @email_auth_intent
end

#email_auth_intent_v2Object

Returns the value of attribute email_auth_intent_v2.



155
156
157
# File 'lib/turnkey_client/models/intent.rb', line 155

def email_auth_intent_v2
  @email_auth_intent_v2
end

#email_auth_intent_v3Object

Returns the value of attribute email_auth_intent_v3.



231
232
233
# File 'lib/turnkey_client/models/intent.rb', line 231

def email_auth_intent_v3
  @email_auth_intent_v3
end

#enable_auth_proxy_intentObject

Returns the value of attribute enable_auth_proxy_intent.



203
204
205
# File 'lib/turnkey_client/models/intent.rb', line 203

def enable_auth_proxy_intent
  @enable_auth_proxy_intent
end

#eth_send_raw_transaction_intentObject

Returns the value of attribute eth_send_raw_transaction_intent.



221
222
223
# File 'lib/turnkey_client/models/intent.rb', line 221

def eth_send_raw_transaction_intent
  @eth_send_raw_transaction_intent
end

#eth_send_transaction_intentObject

Returns the value of attribute eth_send_transaction_intent.



223
224
225
# File 'lib/turnkey_client/models/intent.rb', line 223

def eth_send_transaction_intent
  @eth_send_transaction_intent
end

#export_private_key_intentObject

Returns the value of attribute export_private_key_intent.



119
120
121
# File 'lib/turnkey_client/models/intent.rb', line 119

def export_private_key_intent
  @export_private_key_intent
end

#export_wallet_account_intentObject

Returns the value of attribute export_wallet_account_intent.



127
128
129
# File 'lib/turnkey_client/models/intent.rb', line 127

def 
  @export_wallet_account_intent
end

#export_wallet_intentObject

Returns the value of attribute export_wallet_intent.



121
122
123
# File 'lib/turnkey_client/models/intent.rb', line 121

def export_wallet_intent
  @export_wallet_intent
end

#import_private_key_intentObject

Returns the value of attribute import_private_key_intent.



135
136
137
# File 'lib/turnkey_client/models/intent.rb', line 135

def import_private_key_intent
  @import_private_key_intent
end

#import_wallet_intentObject

Returns the value of attribute import_wallet_intent.



131
132
133
# File 'lib/turnkey_client/models/intent.rb', line 131

def import_wallet_intent
  @import_wallet_intent
end

#init_fiat_on_ramp_intentObject

Returns the value of attribute init_fiat_on_ramp_intent.



197
198
199
# File 'lib/turnkey_client/models/intent.rb', line 197

def init_fiat_on_ramp_intent
  @init_fiat_on_ramp_intent
end

#init_import_private_key_intentObject

Returns the value of attribute init_import_private_key_intent.



133
134
135
# File 'lib/turnkey_client/models/intent.rb', line 133

def init_import_private_key_intent
  @init_import_private_key_intent
end

#init_import_wallet_intentObject

Returns the value of attribute init_import_wallet_intent.



129
130
131
# File 'lib/turnkey_client/models/intent.rb', line 129

def init_import_wallet_intent
  @init_import_wallet_intent
end

#init_otp_auth_intentObject

Returns the value of attribute init_otp_auth_intent.



167
168
169
# File 'lib/turnkey_client/models/intent.rb', line 167

def init_otp_auth_intent
  @init_otp_auth_intent
end

#init_otp_auth_intent_v2Object

Returns the value of attribute init_otp_auth_intent_v2.



179
180
181
# File 'lib/turnkey_client/models/intent.rb', line 179

def init_otp_auth_intent_v2
  @init_otp_auth_intent_v2
end

#init_otp_auth_intent_v3Object

Returns the value of attribute init_otp_auth_intent_v3.



237
238
239
# File 'lib/turnkey_client/models/intent.rb', line 237

def init_otp_auth_intent_v3
  @init_otp_auth_intent_v3
end

#init_otp_intentObject

Returns the value of attribute init_otp_intent.



181
182
183
# File 'lib/turnkey_client/models/intent.rb', line 181

def init_otp_intent
  @init_otp_intent
end

#init_otp_intent_v2Object

Returns the value of attribute init_otp_intent_v2.



235
236
237
# File 'lib/turnkey_client/models/intent.rb', line 235

def init_otp_intent_v2
  @init_otp_intent_v2
end

#init_otp_intent_v3Object

Returns the value of attribute init_otp_intent_v3.



249
250
251
# File 'lib/turnkey_client/models/intent.rb', line 249

def init_otp_intent_v3
  @init_otp_intent_v3
end

#init_user_email_recovery_intentObject

Returns the value of attribute init_user_email_recovery_intent.



107
108
109
# File 'lib/turnkey_client/models/intent.rb', line 107

def init_user_email_recovery_intent
  @init_user_email_recovery_intent
end

#init_user_email_recovery_intent_v2Object

Returns the value of attribute init_user_email_recovery_intent_v2.



233
234
235
# File 'lib/turnkey_client/models/intent.rb', line 233

def init_user_email_recovery_intent_v2
  @init_user_email_recovery_intent_v2
end

#oauth2_authenticate_intentObject

Returns the value of attribute oauth2_authenticate_intent.



215
216
217
# File 'lib/turnkey_client/models/intent.rb', line 215

def oauth2_authenticate_intent
  @oauth2_authenticate_intent
end

#oauth_intentObject

Returns the value of attribute oauth_intent.



149
150
151
# File 'lib/turnkey_client/models/intent.rb', line 149

def oauth_intent
  @oauth_intent
end

#oauth_login_intentObject

Returns the value of attribute oauth_login_intent.



189
190
191
# File 'lib/turnkey_client/models/intent.rb', line 189

def 
  @oauth_login_intent
end

#otp_auth_intentObject

Returns the value of attribute otp_auth_intent.



169
170
171
# File 'lib/turnkey_client/models/intent.rb', line 169

def otp_auth_intent
  @otp_auth_intent
end

#otp_login_intentObject

Returns the value of attribute otp_login_intent.



185
186
187
# File 'lib/turnkey_client/models/intent.rb', line 185

def 
  @otp_login_intent
end

#otp_login_intent_v2Object

Returns the value of attribute otp_login_intent_v2.



253
254
255
# File 'lib/turnkey_client/models/intent.rb', line 253

def 
  @otp_login_intent_v2
end

#post_tvc_quorum_key_share_intentObject

Returns the value of attribute post_tvc_quorum_key_share_intent.



289
290
291
# File 'lib/turnkey_client/models/intent.rb', line 289

def post_tvc_quorum_key_share_intent
  @post_tvc_quorum_key_share_intent
end

#recover_user_intentObject

Returns the value of attribute recover_user_intent.



109
110
111
# File 'lib/turnkey_client/models/intent.rb', line 109

def recover_user_intent
  @recover_user_intent
end

#reject_activity_intentObject

Returns the value of attribute reject_activity_intent.



55
56
57
# File 'lib/turnkey_client/models/intent.rb', line 55

def reject_activity_intent
  @reject_activity_intent
end

#remove_ip_allowlist_intentObject

Returns the value of attribute remove_ip_allowlist_intent.



271
272
273
# File 'lib/turnkey_client/models/intent.rb', line 271

def remove_ip_allowlist_intent
  @remove_ip_allowlist_intent
end

#remove_organization_feature_intentObject

Returns the value of attribute remove_organization_feature_intent.



113
114
115
# File 'lib/turnkey_client/models/intent.rb', line 113

def remove_organization_feature_intent
  @remove_organization_feature_intent
end

#restore_tvc_deployment_intentObject

Returns the value of attribute restore_tvc_deployment_intent.



279
280
281
# File 'lib/turnkey_client/models/intent.rb', line 279

def restore_tvc_deployment_intent
  @restore_tvc_deployment_intent
end

#set_ip_allowlist_intentObject

Returns the value of attribute set_ip_allowlist_intent.



269
270
271
# File 'lib/turnkey_client/models/intent.rb', line 269

def set_ip_allowlist_intent
  @set_ip_allowlist_intent
end

#set_organization_feature_intentObject

Returns the value of attribute set_organization_feature_intent.



111
112
113
# File 'lib/turnkey_client/models/intent.rb', line 111

def set_organization_feature_intent
  @set_organization_feature_intent
end

#set_payment_method_intentObject

Returns the value of attribute set_payment_method_intent.



63
64
65
# File 'lib/turnkey_client/models/intent.rb', line 63

def set_payment_method_intent
  @set_payment_method_intent
end

#set_payment_method_intent_v2Object

Returns the value of attribute set_payment_method_intent_v2.



99
100
101
# File 'lib/turnkey_client/models/intent.rb', line 99

def set_payment_method_intent_v2
  @set_payment_method_intent_v2
end

#sign_raw_payload_intentObject

Returns the value of attribute sign_raw_payload_intent.



23
24
25
# File 'lib/turnkey_client/models/intent.rb', line 23

def sign_raw_payload_intent
  @sign_raw_payload_intent
end

#sign_raw_payload_intent_v2Object

Returns the value of attribute sign_raw_payload_intent_v2.



115
116
117
# File 'lib/turnkey_client/models/intent.rb', line 115

def sign_raw_payload_intent_v2
  @sign_raw_payload_intent_v2
end

#sign_raw_payloads_intentObject

Returns the value of attribute sign_raw_payloads_intent.



139
140
141
# File 'lib/turnkey_client/models/intent.rb', line 139

def sign_raw_payloads_intent
  @sign_raw_payloads_intent
end

#sign_transaction_intentObject

Returns the value of attribute sign_transaction_intent.



47
48
49
# File 'lib/turnkey_client/models/intent.rb', line 47

def sign_transaction_intent
  @sign_transaction_intent
end

#sign_transaction_intent_v2Object

Returns the value of attribute sign_transaction_intent_v2.



117
118
119
# File 'lib/turnkey_client/models/intent.rb', line 117

def sign_transaction_intent_v2
  @sign_transaction_intent_v2
end

#sol_send_transaction_intentObject

Returns the value of attribute sol_send_transaction_intent.



247
248
249
# File 'lib/turnkey_client/models/intent.rb', line 247

def sol_send_transaction_intent
  @sol_send_transaction_intent
end

#spark_claim_transfer_intentObject

Returns the value of attribute spark_claim_transfer_intent.



285
286
287
# File 'lib/turnkey_client/models/intent.rb', line 285

def spark_claim_transfer_intent
  @spark_claim_transfer_intent
end

#spark_prepare_lightning_receive_intentObject

Returns the value of attribute spark_prepare_lightning_receive_intent.



287
288
289
# File 'lib/turnkey_client/models/intent.rb', line 287

def spark_prepare_lightning_receive_intent
  @spark_prepare_lightning_receive_intent
end

#spark_prepare_transfer_intentObject

Returns the value of attribute spark_prepare_transfer_intent.



283
284
285
# File 'lib/turnkey_client/models/intent.rb', line 283

def spark_prepare_transfer_intent
  @spark_prepare_transfer_intent
end

#spark_sign_frost_intentObject

Returns the value of attribute spark_sign_frost_intent.



281
282
283
# File 'lib/turnkey_client/models/intent.rb', line 281

def spark_sign_frost_intent
  @spark_sign_frost_intent
end

#stamp_login_intentObject

Returns the value of attribute stamp_login_intent.



187
188
189
# File 'lib/turnkey_client/models/intent.rb', line 187

def 
  @stamp_login_intent
end

#update_allowed_origins_intentObject

Returns the value of attribute update_allowed_origins_intent.



91
92
93
# File 'lib/turnkey_client/models/intent.rb', line 91

def update_allowed_origins_intent
  @update_allowed_origins_intent
end

#update_auth_proxy_config_intentObject

Returns the value of attribute update_auth_proxy_config_intent.



207
208
209
# File 'lib/turnkey_client/models/intent.rb', line 207

def update_auth_proxy_config_intent
  @update_auth_proxy_config_intent
end

#update_fiat_on_ramp_credential_intentObject

Returns the value of attribute update_fiat_on_ramp_credential_intent.



227
228
229
# File 'lib/turnkey_client/models/intent.rb', line 227

def update_fiat_on_ramp_credential_intent
  @update_fiat_on_ramp_credential_intent
end

#update_oauth2_credential_intentObject

Returns the value of attribute update_oauth2_credential_intent.



211
212
213
# File 'lib/turnkey_client/models/intent.rb', line 211

def update_oauth2_credential_intent
  @update_oauth2_credential_intent
end

#update_organization_name_intentObject

Returns the value of attribute update_organization_name_intent.



255
256
257
# File 'lib/turnkey_client/models/intent.rb', line 255

def update_organization_name_intent
  @update_organization_name_intent
end

#update_policy_intentObject

Returns the value of attribute update_policy_intent.



97
98
99
# File 'lib/turnkey_client/models/intent.rb', line 97

def update_policy_intent
  @update_policy_intent
end

#update_policy_intent_v2Object

Returns the value of attribute update_policy_intent_v2.



175
176
177
# File 'lib/turnkey_client/models/intent.rb', line 175

def update_policy_intent_v2
  @update_policy_intent_v2
end

#update_private_key_tag_intentObject

Returns the value of attribute update_private_key_tag_intent.



77
78
79
# File 'lib/turnkey_client/models/intent.rb', line 77

def update_private_key_tag_intent
  @update_private_key_tag_intent
end

#update_root_quorum_intentObject

Returns the value of attribute update_root_quorum_intent.



73
74
75
# File 'lib/turnkey_client/models/intent.rb', line 73

def update_root_quorum_intent
  @update_root_quorum_intent
end

#update_tvc_app_live_deployment_intentObject

Returns the value of attribute update_tvc_app_live_deployment_intent.



273
274
275
# File 'lib/turnkey_client/models/intent.rb', line 273

def update_tvc_app_live_deployment_intent
  @update_tvc_app_live_deployment_intent
end

#update_user_email_intentObject

Returns the value of attribute update_user_email_intent.



193
194
195
# File 'lib/turnkey_client/models/intent.rb', line 193

def update_user_email_intent
  @update_user_email_intent
end

#update_user_intentObject

Returns the value of attribute update_user_intent.



95
96
97
# File 'lib/turnkey_client/models/intent.rb', line 95

def update_user_intent
  @update_user_intent
end

#update_user_name_intentObject

Returns the value of attribute update_user_name_intent.



191
192
193
# File 'lib/turnkey_client/models/intent.rb', line 191

def update_user_name_intent
  @update_user_name_intent
end

#update_user_phone_number_intentObject

Returns the value of attribute update_user_phone_number_intent.



195
196
197
# File 'lib/turnkey_client/models/intent.rb', line 195

def update_user_phone_number_intent
  @update_user_phone_number_intent
end

#update_user_tag_intentObject

Returns the value of attribute update_user_tag_intent.



75
76
77
# File 'lib/turnkey_client/models/intent.rb', line 75

def update_user_tag_intent
  @update_user_tag_intent
end

#update_wallet_intentObject

Returns the value of attribute update_wallet_intent.



173
174
175
# File 'lib/turnkey_client/models/intent.rb', line 173

def update_wallet_intent
  @update_wallet_intent
end

#update_webhook_endpoint_intentObject

Returns the value of attribute update_webhook_endpoint_intent.



265
266
267
# File 'lib/turnkey_client/models/intent.rb', line 265

def update_webhook_endpoint_intent
  @update_webhook_endpoint_intent
end

#upsert_gas_usage_config_intentObject

Returns the value of attribute upsert_gas_usage_config_intent.



239
240
241
# File 'lib/turnkey_client/models/intent.rb', line 239

def upsert_gas_usage_config_intent
  @upsert_gas_usage_config_intent
end

#verify_otp_intentObject

Returns the value of attribute verify_otp_intent.



183
184
185
# File 'lib/turnkey_client/models/intent.rb', line 183

def verify_otp_intent
  @verify_otp_intent
end

#verify_otp_intent_v2Object

Returns the value of attribute verify_otp_intent_v2.



251
252
253
# File 'lib/turnkey_client/models/intent.rb', line 251

def verify_otp_intent_v2
  @verify_otp_intent_v2
end

Class Method Details

.attribute_mapObject

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



292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
# File 'lib/turnkey_client/models/intent.rb', line 292

def self.attribute_map
  {
    :'create_organization_intent' => :'createOrganizationIntent',
    :'create_authenticators_intent' => :'createAuthenticatorsIntent',
    :'create_users_intent' => :'createUsersIntent',
    :'create_private_keys_intent' => :'createPrivateKeysIntent',
    :'sign_raw_payload_intent' => :'signRawPayloadIntent',
    :'create_invitations_intent' => :'createInvitationsIntent',
    :'accept_invitation_intent' => :'acceptInvitationIntent',
    :'create_policy_intent' => :'createPolicyIntent',
    :'disable_private_key_intent' => :'disablePrivateKeyIntent',
    :'delete_users_intent' => :'deleteUsersIntent',
    :'delete_authenticators_intent' => :'deleteAuthenticatorsIntent',
    :'delete_invitation_intent' => :'deleteInvitationIntent',
    :'delete_organization_intent' => :'deleteOrganizationIntent',
    :'delete_policy_intent' => :'deletePolicyIntent',
    :'create_user_tag_intent' => :'createUserTagIntent',
    :'delete_user_tags_intent' => :'deleteUserTagsIntent',
    :'sign_transaction_intent' => :'signTransactionIntent',
    :'create_api_keys_intent' => :'createApiKeysIntent',
    :'delete_api_keys_intent' => :'deleteApiKeysIntent',
    :'approve_activity_intent' => :'approveActivityIntent',
    :'reject_activity_intent' => :'rejectActivityIntent',
    :'create_private_key_tag_intent' => :'createPrivateKeyTagIntent',
    :'delete_private_key_tags_intent' => :'deletePrivateKeyTagsIntent',
    :'create_policy_intent_v2' => :'createPolicyIntentV2',
    :'set_payment_method_intent' => :'setPaymentMethodIntent',
    :'activate_billing_tier_intent' => :'activateBillingTierIntent',
    :'delete_payment_method_intent' => :'deletePaymentMethodIntent',
    :'create_policy_intent_v3' => :'createPolicyIntentV3',
    :'create_api_only_users_intent' => :'createApiOnlyUsersIntent',
    :'update_root_quorum_intent' => :'updateRootQuorumIntent',
    :'update_user_tag_intent' => :'updateUserTagIntent',
    :'update_private_key_tag_intent' => :'updatePrivateKeyTagIntent',
    :'create_authenticators_intent_v2' => :'createAuthenticatorsIntentV2',
    :'accept_invitation_intent_v2' => :'acceptInvitationIntentV2',
    :'create_organization_intent_v2' => :'createOrganizationIntentV2',
    :'create_users_intent_v2' => :'createUsersIntentV2',
    :'create_sub_organization_intent' => :'createSubOrganizationIntent',
    :'create_sub_organization_intent_v2' => :'createSubOrganizationIntentV2',
    :'update_allowed_origins_intent' => :'updateAllowedOriginsIntent',
    :'create_private_keys_intent_v2' => :'createPrivateKeysIntentV2',
    :'update_user_intent' => :'updateUserIntent',
    :'update_policy_intent' => :'updatePolicyIntent',
    :'set_payment_method_intent_v2' => :'setPaymentMethodIntentV2',
    :'create_sub_organization_intent_v3' => :'createSubOrganizationIntentV3',
    :'create_wallet_intent' => :'createWalletIntent',
    :'create_wallet_accounts_intent' => :'createWalletAccountsIntent',
    :'init_user_email_recovery_intent' => :'initUserEmailRecoveryIntent',
    :'recover_user_intent' => :'recoverUserIntent',
    :'set_organization_feature_intent' => :'setOrganizationFeatureIntent',
    :'remove_organization_feature_intent' => :'removeOrganizationFeatureIntent',
    :'sign_raw_payload_intent_v2' => :'signRawPayloadIntentV2',
    :'sign_transaction_intent_v2' => :'signTransactionIntentV2',
    :'export_private_key_intent' => :'exportPrivateKeyIntent',
    :'export_wallet_intent' => :'exportWalletIntent',
    :'create_sub_organization_intent_v4' => :'createSubOrganizationIntentV4',
    :'email_auth_intent' => :'emailAuthIntent',
    :'export_wallet_account_intent' => :'exportWalletAccountIntent',
    :'init_import_wallet_intent' => :'initImportWalletIntent',
    :'import_wallet_intent' => :'importWalletIntent',
    :'init_import_private_key_intent' => :'initImportPrivateKeyIntent',
    :'import_private_key_intent' => :'importPrivateKeyIntent',
    :'create_policies_intent' => :'createPoliciesIntent',
    :'sign_raw_payloads_intent' => :'signRawPayloadsIntent',
    :'create_read_only_session_intent' => :'createReadOnlySessionIntent',
    :'create_oauth_providers_intent' => :'createOauthProvidersIntent',
    :'delete_oauth_providers_intent' => :'deleteOauthProvidersIntent',
    :'create_sub_organization_intent_v5' => :'createSubOrganizationIntentV5',
    :'oauth_intent' => :'oauthIntent',
    :'create_api_keys_intent_v2' => :'createApiKeysIntentV2',
    :'create_read_write_session_intent' => :'createReadWriteSessionIntent',
    :'email_auth_intent_v2' => :'emailAuthIntentV2',
    :'create_sub_organization_intent_v6' => :'createSubOrganizationIntentV6',
    :'delete_private_keys_intent' => :'deletePrivateKeysIntent',
    :'delete_wallets_intent' => :'deleteWalletsIntent',
    :'create_read_write_session_intent_v2' => :'createReadWriteSessionIntentV2',
    :'delete_sub_organization_intent' => :'deleteSubOrganizationIntent',
    :'init_otp_auth_intent' => :'initOtpAuthIntent',
    :'otp_auth_intent' => :'otpAuthIntent',
    :'create_sub_organization_intent_v7' => :'createSubOrganizationIntentV7',
    :'update_wallet_intent' => :'updateWalletIntent',
    :'update_policy_intent_v2' => :'updatePolicyIntentV2',
    :'create_users_intent_v3' => :'createUsersIntentV3',
    :'init_otp_auth_intent_v2' => :'initOtpAuthIntentV2',
    :'init_otp_intent' => :'initOtpIntent',
    :'verify_otp_intent' => :'verifyOtpIntent',
    :'otp_login_intent' => :'otpLoginIntent',
    :'stamp_login_intent' => :'stampLoginIntent',
    :'oauth_login_intent' => :'oauthLoginIntent',
    :'update_user_name_intent' => :'updateUserNameIntent',
    :'update_user_email_intent' => :'updateUserEmailIntent',
    :'update_user_phone_number_intent' => :'updateUserPhoneNumberIntent',
    :'init_fiat_on_ramp_intent' => :'initFiatOnRampIntent',
    :'create_smart_contract_interface_intent' => :'createSmartContractInterfaceIntent',
    :'delete_smart_contract_interface_intent' => :'deleteSmartContractInterfaceIntent',
    :'enable_auth_proxy_intent' => :'enableAuthProxyIntent',
    :'disable_auth_proxy_intent' => :'disableAuthProxyIntent',
    :'update_auth_proxy_config_intent' => :'updateAuthProxyConfigIntent',
    :'create_oauth2_credential_intent' => :'createOauth2CredentialIntent',
    :'update_oauth2_credential_intent' => :'updateOauth2CredentialIntent',
    :'delete_oauth2_credential_intent' => :'deleteOauth2CredentialIntent',
    :'oauth2_authenticate_intent' => :'oauth2AuthenticateIntent',
    :'delete_wallet_accounts_intent' => :'deleteWalletAccountsIntent',
    :'delete_policies_intent' => :'deletePoliciesIntent',
    :'eth_send_raw_transaction_intent' => :'ethSendRawTransactionIntent',
    :'eth_send_transaction_intent' => :'ethSendTransactionIntent',
    :'create_fiat_on_ramp_credential_intent' => :'createFiatOnRampCredentialIntent',
    :'update_fiat_on_ramp_credential_intent' => :'updateFiatOnRampCredentialIntent',
    :'delete_fiat_on_ramp_credential_intent' => :'deleteFiatOnRampCredentialIntent',
    :'email_auth_intent_v3' => :'emailAuthIntentV3',
    :'init_user_email_recovery_intent_v2' => :'initUserEmailRecoveryIntentV2',
    :'init_otp_intent_v2' => :'initOtpIntentV2',
    :'init_otp_auth_intent_v3' => :'initOtpAuthIntentV3',
    :'upsert_gas_usage_config_intent' => :'upsertGasUsageConfigIntent',
    :'create_tvc_app_intent' => :'createTvcAppIntent',
    :'create_tvc_deployment_intent' => :'createTvcDeploymentIntent',
    :'create_tvc_manifest_approvals_intent' => :'createTvcManifestApprovalsIntent',
    :'sol_send_transaction_intent' => :'solSendTransactionIntent',
    :'init_otp_intent_v3' => :'initOtpIntentV3',
    :'verify_otp_intent_v2' => :'verifyOtpIntentV2',
    :'otp_login_intent_v2' => :'otpLoginIntentV2',
    :'update_organization_name_intent' => :'updateOrganizationNameIntent',
    :'create_sub_organization_intent_v8' => :'createSubOrganizationIntentV8',
    :'create_oauth_providers_intent_v2' => :'createOauthProvidersIntentV2',
    :'create_users_intent_v4' => :'createUsersIntentV4',
    :'create_webhook_endpoint_intent' => :'createWebhookEndpointIntent',
    :'update_webhook_endpoint_intent' => :'updateWebhookEndpointIntent',
    :'delete_webhook_endpoint_intent' => :'deleteWebhookEndpointIntent',
    :'set_ip_allowlist_intent' => :'setIpAllowlistIntent',
    :'remove_ip_allowlist_intent' => :'removeIpAllowlistIntent',
    :'update_tvc_app_live_deployment_intent' => :'updateTvcAppLiveDeploymentIntent',
    :'delete_tvc_deployment_intent' => :'deleteTvcDeploymentIntent',
    :'delete_tvc_app_and_deployments_intent' => :'deleteTvcAppAndDeploymentsIntent',
    :'restore_tvc_deployment_intent' => :'restoreTvcDeploymentIntent',
    :'spark_sign_frost_intent' => :'sparkSignFrostIntent',
    :'spark_prepare_transfer_intent' => :'sparkPrepareTransferIntent',
    :'spark_claim_transfer_intent' => :'sparkClaimTransferIntent',
    :'spark_prepare_lightning_receive_intent' => :'sparkPrepareLightningReceiveIntent',
    :'post_tvc_quorum_key_share_intent' => :'postTvcQuorumKeyShareIntent'
  }
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



1326
1327
1328
# File 'lib/turnkey_client/models/intent.rb', line 1326

def self.build_from_hash(attributes)
  new.build_from_hash(attributes)
end

.openapi_nullableObject

List of attributes with nullable: true



580
581
582
583
# File 'lib/turnkey_client/models/intent.rb', line 580

def self.openapi_nullable
  Set.new([
  ])
end

.openapi_typesObject

Attribute type mapping.



436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
# File 'lib/turnkey_client/models/intent.rb', line 436

def self.openapi_types
  {
    :'create_organization_intent' => :'Object',
    :'create_authenticators_intent' => :'Object',
    :'create_users_intent' => :'Object',
    :'create_private_keys_intent' => :'Object',
    :'sign_raw_payload_intent' => :'Object',
    :'create_invitations_intent' => :'Object',
    :'accept_invitation_intent' => :'Object',
    :'create_policy_intent' => :'Object',
    :'disable_private_key_intent' => :'Object',
    :'delete_users_intent' => :'Object',
    :'delete_authenticators_intent' => :'Object',
    :'delete_invitation_intent' => :'Object',
    :'delete_organization_intent' => :'Object',
    :'delete_policy_intent' => :'Object',
    :'create_user_tag_intent' => :'Object',
    :'delete_user_tags_intent' => :'Object',
    :'sign_transaction_intent' => :'Object',
    :'create_api_keys_intent' => :'Object',
    :'delete_api_keys_intent' => :'Object',
    :'approve_activity_intent' => :'Object',
    :'reject_activity_intent' => :'Object',
    :'create_private_key_tag_intent' => :'Object',
    :'delete_private_key_tags_intent' => :'Object',
    :'create_policy_intent_v2' => :'Object',
    :'set_payment_method_intent' => :'Object',
    :'activate_billing_tier_intent' => :'Object',
    :'delete_payment_method_intent' => :'Object',
    :'create_policy_intent_v3' => :'Object',
    :'create_api_only_users_intent' => :'Object',
    :'update_root_quorum_intent' => :'Object',
    :'update_user_tag_intent' => :'Object',
    :'update_private_key_tag_intent' => :'Object',
    :'create_authenticators_intent_v2' => :'Object',
    :'accept_invitation_intent_v2' => :'Object',
    :'create_organization_intent_v2' => :'Object',
    :'create_users_intent_v2' => :'Object',
    :'create_sub_organization_intent' => :'Object',
    :'create_sub_organization_intent_v2' => :'Object',
    :'update_allowed_origins_intent' => :'Object',
    :'create_private_keys_intent_v2' => :'Object',
    :'update_user_intent' => :'Object',
    :'update_policy_intent' => :'Object',
    :'set_payment_method_intent_v2' => :'Object',
    :'create_sub_organization_intent_v3' => :'Object',
    :'create_wallet_intent' => :'Object',
    :'create_wallet_accounts_intent' => :'Object',
    :'init_user_email_recovery_intent' => :'Object',
    :'recover_user_intent' => :'Object',
    :'set_organization_feature_intent' => :'Object',
    :'remove_organization_feature_intent' => :'Object',
    :'sign_raw_payload_intent_v2' => :'Object',
    :'sign_transaction_intent_v2' => :'Object',
    :'export_private_key_intent' => :'Object',
    :'export_wallet_intent' => :'Object',
    :'create_sub_organization_intent_v4' => :'Object',
    :'email_auth_intent' => :'Object',
    :'export_wallet_account_intent' => :'Object',
    :'init_import_wallet_intent' => :'Object',
    :'import_wallet_intent' => :'Object',
    :'init_import_private_key_intent' => :'Object',
    :'import_private_key_intent' => :'Object',
    :'create_policies_intent' => :'Object',
    :'sign_raw_payloads_intent' => :'Object',
    :'create_read_only_session_intent' => :'Object',
    :'create_oauth_providers_intent' => :'Object',
    :'delete_oauth_providers_intent' => :'Object',
    :'create_sub_organization_intent_v5' => :'Object',
    :'oauth_intent' => :'Object',
    :'create_api_keys_intent_v2' => :'Object',
    :'create_read_write_session_intent' => :'Object',
    :'email_auth_intent_v2' => :'Object',
    :'create_sub_organization_intent_v6' => :'Object',
    :'delete_private_keys_intent' => :'Object',
    :'delete_wallets_intent' => :'Object',
    :'create_read_write_session_intent_v2' => :'Object',
    :'delete_sub_organization_intent' => :'Object',
    :'init_otp_auth_intent' => :'Object',
    :'otp_auth_intent' => :'Object',
    :'create_sub_organization_intent_v7' => :'Object',
    :'update_wallet_intent' => :'Object',
    :'update_policy_intent_v2' => :'Object',
    :'create_users_intent_v3' => :'Object',
    :'init_otp_auth_intent_v2' => :'Object',
    :'init_otp_intent' => :'Object',
    :'verify_otp_intent' => :'Object',
    :'otp_login_intent' => :'Object',
    :'stamp_login_intent' => :'Object',
    :'oauth_login_intent' => :'Object',
    :'update_user_name_intent' => :'Object',
    :'update_user_email_intent' => :'Object',
    :'update_user_phone_number_intent' => :'Object',
    :'init_fiat_on_ramp_intent' => :'Object',
    :'create_smart_contract_interface_intent' => :'Object',
    :'delete_smart_contract_interface_intent' => :'Object',
    :'enable_auth_proxy_intent' => :'Object',
    :'disable_auth_proxy_intent' => :'Object',
    :'update_auth_proxy_config_intent' => :'Object',
    :'create_oauth2_credential_intent' => :'Object',
    :'update_oauth2_credential_intent' => :'Object',
    :'delete_oauth2_credential_intent' => :'Object',
    :'oauth2_authenticate_intent' => :'Object',
    :'delete_wallet_accounts_intent' => :'Object',
    :'delete_policies_intent' => :'Object',
    :'eth_send_raw_transaction_intent' => :'Object',
    :'eth_send_transaction_intent' => :'Object',
    :'create_fiat_on_ramp_credential_intent' => :'Object',
    :'update_fiat_on_ramp_credential_intent' => :'Object',
    :'delete_fiat_on_ramp_credential_intent' => :'Object',
    :'email_auth_intent_v3' => :'Object',
    :'init_user_email_recovery_intent_v2' => :'Object',
    :'init_otp_intent_v2' => :'Object',
    :'init_otp_auth_intent_v3' => :'Object',
    :'upsert_gas_usage_config_intent' => :'Object',
    :'create_tvc_app_intent' => :'Object',
    :'create_tvc_deployment_intent' => :'Object',
    :'create_tvc_manifest_approvals_intent' => :'Object',
    :'sol_send_transaction_intent' => :'Object',
    :'init_otp_intent_v3' => :'Object',
    :'verify_otp_intent_v2' => :'Object',
    :'otp_login_intent_v2' => :'Object',
    :'update_organization_name_intent' => :'Object',
    :'create_sub_organization_intent_v8' => :'Object',
    :'create_oauth_providers_intent_v2' => :'Object',
    :'create_users_intent_v4' => :'Object',
    :'create_webhook_endpoint_intent' => :'Object',
    :'update_webhook_endpoint_intent' => :'Object',
    :'delete_webhook_endpoint_intent' => :'Object',
    :'set_ip_allowlist_intent' => :'Object',
    :'remove_ip_allowlist_intent' => :'Object',
    :'update_tvc_app_live_deployment_intent' => :'Object',
    :'delete_tvc_deployment_intent' => :'Object',
    :'delete_tvc_app_and_deployments_intent' => :'Object',
    :'restore_tvc_deployment_intent' => :'Object',
    :'spark_sign_frost_intent' => :'Object',
    :'spark_prepare_transfer_intent' => :'Object',
    :'spark_claim_transfer_intent' => :'Object',
    :'spark_prepare_lightning_receive_intent' => :'Object',
    :'post_tvc_quorum_key_share_intent' => :'Object'
  }
end

Instance Method Details

#==(o) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • Object (Object)

    to be compared



1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
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
# File 'lib/turnkey_client/models/intent.rb', line 1168

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
      create_organization_intent == o.create_organization_intent &&
      create_authenticators_intent == o.create_authenticators_intent &&
      create_users_intent == o.create_users_intent &&
      create_private_keys_intent == o.create_private_keys_intent &&
      sign_raw_payload_intent == o.sign_raw_payload_intent &&
      create_invitations_intent == o.create_invitations_intent &&
      accept_invitation_intent == o.accept_invitation_intent &&
      create_policy_intent == o.create_policy_intent &&
      disable_private_key_intent == o.disable_private_key_intent &&
      delete_users_intent == o.delete_users_intent &&
      delete_authenticators_intent == o.delete_authenticators_intent &&
      delete_invitation_intent == o.delete_invitation_intent &&
      delete_organization_intent == o.delete_organization_intent &&
      delete_policy_intent == o.delete_policy_intent &&
      create_user_tag_intent == o.create_user_tag_intent &&
      delete_user_tags_intent == o.delete_user_tags_intent &&
      sign_transaction_intent == o.sign_transaction_intent &&
      create_api_keys_intent == o.create_api_keys_intent &&
      delete_api_keys_intent == o.delete_api_keys_intent &&
      approve_activity_intent == o.approve_activity_intent &&
      reject_activity_intent == o.reject_activity_intent &&
      create_private_key_tag_intent == o.create_private_key_tag_intent &&
      delete_private_key_tags_intent == o.delete_private_key_tags_intent &&
      create_policy_intent_v2 == o.create_policy_intent_v2 &&
      set_payment_method_intent == o.set_payment_method_intent &&
      activate_billing_tier_intent == o.activate_billing_tier_intent &&
      delete_payment_method_intent == o.delete_payment_method_intent &&
      create_policy_intent_v3 == o.create_policy_intent_v3 &&
      create_api_only_users_intent == o.create_api_only_users_intent &&
      update_root_quorum_intent == o.update_root_quorum_intent &&
      update_user_tag_intent == o.update_user_tag_intent &&
      update_private_key_tag_intent == o.update_private_key_tag_intent &&
      create_authenticators_intent_v2 == o.create_authenticators_intent_v2 &&
      accept_invitation_intent_v2 == o.accept_invitation_intent_v2 &&
      create_organization_intent_v2 == o.create_organization_intent_v2 &&
      create_users_intent_v2 == o.create_users_intent_v2 &&
      create_sub_organization_intent == o.create_sub_organization_intent &&
      create_sub_organization_intent_v2 == o.create_sub_organization_intent_v2 &&
      update_allowed_origins_intent == o.update_allowed_origins_intent &&
      create_private_keys_intent_v2 == o.create_private_keys_intent_v2 &&
      update_user_intent == o.update_user_intent &&
      update_policy_intent == o.update_policy_intent &&
      set_payment_method_intent_v2 == o.set_payment_method_intent_v2 &&
      create_sub_organization_intent_v3 == o.create_sub_organization_intent_v3 &&
      create_wallet_intent == o.create_wallet_intent &&
      create_wallet_accounts_intent == o.create_wallet_accounts_intent &&
      init_user_email_recovery_intent == o.init_user_email_recovery_intent &&
      recover_user_intent == o.recover_user_intent &&
      set_organization_feature_intent == o.set_organization_feature_intent &&
      remove_organization_feature_intent == o.remove_organization_feature_intent &&
      sign_raw_payload_intent_v2 == o.sign_raw_payload_intent_v2 &&
      sign_transaction_intent_v2 == o.sign_transaction_intent_v2 &&
      export_private_key_intent == o.export_private_key_intent &&
      export_wallet_intent == o.export_wallet_intent &&
      create_sub_organization_intent_v4 == o.create_sub_organization_intent_v4 &&
      email_auth_intent == o.email_auth_intent &&
       == o. &&
      init_import_wallet_intent == o.init_import_wallet_intent &&
      import_wallet_intent == o.import_wallet_intent &&
      init_import_private_key_intent == o.init_import_private_key_intent &&
      import_private_key_intent == o.import_private_key_intent &&
      create_policies_intent == o.create_policies_intent &&
      sign_raw_payloads_intent == o.sign_raw_payloads_intent &&
      create_read_only_session_intent == o.create_read_only_session_intent &&
      create_oauth_providers_intent == o.create_oauth_providers_intent &&
      delete_oauth_providers_intent == o.delete_oauth_providers_intent &&
      create_sub_organization_intent_v5 == o.create_sub_organization_intent_v5 &&
      oauth_intent == o.oauth_intent &&
      create_api_keys_intent_v2 == o.create_api_keys_intent_v2 &&
      create_read_write_session_intent == o.create_read_write_session_intent &&
      email_auth_intent_v2 == o.email_auth_intent_v2 &&
      create_sub_organization_intent_v6 == o.create_sub_organization_intent_v6 &&
      delete_private_keys_intent == o.delete_private_keys_intent &&
      delete_wallets_intent == o.delete_wallets_intent &&
      create_read_write_session_intent_v2 == o.create_read_write_session_intent_v2 &&
      delete_sub_organization_intent == o.delete_sub_organization_intent &&
      init_otp_auth_intent == o.init_otp_auth_intent &&
      otp_auth_intent == o.otp_auth_intent &&
      create_sub_organization_intent_v7 == o.create_sub_organization_intent_v7 &&
      update_wallet_intent == o.update_wallet_intent &&
      update_policy_intent_v2 == o.update_policy_intent_v2 &&
      create_users_intent_v3 == o.create_users_intent_v3 &&
      init_otp_auth_intent_v2 == o.init_otp_auth_intent_v2 &&
      init_otp_intent == o.init_otp_intent &&
      verify_otp_intent == o.verify_otp_intent &&
       == o. &&
       == o. &&
       == o. &&
      update_user_name_intent == o.update_user_name_intent &&
      update_user_email_intent == o.update_user_email_intent &&
      update_user_phone_number_intent == o.update_user_phone_number_intent &&
      init_fiat_on_ramp_intent == o.init_fiat_on_ramp_intent &&
      create_smart_contract_interface_intent == o.create_smart_contract_interface_intent &&
      delete_smart_contract_interface_intent == o.delete_smart_contract_interface_intent &&
      enable_auth_proxy_intent == o.enable_auth_proxy_intent &&
      disable_auth_proxy_intent == o.disable_auth_proxy_intent &&
      update_auth_proxy_config_intent == o.update_auth_proxy_config_intent &&
      create_oauth2_credential_intent == o.create_oauth2_credential_intent &&
      update_oauth2_credential_intent == o.update_oauth2_credential_intent &&
      delete_oauth2_credential_intent == o.delete_oauth2_credential_intent &&
      oauth2_authenticate_intent == o.oauth2_authenticate_intent &&
      delete_wallet_accounts_intent == o.delete_wallet_accounts_intent &&
      delete_policies_intent == o.delete_policies_intent &&
      eth_send_raw_transaction_intent == o.eth_send_raw_transaction_intent &&
      eth_send_transaction_intent == o.eth_send_transaction_intent &&
      create_fiat_on_ramp_credential_intent == o.create_fiat_on_ramp_credential_intent &&
      update_fiat_on_ramp_credential_intent == o.update_fiat_on_ramp_credential_intent &&
      delete_fiat_on_ramp_credential_intent == o.delete_fiat_on_ramp_credential_intent &&
      email_auth_intent_v3 == o.email_auth_intent_v3 &&
      init_user_email_recovery_intent_v2 == o.init_user_email_recovery_intent_v2 &&
      init_otp_intent_v2 == o.init_otp_intent_v2 &&
      init_otp_auth_intent_v3 == o.init_otp_auth_intent_v3 &&
      upsert_gas_usage_config_intent == o.upsert_gas_usage_config_intent &&
      create_tvc_app_intent == o.create_tvc_app_intent &&
      create_tvc_deployment_intent == o.create_tvc_deployment_intent &&
      create_tvc_manifest_approvals_intent == o.create_tvc_manifest_approvals_intent &&
      sol_send_transaction_intent == o.sol_send_transaction_intent &&
      init_otp_intent_v3 == o.init_otp_intent_v3 &&
      verify_otp_intent_v2 == o.verify_otp_intent_v2 &&
       == o. &&
      update_organization_name_intent == o.update_organization_name_intent &&
      create_sub_organization_intent_v8 == o.create_sub_organization_intent_v8 &&
      create_oauth_providers_intent_v2 == o.create_oauth_providers_intent_v2 &&
      create_users_intent_v4 == o.create_users_intent_v4 &&
      create_webhook_endpoint_intent == o.create_webhook_endpoint_intent &&
      update_webhook_endpoint_intent == o.update_webhook_endpoint_intent &&
      delete_webhook_endpoint_intent == o.delete_webhook_endpoint_intent &&
      set_ip_allowlist_intent == o.set_ip_allowlist_intent &&
      remove_ip_allowlist_intent == o.remove_ip_allowlist_intent &&
      update_tvc_app_live_deployment_intent == o.update_tvc_app_live_deployment_intent &&
      delete_tvc_deployment_intent == o.delete_tvc_deployment_intent &&
      delete_tvc_app_and_deployments_intent == o.delete_tvc_app_and_deployments_intent &&
      restore_tvc_deployment_intent == o.restore_tvc_deployment_intent &&
      spark_sign_frost_intent == o.spark_sign_frost_intent &&
      spark_prepare_transfer_intent == o.spark_prepare_transfer_intent &&
      spark_claim_transfer_intent == o.spark_claim_transfer_intent &&
      spark_prepare_lightning_receive_intent == o.spark_prepare_lightning_receive_intent &&
      post_tvc_quorum_key_share_intent == o.post_tvc_quorum_key_share_intent
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



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
# File 'lib/turnkey_client/models/intent.rb', line 1356

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
    TurnkeyClient.const_get(type).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



1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
# File 'lib/turnkey_client/models/intent.rb', line 1425

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



1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
# File 'lib/turnkey_client/models/intent.rb', line 1333

def build_from_hash(attributes)
  return nil unless attributes.is_a?(Hash)
  self.class.openapi_types.each_pair do |key, type|
    if type =~ /\AArray<(.*)>/i
      # check to ensure the input is an array given that the attribute
      # is documented as an array but the input is not
      if attributes[self.class.attribute_map[key]].is_a?(Array)
        self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
      end
    elsif !attributes[self.class.attribute_map[key]].nil?
      self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
    elsif attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
      self.send("#{key}=", nil)
    end
  end

  self
end

#eql?(o) ⇒ Boolean

Parameters:

  • Object (Object)

    to be compared

Returns:

  • (Boolean)

See Also:

  • `==` method


1313
1314
1315
# File 'lib/turnkey_client/models/intent.rb', line 1313

def eql?(o)
  self == o
end

#hashInteger

Calculates hash code according to all attributes.

Returns:

  • (Integer)

    Hash code



1319
1320
1321
# File 'lib/turnkey_client/models/intent.rb', line 1319

def hash
  [create_organization_intent, create_authenticators_intent, create_users_intent, create_private_keys_intent, sign_raw_payload_intent, create_invitations_intent, accept_invitation_intent, create_policy_intent, disable_private_key_intent, delete_users_intent, delete_authenticators_intent, delete_invitation_intent, delete_organization_intent, delete_policy_intent, create_user_tag_intent, delete_user_tags_intent, sign_transaction_intent, create_api_keys_intent, delete_api_keys_intent, approve_activity_intent, reject_activity_intent, create_private_key_tag_intent, delete_private_key_tags_intent, create_policy_intent_v2, set_payment_method_intent, activate_billing_tier_intent, delete_payment_method_intent, create_policy_intent_v3, create_api_only_users_intent, update_root_quorum_intent, update_user_tag_intent, update_private_key_tag_intent, create_authenticators_intent_v2, accept_invitation_intent_v2, create_organization_intent_v2, create_users_intent_v2, create_sub_organization_intent, create_sub_organization_intent_v2, update_allowed_origins_intent, create_private_keys_intent_v2, update_user_intent, update_policy_intent, set_payment_method_intent_v2, create_sub_organization_intent_v3, create_wallet_intent, create_wallet_accounts_intent, init_user_email_recovery_intent, recover_user_intent, set_organization_feature_intent, remove_organization_feature_intent, sign_raw_payload_intent_v2, sign_transaction_intent_v2, export_private_key_intent, export_wallet_intent, create_sub_organization_intent_v4, email_auth_intent, , init_import_wallet_intent, import_wallet_intent, init_import_private_key_intent, import_private_key_intent, create_policies_intent, sign_raw_payloads_intent, create_read_only_session_intent, create_oauth_providers_intent, delete_oauth_providers_intent, create_sub_organization_intent_v5, oauth_intent, create_api_keys_intent_v2, create_read_write_session_intent, email_auth_intent_v2, create_sub_organization_intent_v6, delete_private_keys_intent, delete_wallets_intent, create_read_write_session_intent_v2, delete_sub_organization_intent, init_otp_auth_intent, otp_auth_intent, create_sub_organization_intent_v7, update_wallet_intent, update_policy_intent_v2, create_users_intent_v3, init_otp_auth_intent_v2, init_otp_intent, verify_otp_intent, , , , update_user_name_intent, update_user_email_intent, update_user_phone_number_intent, init_fiat_on_ramp_intent, create_smart_contract_interface_intent, delete_smart_contract_interface_intent, enable_auth_proxy_intent, disable_auth_proxy_intent, update_auth_proxy_config_intent, create_oauth2_credential_intent, update_oauth2_credential_intent, delete_oauth2_credential_intent, oauth2_authenticate_intent, delete_wallet_accounts_intent, delete_policies_intent, eth_send_raw_transaction_intent, eth_send_transaction_intent, create_fiat_on_ramp_credential_intent, update_fiat_on_ramp_credential_intent, delete_fiat_on_ramp_credential_intent, email_auth_intent_v3, init_user_email_recovery_intent_v2, init_otp_intent_v2, init_otp_auth_intent_v3, upsert_gas_usage_config_intent, create_tvc_app_intent, create_tvc_deployment_intent, create_tvc_manifest_approvals_intent, sol_send_transaction_intent, init_otp_intent_v3, verify_otp_intent_v2, , update_organization_name_intent, create_sub_organization_intent_v8, create_oauth_providers_intent_v2, create_users_intent_v4, create_webhook_endpoint_intent, update_webhook_endpoint_intent, delete_webhook_endpoint_intent, set_ip_allowlist_intent, remove_ip_allowlist_intent, update_tvc_app_live_deployment_intent, delete_tvc_deployment_intent, delete_tvc_app_and_deployments_intent, restore_tvc_deployment_intent, spark_sign_frost_intent, spark_prepare_transfer_intent, spark_claim_transfer_intent, spark_prepare_lightning_receive_intent, post_tvc_quorum_key_share_intent].hash
end

#list_invalid_propertiesObject

Show invalid properties with the reasons. Usually used together with valid?

Returns:

  • Array for valid properties with the reasons



1155
1156
1157
1158
# File 'lib/turnkey_client/models/intent.rb', line 1155

def list_invalid_properties
  invalid_properties = Array.new
  invalid_properties
end

#to_bodyHash

to_body is an alias to to_hash (backward compatibility)

Returns:

  • (Hash)

    Returns the object in the form of hash



1401
1402
1403
# File 'lib/turnkey_client/models/intent.rb', line 1401

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



1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
# File 'lib/turnkey_client/models/intent.rb', line 1407

def to_hash
  hash = {}
  self.class.attribute_map.each_pair do |attr, param|
    value = self.send(attr)
    if value.nil?
      is_nullable = self.class.openapi_nullable.include?(attr)
      next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
    end

    hash[param] = _to_hash(value)
  end
  hash
end

#to_sString

Returns the string representation of the object

Returns:

  • (String)

    String presentation of the object



1395
1396
1397
# File 'lib/turnkey_client/models/intent.rb', line 1395

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



1162
1163
1164
# File 'lib/turnkey_client/models/intent.rb', line 1162

def valid?
  true
end