summaryrefslogtreecommitdiff
path: root/docs/Classes/SDLAppServicesCapabilities.html
blob: 7b16e99e7557615c9dde4d41d9cccac77ba1173f (plain)
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
<h1>SDLAppServicesCapabilities Class Reference</h1>

<h3>Section Contents</h3>

<ul>
  <li><a href="#section--initWithAppServices:">-initWithAppServices:</a></li>
  <li><a href="#section-appServices">appServices</a></li>
</ul>

<h3>Overview</h3>

<p>Capabilities of app services including what service types are supported and the current state of services.</p>

<p>@since RPC 5.1</p>


<section class="section task-group-section">
  <h3 id="section--initWithAppServices:">
      -initWithAppServices:
  </h3>
  
  <p>Convenience init.</p>

  
  
  <h4>Objective-C</h4>
  <pre class="highlight objective_c"><code><span class="k">-</span> <span class="p">(</span><span class="n">nonnull</span> <span class="n">instancetype</span><span class="p">)</span><span class="nf">initWithAppServices</span><span class="p">:</span>
    <span class="p">(</span><span class="n">nullable</span> <span class="n">NSArray</span><span class="o">&lt;</span><span class="n"><a href="../Classes/SDLAppServiceCapability.html">SDLAppServiceCapability</a></span> <span class="o">*&gt;</span> <span class="o">*</span><span class="p">)</span><span class="nv">appServices</span><span class="p">;</span></code></pre>

  
  <h4>Swift</h4>
  <pre class="highlight swift"><code><span class="nf">init</span><span class="p">(</span><span class="nv">appServices</span><span class="p">:</span> <span class="p">[</span><span class="kt"><a href="../Classes/SDLAppServiceCapability.html">SDLAppServiceCapability</a></span><span class="p">]?)</span></code></pre>

  
  
  <h4>Parameters</h4>
  <dl>
      <dt>appServices</dt>
      <dd><p>An array of currently available services.</p></dd>
  </dl>
  <div>
    <h4>Return Value</h4>
    <p>A SDLAppServicesCapabilities object</p>
  </div>
  
  <h3 id="section-appServices">
      appServices
  </h3>
  
  <p>An array of currently available services. If this is an update to the capability the affected services will include an update reason in that item.</p>

<p>Array of SDLAppServiceCapability, Optional</p>

  
  
  <h4>Objective-C</h4>
  <pre class="highlight objective_c"><code><span class="k">@property</span> <span class="p">(</span><span class="n">readwrite</span><span class="p">,</span> <span class="n">strong</span><span class="p">,</span> <span class="n">nonatomic</span><span class="p">,</span> <span class="n">nullable</span><span class="p">)</span>
    <span class="n">NSArray</span><span class="o">&lt;</span><span class="n"><a href="../Classes/SDLAppServiceCapability.html">SDLAppServiceCapability</a></span> <span class="o">*&gt;</span> <span class="o">*</span><span class="n">appServices</span><span class="p">;</span></code></pre>

  
  <h4>Swift</h4>
  <pre class="highlight swift"><code><span class="k">var</span> <span class="nv">appServices</span><span class="p">:</span> <span class="p">[</span><span class="kt"><a href="../Classes/SDLAppServiceCapability.html">SDLAppServiceCapability</a></span><span class="p">]?</span> <span class="p">{</span> <span class="k">get</span> <span class="k">set</span> <span class="p">}</span></code></pre>

  
  
  
</section>