• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

stripe / stripe-java / #15808

16 Apr 2024 06:24AM UTC coverage: 17.817% (-0.03%) from 17.844%
#15808

push

github

web-flow
Update generated code (#1780)

5 of 217 new or added lines in 13 files covered. (2.3%)

3 existing lines in 3 files now uncovered.

18019 of 101135 relevant lines covered (17.82%)

0.18 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/main/java/com/stripe/model/entitlements/ActiveEntitlementSummary.java
1
// File generated from our OpenAPI spec
2
package com.stripe.model.entitlements;
3

4
import com.google.gson.annotations.SerializedName;
5
import com.stripe.model.StripeObject;
6
import lombok.EqualsAndHashCode;
7
import lombok.Getter;
8
import lombok.Setter;
9

10
/** A summary of a customer's active entitlements. */
11
@Getter
12
@Setter
13
@EqualsAndHashCode(callSuper = false)
NEW
14
public class ActiveEntitlementSummary extends StripeObject {
×
15
  /** The customer that is entitled to this feature. */
16
  @SerializedName("customer")
17
  String customer;
18

19
  /** The list of entitlements this customer has. */
20
  @SerializedName("entitlements")
21
  ActiveEntitlementCollection entitlements;
22

23
  /**
24
   * Has the value {@code true} if the object exists in live mode or the value {@code false} if the
25
   * object exists in test mode.
26
   */
27
  @SerializedName("livemode")
28
  Boolean livemode;
29

30
  /**
31
   * String representing the object's type. Objects of the same type share the same value.
32
   *
33
   * <p>Equal to {@code entitlements.active_entitlement_summary}.
34
   */
35
  @SerializedName("object")
36
  String object;
37
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc