Skip to content
Closed
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
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* Do not edit the class manually.
*/

package com.adyen.model.posmobile;
package com.adyen.model.java;
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

critical

The package name has been updated from com.adyen.model.posmobile to com.adyen.model.java. This change is consistent across the model classes. However, it's critical to ensure that all dependent service classes, such as PosMobileApi (in both com.adyen.service.posmobile and com.adyen.service), are updated to reflect this new package path for model imports. Failure to do so will result in compilation errors.


import com.fasterxml.jackson.annotation.JsonValue;
import jakarta.ws.rs.core.GenericType;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* Do not edit the class manually.
*/

package com.adyen.model.posmobile;
package com.adyen.model.java;
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

critical

The package name has been updated from com.adyen.model.posmobile to com.adyen.model.java. This change is consistent across the model classes. However, it's critical to ensure that all dependent service classes, such as PosMobileApi (in both com.adyen.service.posmobile and com.adyen.service), are updated to reflect this new package path for model imports. Failure to do so will result in compilation errors.


import com.fasterxml.jackson.annotation.JsonAnyGetter;
import com.fasterxml.jackson.annotation.JsonIgnore;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* Do not edit the class manually.
*/

package com.adyen.model.posmobile;
package com.adyen.model.java;
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

critical

The package name has been updated from com.adyen.model.posmobile to com.adyen.model.java. This change is consistent across the model classes. However, it's critical to ensure that all dependent service classes, such as PosMobileApi (in both com.adyen.service.posmobile and com.adyen.service), are updated to reflect this new package path for model imports. Failure to do so will result in compilation errors.


import com.fasterxml.jackson.annotation.JsonAnyGetter;
import com.fasterxml.jackson.annotation.JsonIgnore;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/adyen/model/posmobile/JSON.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.adyen.model.posmobile;
package com.adyen.model.java;
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

critical

The package name has been updated from com.adyen.model.posmobile to com.adyen.model.java. This change is consistent across the model classes. However, it's critical to ensure that all dependent service classes, such as PosMobileApi (in both com.adyen.service.posmobile and com.adyen.service), are updated to reflect this new package path for model imports. Failure to do so will result in compilation errors.


import com.adyen.serializer.ByteArrayDeserializer;
import com.adyen.serializer.ByteArraySerializer;
Expand Down
Loading