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

mn.foreman.api.model.MacUpdate Maven / Gradle / Ivy

There is a newer version: 1.78.0
Show newest version
package mn.foreman.api.model;

import lombok.Builder;
import lombok.Data;

/** An update request to update a miner's MAC address. */
@Data
@Builder
public class MacUpdate {

    /** The miner API port. */
    private final int apiPort;

    /** The miner IP. */
    private final String ip;

    /** The new MAC address. */
    private final String mac;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy