increase 1.345.0 → 1.346.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.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/increase/models/check_transfer.rb +12 -1
- data/lib/increase/models/entity.rb +19 -19
- data/lib/increase/models/entity_create_params.rb +10 -10
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/check_transfer.rbi +10 -0
- data/rbi/increase/models/entity.rbi +24 -22
- data/rbi/increase/models/entity_create_params.rbi +10 -10
- data/sig/increase/models/check_transfer.rbs +5 -0
- data/sig/increase/models/entity.rbs +8 -8
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 66984e6af96b870b6d1830162758f528a2aa013deb571be6d75f132bb4a9206d
|
|
4
|
+
data.tar.gz: cf8176c80d7114a2f75ffe85260ac16836da42c554c6ffc5aa0060b2286f29fc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e845b2fd4b016b2d4d5138d4bb94826daf664105096bca3465e5672c3acf40e7f5c7e8398d917a268c2f2ed9f6604412840577d3167960a147754396a0ae3aac
|
|
7
|
+
data.tar.gz: 80d3e23ab765033234c4a6e63d285cfe524c9e66f0fb00fa754528171279104c7785bf3b6642884c121aa55ddaa52c482217986f253bf4e1d4fbf4878b67e7e1
|
data/README.md
CHANGED
|
@@ -786,6 +786,13 @@ module Increase
|
|
|
786
786
|
end
|
|
787
787
|
|
|
788
788
|
class TrackingUpdate < Increase::Internal::Type::BaseModel
|
|
789
|
+
# @!attribute carrier_estimated_delivery_at
|
|
790
|
+
# The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time when the
|
|
791
|
+
# carrier expects the check to be delivered.
|
|
792
|
+
#
|
|
793
|
+
# @return [Time, nil]
|
|
794
|
+
required :carrier_estimated_delivery_at, Time, nil?: true
|
|
795
|
+
|
|
789
796
|
# @!attribute category
|
|
790
797
|
# The type of tracking event.
|
|
791
798
|
#
|
|
@@ -811,7 +818,11 @@ module Increase
|
|
|
811
818
|
# @return [String]
|
|
812
819
|
required :postal_code, String
|
|
813
820
|
|
|
814
|
-
# @!method initialize(category:, country:, created_at:, postal_code:)
|
|
821
|
+
# @!method initialize(carrier_estimated_delivery_at:, category:, country:, created_at:, postal_code:)
|
|
822
|
+
# @param carrier_estimated_delivery_at [Time, nil]
|
|
823
|
+
# The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time when the
|
|
824
|
+
# carrier expects the check to be delivered.
|
|
825
|
+
#
|
|
815
826
|
# @param category [Symbol, Increase::Models::CheckTransfer::PhysicalCheck::TrackingUpdate::Category]
|
|
816
827
|
# The type of tracking event.
|
|
817
828
|
#
|
|
@@ -1426,25 +1426,25 @@ module Increase
|
|
|
1426
1426
|
# @see Increase::Models::Entity::Trust#grantor
|
|
1427
1427
|
class Grantor < Increase::Internal::Type::BaseModel
|
|
1428
1428
|
# @!attribute address
|
|
1429
|
-
# The
|
|
1429
|
+
# The grantor's address.
|
|
1430
1430
|
#
|
|
1431
|
-
# @return [Increase::Models::Entity::Trust::Grantor::Address]
|
|
1432
|
-
required :address, -> { Increase::Entity::Trust::Grantor::Address }
|
|
1431
|
+
# @return [Increase::Models::Entity::Trust::Grantor::Address, nil]
|
|
1432
|
+
required :address, -> { Increase::Entity::Trust::Grantor::Address }, nil?: true
|
|
1433
1433
|
|
|
1434
1434
|
# @!attribute date_of_birth
|
|
1435
|
-
# The
|
|
1435
|
+
# The grantor's date of birth in YYYY-MM-DD format.
|
|
1436
1436
|
#
|
|
1437
|
-
# @return [Date]
|
|
1438
|
-
required :date_of_birth, Date
|
|
1437
|
+
# @return [Date, nil]
|
|
1438
|
+
required :date_of_birth, Date, nil?: true
|
|
1439
1439
|
|
|
1440
1440
|
# @!attribute identification
|
|
1441
|
-
# A means of verifying the
|
|
1441
|
+
# A means of verifying the grantor's identity.
|
|
1442
1442
|
#
|
|
1443
1443
|
# @return [Increase::Models::Entity::Trust::Grantor::Identification, nil]
|
|
1444
1444
|
required :identification, -> { Increase::Entity::Trust::Grantor::Identification }, nil?: true
|
|
1445
1445
|
|
|
1446
1446
|
# @!attribute name
|
|
1447
|
-
# The
|
|
1447
|
+
# The grantor's legal name.
|
|
1448
1448
|
#
|
|
1449
1449
|
# @return [String]
|
|
1450
1450
|
required :name, String
|
|
@@ -1452,14 +1452,14 @@ module Increase
|
|
|
1452
1452
|
# @!method initialize(address:, date_of_birth:, identification:, name:)
|
|
1453
1453
|
# The grantor of the trust. Will be present if the `category` is `revocable`.
|
|
1454
1454
|
#
|
|
1455
|
-
# @param address [Increase::Models::Entity::Trust::Grantor::Address] The
|
|
1455
|
+
# @param address [Increase::Models::Entity::Trust::Grantor::Address, nil] The grantor's address.
|
|
1456
1456
|
#
|
|
1457
|
-
# @param date_of_birth [Date] The
|
|
1457
|
+
# @param date_of_birth [Date, nil] The grantor's date of birth in YYYY-MM-DD format.
|
|
1458
1458
|
#
|
|
1459
1459
|
# @param identification [Increase::Models::Entity::Trust::Grantor::Identification, nil]
|
|
1460
|
-
# A means of verifying the
|
|
1460
|
+
# A means of verifying the grantor's identity.
|
|
1461
1461
|
#
|
|
1462
|
-
# @param name [String] The
|
|
1462
|
+
# @param name [String] The grantor's legal name.
|
|
1463
1463
|
|
|
1464
1464
|
# @see Increase::Models::Entity::Trust::Grantor#address
|
|
1465
1465
|
class Address < Increase::Internal::Type::BaseModel
|
|
@@ -1501,7 +1501,7 @@ module Increase
|
|
|
1501
1501
|
required :zip, String, nil?: true
|
|
1502
1502
|
|
|
1503
1503
|
# @!method initialize(city:, country:, line1:, line2:, state:, zip:)
|
|
1504
|
-
# The
|
|
1504
|
+
# The grantor's address.
|
|
1505
1505
|
#
|
|
1506
1506
|
# @param city [String, nil] The city, district, town, or village of the address.
|
|
1507
1507
|
#
|
|
@@ -1521,7 +1521,7 @@ module Increase
|
|
|
1521
1521
|
# @see Increase::Models::Entity::Trust::Grantor#identification
|
|
1522
1522
|
class Identification < Increase::Internal::Type::BaseModel
|
|
1523
1523
|
# @!attribute method_
|
|
1524
|
-
# A method that can be used to verify the
|
|
1524
|
+
# A method that can be used to verify the grantor's identity.
|
|
1525
1525
|
#
|
|
1526
1526
|
# @return [Symbol, Increase::Models::Entity::Trust::Grantor::Identification::Method]
|
|
1527
1527
|
required :method_,
|
|
@@ -1530,22 +1530,22 @@ module Increase
|
|
|
1530
1530
|
|
|
1531
1531
|
# @!attribute number_last4
|
|
1532
1532
|
# The last 4 digits of the identification number that can be used to verify the
|
|
1533
|
-
#
|
|
1533
|
+
# grantor's identity.
|
|
1534
1534
|
#
|
|
1535
1535
|
# @return [String]
|
|
1536
1536
|
required :number_last4, String
|
|
1537
1537
|
|
|
1538
1538
|
# @!method initialize(method_:, number_last4:)
|
|
1539
|
-
# A means of verifying the
|
|
1539
|
+
# A means of verifying the grantor's identity.
|
|
1540
1540
|
#
|
|
1541
1541
|
# @param method_ [Symbol, Increase::Models::Entity::Trust::Grantor::Identification::Method]
|
|
1542
|
-
# A method that can be used to verify the
|
|
1542
|
+
# A method that can be used to verify the grantor's identity.
|
|
1543
1543
|
#
|
|
1544
1544
|
# @param number_last4 [String]
|
|
1545
1545
|
# The last 4 digits of the identification number that can be used to verify the
|
|
1546
|
-
#
|
|
1546
|
+
# grantor's identity.
|
|
1547
1547
|
|
|
1548
|
-
# A method that can be used to verify the
|
|
1548
|
+
# A method that can be used to verify the grantor's identity.
|
|
1549
1549
|
#
|
|
1550
1550
|
# @see Increase::Models::Entity::Trust::Grantor::Identification#method_
|
|
1551
1551
|
module Method
|
|
@@ -2287,14 +2287,14 @@ module Increase
|
|
|
2287
2287
|
# @see Increase::Models::EntityCreateParams::Trust#grantor
|
|
2288
2288
|
class Grantor < Increase::Internal::Type::BaseModel
|
|
2289
2289
|
# @!attribute address
|
|
2290
|
-
# The
|
|
2291
|
-
#
|
|
2290
|
+
# The grantor's physical address. Mail receiving locations like PO Boxes and PMB's
|
|
2291
|
+
# are disallowed.
|
|
2292
2292
|
#
|
|
2293
2293
|
# @return [Increase::Models::EntityCreateParams::Trust::Grantor::Address]
|
|
2294
2294
|
required :address, -> { Increase::EntityCreateParams::Trust::Grantor::Address }
|
|
2295
2295
|
|
|
2296
2296
|
# @!attribute date_of_birth
|
|
2297
|
-
# The
|
|
2297
|
+
# The grantor's date of birth in YYYY-MM-DD format.
|
|
2298
2298
|
#
|
|
2299
2299
|
# @return [Date]
|
|
2300
2300
|
required :date_of_birth, Date
|
|
@@ -2306,7 +2306,7 @@ module Increase
|
|
|
2306
2306
|
required :identification, -> { Increase::EntityCreateParams::Trust::Grantor::Identification }
|
|
2307
2307
|
|
|
2308
2308
|
# @!attribute name
|
|
2309
|
-
# The
|
|
2309
|
+
# The grantor's legal name.
|
|
2310
2310
|
#
|
|
2311
2311
|
# @return [String]
|
|
2312
2312
|
required :name, String
|
|
@@ -2324,15 +2324,15 @@ module Increase
|
|
|
2324
2324
|
# The grantor of the trust. Required if `category` is equal to `revocable`.
|
|
2325
2325
|
#
|
|
2326
2326
|
# @param address [Increase::Models::EntityCreateParams::Trust::Grantor::Address]
|
|
2327
|
-
# The
|
|
2328
|
-
#
|
|
2327
|
+
# The grantor's physical address. Mail receiving locations like PO Boxes and PMB's
|
|
2328
|
+
# are disallowed.
|
|
2329
2329
|
#
|
|
2330
|
-
# @param date_of_birth [Date] The
|
|
2330
|
+
# @param date_of_birth [Date] The grantor's date of birth in YYYY-MM-DD format.
|
|
2331
2331
|
#
|
|
2332
2332
|
# @param identification [Increase::Models::EntityCreateParams::Trust::Grantor::Identification]
|
|
2333
2333
|
# A means of verifying the person's identity.
|
|
2334
2334
|
#
|
|
2335
|
-
# @param name [String] The
|
|
2335
|
+
# @param name [String] The grantor's legal name.
|
|
2336
2336
|
#
|
|
2337
2337
|
# @param confirmed_no_us_tax_id [Boolean]
|
|
2338
2338
|
# The identification method for an individual can only be a passport, driver's
|
|
@@ -2380,8 +2380,8 @@ module Increase
|
|
|
2380
2380
|
optional :zip, String
|
|
2381
2381
|
|
|
2382
2382
|
# @!method initialize(city:, country:, line1:, line2: nil, state: nil, zip: nil)
|
|
2383
|
-
# The
|
|
2384
|
-
#
|
|
2383
|
+
# The grantor's physical address. Mail receiving locations like PO Boxes and PMB's
|
|
2384
|
+
# are disallowed.
|
|
2385
2385
|
#
|
|
2386
2386
|
# @param city [String] The city, district, town, or village of the address.
|
|
2387
2387
|
#
|
data/lib/increase/version.rb
CHANGED
|
@@ -1215,6 +1215,11 @@ module Increase
|
|
|
1215
1215
|
)
|
|
1216
1216
|
end
|
|
1217
1217
|
|
|
1218
|
+
# The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time when the
|
|
1219
|
+
# carrier expects the check to be delivered.
|
|
1220
|
+
sig { returns(T.nilable(Time)) }
|
|
1221
|
+
attr_accessor :carrier_estimated_delivery_at
|
|
1222
|
+
|
|
1218
1223
|
# The type of tracking event.
|
|
1219
1224
|
sig do
|
|
1220
1225
|
returns(
|
|
@@ -1238,6 +1243,7 @@ module Increase
|
|
|
1238
1243
|
|
|
1239
1244
|
sig do
|
|
1240
1245
|
params(
|
|
1246
|
+
carrier_estimated_delivery_at: T.nilable(Time),
|
|
1241
1247
|
category:
|
|
1242
1248
|
Increase::CheckTransfer::PhysicalCheck::TrackingUpdate::Category::OrSymbol,
|
|
1243
1249
|
country: String,
|
|
@@ -1246,6 +1252,9 @@ module Increase
|
|
|
1246
1252
|
).returns(T.attached_class)
|
|
1247
1253
|
end
|
|
1248
1254
|
def self.new(
|
|
1255
|
+
# The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time when the
|
|
1256
|
+
# carrier expects the check to be delivered.
|
|
1257
|
+
carrier_estimated_delivery_at:,
|
|
1249
1258
|
# The type of tracking event.
|
|
1250
1259
|
category:,
|
|
1251
1260
|
# The ISO 3166-1 alpha-2 country code for the country where the event took place.
|
|
@@ -1261,6 +1270,7 @@ module Increase
|
|
|
1261
1270
|
sig do
|
|
1262
1271
|
override.returns(
|
|
1263
1272
|
{
|
|
1273
|
+
carrier_estimated_delivery_at: T.nilable(Time),
|
|
1264
1274
|
category:
|
|
1265
1275
|
Increase::CheckTransfer::PhysicalCheck::TrackingUpdate::Category::TaggedSymbol,
|
|
1266
1276
|
country: String,
|
|
@@ -2367,22 +2367,23 @@ module Increase
|
|
|
2367
2367
|
)
|
|
2368
2368
|
end
|
|
2369
2369
|
|
|
2370
|
-
# The
|
|
2371
|
-
sig { returns(Increase::Entity::Trust::Grantor::Address) }
|
|
2370
|
+
# The grantor's address.
|
|
2371
|
+
sig { returns(T.nilable(Increase::Entity::Trust::Grantor::Address)) }
|
|
2372
2372
|
attr_reader :address
|
|
2373
2373
|
|
|
2374
2374
|
sig do
|
|
2375
2375
|
params(
|
|
2376
|
-
address:
|
|
2376
|
+
address:
|
|
2377
|
+
T.nilable(Increase::Entity::Trust::Grantor::Address::OrHash)
|
|
2377
2378
|
).void
|
|
2378
2379
|
end
|
|
2379
2380
|
attr_writer :address
|
|
2380
2381
|
|
|
2381
|
-
# The
|
|
2382
|
-
sig { returns(Date) }
|
|
2382
|
+
# The grantor's date of birth in YYYY-MM-DD format.
|
|
2383
|
+
sig { returns(T.nilable(Date)) }
|
|
2383
2384
|
attr_accessor :date_of_birth
|
|
2384
2385
|
|
|
2385
|
-
# A means of verifying the
|
|
2386
|
+
# A means of verifying the grantor's identity.
|
|
2386
2387
|
sig do
|
|
2387
2388
|
returns(T.nilable(Increase::Entity::Trust::Grantor::Identification))
|
|
2388
2389
|
end
|
|
@@ -2398,15 +2399,16 @@ module Increase
|
|
|
2398
2399
|
end
|
|
2399
2400
|
attr_writer :identification
|
|
2400
2401
|
|
|
2401
|
-
# The
|
|
2402
|
+
# The grantor's legal name.
|
|
2402
2403
|
sig { returns(String) }
|
|
2403
2404
|
attr_accessor :name
|
|
2404
2405
|
|
|
2405
2406
|
# The grantor of the trust. Will be present if the `category` is `revocable`.
|
|
2406
2407
|
sig do
|
|
2407
2408
|
params(
|
|
2408
|
-
address:
|
|
2409
|
-
|
|
2409
|
+
address:
|
|
2410
|
+
T.nilable(Increase::Entity::Trust::Grantor::Address::OrHash),
|
|
2411
|
+
date_of_birth: T.nilable(Date),
|
|
2410
2412
|
identification:
|
|
2411
2413
|
T.nilable(
|
|
2412
2414
|
Increase::Entity::Trust::Grantor::Identification::OrHash
|
|
@@ -2415,13 +2417,13 @@ module Increase
|
|
|
2415
2417
|
).returns(T.attached_class)
|
|
2416
2418
|
end
|
|
2417
2419
|
def self.new(
|
|
2418
|
-
# The
|
|
2420
|
+
# The grantor's address.
|
|
2419
2421
|
address:,
|
|
2420
|
-
# The
|
|
2422
|
+
# The grantor's date of birth in YYYY-MM-DD format.
|
|
2421
2423
|
date_of_birth:,
|
|
2422
|
-
# A means of verifying the
|
|
2424
|
+
# A means of verifying the grantor's identity.
|
|
2423
2425
|
identification:,
|
|
2424
|
-
# The
|
|
2426
|
+
# The grantor's legal name.
|
|
2425
2427
|
name:
|
|
2426
2428
|
)
|
|
2427
2429
|
end
|
|
@@ -2429,8 +2431,8 @@ module Increase
|
|
|
2429
2431
|
sig do
|
|
2430
2432
|
override.returns(
|
|
2431
2433
|
{
|
|
2432
|
-
address: Increase::Entity::Trust::Grantor::Address,
|
|
2433
|
-
date_of_birth: Date,
|
|
2434
|
+
address: T.nilable(Increase::Entity::Trust::Grantor::Address),
|
|
2435
|
+
date_of_birth: T.nilable(Date),
|
|
2434
2436
|
identification:
|
|
2435
2437
|
T.nilable(Increase::Entity::Trust::Grantor::Identification),
|
|
2436
2438
|
name: String
|
|
@@ -2474,7 +2476,7 @@ module Increase
|
|
|
2474
2476
|
sig { returns(T.nilable(String)) }
|
|
2475
2477
|
attr_accessor :zip
|
|
2476
2478
|
|
|
2477
|
-
# The
|
|
2479
|
+
# The grantor's address.
|
|
2478
2480
|
sig do
|
|
2479
2481
|
params(
|
|
2480
2482
|
city: T.nilable(String),
|
|
@@ -2527,7 +2529,7 @@ module Increase
|
|
|
2527
2529
|
)
|
|
2528
2530
|
end
|
|
2529
2531
|
|
|
2530
|
-
# A method that can be used to verify the
|
|
2532
|
+
# A method that can be used to verify the grantor's identity.
|
|
2531
2533
|
sig do
|
|
2532
2534
|
returns(
|
|
2533
2535
|
Increase::Entity::Trust::Grantor::Identification::Method::TaggedSymbol
|
|
@@ -2536,11 +2538,11 @@ module Increase
|
|
|
2536
2538
|
attr_accessor :method_
|
|
2537
2539
|
|
|
2538
2540
|
# The last 4 digits of the identification number that can be used to verify the
|
|
2539
|
-
#
|
|
2541
|
+
# grantor's identity.
|
|
2540
2542
|
sig { returns(String) }
|
|
2541
2543
|
attr_accessor :number_last4
|
|
2542
2544
|
|
|
2543
|
-
# A means of verifying the
|
|
2545
|
+
# A means of verifying the grantor's identity.
|
|
2544
2546
|
sig do
|
|
2545
2547
|
params(
|
|
2546
2548
|
method_:
|
|
@@ -2549,10 +2551,10 @@ module Increase
|
|
|
2549
2551
|
).returns(T.attached_class)
|
|
2550
2552
|
end
|
|
2551
2553
|
def self.new(
|
|
2552
|
-
# A method that can be used to verify the
|
|
2554
|
+
# A method that can be used to verify the grantor's identity.
|
|
2553
2555
|
method_:,
|
|
2554
2556
|
# The last 4 digits of the identification number that can be used to verify the
|
|
2555
|
-
#
|
|
2557
|
+
# grantor's identity.
|
|
2556
2558
|
number_last4:
|
|
2557
2559
|
)
|
|
2558
2560
|
end
|
|
@@ -2569,7 +2571,7 @@ module Increase
|
|
|
2569
2571
|
def to_hash
|
|
2570
2572
|
end
|
|
2571
2573
|
|
|
2572
|
-
# A method that can be used to verify the
|
|
2574
|
+
# A method that can be used to verify the grantor's identity.
|
|
2573
2575
|
module Method
|
|
2574
2576
|
extend Increase::Internal::Type::Enum
|
|
2575
2577
|
|
|
@@ -4093,8 +4093,8 @@ module Increase
|
|
|
4093
4093
|
)
|
|
4094
4094
|
end
|
|
4095
4095
|
|
|
4096
|
-
# The
|
|
4097
|
-
#
|
|
4096
|
+
# The grantor's physical address. Mail receiving locations like PO Boxes and PMB's
|
|
4097
|
+
# are disallowed.
|
|
4098
4098
|
sig { returns(Increase::EntityCreateParams::Trust::Grantor::Address) }
|
|
4099
4099
|
attr_reader :address
|
|
4100
4100
|
|
|
@@ -4106,7 +4106,7 @@ module Increase
|
|
|
4106
4106
|
end
|
|
4107
4107
|
attr_writer :address
|
|
4108
4108
|
|
|
4109
|
-
# The
|
|
4109
|
+
# The grantor's date of birth in YYYY-MM-DD format.
|
|
4110
4110
|
sig { returns(Date) }
|
|
4111
4111
|
attr_accessor :date_of_birth
|
|
4112
4112
|
|
|
@@ -4126,7 +4126,7 @@ module Increase
|
|
|
4126
4126
|
end
|
|
4127
4127
|
attr_writer :identification
|
|
4128
4128
|
|
|
4129
|
-
# The
|
|
4129
|
+
# The grantor's legal name.
|
|
4130
4130
|
sig { returns(String) }
|
|
4131
4131
|
attr_accessor :name
|
|
4132
4132
|
|
|
@@ -4153,14 +4153,14 @@ module Increase
|
|
|
4153
4153
|
).returns(T.attached_class)
|
|
4154
4154
|
end
|
|
4155
4155
|
def self.new(
|
|
4156
|
-
# The
|
|
4157
|
-
#
|
|
4156
|
+
# The grantor's physical address. Mail receiving locations like PO Boxes and PMB's
|
|
4157
|
+
# are disallowed.
|
|
4158
4158
|
address:,
|
|
4159
|
-
# The
|
|
4159
|
+
# The grantor's date of birth in YYYY-MM-DD format.
|
|
4160
4160
|
date_of_birth:,
|
|
4161
4161
|
# A means of verifying the person's identity.
|
|
4162
4162
|
identification:,
|
|
4163
|
-
# The
|
|
4163
|
+
# The grantor's legal name.
|
|
4164
4164
|
name:,
|
|
4165
4165
|
# The identification method for an individual can only be a passport, driver's
|
|
4166
4166
|
# license, or other document if you've confirmed the individual does not have a US
|
|
@@ -4228,8 +4228,8 @@ module Increase
|
|
|
4228
4228
|
sig { params(zip: String).void }
|
|
4229
4229
|
attr_writer :zip
|
|
4230
4230
|
|
|
4231
|
-
# The
|
|
4232
|
-
#
|
|
4231
|
+
# The grantor's physical address. Mail receiving locations like PO Boxes and PMB's
|
|
4232
|
+
# are disallowed.
|
|
4233
4233
|
sig do
|
|
4234
4234
|
params(
|
|
4235
4235
|
city: String,
|
|
@@ -491,6 +491,7 @@ module Increase
|
|
|
491
491
|
|
|
492
492
|
type tracking_update =
|
|
493
493
|
{
|
|
494
|
+
carrier_estimated_delivery_at: Time?,
|
|
494
495
|
category: Increase::Models::CheckTransfer::PhysicalCheck::TrackingUpdate::category,
|
|
495
496
|
country: String,
|
|
496
497
|
created_at: Time,
|
|
@@ -498,6 +499,8 @@ module Increase
|
|
|
498
499
|
}
|
|
499
500
|
|
|
500
501
|
class TrackingUpdate < Increase::Internal::Type::BaseModel
|
|
502
|
+
attr_accessor carrier_estimated_delivery_at: Time?
|
|
503
|
+
|
|
501
504
|
attr_accessor category: Increase::Models::CheckTransfer::PhysicalCheck::TrackingUpdate::category
|
|
502
505
|
|
|
503
506
|
attr_accessor country: String
|
|
@@ -507,6 +510,7 @@ module Increase
|
|
|
507
510
|
attr_accessor postal_code: String
|
|
508
511
|
|
|
509
512
|
def initialize: (
|
|
513
|
+
carrier_estimated_delivery_at: Time?,
|
|
510
514
|
category: Increase::Models::CheckTransfer::PhysicalCheck::TrackingUpdate::category,
|
|
511
515
|
country: String,
|
|
512
516
|
created_at: Time,
|
|
@@ -514,6 +518,7 @@ module Increase
|
|
|
514
518
|
) -> void
|
|
515
519
|
|
|
516
520
|
def to_hash: -> {
|
|
521
|
+
carrier_estimated_delivery_at: Time?,
|
|
517
522
|
category: Increase::Models::CheckTransfer::PhysicalCheck::TrackingUpdate::category,
|
|
518
523
|
country: String,
|
|
519
524
|
created_at: Time,
|
|
@@ -1076,31 +1076,31 @@ module Increase
|
|
|
1076
1076
|
|
|
1077
1077
|
type grantor =
|
|
1078
1078
|
{
|
|
1079
|
-
address: Increase::Entity::Trust::Grantor::Address
|
|
1080
|
-
date_of_birth: Date
|
|
1079
|
+
address: Increase::Entity::Trust::Grantor::Address?,
|
|
1080
|
+
date_of_birth: Date?,
|
|
1081
1081
|
identification: Increase::Entity::Trust::Grantor::Identification?,
|
|
1082
1082
|
name: String
|
|
1083
1083
|
}
|
|
1084
1084
|
|
|
1085
1085
|
class Grantor < Increase::Internal::Type::BaseModel
|
|
1086
|
-
attr_accessor address: Increase::Entity::Trust::Grantor::Address
|
|
1086
|
+
attr_accessor address: Increase::Entity::Trust::Grantor::Address?
|
|
1087
1087
|
|
|
1088
|
-
attr_accessor date_of_birth: Date
|
|
1088
|
+
attr_accessor date_of_birth: Date?
|
|
1089
1089
|
|
|
1090
1090
|
attr_accessor identification: Increase::Entity::Trust::Grantor::Identification?
|
|
1091
1091
|
|
|
1092
1092
|
attr_accessor name: String
|
|
1093
1093
|
|
|
1094
1094
|
def initialize: (
|
|
1095
|
-
address: Increase::Entity::Trust::Grantor::Address
|
|
1096
|
-
date_of_birth: Date
|
|
1095
|
+
address: Increase::Entity::Trust::Grantor::Address?,
|
|
1096
|
+
date_of_birth: Date?,
|
|
1097
1097
|
identification: Increase::Entity::Trust::Grantor::Identification?,
|
|
1098
1098
|
name: String
|
|
1099
1099
|
) -> void
|
|
1100
1100
|
|
|
1101
1101
|
def to_hash: -> {
|
|
1102
|
-
address: Increase::Entity::Trust::Grantor::Address
|
|
1103
|
-
date_of_birth: Date
|
|
1102
|
+
address: Increase::Entity::Trust::Grantor::Address?,
|
|
1103
|
+
date_of_birth: Date?,
|
|
1104
1104
|
identification: Increase::Entity::Trust::Grantor::Identification?,
|
|
1105
1105
|
name: String
|
|
1106
1106
|
}
|