aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/ActivityStreams/AssertionMethod.php
blob: d34f0332caaaa45a1f71c61408949591343aae74 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<?php

namespace Zotlabs\ActivityStreams;

class AssertionMethod extends ASObject
{
    public $id;
    public $type;
    public $controller;
    public $publicKeyMultibase;

    /**
     * @return mixed
     */
    public function getId()
    {
        return $this->id;
    }

    /**
     * @param mixed $id
     * @return AssertionMethod
     */
    public function setId($id)
    {
        $this->id = $id;
        return $this;
    }

    /**
     * @return mixed
     */
    public function getType()
    {
        return $this->type;
    }

    /**
     * @param mixed $type
     * @return AssertionMethod
     */
    public function setType($type)
    {
        $this->type = $type;
        return $this;
    }

    /**
     * @return mixed
     */
    public function getController()
    {
        return $this->controller;
    }

    /**
     * @param mixed $controller
     * @return AssertionMethod
     */
    public function setController($controller)
    {
        $this->controller = $controller;
        return $this;
    }

    /**
     * @return mixed
     */
    public function getPublicKeyMultibase()
    {
        return $this->publicKeyMultibase;
    }

    /**
     * @param mixed $publicKeyMultibase
     * @return AssertionMethod
     */
    public function setPublicKeyMultibase($publicKeyMultibase)
    {
        $this->publicKeyMultibase = $publicKeyMultibase;
        return $this;
    }




}