Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for new properties on Reporting resources #689

Merged
merged 1 commit into from
Mar 14, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/main/java/com/stripe/model/reporting/ReportRun.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
import com.stripe.net.ApiResource;
import com.stripe.net.RequestOptions;

import java.util.List;
import java.util.Map;

import lombok.EqualsAndHashCode;
Expand Down Expand Up @@ -93,6 +94,7 @@ public static ReportRun retrieve(String id, Map<String, Object> params,
@Setter
@EqualsAndHashCode(callSuper = false)
public final class Parameters extends StripeObject {
List<String> columns;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah i see.. It's only added today that 8.x doesn't have it.

String connectedAccount;
String currency;
Long intervalEnd;
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/com/stripe/model/reporting/ReportType.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import com.stripe.net.ApiResource;
import com.stripe.net.RequestOptions;

import java.util.List;
import java.util.Map;

import lombok.EqualsAndHashCode;
Expand All @@ -19,6 +20,7 @@ public class ReportType extends ApiResource implements HasId {
String object;
Long dataAvailableEnd;
Long dataAvailableStart;
List<String> defaultColumns;
String name;
Long updated;
Long version;
Expand Down