Skip to content

Commit

Permalink
fix nullable on transaction request interface
Browse files Browse the repository at this point in the history
  • Loading branch information
vildanbina committed Nov 15, 2023
1 parent 9763fcc commit d6ae5ca
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/Models/Response/TransactionResponse.ts
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ export declare interface ITransactionResponse {
name: string;
typeDeprecated: number;
};
services: {
services?: {
action: string;
name: string;
value: string;
Expand All @@ -164,33 +164,33 @@ export declare interface ITransactionResponse {
additionalParameters?: {
additionalParameter: IFormattedParameter[];
};
requestErrors: {
channelErrors: {
requestErrors?: {
channelErrors?: {
service: string;
action: string;
name: string;
error: string;
errorMessage: string;
}[];
serviceErrors: {
serviceErrors?: {
name: string;
error: string;
errorMessage: string;
}[];
actionErrors: {
actionErrors?: {
service: string;
name: string;
error: string;
errorMessage: string;
}[];
parameterErrors: {
parameterErrors?: {
service: string;
action: string;
name: string;
error: string;
errorMessage: string;
}[];
customParameterErrors: {
customParameterErrors?: {
name: string;
error: string;
errorMessage: string;
Expand All @@ -204,11 +204,11 @@ export declare interface ITransactionResponse {
amountCredit: number;
transactionType: string;
mutationType: number;
relatedTransactions: {
relatedTransactions?: {
relationType: string;
relatedTransactionKey: string;
}[];
consumerMessage: {
consumerMessage?: {
mustRead: boolean;
cultureName: string;
title: string;
Expand Down

0 comments on commit d6ae5ca

Please sign in to comment.