SFS2X Objective-C API
1.7.13
iOS / macOS / tvOS
|
#import <ChangeRoomPasswordStateRequest.h>
Inherits BaseRequest.
Instance Methods | |
(id) | - initWithRoom:newPass: |
Class Methods | |
(id) | + requestWithRoom:newPass: |
Protected Attributes | |
id< Room > | _room |
NSString * | _newPass |
Changes the password of a Room at runtime.
The request not only changes the password of a Room but also its "password state", which indicates if a Room is password protected or not. This request will fail if the User sending the request is not the owner of the Room.
Moderators and Administrator can override this constraint.
If the Room was configured so that password change is not allowed (see the RoomSettings.permissions parameter), the request is ignored and no error is fired.
+ (id) requestWithRoom: | (id<Room>) | room | |
newPass: | (NSString *) | newPass | |
room | the Room |
newPass | the new password (null or empty string means no password) |