You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@Schema(description = "Type of quote being requested", example = "NEW_BUSINESS", somethingElse= "new", other="my other long string")
2
+
public record QuoteRequest(
3
+
@Schema(description = "US state of the product being quoted", example = "TX")
4
+
RegulatoryState regulatoryState,
5
+
@Schema(description = "Reason for a quote", example = "New Business") String amendmentReason,
6
+
@Schema(description = "Type of quote being requested", example = "NEW_BUSINESS", somethingElse= "new", other="my other long string") QuoteType quoteType,
7
+
@Schema(description = "Date the quoted changes become active", example = "2023-06-25")
8
+
LocalDate quoteEffectiveDate
9
+
) {}
10
+
11
+
public record QuoteRequest(
12
+
13
+
int value,
14
+
15
+
@SomeInput RegulatoryState regulatoryState,
16
+
17
+
@SomeInput
18
+
@NotNull
19
+
@Deprecated
20
+
@JsonValue(name = "something") @Schema(description = "US state of the product being quoted", example = "TX") RegulatoryState regulatoryState,
21
+
@Schema(description = "Reason for a quote", example = "New Business") String amendmentReason,
22
+
int x,
23
+
int j) {}
24
+
25
+
public record Url(
26
+
int var1,
27
+
@JsonValue("value") String var2,
28
+
@SomeInput @JsonValue String var3,
29
+
int var3,
30
+
int var4,
31
+
int var5,
32
+
int var6) {}
33
+
34
+
public record Url(
35
+
@NotNull
36
+
@JsonValue
37
+
@Deprecated
38
+
@Annotation1
39
+
@Annotation2
40
+
@Annotation3
41
+
@Annotation4
42
+
@Annotation5
43
+
@Annotation6
44
+
@Annotation7
45
+
@Annotation8
46
+
@Annotation9
47
+
@Annotation10
48
+
@Annotation11
49
+
@Annotation12
50
+
String value) {}
51
+
52
+
public record Url(@NotNull String value, int number) {}
53
+
54
+
public record Url(
55
+
int number,
56
+
@JsonValue("value") String value) {}
57
+
58
+
public record Url(@New @JsonValue("value") String value) {}
59
+
60
+
@JsonIgnoreProperties(ignoreUnknown = true)
61
+
@JsonInclude(JsonInclude.Include.NON_NULL)
62
+
public record Game(
63
+
@JsonProperty("accounting_group") @JsonPropertyDescription("The accounting group of the game.")
64
+
String accountingGroup,
65
+
@JsonProperty("accumulating")
66
+
@JsonPropertyDescription("Marks which games with accumulating bonuses.") Boolean accumulating,
67
+
@JsonProperty("bonus_buy") @JsonPropertyDescription("Games with purchasable bonuses.") Boolean bonusBuy,
0 commit comments