Skip to content
Open
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: 1 addition & 1 deletion CODEGEN_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
826bf48af8bcd391512daeaf283b8486347b14c8
607324895d7883d4a5f04f3c29c26faa09cd31d3
2 changes: 1 addition & 1 deletion OPENAPI_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v2253
v2254
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// File copied from our code generator; changes here will be overwritten.
package com.stripe;

// event-notification-class-imports: The beginning of the section generated from our OpenAPI spec
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// File copied from our code generator; changes here will be overwritten.
package com.stripe.events;

import com.google.gson.annotations.SerializedName;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// File copied from our code generator; changes here will be overwritten.
package com.stripe.examples;

import com.stripe.StripeClient;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// File copied from our code generator; changes here will be overwritten.
package com.stripe.examples;

import com.stripe.StripeClient;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// File copied from our code generator; changes here will be overwritten.
package com.stripe.model.v2.core;

import com.google.gson.JsonObject;
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/stripe/service/V2Services.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ public com.stripe.service.v2.CoreService core() {
return new com.stripe.service.v2.CoreService(this.getResponseGetter());
}

public com.stripe.service.v2.DatumService data() {
return new com.stripe.service.v2.DatumService(this.getResponseGetter());
public com.stripe.service.v2.DataService data() {
return new com.stripe.service.v2.DataService(this.getResponseGetter());
}

public com.stripe.service.v2.ExtendService extend() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
import com.stripe.net.ApiService;
import com.stripe.net.StripeResponseGetter;

public final class DatumService extends ApiService {
public DatumService(StripeResponseGetter responseGetter) {
public final class DataService extends ApiService {
public DataService(StripeResponseGetter responseGetter) {
super(responseGetter);
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// File copied from our code generator; changes here will be overwritten.
package com.stripe;

import static org.junit.jupiter.api.Assertions.assertEquals;
Expand Down
Loading