1<html><body>
2<style>
3
4body, h1, h2, h3, div, span, p, pre, a {
5  margin: 0;
6  padding: 0;
7  border: 0;
8  font-weight: inherit;
9  font-style: inherit;
10  font-size: 100%;
11  font-family: inherit;
12  vertical-align: baseline;
13}
14
15body {
16  font-size: 13px;
17  padding: 1em;
18}
19
20h1 {
21  font-size: 26px;
22  margin-bottom: 1em;
23}
24
25h2 {
26  font-size: 24px;
27  margin-bottom: 1em;
28}
29
30h3 {
31  font-size: 20px;
32  margin-bottom: 1em;
33  margin-top: 1em;
34}
35
36pre, code {
37  line-height: 1.5;
38  font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
39}
40
41pre {
42  margin-top: 0.5em;
43}
44
45h1, h2, h3, p {
46  font-family: Arial, sans serif;
47}
48
49h1, h2, h3 {
50  border-bottom: solid #CCC 1px;
51}
52
53.toc_element {
54  margin-top: 0.5em;
55}
56
57.firstline {
58  margin-left: 2 em;
59}
60
61.method  {
62  margin-top: 1em;
63  border: solid 1px #CCC;
64  padding: 1em;
65  background: #EEE;
66}
67
68.details {
69  font-weight: bold;
70  font-size: 14px;
71}
72
73</style>
74
75<h1><a href="healthcare_v1.html">Cloud Healthcare API</a> . <a href="healthcare_v1.projects.html">projects</a> . <a href="healthcare_v1.projects.locations.html">locations</a> . <a href="healthcare_v1.projects.locations.datasets.html">datasets</a> . <a href="healthcare_v1.projects.locations.datasets.consentStores.html">consentStores</a> . <a href="healthcare_v1.projects.locations.datasets.consentStores.consentArtifacts.html">consentArtifacts</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
78  <code><a href="#close">close()</a></code></p>
79<p class="firstline">Close httplib2 connections.</p>
80<p class="toc_element">
81  <code><a href="#create">create(parent, body=None, x__xgafv=None)</a></code></p>
82<p class="firstline">Creates a new Consent artifact in the parent consent store.</p>
83<p class="toc_element">
84  <code><a href="#delete">delete(name, x__xgafv=None)</a></code></p>
85<p class="firstline">Deletes the specified Consent artifact. Fails if the artifact is referenced by the latest revision of any Consent.</p>
86<p class="toc_element">
87  <code><a href="#get">get(name, x__xgafv=None)</a></code></p>
88<p class="firstline">Gets the specified Consent artifact.</p>
89<p class="toc_element">
90  <code><a href="#list">list(parent, filter=None, pageSize=None, pageToken=None, x__xgafv=None)</a></code></p>
91<p class="firstline">Lists the Consent artifacts in the specified consent store.</p>
92<p class="toc_element">
93  <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
94<p class="firstline">Retrieves the next page of results.</p>
95<h3>Method Details</h3>
96<div class="method">
97    <code class="details" id="close">close()</code>
98  <pre>Close httplib2 connections.</pre>
99</div>
100
101<div class="method">
102    <code class="details" id="create">create(parent, body=None, x__xgafv=None)</code>
103  <pre>Creates a new Consent artifact in the parent consent store.
104
105Args:
106  parent: string, Required. The name of the consent store this Consent artifact belongs to. (required)
107  body: object, The request body.
108    The object takes the form of:
109
110{ # Documentation of a user&#x27;s consent.
111  &quot;consentContentScreenshots&quot;: [ # Optional. Screenshots, PDFs, or other binary information documenting the user&#x27;s consent.
112    { # Raw bytes representing consent artifact content.
113      &quot;gcsUri&quot;: &quot;A String&quot;, # Input only. Points to a Cloud Storage URI containing the consent artifact content. The URI must be in the following format: `gs://{bucket_id}/{object_id}`. The Cloud Healthcare API service account must have the `roles/storage.objectViewer` Cloud IAM role for this Cloud Storage location. The consent artifact content at this URI is copied to a Cloud Storage location managed by the Cloud Healthcare API. Responses to fetching requests return the consent artifact content in raw_bytes.
114      &quot;rawBytes&quot;: &quot;A String&quot;, # Consent artifact content represented as a stream of bytes. This field is populated when returned in GetConsentArtifact response, but not included in CreateConsentArtifact and ListConsentArtifact response.
115    },
116  ],
117  &quot;consentContentVersion&quot;: &quot;A String&quot;, # Optional. An string indicating the version of the consent information shown to the user.
118  &quot;guardianSignature&quot;: { # User signature. # Optional. A signature from a guardian.
119    &quot;image&quot;: { # Raw bytes representing consent artifact content. # Optional. An image of the user&#x27;s signature.
120      &quot;gcsUri&quot;: &quot;A String&quot;, # Input only. Points to a Cloud Storage URI containing the consent artifact content. The URI must be in the following format: `gs://{bucket_id}/{object_id}`. The Cloud Healthcare API service account must have the `roles/storage.objectViewer` Cloud IAM role for this Cloud Storage location. The consent artifact content at this URI is copied to a Cloud Storage location managed by the Cloud Healthcare API. Responses to fetching requests return the consent artifact content in raw_bytes.
121      &quot;rawBytes&quot;: &quot;A String&quot;, # Consent artifact content represented as a stream of bytes. This field is populated when returned in GetConsentArtifact response, but not included in CreateConsentArtifact and ListConsentArtifact response.
122    },
123    &quot;metadata&quot;: { # Optional. Metadata associated with the user&#x27;s signature. For example, the user&#x27;s name or the user&#x27;s title.
124      &quot;a_key&quot;: &quot;A String&quot;,
125    },
126    &quot;signatureTime&quot;: &quot;A String&quot;, # Optional. Timestamp of the signature.
127    &quot;userId&quot;: &quot;A String&quot;, # Required. User&#x27;s UUID provided by the client.
128  },
129  &quot;metadata&quot;: { # Optional. Metadata associated with the Consent artifact. For example, the consent locale or user agent version.
130    &quot;a_key&quot;: &quot;A String&quot;,
131  },
132  &quot;name&quot;: &quot;A String&quot;, # Resource name of the Consent artifact, of the form `projects/{project_id}/locations/{location_id}/datasets/{dataset_id}/consentStores/{consent_store_id}/consentArtifacts/{consent_artifact_id}`. Cannot be changed after creation.
133  &quot;userId&quot;: &quot;A String&quot;, # Required. User&#x27;s UUID provided by the client.
134  &quot;userSignature&quot;: { # User signature. # Optional. User&#x27;s signature.
135    &quot;image&quot;: { # Raw bytes representing consent artifact content. # Optional. An image of the user&#x27;s signature.
136      &quot;gcsUri&quot;: &quot;A String&quot;, # Input only. Points to a Cloud Storage URI containing the consent artifact content. The URI must be in the following format: `gs://{bucket_id}/{object_id}`. The Cloud Healthcare API service account must have the `roles/storage.objectViewer` Cloud IAM role for this Cloud Storage location. The consent artifact content at this URI is copied to a Cloud Storage location managed by the Cloud Healthcare API. Responses to fetching requests return the consent artifact content in raw_bytes.
137      &quot;rawBytes&quot;: &quot;A String&quot;, # Consent artifact content represented as a stream of bytes. This field is populated when returned in GetConsentArtifact response, but not included in CreateConsentArtifact and ListConsentArtifact response.
138    },
139    &quot;metadata&quot;: { # Optional. Metadata associated with the user&#x27;s signature. For example, the user&#x27;s name or the user&#x27;s title.
140      &quot;a_key&quot;: &quot;A String&quot;,
141    },
142    &quot;signatureTime&quot;: &quot;A String&quot;, # Optional. Timestamp of the signature.
143    &quot;userId&quot;: &quot;A String&quot;, # Required. User&#x27;s UUID provided by the client.
144  },
145  &quot;witnessSignature&quot;: { # User signature. # Optional. A signature from a witness.
146    &quot;image&quot;: { # Raw bytes representing consent artifact content. # Optional. An image of the user&#x27;s signature.
147      &quot;gcsUri&quot;: &quot;A String&quot;, # Input only. Points to a Cloud Storage URI containing the consent artifact content. The URI must be in the following format: `gs://{bucket_id}/{object_id}`. The Cloud Healthcare API service account must have the `roles/storage.objectViewer` Cloud IAM role for this Cloud Storage location. The consent artifact content at this URI is copied to a Cloud Storage location managed by the Cloud Healthcare API. Responses to fetching requests return the consent artifact content in raw_bytes.
148      &quot;rawBytes&quot;: &quot;A String&quot;, # Consent artifact content represented as a stream of bytes. This field is populated when returned in GetConsentArtifact response, but not included in CreateConsentArtifact and ListConsentArtifact response.
149    },
150    &quot;metadata&quot;: { # Optional. Metadata associated with the user&#x27;s signature. For example, the user&#x27;s name or the user&#x27;s title.
151      &quot;a_key&quot;: &quot;A String&quot;,
152    },
153    &quot;signatureTime&quot;: &quot;A String&quot;, # Optional. Timestamp of the signature.
154    &quot;userId&quot;: &quot;A String&quot;, # Required. User&#x27;s UUID provided by the client.
155  },
156}
157
158  x__xgafv: string, V1 error format.
159    Allowed values
160      1 - v1 error format
161      2 - v2 error format
162
163Returns:
164  An object of the form:
165
166    { # Documentation of a user&#x27;s consent.
167  &quot;consentContentScreenshots&quot;: [ # Optional. Screenshots, PDFs, or other binary information documenting the user&#x27;s consent.
168    { # Raw bytes representing consent artifact content.
169      &quot;gcsUri&quot;: &quot;A String&quot;, # Input only. Points to a Cloud Storage URI containing the consent artifact content. The URI must be in the following format: `gs://{bucket_id}/{object_id}`. The Cloud Healthcare API service account must have the `roles/storage.objectViewer` Cloud IAM role for this Cloud Storage location. The consent artifact content at this URI is copied to a Cloud Storage location managed by the Cloud Healthcare API. Responses to fetching requests return the consent artifact content in raw_bytes.
170      &quot;rawBytes&quot;: &quot;A String&quot;, # Consent artifact content represented as a stream of bytes. This field is populated when returned in GetConsentArtifact response, but not included in CreateConsentArtifact and ListConsentArtifact response.
171    },
172  ],
173  &quot;consentContentVersion&quot;: &quot;A String&quot;, # Optional. An string indicating the version of the consent information shown to the user.
174  &quot;guardianSignature&quot;: { # User signature. # Optional. A signature from a guardian.
175    &quot;image&quot;: { # Raw bytes representing consent artifact content. # Optional. An image of the user&#x27;s signature.
176      &quot;gcsUri&quot;: &quot;A String&quot;, # Input only. Points to a Cloud Storage URI containing the consent artifact content. The URI must be in the following format: `gs://{bucket_id}/{object_id}`. The Cloud Healthcare API service account must have the `roles/storage.objectViewer` Cloud IAM role for this Cloud Storage location. The consent artifact content at this URI is copied to a Cloud Storage location managed by the Cloud Healthcare API. Responses to fetching requests return the consent artifact content in raw_bytes.
177      &quot;rawBytes&quot;: &quot;A String&quot;, # Consent artifact content represented as a stream of bytes. This field is populated when returned in GetConsentArtifact response, but not included in CreateConsentArtifact and ListConsentArtifact response.
178    },
179    &quot;metadata&quot;: { # Optional. Metadata associated with the user&#x27;s signature. For example, the user&#x27;s name or the user&#x27;s title.
180      &quot;a_key&quot;: &quot;A String&quot;,
181    },
182    &quot;signatureTime&quot;: &quot;A String&quot;, # Optional. Timestamp of the signature.
183    &quot;userId&quot;: &quot;A String&quot;, # Required. User&#x27;s UUID provided by the client.
184  },
185  &quot;metadata&quot;: { # Optional. Metadata associated with the Consent artifact. For example, the consent locale or user agent version.
186    &quot;a_key&quot;: &quot;A String&quot;,
187  },
188  &quot;name&quot;: &quot;A String&quot;, # Resource name of the Consent artifact, of the form `projects/{project_id}/locations/{location_id}/datasets/{dataset_id}/consentStores/{consent_store_id}/consentArtifacts/{consent_artifact_id}`. Cannot be changed after creation.
189  &quot;userId&quot;: &quot;A String&quot;, # Required. User&#x27;s UUID provided by the client.
190  &quot;userSignature&quot;: { # User signature. # Optional. User&#x27;s signature.
191    &quot;image&quot;: { # Raw bytes representing consent artifact content. # Optional. An image of the user&#x27;s signature.
192      &quot;gcsUri&quot;: &quot;A String&quot;, # Input only. Points to a Cloud Storage URI containing the consent artifact content. The URI must be in the following format: `gs://{bucket_id}/{object_id}`. The Cloud Healthcare API service account must have the `roles/storage.objectViewer` Cloud IAM role for this Cloud Storage location. The consent artifact content at this URI is copied to a Cloud Storage location managed by the Cloud Healthcare API. Responses to fetching requests return the consent artifact content in raw_bytes.
193      &quot;rawBytes&quot;: &quot;A String&quot;, # Consent artifact content represented as a stream of bytes. This field is populated when returned in GetConsentArtifact response, but not included in CreateConsentArtifact and ListConsentArtifact response.
194    },
195    &quot;metadata&quot;: { # Optional. Metadata associated with the user&#x27;s signature. For example, the user&#x27;s name or the user&#x27;s title.
196      &quot;a_key&quot;: &quot;A String&quot;,
197    },
198    &quot;signatureTime&quot;: &quot;A String&quot;, # Optional. Timestamp of the signature.
199    &quot;userId&quot;: &quot;A String&quot;, # Required. User&#x27;s UUID provided by the client.
200  },
201  &quot;witnessSignature&quot;: { # User signature. # Optional. A signature from a witness.
202    &quot;image&quot;: { # Raw bytes representing consent artifact content. # Optional. An image of the user&#x27;s signature.
203      &quot;gcsUri&quot;: &quot;A String&quot;, # Input only. Points to a Cloud Storage URI containing the consent artifact content. The URI must be in the following format: `gs://{bucket_id}/{object_id}`. The Cloud Healthcare API service account must have the `roles/storage.objectViewer` Cloud IAM role for this Cloud Storage location. The consent artifact content at this URI is copied to a Cloud Storage location managed by the Cloud Healthcare API. Responses to fetching requests return the consent artifact content in raw_bytes.
204      &quot;rawBytes&quot;: &quot;A String&quot;, # Consent artifact content represented as a stream of bytes. This field is populated when returned in GetConsentArtifact response, but not included in CreateConsentArtifact and ListConsentArtifact response.
205    },
206    &quot;metadata&quot;: { # Optional. Metadata associated with the user&#x27;s signature. For example, the user&#x27;s name or the user&#x27;s title.
207      &quot;a_key&quot;: &quot;A String&quot;,
208    },
209    &quot;signatureTime&quot;: &quot;A String&quot;, # Optional. Timestamp of the signature.
210    &quot;userId&quot;: &quot;A String&quot;, # Required. User&#x27;s UUID provided by the client.
211  },
212}</pre>
213</div>
214
215<div class="method">
216    <code class="details" id="delete">delete(name, x__xgafv=None)</code>
217  <pre>Deletes the specified Consent artifact. Fails if the artifact is referenced by the latest revision of any Consent.
218
219Args:
220  name: string, Required. The resource name of the Consent artifact to delete. To preserve referential integrity, Consent artifacts referenced by the latest revision of a Consent cannot be deleted. (required)
221  x__xgafv: string, V1 error format.
222    Allowed values
223      1 - v1 error format
224      2 - v2 error format
225
226Returns:
227  An object of the form:
228
229    { # A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); } The JSON representation for `Empty` is empty JSON object `{}`.
230}</pre>
231</div>
232
233<div class="method">
234    <code class="details" id="get">get(name, x__xgafv=None)</code>
235  <pre>Gets the specified Consent artifact.
236
237Args:
238  name: string, Required. The resource name of the Consent artifact to retrieve. (required)
239  x__xgafv: string, V1 error format.
240    Allowed values
241      1 - v1 error format
242      2 - v2 error format
243
244Returns:
245  An object of the form:
246
247    { # Documentation of a user&#x27;s consent.
248  &quot;consentContentScreenshots&quot;: [ # Optional. Screenshots, PDFs, or other binary information documenting the user&#x27;s consent.
249    { # Raw bytes representing consent artifact content.
250      &quot;gcsUri&quot;: &quot;A String&quot;, # Input only. Points to a Cloud Storage URI containing the consent artifact content. The URI must be in the following format: `gs://{bucket_id}/{object_id}`. The Cloud Healthcare API service account must have the `roles/storage.objectViewer` Cloud IAM role for this Cloud Storage location. The consent artifact content at this URI is copied to a Cloud Storage location managed by the Cloud Healthcare API. Responses to fetching requests return the consent artifact content in raw_bytes.
251      &quot;rawBytes&quot;: &quot;A String&quot;, # Consent artifact content represented as a stream of bytes. This field is populated when returned in GetConsentArtifact response, but not included in CreateConsentArtifact and ListConsentArtifact response.
252    },
253  ],
254  &quot;consentContentVersion&quot;: &quot;A String&quot;, # Optional. An string indicating the version of the consent information shown to the user.
255  &quot;guardianSignature&quot;: { # User signature. # Optional. A signature from a guardian.
256    &quot;image&quot;: { # Raw bytes representing consent artifact content. # Optional. An image of the user&#x27;s signature.
257      &quot;gcsUri&quot;: &quot;A String&quot;, # Input only. Points to a Cloud Storage URI containing the consent artifact content. The URI must be in the following format: `gs://{bucket_id}/{object_id}`. The Cloud Healthcare API service account must have the `roles/storage.objectViewer` Cloud IAM role for this Cloud Storage location. The consent artifact content at this URI is copied to a Cloud Storage location managed by the Cloud Healthcare API. Responses to fetching requests return the consent artifact content in raw_bytes.
258      &quot;rawBytes&quot;: &quot;A String&quot;, # Consent artifact content represented as a stream of bytes. This field is populated when returned in GetConsentArtifact response, but not included in CreateConsentArtifact and ListConsentArtifact response.
259    },
260    &quot;metadata&quot;: { # Optional. Metadata associated with the user&#x27;s signature. For example, the user&#x27;s name or the user&#x27;s title.
261      &quot;a_key&quot;: &quot;A String&quot;,
262    },
263    &quot;signatureTime&quot;: &quot;A String&quot;, # Optional. Timestamp of the signature.
264    &quot;userId&quot;: &quot;A String&quot;, # Required. User&#x27;s UUID provided by the client.
265  },
266  &quot;metadata&quot;: { # Optional. Metadata associated with the Consent artifact. For example, the consent locale or user agent version.
267    &quot;a_key&quot;: &quot;A String&quot;,
268  },
269  &quot;name&quot;: &quot;A String&quot;, # Resource name of the Consent artifact, of the form `projects/{project_id}/locations/{location_id}/datasets/{dataset_id}/consentStores/{consent_store_id}/consentArtifacts/{consent_artifact_id}`. Cannot be changed after creation.
270  &quot;userId&quot;: &quot;A String&quot;, # Required. User&#x27;s UUID provided by the client.
271  &quot;userSignature&quot;: { # User signature. # Optional. User&#x27;s signature.
272    &quot;image&quot;: { # Raw bytes representing consent artifact content. # Optional. An image of the user&#x27;s signature.
273      &quot;gcsUri&quot;: &quot;A String&quot;, # Input only. Points to a Cloud Storage URI containing the consent artifact content. The URI must be in the following format: `gs://{bucket_id}/{object_id}`. The Cloud Healthcare API service account must have the `roles/storage.objectViewer` Cloud IAM role for this Cloud Storage location. The consent artifact content at this URI is copied to a Cloud Storage location managed by the Cloud Healthcare API. Responses to fetching requests return the consent artifact content in raw_bytes.
274      &quot;rawBytes&quot;: &quot;A String&quot;, # Consent artifact content represented as a stream of bytes. This field is populated when returned in GetConsentArtifact response, but not included in CreateConsentArtifact and ListConsentArtifact response.
275    },
276    &quot;metadata&quot;: { # Optional. Metadata associated with the user&#x27;s signature. For example, the user&#x27;s name or the user&#x27;s title.
277      &quot;a_key&quot;: &quot;A String&quot;,
278    },
279    &quot;signatureTime&quot;: &quot;A String&quot;, # Optional. Timestamp of the signature.
280    &quot;userId&quot;: &quot;A String&quot;, # Required. User&#x27;s UUID provided by the client.
281  },
282  &quot;witnessSignature&quot;: { # User signature. # Optional. A signature from a witness.
283    &quot;image&quot;: { # Raw bytes representing consent artifact content. # Optional. An image of the user&#x27;s signature.
284      &quot;gcsUri&quot;: &quot;A String&quot;, # Input only. Points to a Cloud Storage URI containing the consent artifact content. The URI must be in the following format: `gs://{bucket_id}/{object_id}`. The Cloud Healthcare API service account must have the `roles/storage.objectViewer` Cloud IAM role for this Cloud Storage location. The consent artifact content at this URI is copied to a Cloud Storage location managed by the Cloud Healthcare API. Responses to fetching requests return the consent artifact content in raw_bytes.
285      &quot;rawBytes&quot;: &quot;A String&quot;, # Consent artifact content represented as a stream of bytes. This field is populated when returned in GetConsentArtifact response, but not included in CreateConsentArtifact and ListConsentArtifact response.
286    },
287    &quot;metadata&quot;: { # Optional. Metadata associated with the user&#x27;s signature. For example, the user&#x27;s name or the user&#x27;s title.
288      &quot;a_key&quot;: &quot;A String&quot;,
289    },
290    &quot;signatureTime&quot;: &quot;A String&quot;, # Optional. Timestamp of the signature.
291    &quot;userId&quot;: &quot;A String&quot;, # Required. User&#x27;s UUID provided by the client.
292  },
293}</pre>
294</div>
295
296<div class="method">
297    <code class="details" id="list">list(parent, filter=None, pageSize=None, pageToken=None, x__xgafv=None)</code>
298  <pre>Lists the Consent artifacts in the specified consent store.
299
300Args:
301  parent: string, Required. Name of the consent store to retrieve consent artifacts from. (required)
302  filter: string, Optional. Restricts the artifacts returned to those matching a filter. The following syntax is available: * A string field value can be written as text inside quotation marks, for example `&quot;query text&quot;`. The only valid relational operation for text fields is equality (`=`), where text is searched within the field, rather than having the field be equal to the text. For example, `&quot;Comment = great&quot;` returns messages with `great` in the comment field. * A number field value can be written as an integer, a decimal, or an exponential. The valid relational operators for number fields are the equality operator (`=`), along with the less than/greater than operators (`&lt;`, `&lt;=`, `&gt;`, `&gt;=`). Note that there is no inequality (`!=`) operator. You can prepend the `NOT` operator to an expression to negate it. * A date field value must be written in `yyyy-mm-dd` form. Fields with date and time use the RFC3339 time format. Leading zeros are required for one-digit months and days. The valid relational operators for date fields are the equality operator (`=`) , along with the less than/greater than operators (`&lt;`, `&lt;=`, `&gt;`, `&gt;=`). Note that there is no inequality (`!=`) operator. You can prepend the `NOT` operator to an expression to negate it. * Multiple field query expressions can be combined in one query by adding `AND` or `OR` operators between the expressions. If a boolean operator appears within a quoted string, it is not treated as special, it&#x27;s just another part of the character string to be matched. You can prepend the `NOT` operator to an expression to negate it. The fields available for filtering are: - user_id. For example, `filter=user_id=\&quot;user123\&quot;`. - consent_content_version - metadata. For example, `filter=Metadata(\&quot;testkey\&quot;)=\&quot;value\&quot;` or `filter=HasMetadata(\&quot;testkey\&quot;)`.
303  pageSize: integer, Optional. Limit on the number of consent artifacts to return in a single response. If not specified, 100 is used. May not be larger than 1000.
304  pageToken: string, Optional. The next_page_token value returned from the previous List request, if any.
305  x__xgafv: string, V1 error format.
306    Allowed values
307      1 - v1 error format
308      2 - v2 error format
309
310Returns:
311  An object of the form:
312
313    {
314  &quot;consentArtifacts&quot;: [ # The returned Consent artifacts. The maximum number of artifacts returned is determined by the value of page_size in the ListConsentArtifactsRequest.
315    { # Documentation of a user&#x27;s consent.
316      &quot;consentContentScreenshots&quot;: [ # Optional. Screenshots, PDFs, or other binary information documenting the user&#x27;s consent.
317        { # Raw bytes representing consent artifact content.
318          &quot;gcsUri&quot;: &quot;A String&quot;, # Input only. Points to a Cloud Storage URI containing the consent artifact content. The URI must be in the following format: `gs://{bucket_id}/{object_id}`. The Cloud Healthcare API service account must have the `roles/storage.objectViewer` Cloud IAM role for this Cloud Storage location. The consent artifact content at this URI is copied to a Cloud Storage location managed by the Cloud Healthcare API. Responses to fetching requests return the consent artifact content in raw_bytes.
319          &quot;rawBytes&quot;: &quot;A String&quot;, # Consent artifact content represented as a stream of bytes. This field is populated when returned in GetConsentArtifact response, but not included in CreateConsentArtifact and ListConsentArtifact response.
320        },
321      ],
322      &quot;consentContentVersion&quot;: &quot;A String&quot;, # Optional. An string indicating the version of the consent information shown to the user.
323      &quot;guardianSignature&quot;: { # User signature. # Optional. A signature from a guardian.
324        &quot;image&quot;: { # Raw bytes representing consent artifact content. # Optional. An image of the user&#x27;s signature.
325          &quot;gcsUri&quot;: &quot;A String&quot;, # Input only. Points to a Cloud Storage URI containing the consent artifact content. The URI must be in the following format: `gs://{bucket_id}/{object_id}`. The Cloud Healthcare API service account must have the `roles/storage.objectViewer` Cloud IAM role for this Cloud Storage location. The consent artifact content at this URI is copied to a Cloud Storage location managed by the Cloud Healthcare API. Responses to fetching requests return the consent artifact content in raw_bytes.
326          &quot;rawBytes&quot;: &quot;A String&quot;, # Consent artifact content represented as a stream of bytes. This field is populated when returned in GetConsentArtifact response, but not included in CreateConsentArtifact and ListConsentArtifact response.
327        },
328        &quot;metadata&quot;: { # Optional. Metadata associated with the user&#x27;s signature. For example, the user&#x27;s name or the user&#x27;s title.
329          &quot;a_key&quot;: &quot;A String&quot;,
330        },
331        &quot;signatureTime&quot;: &quot;A String&quot;, # Optional. Timestamp of the signature.
332        &quot;userId&quot;: &quot;A String&quot;, # Required. User&#x27;s UUID provided by the client.
333      },
334      &quot;metadata&quot;: { # Optional. Metadata associated with the Consent artifact. For example, the consent locale or user agent version.
335        &quot;a_key&quot;: &quot;A String&quot;,
336      },
337      &quot;name&quot;: &quot;A String&quot;, # Resource name of the Consent artifact, of the form `projects/{project_id}/locations/{location_id}/datasets/{dataset_id}/consentStores/{consent_store_id}/consentArtifacts/{consent_artifact_id}`. Cannot be changed after creation.
338      &quot;userId&quot;: &quot;A String&quot;, # Required. User&#x27;s UUID provided by the client.
339      &quot;userSignature&quot;: { # User signature. # Optional. User&#x27;s signature.
340        &quot;image&quot;: { # Raw bytes representing consent artifact content. # Optional. An image of the user&#x27;s signature.
341          &quot;gcsUri&quot;: &quot;A String&quot;, # Input only. Points to a Cloud Storage URI containing the consent artifact content. The URI must be in the following format: `gs://{bucket_id}/{object_id}`. The Cloud Healthcare API service account must have the `roles/storage.objectViewer` Cloud IAM role for this Cloud Storage location. The consent artifact content at this URI is copied to a Cloud Storage location managed by the Cloud Healthcare API. Responses to fetching requests return the consent artifact content in raw_bytes.
342          &quot;rawBytes&quot;: &quot;A String&quot;, # Consent artifact content represented as a stream of bytes. This field is populated when returned in GetConsentArtifact response, but not included in CreateConsentArtifact and ListConsentArtifact response.
343        },
344        &quot;metadata&quot;: { # Optional. Metadata associated with the user&#x27;s signature. For example, the user&#x27;s name or the user&#x27;s title.
345          &quot;a_key&quot;: &quot;A String&quot;,
346        },
347        &quot;signatureTime&quot;: &quot;A String&quot;, # Optional. Timestamp of the signature.
348        &quot;userId&quot;: &quot;A String&quot;, # Required. User&#x27;s UUID provided by the client.
349      },
350      &quot;witnessSignature&quot;: { # User signature. # Optional. A signature from a witness.
351        &quot;image&quot;: { # Raw bytes representing consent artifact content. # Optional. An image of the user&#x27;s signature.
352          &quot;gcsUri&quot;: &quot;A String&quot;, # Input only. Points to a Cloud Storage URI containing the consent artifact content. The URI must be in the following format: `gs://{bucket_id}/{object_id}`. The Cloud Healthcare API service account must have the `roles/storage.objectViewer` Cloud IAM role for this Cloud Storage location. The consent artifact content at this URI is copied to a Cloud Storage location managed by the Cloud Healthcare API. Responses to fetching requests return the consent artifact content in raw_bytes.
353          &quot;rawBytes&quot;: &quot;A String&quot;, # Consent artifact content represented as a stream of bytes. This field is populated when returned in GetConsentArtifact response, but not included in CreateConsentArtifact and ListConsentArtifact response.
354        },
355        &quot;metadata&quot;: { # Optional. Metadata associated with the user&#x27;s signature. For example, the user&#x27;s name or the user&#x27;s title.
356          &quot;a_key&quot;: &quot;A String&quot;,
357        },
358        &quot;signatureTime&quot;: &quot;A String&quot;, # Optional. Timestamp of the signature.
359        &quot;userId&quot;: &quot;A String&quot;, # Required. User&#x27;s UUID provided by the client.
360      },
361    },
362  ],
363  &quot;nextPageToken&quot;: &quot;A String&quot;, # Token to retrieve the next page of results, or empty if there are no more results in the list.
364}</pre>
365</div>
366
367<div class="method">
368    <code class="details" id="list_next">list_next(previous_request, previous_response)</code>
369  <pre>Retrieves the next page of results.
370
371Args:
372  previous_request: The request for the previous page. (required)
373  previous_response: The response from the request for the previous page. (required)
374
375Returns:
376  A request object that you can call &#x27;execute()&#x27; on to request the next
377  page. Returns None if there are no more items in the collection.
378    </pre>
379</div>
380
381</body></html>