increase 1.289.0 → 1.291.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -139,14 +139,20 @@ module Increase
139
139
 
140
140
  # A means of verifying the person's identity.
141
141
  sig do
142
- returns(Increase::EntityBeneficialOwner::Individual::Identification)
142
+ returns(
143
+ T.nilable(
144
+ Increase::EntityBeneficialOwner::Individual::Identification
145
+ )
146
+ )
143
147
  end
144
148
  attr_reader :identification
145
149
 
146
150
  sig do
147
151
  params(
148
152
  identification:
149
- Increase::EntityBeneficialOwner::Individual::Identification::OrHash
153
+ T.nilable(
154
+ Increase::EntityBeneficialOwner::Individual::Identification::OrHash
155
+ )
150
156
  ).void
151
157
  end
152
158
  attr_writer :identification
@@ -162,7 +168,9 @@ module Increase
162
168
  Increase::EntityBeneficialOwner::Individual::Address::OrHash,
163
169
  date_of_birth: Date,
164
170
  identification:
165
- Increase::EntityBeneficialOwner::Individual::Identification::OrHash,
171
+ T.nilable(
172
+ Increase::EntityBeneficialOwner::Individual::Identification::OrHash
173
+ ),
166
174
  name: String
167
175
  ).returns(T.attached_class)
168
176
  end
@@ -184,7 +192,9 @@ module Increase
184
192
  address: Increase::EntityBeneficialOwner::Individual::Address,
185
193
  date_of_birth: Date,
186
194
  identification:
187
- Increase::EntityBeneficialOwner::Individual::Identification,
195
+ T.nilable(
196
+ Increase::EntityBeneficialOwner::Individual::Identification
197
+ ),
188
198
  name: String
189
199
  }
190
200
  )
@@ -645,6 +645,34 @@ module Increase
645
645
  end
646
646
  attr_writer :address
647
647
 
648
+ # The identification method for an individual can only be a passport, driver's
649
+ # license, or other document if you've confirmed the individual does not have a US
650
+ # tax id (either a Social Security Number or Individual Taxpayer Identification
651
+ # Number).
652
+ sig { returns(T.nilable(T::Boolean)) }
653
+ attr_reader :confirmed_no_us_tax_id
654
+
655
+ sig { params(confirmed_no_us_tax_id: T::Boolean).void }
656
+ attr_writer :confirmed_no_us_tax_id
657
+
658
+ # A means of verifying the person's identity.
659
+ sig do
660
+ returns(
661
+ T.nilable(
662
+ Increase::EntityUpdateParams::NaturalPerson::Identification
663
+ )
664
+ )
665
+ end
666
+ attr_reader :identification
667
+
668
+ sig do
669
+ params(
670
+ identification:
671
+ Increase::EntityUpdateParams::NaturalPerson::Identification::OrHash
672
+ ).void
673
+ end
674
+ attr_writer :identification
675
+
648
676
  # The legal name of the natural person.
649
677
  sig { returns(T.nilable(String)) }
650
678
  attr_reader :name
@@ -658,6 +686,9 @@ module Increase
658
686
  params(
659
687
  address:
660
688
  Increase::EntityUpdateParams::NaturalPerson::Address::OrHash,
689
+ confirmed_no_us_tax_id: T::Boolean,
690
+ identification:
691
+ Increase::EntityUpdateParams::NaturalPerson::Identification::OrHash,
661
692
  name: String
662
693
  ).returns(T.attached_class)
663
694
  end
@@ -665,6 +696,13 @@ module Increase
665
696
  # The entity's physical address. Mail receiving locations like PO Boxes and PMB's
666
697
  # are disallowed.
667
698
  address: nil,
699
+ # The identification method for an individual can only be a passport, driver's
700
+ # license, or other document if you've confirmed the individual does not have a US
701
+ # tax id (either a Social Security Number or Individual Taxpayer Identification
702
+ # Number).
703
+ confirmed_no_us_tax_id: nil,
704
+ # A means of verifying the person's identity.
705
+ identification: nil,
668
706
  # The legal name of the natural person.
669
707
  name: nil
670
708
  )
@@ -674,6 +712,9 @@ module Increase
674
712
  override.returns(
675
713
  {
676
714
  address: Increase::EntityUpdateParams::NaturalPerson::Address,
715
+ confirmed_no_us_tax_id: T::Boolean,
716
+ identification:
717
+ Increase::EntityUpdateParams::NaturalPerson::Identification,
677
718
  name: String
678
719
  }
679
720
  )
@@ -768,6 +809,389 @@ module Increase
768
809
  def to_hash
769
810
  end
770
811
  end
812
+
813
+ class Identification < Increase::Internal::Type::BaseModel
814
+ OrHash =
815
+ T.type_alias do
816
+ T.any(
817
+ Increase::EntityUpdateParams::NaturalPerson::Identification,
818
+ Increase::Internal::AnyHash
819
+ )
820
+ end
821
+
822
+ # A method that can be used to verify the individual's identity.
823
+ sig do
824
+ returns(
825
+ Increase::EntityUpdateParams::NaturalPerson::Identification::Method::OrSymbol
826
+ )
827
+ end
828
+ attr_accessor :method_
829
+
830
+ # An identification number that can be used to verify the individual's identity,
831
+ # such as a social security number.
832
+ sig { returns(String) }
833
+ attr_accessor :number
834
+
835
+ # Information about the United States driver's license used for identification.
836
+ # Required if `method` is equal to `drivers_license`.
837
+ sig do
838
+ returns(
839
+ T.nilable(
840
+ Increase::EntityUpdateParams::NaturalPerson::Identification::DriversLicense
841
+ )
842
+ )
843
+ end
844
+ attr_reader :drivers_license
845
+
846
+ sig do
847
+ params(
848
+ drivers_license:
849
+ Increase::EntityUpdateParams::NaturalPerson::Identification::DriversLicense::OrHash
850
+ ).void
851
+ end
852
+ attr_writer :drivers_license
853
+
854
+ # Information about the identification document provided. Required if `method` is
855
+ # equal to `other`.
856
+ sig do
857
+ returns(
858
+ T.nilable(
859
+ Increase::EntityUpdateParams::NaturalPerson::Identification::Other
860
+ )
861
+ )
862
+ end
863
+ attr_reader :other
864
+
865
+ sig do
866
+ params(
867
+ other:
868
+ Increase::EntityUpdateParams::NaturalPerson::Identification::Other::OrHash
869
+ ).void
870
+ end
871
+ attr_writer :other
872
+
873
+ # Information about the passport used for identification. Required if `method` is
874
+ # equal to `passport`.
875
+ sig do
876
+ returns(
877
+ T.nilable(
878
+ Increase::EntityUpdateParams::NaturalPerson::Identification::Passport
879
+ )
880
+ )
881
+ end
882
+ attr_reader :passport
883
+
884
+ sig do
885
+ params(
886
+ passport:
887
+ Increase::EntityUpdateParams::NaturalPerson::Identification::Passport::OrHash
888
+ ).void
889
+ end
890
+ attr_writer :passport
891
+
892
+ # A means of verifying the person's identity.
893
+ sig do
894
+ params(
895
+ method_:
896
+ Increase::EntityUpdateParams::NaturalPerson::Identification::Method::OrSymbol,
897
+ number: String,
898
+ drivers_license:
899
+ Increase::EntityUpdateParams::NaturalPerson::Identification::DriversLicense::OrHash,
900
+ other:
901
+ Increase::EntityUpdateParams::NaturalPerson::Identification::Other::OrHash,
902
+ passport:
903
+ Increase::EntityUpdateParams::NaturalPerson::Identification::Passport::OrHash
904
+ ).returns(T.attached_class)
905
+ end
906
+ def self.new(
907
+ # A method that can be used to verify the individual's identity.
908
+ method_:,
909
+ # An identification number that can be used to verify the individual's identity,
910
+ # such as a social security number.
911
+ number:,
912
+ # Information about the United States driver's license used for identification.
913
+ # Required if `method` is equal to `drivers_license`.
914
+ drivers_license: nil,
915
+ # Information about the identification document provided. Required if `method` is
916
+ # equal to `other`.
917
+ other: nil,
918
+ # Information about the passport used for identification. Required if `method` is
919
+ # equal to `passport`.
920
+ passport: nil
921
+ )
922
+ end
923
+
924
+ sig do
925
+ override.returns(
926
+ {
927
+ method_:
928
+ Increase::EntityUpdateParams::NaturalPerson::Identification::Method::OrSymbol,
929
+ number: String,
930
+ drivers_license:
931
+ Increase::EntityUpdateParams::NaturalPerson::Identification::DriversLicense,
932
+ other:
933
+ Increase::EntityUpdateParams::NaturalPerson::Identification::Other,
934
+ passport:
935
+ Increase::EntityUpdateParams::NaturalPerson::Identification::Passport
936
+ }
937
+ )
938
+ end
939
+ def to_hash
940
+ end
941
+
942
+ # A method that can be used to verify the individual's identity.
943
+ module Method
944
+ extend Increase::Internal::Type::Enum
945
+
946
+ TaggedSymbol =
947
+ T.type_alias do
948
+ T.all(
949
+ Symbol,
950
+ Increase::EntityUpdateParams::NaturalPerson::Identification::Method
951
+ )
952
+ end
953
+ OrSymbol = T.type_alias { T.any(Symbol, String) }
954
+
955
+ # A social security number.
956
+ SOCIAL_SECURITY_NUMBER =
957
+ T.let(
958
+ :social_security_number,
959
+ Increase::EntityUpdateParams::NaturalPerson::Identification::Method::TaggedSymbol
960
+ )
961
+
962
+ # An individual taxpayer identification number (ITIN).
963
+ INDIVIDUAL_TAXPAYER_IDENTIFICATION_NUMBER =
964
+ T.let(
965
+ :individual_taxpayer_identification_number,
966
+ Increase::EntityUpdateParams::NaturalPerson::Identification::Method::TaggedSymbol
967
+ )
968
+
969
+ # A passport number.
970
+ PASSPORT =
971
+ T.let(
972
+ :passport,
973
+ Increase::EntityUpdateParams::NaturalPerson::Identification::Method::TaggedSymbol
974
+ )
975
+
976
+ # A driver's license number.
977
+ DRIVERS_LICENSE =
978
+ T.let(
979
+ :drivers_license,
980
+ Increase::EntityUpdateParams::NaturalPerson::Identification::Method::TaggedSymbol
981
+ )
982
+
983
+ # Another identifying document.
984
+ OTHER =
985
+ T.let(
986
+ :other,
987
+ Increase::EntityUpdateParams::NaturalPerson::Identification::Method::TaggedSymbol
988
+ )
989
+
990
+ sig do
991
+ override.returns(
992
+ T::Array[
993
+ Increase::EntityUpdateParams::NaturalPerson::Identification::Method::TaggedSymbol
994
+ ]
995
+ )
996
+ end
997
+ def self.values
998
+ end
999
+ end
1000
+
1001
+ class DriversLicense < Increase::Internal::Type::BaseModel
1002
+ OrHash =
1003
+ T.type_alias do
1004
+ T.any(
1005
+ Increase::EntityUpdateParams::NaturalPerson::Identification::DriversLicense,
1006
+ Increase::Internal::AnyHash
1007
+ )
1008
+ end
1009
+
1010
+ # The driver's license's expiration date in YYYY-MM-DD format.
1011
+ sig { returns(Date) }
1012
+ attr_accessor :expiration_date
1013
+
1014
+ # The identifier of the File containing the front of the driver's license.
1015
+ sig { returns(String) }
1016
+ attr_accessor :file_id
1017
+
1018
+ # The state that issued the provided driver's license.
1019
+ sig { returns(String) }
1020
+ attr_accessor :state
1021
+
1022
+ # The identifier of the File containing the back of the driver's license.
1023
+ sig { returns(T.nilable(String)) }
1024
+ attr_reader :back_file_id
1025
+
1026
+ sig { params(back_file_id: String).void }
1027
+ attr_writer :back_file_id
1028
+
1029
+ # Information about the United States driver's license used for identification.
1030
+ # Required if `method` is equal to `drivers_license`.
1031
+ sig do
1032
+ params(
1033
+ expiration_date: Date,
1034
+ file_id: String,
1035
+ state: String,
1036
+ back_file_id: String
1037
+ ).returns(T.attached_class)
1038
+ end
1039
+ def self.new(
1040
+ # The driver's license's expiration date in YYYY-MM-DD format.
1041
+ expiration_date:,
1042
+ # The identifier of the File containing the front of the driver's license.
1043
+ file_id:,
1044
+ # The state that issued the provided driver's license.
1045
+ state:,
1046
+ # The identifier of the File containing the back of the driver's license.
1047
+ back_file_id: nil
1048
+ )
1049
+ end
1050
+
1051
+ sig do
1052
+ override.returns(
1053
+ {
1054
+ expiration_date: Date,
1055
+ file_id: String,
1056
+ state: String,
1057
+ back_file_id: String
1058
+ }
1059
+ )
1060
+ end
1061
+ def to_hash
1062
+ end
1063
+ end
1064
+
1065
+ class Other < Increase::Internal::Type::BaseModel
1066
+ OrHash =
1067
+ T.type_alias do
1068
+ T.any(
1069
+ Increase::EntityUpdateParams::NaturalPerson::Identification::Other,
1070
+ Increase::Internal::AnyHash
1071
+ )
1072
+ end
1073
+
1074
+ # The two-character ISO 3166-1 code representing the country that issued the
1075
+ # document (e.g., `US`).
1076
+ sig { returns(String) }
1077
+ attr_accessor :country
1078
+
1079
+ # A description of the document submitted.
1080
+ sig { returns(String) }
1081
+ attr_accessor :description
1082
+
1083
+ # The identifier of the File containing the front of the document.
1084
+ sig { returns(String) }
1085
+ attr_accessor :file_id
1086
+
1087
+ # The identifier of the File containing the back of the document. Not every
1088
+ # document has a reverse side.
1089
+ sig { returns(T.nilable(String)) }
1090
+ attr_reader :back_file_id
1091
+
1092
+ sig { params(back_file_id: String).void }
1093
+ attr_writer :back_file_id
1094
+
1095
+ # The document's expiration date in YYYY-MM-DD format.
1096
+ sig { returns(T.nilable(Date)) }
1097
+ attr_reader :expiration_date
1098
+
1099
+ sig { params(expiration_date: Date).void }
1100
+ attr_writer :expiration_date
1101
+
1102
+ # Information about the identification document provided. Required if `method` is
1103
+ # equal to `other`.
1104
+ sig do
1105
+ params(
1106
+ country: String,
1107
+ description: String,
1108
+ file_id: String,
1109
+ back_file_id: String,
1110
+ expiration_date: Date
1111
+ ).returns(T.attached_class)
1112
+ end
1113
+ def self.new(
1114
+ # The two-character ISO 3166-1 code representing the country that issued the
1115
+ # document (e.g., `US`).
1116
+ country:,
1117
+ # A description of the document submitted.
1118
+ description:,
1119
+ # The identifier of the File containing the front of the document.
1120
+ file_id:,
1121
+ # The identifier of the File containing the back of the document. Not every
1122
+ # document has a reverse side.
1123
+ back_file_id: nil,
1124
+ # The document's expiration date in YYYY-MM-DD format.
1125
+ expiration_date: nil
1126
+ )
1127
+ end
1128
+
1129
+ sig do
1130
+ override.returns(
1131
+ {
1132
+ country: String,
1133
+ description: String,
1134
+ file_id: String,
1135
+ back_file_id: String,
1136
+ expiration_date: Date
1137
+ }
1138
+ )
1139
+ end
1140
+ def to_hash
1141
+ end
1142
+ end
1143
+
1144
+ class Passport < Increase::Internal::Type::BaseModel
1145
+ OrHash =
1146
+ T.type_alias do
1147
+ T.any(
1148
+ Increase::EntityUpdateParams::NaturalPerson::Identification::Passport,
1149
+ Increase::Internal::AnyHash
1150
+ )
1151
+ end
1152
+
1153
+ # The two-character ISO 3166-1 code representing the country that issued the
1154
+ # document (e.g., `US`).
1155
+ sig { returns(String) }
1156
+ attr_accessor :country
1157
+
1158
+ # The passport's expiration date in YYYY-MM-DD format.
1159
+ sig { returns(Date) }
1160
+ attr_accessor :expiration_date
1161
+
1162
+ # The identifier of the File containing the passport.
1163
+ sig { returns(String) }
1164
+ attr_accessor :file_id
1165
+
1166
+ # Information about the passport used for identification. Required if `method` is
1167
+ # equal to `passport`.
1168
+ sig do
1169
+ params(
1170
+ country: String,
1171
+ expiration_date: Date,
1172
+ file_id: String
1173
+ ).returns(T.attached_class)
1174
+ end
1175
+ def self.new(
1176
+ # The two-character ISO 3166-1 code representing the country that issued the
1177
+ # document (e.g., `US`).
1178
+ country:,
1179
+ # The passport's expiration date in YYYY-MM-DD format.
1180
+ expiration_date:,
1181
+ # The identifier of the File containing the passport.
1182
+ file_id:
1183
+ )
1184
+ end
1185
+
1186
+ sig do
1187
+ override.returns(
1188
+ { country: String, expiration_date: Date, file_id: String }
1189
+ )
1190
+ end
1191
+ def to_hash
1192
+ end
1193
+ end
1194
+ end
771
1195
  end
772
1196
 
773
1197
  class RiskRating < Increase::Internal::Type::BaseModel
@@ -229,7 +229,7 @@ module Increase
229
229
  {
230
230
  address: Increase::Entity::Corporation::BeneficialOwner::Individual::Address,
231
231
  date_of_birth: Date,
232
- identification: Increase::Entity::Corporation::BeneficialOwner::Individual::Identification,
232
+ identification: Increase::Entity::Corporation::BeneficialOwner::Individual::Identification?,
233
233
  name: String
234
234
  }
235
235
 
@@ -238,21 +238,21 @@ module Increase
238
238
 
239
239
  attr_accessor date_of_birth: Date
240
240
 
241
- attr_accessor identification: Increase::Entity::Corporation::BeneficialOwner::Individual::Identification
241
+ attr_accessor identification: Increase::Entity::Corporation::BeneficialOwner::Individual::Identification?
242
242
 
243
243
  attr_accessor name: String
244
244
 
245
245
  def initialize: (
246
246
  address: Increase::Entity::Corporation::BeneficialOwner::Individual::Address,
247
247
  date_of_birth: Date,
248
- identification: Increase::Entity::Corporation::BeneficialOwner::Individual::Identification,
248
+ identification: Increase::Entity::Corporation::BeneficialOwner::Individual::Identification?,
249
249
  name: String
250
250
  ) -> void
251
251
 
252
252
  def to_hash: -> {
253
253
  address: Increase::Entity::Corporation::BeneficialOwner::Individual::Address,
254
254
  date_of_birth: Date,
255
- identification: Increase::Entity::Corporation::BeneficialOwner::Individual::Identification,
255
+ identification: Increase::Entity::Corporation::BeneficialOwner::Individual::Identification?,
256
256
  name: String
257
257
  }
258
258
 
@@ -543,7 +543,7 @@ module Increase
543
543
  {
544
544
  address: Increase::Entity::Joint::Individual::Address,
545
545
  date_of_birth: Date,
546
- identification: Increase::Entity::Joint::Individual::Identification,
546
+ identification: Increase::Entity::Joint::Individual::Identification?,
547
547
  name: String
548
548
  }
549
549
 
@@ -552,21 +552,21 @@ module Increase
552
552
 
553
553
  attr_accessor date_of_birth: Date
554
554
 
555
- attr_accessor identification: Increase::Entity::Joint::Individual::Identification
555
+ attr_accessor identification: Increase::Entity::Joint::Individual::Identification?
556
556
 
557
557
  attr_accessor name: String
558
558
 
559
559
  def initialize: (
560
560
  address: Increase::Entity::Joint::Individual::Address,
561
561
  date_of_birth: Date,
562
- identification: Increase::Entity::Joint::Individual::Identification,
562
+ identification: Increase::Entity::Joint::Individual::Identification?,
563
563
  name: String
564
564
  ) -> void
565
565
 
566
566
  def to_hash: -> {
567
567
  address: Increase::Entity::Joint::Individual::Address,
568
568
  date_of_birth: Date,
569
- identification: Increase::Entity::Joint::Individual::Identification,
569
+ identification: Increase::Entity::Joint::Individual::Identification?,
570
570
  name: String
571
571
  }
572
572
 
@@ -668,7 +668,7 @@ module Increase
668
668
  {
669
669
  address: Increase::Entity::NaturalPerson::Address,
670
670
  date_of_birth: Date,
671
- identification: Increase::Entity::NaturalPerson::Identification,
671
+ identification: Increase::Entity::NaturalPerson::Identification?,
672
672
  name: String
673
673
  }
674
674
 
@@ -677,21 +677,21 @@ module Increase
677
677
 
678
678
  attr_accessor date_of_birth: Date
679
679
 
680
- attr_accessor identification: Increase::Entity::NaturalPerson::Identification
680
+ attr_accessor identification: Increase::Entity::NaturalPerson::Identification?
681
681
 
682
682
  attr_accessor name: String
683
683
 
684
684
  def initialize: (
685
685
  address: Increase::Entity::NaturalPerson::Address,
686
686
  date_of_birth: Date,
687
- identification: Increase::Entity::NaturalPerson::Identification,
687
+ identification: Increase::Entity::NaturalPerson::Identification?,
688
688
  name: String
689
689
  ) -> void
690
690
 
691
691
  def to_hash: -> {
692
692
  address: Increase::Entity::NaturalPerson::Address,
693
693
  date_of_birth: Date,
694
- identification: Increase::Entity::NaturalPerson::Identification,
694
+ identification: Increase::Entity::NaturalPerson::Identification?,
695
695
  name: String
696
696
  }
697
697
 
@@ -1044,7 +1044,7 @@ module Increase
1044
1044
  {
1045
1045
  address: Increase::Entity::Trust::Grantor::Address,
1046
1046
  date_of_birth: Date,
1047
- identification: Increase::Entity::Trust::Grantor::Identification,
1047
+ identification: Increase::Entity::Trust::Grantor::Identification?,
1048
1048
  name: String
1049
1049
  }
1050
1050
 
@@ -1053,21 +1053,21 @@ module Increase
1053
1053
 
1054
1054
  attr_accessor date_of_birth: Date
1055
1055
 
1056
- attr_accessor identification: Increase::Entity::Trust::Grantor::Identification
1056
+ attr_accessor identification: Increase::Entity::Trust::Grantor::Identification?
1057
1057
 
1058
1058
  attr_accessor name: String
1059
1059
 
1060
1060
  def initialize: (
1061
1061
  address: Increase::Entity::Trust::Grantor::Address,
1062
1062
  date_of_birth: Date,
1063
- identification: Increase::Entity::Trust::Grantor::Identification,
1063
+ identification: Increase::Entity::Trust::Grantor::Identification?,
1064
1064
  name: String
1065
1065
  ) -> void
1066
1066
 
1067
1067
  def to_hash: -> {
1068
1068
  address: Increase::Entity::Trust::Grantor::Address,
1069
1069
  date_of_birth: Date,
1070
- identification: Increase::Entity::Trust::Grantor::Identification,
1070
+ identification: Increase::Entity::Trust::Grantor::Identification?,
1071
1071
  name: String
1072
1072
  }
1073
1073
 
@@ -1189,7 +1189,7 @@ module Increase
1189
1189
  {
1190
1190
  address: Increase::Entity::Trust::Trustee::Individual::Address,
1191
1191
  date_of_birth: Date,
1192
- identification: Increase::Entity::Trust::Trustee::Individual::Identification,
1192
+ identification: Increase::Entity::Trust::Trustee::Individual::Identification?,
1193
1193
  name: String
1194
1194
  }
1195
1195
 
@@ -1198,21 +1198,21 @@ module Increase
1198
1198
 
1199
1199
  attr_accessor date_of_birth: Date
1200
1200
 
1201
- attr_accessor identification: Increase::Entity::Trust::Trustee::Individual::Identification
1201
+ attr_accessor identification: Increase::Entity::Trust::Trustee::Individual::Identification?
1202
1202
 
1203
1203
  attr_accessor name: String
1204
1204
 
1205
1205
  def initialize: (
1206
1206
  address: Increase::Entity::Trust::Trustee::Individual::Address,
1207
1207
  date_of_birth: Date,
1208
- identification: Increase::Entity::Trust::Trustee::Individual::Identification,
1208
+ identification: Increase::Entity::Trust::Trustee::Individual::Identification?,
1209
1209
  name: String
1210
1210
  ) -> void
1211
1211
 
1212
1212
  def to_hash: -> {
1213
1213
  address: Increase::Entity::Trust::Trustee::Individual::Address,
1214
1214
  date_of_birth: Date,
1215
- identification: Increase::Entity::Trust::Trustee::Individual::Identification,
1215
+ identification: Increase::Entity::Trust::Trustee::Individual::Identification?,
1216
1216
  name: String
1217
1217
  }
1218
1218