com.bmc.truesight.saas.meter.client.response.model.FileSystem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of meter-client Show documentation
Show all versions of meter-client Show documentation
A java library for interacting with the TrueSight Meter.
package com.bmc.truesight.saas.meter.client.response.model;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import org.immutables.value.Value;
@JsonDeserialize(as = ImmutableFileSystem.class)
@Value.Immutable
public abstract class FileSystem {
public abstract String dirName();
public abstract String devName();
public abstract String typeName();
public abstract String sysTypeName();
}