class SignupRequest
- SignupRequest
- Reference
- Object
Defined in:
lib/request_objects/user.crConstructors
Class Method Summary
Instance Method Summary
- #date_joined : String
- #date_joined=(date_joined : String)
- #email : String
- #email=(email : String)
- #is_active : Bool
- #is_active=(is_active : Bool)
- #is_admin : Bool
- #is_admin=(is_admin : Bool)
- #password : String
- #password=(password : String)
- #phone : String
- #phone=(phone : String)
- #role : String
- #role=(role : String)
- #username : String
- #username=(username : String)
Constructor Detail
def self.new(username : String, password : String, role : String, email : String, phone : String, is_admin : Bool = false, is_active : Bool = true, date_joined : String = "")
#