All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.example.migration.model.SpacePlatformMigrationResponse Maven / Gradle / Ivy

The newest version!
package org.example.migration.model;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import org.example.register.model.RegisterDeviceResponse;

import java.util.List;
@JsonIgnoreProperties(ignoreUnknown = true)
public class SpacePlatformMigrationResponse {
    private String boxUUID;
    private RegisterDeviceResponse.NetworkClient networkClient;  // Assuming NetworkClient is already defined as per your response schema.
    private List userInfos;

    // getters and setters

    public String getBoxUUID() {
        return boxUUID;
    }

    public void setBoxUUID(String boxUUID) {
        this.boxUUID = boxUUID;
    }

    public RegisterDeviceResponse.NetworkClient getNetworkClient() {
        return networkClient;
    }

    public void setNetworkClient(RegisterDeviceResponse.NetworkClient networkClient) {
        this.networkClient = networkClient;
    }

    public List getUserInfos() {
        return userInfos;
    }

    public void setUserInfos(List userInfos) {
        this.userInfos = userInfos;
    }

    // similar to other classes, validate inputs in setters if needed.
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy