Line data Source code
1 : /**
2 : * Copyright Soramitsu Co., Ltd. All Rights Reserved.
3 : * SPDX-License-Identifier: Apache-2.0
4 : */
5 :
6 : #include "interfaces/commands/create_asset.hpp"
7 :
8 : namespace shared_model {
9 : namespace interface {
10 :
11 : std::string CreateAsset::toString() const {
12 0 : return detail::PrettyStringBuilder()
13 0 : .init("CreateAsset")
14 0 : .append("asset_name", assetName())
15 0 : .append("domain_id", domainId())
16 0 : .append("precision", std::to_string(precision()))
17 0 : .finalize();
18 0 : }
19 :
20 : bool CreateAsset::operator==(const ModelType &rhs) const {
21 0 : return assetName() == rhs.assetName() and domainId() == rhs.domainId()
22 0 : and precision() == rhs.precision();
23 : }
24 :
25 : } // namespace interface
26 : } // namespace shared_model
|