Skip to content

Commit b0d4f67

Browse files
committed
1 parent 8fdb5b1 commit b0d4f67

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+59
-61
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
dofusdude
44
- API version: 1.0.0-rc.8
5-
- Build date: 2024-12-03T12:11:42.585842663Z[Etc/UTC]
5+
- Build date: 2024-12-03T12:16:14.535029201Z[Etc/UTC]
66
- Generator version: 7.11.0-SNAPSHOT
77

88
# Open Ankama Developer Community

api/openapi.yaml

-2
Original file line numberDiff line numberDiff line change
@@ -3596,7 +3596,6 @@ paths:
35963596
name: "range[from]"
35973597
required: false
35983598
schema:
3599-
example: 2016-09-15
36003599
format: date
36013600
type: string
36023601
style: form
@@ -3606,7 +3605,6 @@ paths:
36063605
name: "range[to]"
36073606
required: false
36083607
schema:
3609-
example: 2016-09-28
36103608
format: date
36113609
type: string
36123610
style: form

docs/AlmanaxApi.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,8 @@ public class Example {
9797
AlmanaxApi apiInstance = new AlmanaxApi(defaultClient);
9898
String language = "en"; // String | code
9999
String filterBonusType = "experience-points"; // String | ids from meta/{language}/almanax/bonuses
100-
LocalDate rangeFrom = LocalDate.parse("Thu Sep 15 00:00:00 UTC 2016"); // LocalDate | yyyy-mm-dd
101-
LocalDate rangeTo = LocalDate.parse("Wed Sep 28 00:00:00 UTC 2016"); // LocalDate | yyyy-mm-dd
100+
LocalDate rangeFrom = LocalDate.now(); // LocalDate | yyyy-mm-dd
101+
LocalDate rangeTo = LocalDate.now(); // LocalDate | yyyy-mm-dd
102102
Integer rangeSize = -1; // Integer | size of the returned range
103103
String timezone = "Europe/Paris"; // String | determine what the current time is. If you live in Brazil, \"today\" will be hours apart from Paris. Use your timezone to get results relative to your location.
104104
try {

src/main/java/com/dofusdude/client/ApiException.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
* <p>ApiException class.</p>
2222
*/
2323
@SuppressWarnings("serial")
24-
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:11:42.585842663Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
24+
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:16:14.535029201Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
2525
public class ApiException extends Exception {
2626
private static final long serialVersionUID = 1L;
2727

src/main/java/com/dofusdude/client/Configuration.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
package com.dofusdude.client;
1515

16-
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:11:42.585842663Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
16+
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:16:14.535029201Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
1717
public class Configuration {
1818
public static final String VERSION = "1.0.0-rc.8";
1919

src/main/java/com/dofusdude/client/Pair.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
package com.dofusdude.client;
1515

16-
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:11:42.585842663Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
16+
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:16:14.535029201Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
1717
public class Pair {
1818
private String name = "";
1919
private String value = "";

src/main/java/com/dofusdude/client/ServerConfiguration.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
/**
1919
* Representing a Server configuration.
2020
*/
21-
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:11:42.585842663Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
21+
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:16:14.535029201Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
2222
public class ServerConfiguration {
2323
public String URL;
2424
public String description;

src/main/java/com/dofusdude/client/ServerVariable.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
/**
1919
* Representing a Server Variable for server URL template substitution.
2020
*/
21-
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:11:42.585842663Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
21+
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:16:14.535029201Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
2222
public class ServerVariable {
2323
public String description;
2424
public String defaultValue;

src/main/java/com/dofusdude/client/StringUtil.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
import java.util.Collection;
1717
import java.util.Iterator;
1818

19-
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:11:42.585842663Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
19+
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:16:14.535029201Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
2020
public class StringUtil {
2121
/**
2222
* Check if the given array contains the given value (with case-insensitive comparison).

src/main/java/com/dofusdude/client/auth/ApiKeyAuth.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
import java.util.Map;
2121
import java.util.List;
2222

23-
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:11:42.585842663Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
23+
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:16:14.535029201Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
2424
public class ApiKeyAuth implements Authentication {
2525
private final String location;
2626
private final String paramName;

src/main/java/com/dofusdude/client/auth/HttpBearerAuth.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
import java.util.Optional;
2323
import java.util.function.Supplier;
2424

25-
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:11:42.585842663Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
25+
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:16:14.535029201Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
2626
public class HttpBearerAuth implements Authentication {
2727
private final String scheme;
2828
private Supplier<String> tokenSupplier;

src/main/java/com/dofusdude/client/model/AbstractOpenApiSchema.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
/**
2222
* Abstract class for oneOf,anyOf schemas defined in OpenAPI spec
2323
*/
24-
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:11:42.585842663Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
24+
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:16:14.535029201Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
2525
public abstract class AbstractOpenApiSchema {
2626

2727
// store the actual instance of the schema/object

src/main/java/com/dofusdude/client/model/Almanax.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
/**
5252
* Almanax
5353
*/
54-
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:11:42.585842663Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
54+
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:16:14.535029201Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
5555
public class Almanax {
5656
public static final String SERIALIZED_NAME_BONUS = "bonus";
5757
@SerializedName(SERIALIZED_NAME_BONUS)

src/main/java/com/dofusdude/client/model/AlmanaxBonus.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
/**
5050
* AlmanaxBonus
5151
*/
52-
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:11:42.585842663Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
52+
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:16:14.535029201Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
5353
public class AlmanaxBonus {
5454
public static final String SERIALIZED_NAME_DESCRIPTION = "description";
5555
@SerializedName(SERIALIZED_NAME_DESCRIPTION)

src/main/java/com/dofusdude/client/model/AlmanaxTribute.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
/**
5050
* AlmanaxTribute
5151
*/
52-
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:11:42.585842663Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
52+
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:16:14.535029201Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
5353
public class AlmanaxTribute {
5454
public static final String SERIALIZED_NAME_ITEM = "item";
5555
@SerializedName(SERIALIZED_NAME_ITEM)

src/main/java/com/dofusdude/client/model/AlmanaxTributeItem.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
/**
5050
* AlmanaxTributeItem
5151
*/
52-
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:11:42.585842663Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
52+
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:16:14.535029201Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
5353
public class AlmanaxTributeItem {
5454
public static final String SERIALIZED_NAME_ANKAMA_ID = "ankama_id";
5555
@SerializedName(SERIALIZED_NAME_ANKAMA_ID)

src/main/java/com/dofusdude/client/model/AlmanaxWebhook.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
/**
6060
*
6161
*/
62-
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:11:42.585842663Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
62+
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:16:14.535029201Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
6363
public class AlmanaxWebhook {
6464
public static final String SERIALIZED_NAME_ID = "id";
6565
@SerializedName(SERIALIZED_NAME_ID)

src/main/java/com/dofusdude/client/model/AlmanaxWebhookDailySettings.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
/**
4949
* AlmanaxWebhookDailySettings
5050
*/
51-
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:11:42.585842663Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
51+
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:16:14.535029201Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
5252
public class AlmanaxWebhookDailySettings {
5353
public static final String SERIALIZED_NAME_TIMEZONE = "timezone";
5454
@SerializedName(SERIALIZED_NAME_TIMEZONE)

src/main/java/com/dofusdude/client/model/Condition.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
/**
5050
* Condition
5151
*/
52-
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:11:42.585842663Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
52+
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:16:14.535029201Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
5353
public class Condition {
5454
public static final String SERIALIZED_NAME_OPERATOR = "operator";
5555
@SerializedName(SERIALIZED_NAME_OPERATOR)

src/main/java/com/dofusdude/client/model/ConditionLeaf.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
/**
5050
* ConditionLeaf
5151
*/
52-
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:11:42.585842663Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
52+
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:16:14.535029201Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
5353
public class ConditionLeaf {
5454
public static final String SERIALIZED_NAME_IS_OPERAND = "is_operand";
5555
@SerializedName(SERIALIZED_NAME_IS_OPERAND)

src/main/java/com/dofusdude/client/model/ConditionNode.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262

6363
import com.dofusdude.client.JSON;
6464

65-
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:11:42.585842663Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
65+
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:16:14.535029201Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
6666
public class ConditionNode extends AbstractOpenApiSchema {
6767
private static final Logger log = Logger.getLogger(ConditionNode.class.getName());
6868

src/main/java/com/dofusdude/client/model/ConditionRelation.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
/**
5252
*
5353
*/
54-
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:11:42.585842663Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
54+
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:16:14.535029201Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
5555
public class ConditionRelation {
5656
public static final String SERIALIZED_NAME_IS_OPERAND = "is_operand";
5757
@SerializedName(SERIALIZED_NAME_IS_OPERAND)

src/main/java/com/dofusdude/client/model/CreateAlmanaxWebhook.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
/**
5959
* CreateAlmanaxWebhook
6060
*/
61-
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:11:42.585842663Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
61+
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:16:14.535029201Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
6262
public class CreateAlmanaxWebhook {
6363
public static final String SERIALIZED_NAME_BONUS_WHITELIST = "bonus_whitelist";
6464
@SerializedName(SERIALIZED_NAME_BONUS_WHITELIST)

src/main/java/com/dofusdude/client/model/CreateAlmanaxWebhookDailySettings.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
/**
5050
* CreateAlmanaxWebhookDailySettings
5151
*/
52-
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:11:42.585842663Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
52+
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:16:14.535029201Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
5353
public class CreateAlmanaxWebhookDailySettings {
5454
public static final String SERIALIZED_NAME_TIMEZONE = "timezone";
5555
@SerializedName(SERIALIZED_NAME_TIMEZONE)

src/main/java/com/dofusdude/client/model/CreateAlmanaxWebhookMentionsValueInner.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
/**
5050
* Mention
5151
*/
52-
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:11:42.585842663Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
52+
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:16:14.535029201Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
5353
public class CreateAlmanaxWebhookMentionsValueInner {
5454
public static final String SERIALIZED_NAME_DISCORD_ID = "discord_id";
5555
@SerializedName(SERIALIZED_NAME_DISCORD_ID)

src/main/java/com/dofusdude/client/model/CreateRSSWebhook.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
/**
5555
*
5656
*/
57-
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:11:42.585842663Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
57+
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:16:14.535029201Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
5858
public class CreateRSSWebhook {
5959
public static final String SERIALIZED_NAME_WHITELIST = "whitelist";
6060
@SerializedName(SERIALIZED_NAME_WHITELIST)

src/main/java/com/dofusdude/client/model/CreateTwitterWebhook.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
/**
5555
*
5656
*/
57-
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:11:42.585842663Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
57+
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:16:14.535029201Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
5858
public class CreateTwitterWebhook {
5959
public static final String SERIALIZED_NAME_WHITELIST = "whitelist";
6060
@SerializedName(SERIALIZED_NAME_WHITELIST)

src/main/java/com/dofusdude/client/model/Effect.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
/**
5050
* Effect
5151
*/
52-
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:11:42.585842663Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
52+
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:16:14.535029201Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
5353
public class Effect {
5454
public static final String SERIALIZED_NAME_INT_MINIMUM = "int_minimum";
5555
@SerializedName(SERIALIZED_NAME_INT_MINIMUM)

src/main/java/com/dofusdude/client/model/EffectType.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
/**
4949
* EffectType
5050
*/
51-
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:11:42.585842663Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
51+
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:16:14.535029201Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
5252
public class EffectType {
5353
public static final String SERIALIZED_NAME_ID = "id";
5454
@SerializedName(SERIALIZED_NAME_ID)

src/main/java/com/dofusdude/client/model/Equipment.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
/**
5757
* Equipment
5858
*/
59-
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:11:42.585842663Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
59+
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:16:14.535029201Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
6060
public class Equipment {
6161
public static final String SERIALIZED_NAME_ANKAMA_ID = "ankama_id";
6262
@SerializedName(SERIALIZED_NAME_ANKAMA_ID)

src/main/java/com/dofusdude/client/model/EquipmentSet.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
/**
5454
* EquipmentSet
5555
*/
56-
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:11:42.585842663Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
56+
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:16:14.535029201Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
5757
public class EquipmentSet {
5858
public static final String SERIALIZED_NAME_ANKAMA_ID = "ankama_id";
5959
@SerializedName(SERIALIZED_NAME_ANKAMA_ID)

src/main/java/com/dofusdude/client/model/Error.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
/**
4949
* Error
5050
*/
51-
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:11:42.585842663Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
51+
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:16:14.535029201Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
5252
public class Error {
5353
public static final String SERIALIZED_NAME_STATUS = "status";
5454
@SerializedName(SERIALIZED_NAME_STATUS)

src/main/java/com/dofusdude/client/model/GameSearch.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
/**
5151
* GameSearch
5252
*/
53-
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:11:42.585842663Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
53+
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:16:14.535029201Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
5454
public class GameSearch {
5555
public static final String SERIALIZED_NAME_ANKAMA_ID = "ankama_id";
5656
@SerializedName(SERIALIZED_NAME_ANKAMA_ID)

src/main/java/com/dofusdude/client/model/GameSearchItem.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
/**
5252
* GameSearchItem
5353
*/
54-
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:11:42.585842663Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
54+
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:16:14.535029201Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
5555
public class GameSearchItem {
5656
public static final String SERIALIZED_NAME_TYPE = "type";
5757
@SerializedName(SERIALIZED_NAME_TYPE)

src/main/java/com/dofusdude/client/model/GameSearchType.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
/**
4949
* GameSearchType
5050
*/
51-
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:11:42.585842663Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
51+
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-03T12:16:14.535029201Z[Etc/UTC]", comments = "Generator version: 7.11.0-SNAPSHOT")
5252
public class GameSearchType {
5353
public static final String SERIALIZED_NAME_NAME_ID = "name_id";
5454
@SerializedName(SERIALIZED_NAME_NAME_ID)

0 commit comments

Comments
 (0)