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/revoke_permission.hpp"
7 :
8 : namespace shared_model {
9 : namespace interface {
10 :
11 : bool RevokePermission::operator==(const ModelType &rhs) const {
12 0 : return accountId() == rhs.accountId()
13 0 : and permissionName() == rhs.permissionName();
14 : }
15 :
16 : } // namespace interface
17 : } // namespace shared_model
|