@@ -1622,6 +1622,7 @@ def test_get_customer(request_type, transport: str = "grpc"):
16221622 language_code="language_code_value",
16231623 channel_partner_id="channel_partner_id_value",
16241624 correlation_id="correlation_id_value",
1625+ customer_attestation_state=customers.Customer.CustomerAttestationState.EXEMPT,
16251626 )
16261627 response = client.get_customer(request)
16271628
@@ -1641,6 +1642,10 @@ def test_get_customer(request_type, transport: str = "grpc"):
16411642 assert response.language_code == "language_code_value"
16421643 assert response.channel_partner_id == "channel_partner_id_value"
16431644 assert response.correlation_id == "correlation_id_value"
1645+ assert (
1646+ response.customer_attestation_state
1647+ == customers.Customer.CustomerAttestationState.EXEMPT
1648+ )
16441649
16451650
16461651def test_get_customer_non_empty_request_with_auto_populated_field():
@@ -1774,6 +1779,7 @@ async def test_get_customer_async(
17741779 language_code="language_code_value",
17751780 channel_partner_id="channel_partner_id_value",
17761781 correlation_id="correlation_id_value",
1782+ customer_attestation_state=customers.Customer.CustomerAttestationState.EXEMPT,
17771783 )
17781784 )
17791785 response = await client.get_customer(request)
@@ -1794,6 +1800,10 @@ async def test_get_customer_async(
17941800 assert response.language_code == "language_code_value"
17951801 assert response.channel_partner_id == "channel_partner_id_value"
17961802 assert response.correlation_id == "correlation_id_value"
1803+ assert (
1804+ response.customer_attestation_state
1805+ == customers.Customer.CustomerAttestationState.EXEMPT
1806+ )
17971807
17981808
17991809@pytest.mark.asyncio
@@ -2224,6 +2234,7 @@ def test_create_customer(request_type, transport: str = "grpc"):
22242234 language_code="language_code_value",
22252235 channel_partner_id="channel_partner_id_value",
22262236 correlation_id="correlation_id_value",
2237+ customer_attestation_state=customers.Customer.CustomerAttestationState.EXEMPT,
22272238 )
22282239 response = client.create_customer(request)
22292240
@@ -2243,6 +2254,10 @@ def test_create_customer(request_type, transport: str = "grpc"):
22432254 assert response.language_code == "language_code_value"
22442255 assert response.channel_partner_id == "channel_partner_id_value"
22452256 assert response.correlation_id == "correlation_id_value"
2257+ assert (
2258+ response.customer_attestation_state
2259+ == customers.Customer.CustomerAttestationState.EXEMPT
2260+ )
22462261
22472262
22482263def test_create_customer_non_empty_request_with_auto_populated_field():
@@ -2376,6 +2391,7 @@ async def test_create_customer_async(
23762391 language_code="language_code_value",
23772392 channel_partner_id="channel_partner_id_value",
23782393 correlation_id="correlation_id_value",
2394+ customer_attestation_state=customers.Customer.CustomerAttestationState.EXEMPT,
23792395 )
23802396 )
23812397 response = await client.create_customer(request)
@@ -2396,6 +2412,10 @@ async def test_create_customer_async(
23962412 assert response.language_code == "language_code_value"
23972413 assert response.channel_partner_id == "channel_partner_id_value"
23982414 assert response.correlation_id == "correlation_id_value"
2415+ assert (
2416+ response.customer_attestation_state
2417+ == customers.Customer.CustomerAttestationState.EXEMPT
2418+ )
23992419
24002420
24012421@pytest.mark.asyncio
@@ -2491,6 +2511,7 @@ def test_update_customer(request_type, transport: str = "grpc"):
24912511 language_code="language_code_value",
24922512 channel_partner_id="channel_partner_id_value",
24932513 correlation_id="correlation_id_value",
2514+ customer_attestation_state=customers.Customer.CustomerAttestationState.EXEMPT,
24942515 )
24952516 response = client.update_customer(request)
24962517
@@ -2510,6 +2531,10 @@ def test_update_customer(request_type, transport: str = "grpc"):
25102531 assert response.language_code == "language_code_value"
25112532 assert response.channel_partner_id == "channel_partner_id_value"
25122533 assert response.correlation_id == "correlation_id_value"
2534+ assert (
2535+ response.customer_attestation_state
2536+ == customers.Customer.CustomerAttestationState.EXEMPT
2537+ )
25132538
25142539
25152540def test_update_customer_non_empty_request_with_auto_populated_field():
@@ -2639,6 +2664,7 @@ async def test_update_customer_async(
26392664 language_code="language_code_value",
26402665 channel_partner_id="channel_partner_id_value",
26412666 correlation_id="correlation_id_value",
2667+ customer_attestation_state=customers.Customer.CustomerAttestationState.EXEMPT,
26422668 )
26432669 )
26442670 response = await client.update_customer(request)
@@ -2659,6 +2685,10 @@ async def test_update_customer_async(
26592685 assert response.language_code == "language_code_value"
26602686 assert response.channel_partner_id == "channel_partner_id_value"
26612687 assert response.correlation_id == "correlation_id_value"
2688+ assert (
2689+ response.customer_attestation_state
2690+ == customers.Customer.CustomerAttestationState.EXEMPT
2691+ )
26622692
26632693
26642694@pytest.mark.asyncio
@@ -3065,6 +3095,7 @@ def test_import_customer(request_type, transport: str = "grpc"):
30653095 language_code="language_code_value",
30663096 channel_partner_id="channel_partner_id_value",
30673097 correlation_id="correlation_id_value",
3098+ customer_attestation_state=customers.Customer.CustomerAttestationState.EXEMPT,
30683099 )
30693100 response = client.import_customer(request)
30703101
@@ -3084,6 +3115,10 @@ def test_import_customer(request_type, transport: str = "grpc"):
30843115 assert response.language_code == "language_code_value"
30853116 assert response.channel_partner_id == "channel_partner_id_value"
30863117 assert response.correlation_id == "correlation_id_value"
3118+ assert (
3119+ response.customer_attestation_state
3120+ == customers.Customer.CustomerAttestationState.EXEMPT
3121+ )
30873122
30883123
30893124def test_import_customer_non_empty_request_with_auto_populated_field():
@@ -3229,6 +3264,7 @@ async def test_import_customer_async(
32293264 language_code="language_code_value",
32303265 channel_partner_id="channel_partner_id_value",
32313266 correlation_id="correlation_id_value",
3267+ customer_attestation_state=customers.Customer.CustomerAttestationState.EXEMPT,
32323268 )
32333269 )
32343270 response = await client.import_customer(request)
@@ -3249,6 +3285,10 @@ async def test_import_customer_async(
32493285 assert response.language_code == "language_code_value"
32503286 assert response.channel_partner_id == "channel_partner_id_value"
32513287 assert response.correlation_id == "correlation_id_value"
3288+ assert (
3289+ response.customer_attestation_state
3290+ == customers.Customer.CustomerAttestationState.EXEMPT
3291+ )
32523292
32533293
32543294@pytest.mark.asyncio
@@ -19531,6 +19571,7 @@ async def test_get_customer_empty_call_grpc_asyncio():
1953119571 language_code="language_code_value",
1953219572 channel_partner_id="channel_partner_id_value",
1953319573 correlation_id="correlation_id_value",
19574+ customer_attestation_state=customers.Customer.CustomerAttestationState.EXEMPT,
1953419575 )
1953519576 )
1953619577 await client.get_customer(request=None)
@@ -19592,6 +19633,7 @@ async def test_create_customer_empty_call_grpc_asyncio():
1959219633 language_code="language_code_value",
1959319634 channel_partner_id="channel_partner_id_value",
1959419635 correlation_id="correlation_id_value",
19636+ customer_attestation_state=customers.Customer.CustomerAttestationState.EXEMPT,
1959519637 )
1959619638 )
1959719639 await client.create_customer(request=None)
@@ -19626,6 +19668,7 @@ async def test_update_customer_empty_call_grpc_asyncio():
1962619668 language_code="language_code_value",
1962719669 channel_partner_id="channel_partner_id_value",
1962819670 correlation_id="correlation_id_value",
19671+ customer_attestation_state=customers.Customer.CustomerAttestationState.EXEMPT,
1962919672 )
1963019673 )
1963119674 await client.update_customer(request=None)
@@ -19683,6 +19726,7 @@ async def test_import_customer_empty_call_grpc_asyncio():
1968319726 language_code="language_code_value",
1968419727 channel_partner_id="channel_partner_id_value",
1968519728 correlation_id="correlation_id_value",
19729+ customer_attestation_state=customers.Customer.CustomerAttestationState.EXEMPT,
1968619730 )
1968719731 )
1968819732 await client.import_customer(request=None)
0 commit comments