Modify documentation of APIs
[platform/core/csapi/tizenfx.git] / src / Tizen.Maps / Tizen.Maps / PlaceLink.cs
1 /*
2  * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the License);
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an AS IS BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17
18 using System;
19
20 namespace Tizen.Maps
21 {
22     /// <summary>
23     /// Place Link Object information, used in Place Discovery and Search requests
24     /// </summary>
25     public class PlaceLink
26     {
27         private string _id;
28         private string _name;
29         private string _link;
30         private string _type;
31
32         internal PlaceLink(Interop.PlaceLinkObjectHandle handle)
33         {
34             _id = handle.Id;
35             _name = handle.Name;
36             _link = handle.Link;
37             _type = handle.Type;
38         }
39
40         /// <summary>
41         /// Gets a string which representing ID for this place link.
42         /// </summary>
43         public string Id { get { return _id; } }
44
45         /// <summary>
46         /// Gets a string which representing name for this place link.
47         /// </summary>
48         public string Name { get { return _name; } }
49
50         /// <summary>
51         /// Gets a string which representing link for this place link.
52         /// </summary>
53         public string Link { get { return _link; } }
54
55         /// <summary>
56         /// Gets a string which representing type for this place link.
57         /// </summary>
58         public string Type { get { return _type; } }
59     }
60 }