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_domain.hpp"
7 :
8 : namespace shared_model {
9 : namespace interface {
10 :
11 : std::string CreateDomain::toString() const {
12 83 : return detail::PrettyStringBuilder()
13 83 : .init("CreateDomain")
14 83 : .append("domain_id", domainId())
15 83 : .append("user_default_role", userDefaultRole())
16 83 : .finalize();
17 0 : }
18 :
19 : bool CreateDomain::operator==(const ModelType &rhs) const {
20 0 : return domainId() == rhs.domainId()
21 0 : and userDefaultRole() == rhs.userDefaultRole();
22 : }
23 :
24 : } // namespace interface
25 : } // namespace shared_model
|