io.sphere.sdk.models.ResourceView Maven / Gradle / Ivy
package io.sphere.sdk.models;
import java.time.ZonedDateTime;
/**
* A default model view is a view for a resource in SPHERE.IO always consists of the fields
* id, version, createdAt, lastModifiedAt.
* @param the interface which inherits from this interface
* @param the interface which belongs to {@link Versioned}
*
*/
public interface ResourceView extends Timestamped, Versioned {
@Override
String getId();
@Override
Long getVersion();
@Override
ZonedDateTime getCreatedAt();
@Override
ZonedDateTime getLastModifiedAt();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy