[#155] sdk/object: Add object type getter/setter

Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
This commit is contained in:
Leonard Lyubich 2020-09-22 14:02:36 +03:00 committed by Leonard Lyubich
parent 2fb1547cd8
commit dbb5102c02
3 changed files with 30 additions and 0 deletions

View file

@ -115,3 +115,8 @@ func (o *RawObject) SetParent(v *Object) {
func (o *RawObject) SetSessionToken(v *token.SessionToken) {
o.setSessionToken(v)
}
// SetType sets type of the object.
func (o *RawObject) SetType(v Type) {
o.setType(v)
}