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/queries/get_role_permissions.hpp"
7 :
8 : namespace shared_model {
9 : namespace interface {
10 :
11 : std::string GetRolePermissions::toString() const {
12 2 : return detail::PrettyStringBuilder()
13 2 : .init("GetRolePermissions")
14 2 : .append("role_id", roleId())
15 2 : .finalize();
16 0 : }
17 :
18 : bool GetRolePermissions::operator==(const ModelType &rhs) const {
19 0 : return roleId() == rhs.roleId();
20 : }
21 :
22 : } // namespace interface
23 : } // namespace shared_model
|