Skip to content

Commit 814a45a

Browse files
committed
Correcting spelling mistake for fraudUpdate
1 parent 37fa3b7 commit 814a45a

File tree

2 files changed

+17
-17
lines changed

2 files changed

+17
-17
lines changed

Api/DecisionManagerApi.cs

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public interface IDecisionManagerApi : IApiAccessor
7878
/// <param name="id">Request ID of the transaction that you want to mark as suspect or remove from history.</param>
7979
/// <param name="fraudMarkingActionRequest"></param>
8080
/// <returns>RiskV1UpdatePost201Response</returns>
81-
RiskV1UpdatePost201Response FraudUdate (string id, FraudMarkingActionRequest fraudMarkingActionRequest);
81+
RiskV1UpdatePost201Response FraudUpdate (string id, FraudMarkingActionRequest fraudMarkingActionRequest);
8282

8383
/// <summary>
8484
/// Fraud Marking
@@ -90,7 +90,7 @@ public interface IDecisionManagerApi : IApiAccessor
9090
/// <param name="id">Request ID of the transaction that you want to mark as suspect or remove from history.</param>
9191
/// <param name="fraudMarkingActionRequest"></param>
9292
/// <returns>ApiResponse of RiskV1UpdatePost201Response</returns>
93-
ApiResponse<RiskV1UpdatePost201Response> FraudUdateWithHttpInfo (string id, FraudMarkingActionRequest fraudMarkingActionRequest);
93+
ApiResponse<RiskV1UpdatePost201Response> FraudUpdateWithHttpInfo (string id, FraudMarkingActionRequest fraudMarkingActionRequest);
9494
#endregion Synchronous Operations
9595
#region Asynchronous Operations
9696
/// <summary>
@@ -147,7 +147,7 @@ public interface IDecisionManagerApi : IApiAccessor
147147
/// <param name="id">Request ID of the transaction that you want to mark as suspect or remove from history.</param>
148148
/// <param name="fraudMarkingActionRequest"></param>
149149
/// <returns>Task of RiskV1UpdatePost201Response</returns>
150-
System.Threading.Tasks.Task<RiskV1UpdatePost201Response> FraudUdateAsync (string id, FraudMarkingActionRequest fraudMarkingActionRequest);
150+
System.Threading.Tasks.Task<RiskV1UpdatePost201Response> FraudUpdateAsync (string id, FraudMarkingActionRequest fraudMarkingActionRequest);
151151

152152
/// <summary>
153153
/// Fraud Marking
@@ -159,7 +159,7 @@ public interface IDecisionManagerApi : IApiAccessor
159159
/// <param name="id">Request ID of the transaction that you want to mark as suspect or remove from history.</param>
160160
/// <param name="fraudMarkingActionRequest"></param>
161161
/// <returns>Task of ApiResponse (RiskV1UpdatePost201Response)</returns>
162-
System.Threading.Tasks.Task<ApiResponse<RiskV1UpdatePost201Response>> FraudUdateAsyncWithHttpInfo (string id, FraudMarkingActionRequest fraudMarkingActionRequest);
162+
System.Threading.Tasks.Task<ApiResponse<RiskV1UpdatePost201Response>> FraudUpdateAsyncWithHttpInfo (string id, FraudMarkingActionRequest fraudMarkingActionRequest);
163163
#endregion Asynchronous Operations
164164
}
165165

@@ -585,9 +585,9 @@ public async System.Threading.Tasks.Task<ApiResponse<RiskV1DecisionsPost201Respo
585585
/// <param name="id">Request ID of the transaction that you want to mark as suspect or remove from history.</param>
586586
/// <param name="fraudMarkingActionRequest"></param>
587587
/// <returns>RiskV1UpdatePost201Response</returns>
588-
public RiskV1UpdatePost201Response FraudUdate (string id, FraudMarkingActionRequest fraudMarkingActionRequest)
588+
public RiskV1UpdatePost201Response FraudUpdate (string id, FraudMarkingActionRequest fraudMarkingActionRequest)
589589
{
590-
ApiResponse<RiskV1UpdatePost201Response> localVarResponse = FraudUdateWithHttpInfo(id, fraudMarkingActionRequest);
590+
ApiResponse<RiskV1UpdatePost201Response> localVarResponse = FraudUpdateWithHttpInfo(id, fraudMarkingActionRequest);
591591
return localVarResponse.Data;
592592
}
593593

@@ -598,14 +598,14 @@ public RiskV1UpdatePost201Response FraudUdate (string id, FraudMarkingActionRequ
598598
/// <param name="id">Request ID of the transaction that you want to mark as suspect or remove from history.</param>
599599
/// <param name="fraudMarkingActionRequest"></param>
600600
/// <returns>ApiResponse of RiskV1UpdatePost201Response</returns>
601-
public ApiResponse< RiskV1UpdatePost201Response > FraudUdateWithHttpInfo (string id, FraudMarkingActionRequest fraudMarkingActionRequest)
601+
public ApiResponse< RiskV1UpdatePost201Response > FraudUpdateWithHttpInfo (string id, FraudMarkingActionRequest fraudMarkingActionRequest)
602602
{
603603
// verify the required parameter 'id' is set
604604
if (id == null)
605-
throw new ApiException(400, "Missing required parameter 'id' when calling DecisionManagerApi->FraudUdate");
605+
throw new ApiException(400, "Missing required parameter 'id' when calling DecisionManagerApi->FraudUpdate");
606606
// verify the required parameter 'fraudMarkingActionRequest' is set
607607
if (fraudMarkingActionRequest == null)
608-
throw new ApiException(400, "Missing required parameter 'fraudMarkingActionRequest' when calling DecisionManagerApi->FraudUdate");
608+
throw new ApiException(400, "Missing required parameter 'fraudMarkingActionRequest' when calling DecisionManagerApi->FraudUpdate");
609609

610610
var localVarPath = $"/risk/v1/decisions/{id}/marking";
611611
var localVarPathParams = new Dictionary<String, String>();
@@ -649,7 +649,7 @@ public ApiResponse< RiskV1UpdatePost201Response > FraudUdateWithHttpInfo (string
649649

650650
if (ExceptionFactory != null)
651651
{
652-
Exception exception = ExceptionFactory("FraudUdate", localVarResponse);
652+
Exception exception = ExceptionFactory("FraudUpdate", localVarResponse);
653653
if (exception != null) throw exception;
654654
}
655655

@@ -665,9 +665,9 @@ public ApiResponse< RiskV1UpdatePost201Response > FraudUdateWithHttpInfo (string
665665
/// <param name="id">Request ID of the transaction that you want to mark as suspect or remove from history.</param>
666666
/// <param name="fraudMarkingActionRequest"></param>
667667
/// <returns>Task of RiskV1UpdatePost201Response</returns>
668-
public async System.Threading.Tasks.Task<RiskV1UpdatePost201Response> FraudUdateAsync (string id, FraudMarkingActionRequest fraudMarkingActionRequest)
668+
public async System.Threading.Tasks.Task<RiskV1UpdatePost201Response> FraudUpdateAsync (string id, FraudMarkingActionRequest fraudMarkingActionRequest)
669669
{
670-
ApiResponse<RiskV1UpdatePost201Response> localVarResponse = await FraudUdateAsyncWithHttpInfo(id, fraudMarkingActionRequest);
670+
ApiResponse<RiskV1UpdatePost201Response> localVarResponse = await FraudUpdateAsyncWithHttpInfo(id, fraudMarkingActionRequest);
671671
return localVarResponse.Data;
672672

673673
}
@@ -679,14 +679,14 @@ public async System.Threading.Tasks.Task<RiskV1UpdatePost201Response> FraudUdate
679679
/// <param name="id">Request ID of the transaction that you want to mark as suspect or remove from history.</param>
680680
/// <param name="fraudMarkingActionRequest"></param>
681681
/// <returns>Task of ApiResponse (RiskV1UpdatePost201Response)</returns>
682-
public async System.Threading.Tasks.Task<ApiResponse<RiskV1UpdatePost201Response>> FraudUdateAsyncWithHttpInfo (string id, FraudMarkingActionRequest fraudMarkingActionRequest)
682+
public async System.Threading.Tasks.Task<ApiResponse<RiskV1UpdatePost201Response>> FraudUpdateAsyncWithHttpInfo (string id, FraudMarkingActionRequest fraudMarkingActionRequest)
683683
{
684684
// verify the required parameter 'id' is set
685685
if (id == null)
686-
throw new ApiException(400, "Missing required parameter 'id' when calling DecisionManagerApi->FraudUdate");
686+
throw new ApiException(400, "Missing required parameter 'id' when calling DecisionManagerApi->FraudUpdate");
687687
// verify the required parameter 'fraudMarkingActionRequest' is set
688688
if (fraudMarkingActionRequest == null)
689-
throw new ApiException(400, "Missing required parameter 'fraudMarkingActionRequest' when calling DecisionManagerApi->FraudUdate");
689+
throw new ApiException(400, "Missing required parameter 'fraudMarkingActionRequest' when calling DecisionManagerApi->FraudUpdate");
690690

691691
var localVarPath = $"/risk/v1/decisions/{id}/marking";
692692
var localVarPathParams = new Dictionary<String, String>();
@@ -730,7 +730,7 @@ public async System.Threading.Tasks.Task<ApiResponse<RiskV1UpdatePost201Response
730730

731731
if (ExceptionFactory != null)
732732
{
733-
Exception exception = ExceptionFactory("FraudUdate", localVarResponse);
733+
Exception exception = ExceptionFactory("FraudUpdate", localVarResponse);
734734
if (exception != null) throw exception;
735735
}
736736

generator/cybersource-rest-spec.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29451,7 +29451,7 @@
2945129451
"post": {
2945229452
"summary": "Fraud Marking",
2945329453
"description": "This can be used to -\n1. Add known fraudulent data to the fraud history\n2. Remove data added to history with Transaction Marking Tool or by uploading chargeback files\n3. Remove chargeback data from history that was automatically added.\nFor detailed information, contact your Cybersource representative\n\nPlace the request ID of the transaction you want to mark as suspect (or remove from history) as the path parameter in this request.\n",
29454-
"operationId": "fraudUdate",
29454+
"operationId": "fraudUpdate",
2945529455
"tags": [
2945629456
"Decision Manager"
2945729457
],

0 commit comments

Comments
 (0)