001
002package com.commercetools.api.client;
003
004import io.vrap.rmf.base.client.utils.Generated;
005
006/**
007 * Deprecatable201Trait
008 * @param <T> type of extending interface
009 */
010@Generated(value = "io.vrap.rmf.codegen.rendering.CoreCodeGenerator", comments = "https://github.com/commercetools/rmf-codegen")
011public interface Deprecatable201Trait<T extends Deprecatable201Trait<T>> {
012
013    default Deprecatable201Trait<T> asDeprecatable201Trait() {
014        return this;
015    }
016
017    @SuppressWarnings("unchecked")
018    default T asDeprecatable201TraitToBaseType() {
019        return (T) this;
020    }
021
022}