Skip to content

Commit

Permalink
Fix action_invocations property (#438)
Browse files Browse the repository at this point in the history
  • Loading branch information
armando-rodriguez-cko authored Sep 20, 2024
1 parent ab39478 commit e89cd8b
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package com.checkout.workflows.events;

import com.checkout.common.Resource;
import com.checkout.workflows.actions.response.WorkflowActionInvocation;
import com.google.gson.annotations.SerializedName;
import lombok.Data;
import lombok.EqualsAndHashCode;
Expand All @@ -28,6 +27,6 @@ public final class GetEventResponse extends Resource {
private Map<String, Object> data;

@SerializedName("action_invocations")
private List<WorkflowActionInvocation> actionInvocations;
private List<EventActionInvocation> actionInvocations;

}

0 comments on commit e89cd8b

Please sign in to comment.