Skip to content

Commit b1032be

Browse files
committed
june spec file changes
1 parent da9a224 commit b1032be

File tree

46 files changed

+2028
-331
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+2028
-331
lines changed

docs/PlansApi.md

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Method | HTTP request | Description
1515

1616

1717
# **activate_plan**
18-
> InlineResponse2004 activate_plan(id, opts)
18+
> InlineResponse2004 activate_plan(id)
1919
2020
Activate a Plan
2121

@@ -30,13 +30,10 @@ api_instance = CyberSource::PlansApi.new
3030

3131
id = "id_example" # String | Plan Id
3232

33-
opts = {
34-
activate_plan_request: nil # Object |
35-
}
3633

3734
begin
3835
#Activate a Plan
39-
result = api_instance.activate_plan(id, opts)
36+
result = api_instance.activate_plan(id)
4037
p result
4138
rescue CyberSource::ApiError => e
4239
puts "Exception when calling PlansApi->activate_plan: #{e}"
@@ -48,7 +45,6 @@ end
4845
Name | Type | Description | Notes
4946
------------- | ------------- | ------------- | -------------
5047
**id** | **String**| Plan Id |
51-
**activate_plan_request** | **Object**| | [optional]
5248

5349
### Return type
5450

@@ -113,7 +109,7 @@ No authorization required
113109

114110

115111
# **deactivate_plan**
116-
> InlineResponse2004 deactivate_plan(id, opts)
112+
> InlineResponse2004 deactivate_plan(id)
117113
118114
Deactivate a Plan
119115

@@ -128,13 +124,10 @@ api_instance = CyberSource::PlansApi.new
128124

129125
id = "id_example" # String | Plan Id
130126

131-
opts = {
132-
deactivate_plan_request: nil # Object |
133-
}
134127

135128
begin
136129
#Deactivate a Plan
137-
result = api_instance.deactivate_plan(id, opts)
130+
result = api_instance.deactivate_plan(id)
138131
p result
139132
rescue CyberSource::ApiError => e
140133
puts "Exception when calling PlansApi->deactivate_plan: #{e}"
@@ -146,7 +139,6 @@ end
146139
Name | Type | Description | Notes
147140
------------- | ------------- | ------------- | -------------
148141
**id** | **String**| Plan Id |
149-
**deactivate_plan_request** | **Object**| | [optional]
150142

151143
### Return type
152144

docs/Ptsv2paymentsRecipientInformation.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,6 @@ Name | Type | Description | Notes
77
**last_name** | **String** | Recipient’s last name. This field is a _passthrough_, which means that CyberSource does not verify the value or modify it in any way before sending it to the processor. If the field is not required for the transaction, CyberSource does not forward it to the processor. For details, see the `recipient_lastname` field description in the [Credit Card Services Using the SCMP API Guide.](https://apps.cybersource.com/library/documentation/dev_guides/CC_Svcs_SCMP_API/html/) | [optional]
88
**middle_name** | **String** | Recipient’s middle name. This field is a _passthrough_, which means that CyberSource does not verify the value or modify it in any way before sending it to the processor. If the field is not required for the transaction, CyberSource does not forward it to the processor. For details, see the `recipient_middlename` field description in the [Credit Card Services Using the SCMP API Guide.](https://apps.cybersource.com/library/documentation/dev_guides/CC_Svcs_SCMP_API/html/) | [optional]
99
**postal_code** | **String** | Partial postal code for the recipient’s address. For example, if the postal code is **NN5 7SG**, the value for this field should be the first part of the postal code: **NN5**. This field is a _pass-through_, which means that CyberSource does not verify the value or modify it in any way before sending it to the processor. If the field is not required for the transaction, CyberSource does not forward it to the processor. For details, see the `recipient_postal_code` field description in [Credit Card Services Using the SCMP API.](https://apps.cybersource.com/library/documentation/dev_guides/CC_Svcs_SCMP_API/html/) | [optional]
10+
**date_of_birth** | **String** | Recipient’s date of birth. **Format**: `YYYYMMDD`. This field is a `pass-through`, which means that CyberSource ensures that the value is eight numeric characters but otherwise does not verify the value or modify it in any way before sending it to the processor. If the field is not required for the transaction, CyberSource does not forward it to the processor. For more details, see `recipient_date_of_birth` field description in the [Credit Card Services Using the SCMP API Guide.](https://apps.cybersource.com/library/documentation/dev_guides/CC_Svcs_SCMP_API/html/) | [optional]
1011

1112

docs/SubscriptionsApi.md

Lines changed: 6 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Method | HTTP request | Description
1515

1616

1717
# **activate_subscription**
18-
> InlineResponse2009 activate_subscription(id, opts)
18+
> InlineResponse2009 activate_subscription(id)
1919
2020
Activate a Subscription
2121

@@ -30,13 +30,10 @@ api_instance = CyberSource::SubscriptionsApi.new
3030

3131
id = "id_example" # String | Subscription Id
3232

33-
opts = {
34-
activate_subscription_request: nil # Object |
35-
}
3633

3734
begin
3835
#Activate a Subscription
39-
result = api_instance.activate_subscription(id, opts)
36+
result = api_instance.activate_subscription(id)
4037
p result
4138
rescue CyberSource::ApiError => e
4239
puts "Exception when calling SubscriptionsApi->activate_subscription: #{e}"
@@ -48,7 +45,6 @@ end
4845
Name | Type | Description | Notes
4946
------------- | ------------- | ------------- | -------------
5047
**id** | **String**| Subscription Id |
51-
**activate_subscription_request** | **Object**| | [optional]
5248

5349
### Return type
5450

@@ -66,7 +62,7 @@ No authorization required
6662

6763

6864
# **cancel_subscription**
69-
> InlineResponse202 cancel_subscription(id, opts)
65+
> InlineResponse202 cancel_subscription(id)
7066
7167
Cancel a Subscription
7268

@@ -81,13 +77,10 @@ api_instance = CyberSource::SubscriptionsApi.new
8177

8278
id = "id_example" # String | Subscription Id
8379

84-
opts = {
85-
cancel_subscription_request: nil # Object |
86-
}
8780

8881
begin
8982
#Cancel a Subscription
90-
result = api_instance.cancel_subscription(id, opts)
83+
result = api_instance.cancel_subscription(id)
9184
p result
9285
rescue CyberSource::ApiError => e
9386
puts "Exception when calling SubscriptionsApi->cancel_subscription: #{e}"
@@ -99,7 +92,6 @@ end
9992
Name | Type | Description | Notes
10093
------------- | ------------- | ------------- | -------------
10194
**id** | **String**| Subscription Id |
102-
**cancel_subscription_request** | **Object**| | [optional]
10395

10496
### Return type
10597

@@ -306,7 +298,7 @@ No authorization required
306298

307299

308300
# **suspend_subscription**
309-
> InlineResponse2021 suspend_subscription(id, opts)
301+
> InlineResponse2021 suspend_subscription(id)
310302
311303
Suspend a Subscription
312304

@@ -321,13 +313,10 @@ api_instance = CyberSource::SubscriptionsApi.new
321313

322314
id = "id_example" # String | Subscription Id
323315

324-
opts = {
325-
suspend_subscription_request: nil # Object |
326-
}
327316

328317
begin
329318
#Suspend a Subscription
330-
result = api_instance.suspend_subscription(id, opts)
319+
result = api_instance.suspend_subscription(id)
331320
p result
332321
rescue CyberSource::ApiError => e
333322
puts "Exception when calling SubscriptionsApi->suspend_subscription: #{e}"
@@ -339,7 +328,6 @@ end
339328
Name | Type | Description | Notes
340329
------------- | ------------- | ------------- | -------------
341330
**id** | **String**| Subscription Id |
342-
**suspend_subscription_request** | **Object**| | [optional]
343331

344332
### Return type
345333

docs/TssV2TransactionsGet200Response.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Name | Type | Description | Notes
88
**reconciliation_id** | **String** | Reference number for the transaction. Depending on how your Cybersource account is configured, this value could either be provided in the API request or generated by CyberSource. The actual value used in the request to the processor is provided back to you by Cybersource in the response. | [optional]
99
**merchant_id** | **String** | Your CyberSource merchant ID. | [optional]
1010
**submit_time_utc** | **String** | Time of request in UTC. Format: `YYYY-MM-DDThh:mm:ssZ` **Example** `2016-08-11T22:47:57Z` equals August 11, 2016, at 22:47:57 (10:47:57 p.m.). The `T` separates the date and the time. The `Z` indicates UTC. Returned by Cybersource for all services. | [optional]
11+
**status** | **String** | The status of the submitted transaction. | [optional]
1112
**application_information** | [**TssV2TransactionsGet200ResponseApplicationInformation**](TssV2TransactionsGet200ResponseApplicationInformation.md) | | [optional]
1213
**buyer_information** | [**TssV2TransactionsGet200ResponseBuyerInformation**](TssV2TransactionsGet200ResponseBuyerInformation.md) | | [optional]
1314
**client_reference_information** | [**TssV2TransactionsGet200ResponseClientReferenceInformation**](TssV2TransactionsGet200ResponseClientReferenceInformation.md) | | [optional]

docs/TssV2TransactionsPost201Response.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ Name | Type | Description | Notes
1313
**sort** | **String** | A comma separated list of the following form: `submitTimeUtc:desc` | [optional]
1414
**count** | **Integer** | Results for this page, this could be below the limit. | [optional]
1515
**total_count** | **Integer** | Total number of results. | [optional]
16-
**status** | **String** | The status of the submitted transaction. | [optional]
1716
**submit_time_utc** | **String** | Time of request in UTC. Format: `YYYY-MM-DDThh:mm:ssZ` **Example** `2016-08-11T22:47:57Z` equals August 11, 2016, at 22:47:57 (10:47:57 p.m.). The `T` separates the date and the time. The `Z` indicates UTC. Returned by Cybersource for all services. | [optional]
1817
**_embedded** | [**TssV2TransactionsPost201ResponseEmbedded**](TssV2TransactionsPost201ResponseEmbedded.md) | | [optional]
1918
**_links** | [**PtsV2IncrementalAuthorizationPatch201ResponseLinks**](PtsV2IncrementalAuthorizationPatch201ResponseLinks.md) | | [optional]

docs/TssV2TransactionsPost201ResponseEmbeddedApplicationInformationApplications.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
66
**name** | **String** | The name of the CyberSource transaction type (such as CC settlement or CC authorization) that the merchant wants to process in a transaction request. More than one transaction type can included in a transaction request. Each transaction type separately returns their own status, reasonCode, rCode, and rFlag messages. | [optional]
77
**reason_code** | **String** | 3-digit reason code that indicates why the customer profile payment succeeded or failed. | [optional]
8+
**status** | **String** | The status of the submitted transaction. Note: This field may not be returned for all transactions. | [optional]
9+
**reason** | **String** | Description of why a request failed. Note: This field may not be returned for all transactions. | [optional]
810
**r_code** | **String** | Indicates whether the service request was successful. Possible values: - `-1`: An error occurred. - `0`: The request was declined. - `1`: The request was successful. | [optional]
911
**r_flag** | **String** | One-word description of the result of the application. | [optional]
1012
**reconciliation_id** | **String** | Reference number that you use to reconcile your CyberSource reports with your processor reports. | [optional]
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# CyberSource::TssV2TransactionsPost201ResponseEmbeddedErrorInformation
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**reason** | **String** | Description of why a request failed. Note: This field may not be returned for all transactions. | [optional]
7+
8+

docs/TssV2TransactionsPost201ResponseEmbeddedTransactionSummaries.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,13 @@ Name | Type | Description | Notes
66
**id** | **String** | An unique identification number generated by Cybersource to identify the submitted request. Returned by all services. It is also appended to the endpoint of the resource. On incremental authorizations, this value with be the same as the identification number returned in the original authorization response. | [optional]
77
**submit_time_utc** | **String** | Time of request in UTC. Format: `YYYY-MM-DDThh:mm:ssZ` **Example** `2016-08-11T22:47:57Z` equals August 11, 2016, at 22:47:57 (10:47:57 p.m.). The `T` separates the date and the time. The `Z` indicates UTC. Returned by Cybersource for all services. | [optional]
88
**merchant_id** | **String** | Your CyberSource merchant ID. | [optional]
9+
**status** | **String** | The status of the submitted transaction. Note: This field may not be returned for all transactions. | [optional]
910
**application_information** | [**TssV2TransactionsPost201ResponseEmbeddedApplicationInformation**](TssV2TransactionsPost201ResponseEmbeddedApplicationInformation.md) | | [optional]
1011
**buyer_information** | [**TssV2TransactionsPost201ResponseEmbeddedBuyerInformation**](TssV2TransactionsPost201ResponseEmbeddedBuyerInformation.md) | | [optional]
1112
**client_reference_information** | [**TssV2TransactionsPost201ResponseEmbeddedClientReferenceInformation**](TssV2TransactionsPost201ResponseEmbeddedClientReferenceInformation.md) | | [optional]
1213
**consumer_authentication_information** | [**TssV2TransactionsPost201ResponseEmbeddedConsumerAuthenticationInformation**](TssV2TransactionsPost201ResponseEmbeddedConsumerAuthenticationInformation.md) | | [optional]
1314
**device_information** | [**Riskv1authenticationresultsDeviceInformation**](Riskv1authenticationresultsDeviceInformation.md) | | [optional]
15+
**error_information** | [**TssV2TransactionsPost201ResponseEmbeddedErrorInformation**](TssV2TransactionsPost201ResponseEmbeddedErrorInformation.md) | | [optional]
1416
**fraud_marking_information** | [**TssV2TransactionsGet200ResponseFraudMarkingInformation**](TssV2TransactionsGet200ResponseFraudMarkingInformation.md) | | [optional]
1517
**merchant_defined_information** | [**Array<Ptsv2paymentsMerchantDefinedInformation>**](Ptsv2paymentsMerchantDefinedInformation.md) | The object containing the custom data that the merchant defines. | [optional]
1618
**merchant_information** | [**TssV2TransactionsPost201ResponseEmbeddedMerchantInformation**](TssV2TransactionsPost201ResponseEmbeddedMerchantInformation.md) | | [optional]

0 commit comments

Comments
 (0)