// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\r
// SPDX-License-Identifier: Apache-2.0
using AWS.Deploy.CLI.TypeHintResponses;
namespace AWS.Deploy.CLI
{
///
/// allows to decorate Object types to a string
/// Object type hint responses such as implements
/// which allows custom CLI display logic.
///
///
/// If the method returns null, the default display method is used.
/// If a type hint response doesn't implement , it is displayed similar to a JSON dictionary indented by level.
///
public interface IDisplayable
{
string? ToDisplayString();
}
}