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

stripe / stripe-java / #16493

03 Oct 2024 07:15PM UTC coverage: 12.942% (+0.08%) from 12.864%
#16493

push

github

web-flow
Merge Stripe-java v27.0.0 to beta branch (#1888)

409 of 1651 new or added lines in 88 files covered. (24.77%)

31 existing lines in 7 files now uncovered.

18773 of 145050 relevant lines covered (12.94%)

0.13 hits per line

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

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

4
import com.google.gson.annotations.SerializedName;
5
import com.stripe.model.HasId;
6
import com.stripe.model.StripeObject;
7
import java.time.Instant;
8
import lombok.EqualsAndHashCode;
9
import lombok.Getter;
10
import lombok.Setter;
11

12
@Getter
13
@Setter
14
@EqualsAndHashCode(callSuper = false)
NEW
15
public class MeterEventSession extends StripeObject implements HasId {
×
16
  /**
17
   * The authentication token for this session. Use this token when calling the high-throughput
18
   * meter event API.
19
   */
20
  @SerializedName("authentication_token")
21
  String authenticationToken;
22

23
  /** The creation time of this session. */
24
  @SerializedName("created")
25
  Instant created;
26

27
  /** The time at which this session will expire. */
28
  @SerializedName("expires_at")
29
  Instant expiresAt;
30

31
  /** The unique id of this auth session. */
32
  @Getter(onMethod_ = {@Override})
33
  @SerializedName("id")
34
  String id;
35

36
  /**
37
   * Has the value {@code true} if the object exists in live mode or the value {@code false} if the
38
   * object exists in test mode.
39
   */
40
  @SerializedName("livemode")
41
  Boolean livemode;
42

43
  /**
44
   * String representing the object's type. Objects of the same type share the same value of the
45
   * object field.
46
   *
47
   * <p>Equal to {@code billing.meter_event_session}.
48
   */
49
  @SerializedName("object")
50
  String object;
51
}
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

© 2026 Coveralls, Inc