1<?php
2/*
3 * Copyright 2014 Google Inc.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6 * use this file except in compliance with the License. You may obtain a copy of
7 * the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14 * License for the specific language governing permissions and limitations under
15 * the License.
16 */
17
18class Google_Service_Compute_SslCertificate extends Google_Model
19{
20  public $certificate;
21  public $creationTimestamp;
22  public $description;
23  public $id;
24  public $kind;
25  public $name;
26  public $privateKey;
27  public $selfLink;
28
29  public function setCertificate($certificate)
30  {
31    $this->certificate = $certificate;
32  }
33  public function getCertificate()
34  {
35    return $this->certificate;
36  }
37  public function setCreationTimestamp($creationTimestamp)
38  {
39    $this->creationTimestamp = $creationTimestamp;
40  }
41  public function getCreationTimestamp()
42  {
43    return $this->creationTimestamp;
44  }
45  public function setDescription($description)
46  {
47    $this->description = $description;
48  }
49  public function getDescription()
50  {
51    return $this->description;
52  }
53  public function setId($id)
54  {
55    $this->id = $id;
56  }
57  public function getId()
58  {
59    return $this->id;
60  }
61  public function setKind($kind)
62  {
63    $this->kind = $kind;
64  }
65  public function getKind()
66  {
67    return $this->kind;
68  }
69  public function setName($name)
70  {
71    $this->name = $name;
72  }
73  public function getName()
74  {
75    return $this->name;
76  }
77  public function setPrivateKey($privateKey)
78  {
79    $this->privateKey = $privateKey;
80  }
81  public function getPrivateKey()
82  {
83    return $this->privateKey;
84  }
85  public function setSelfLink($selfLink)
86  {
87    $this->selfLink = $selfLink;
88  }
89  public function getSelfLink()
90  {
91    return $this->selfLink;
92  }
93}
94