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

io.sphere.sdk.models.AssetDimensionsImpl Maven / Gradle / Ivy

There is a newer version: 2.16.0
Show newest version
package io.sphere.sdk.models;

final class AssetDimensionsImpl extends Base implements AssetDimensions {
    private final Integer w;
    private final Integer h;

    AssetDimensionsImpl(final Integer w, final Integer h) {
        this.w = w;
        this.h = h;
    }

    @Override
    public Integer getW() {
        return w;
    }

    @Override
    public Integer getH() {
        return h;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy