// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. #ifndef CHIME_VOLUME_H_ #define CHIME_VOLUME_H_ namespace chime { // Audio volume. struct Volume { float normalized_volume {}; }; } // namespace chime #endif //CHIME_VOLUME_H_