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's consent. 111 "consentContentScreenshots": [ # Optional. Screenshots, PDFs, or other binary information documenting the user's consent. 112 { # Raw bytes representing consent artifact content. 113 "gcsUri": "A String", # 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 "rawBytes": "A String", # 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 "consentContentVersion": "A String", # Optional. An string indicating the version of the consent information shown to the user. 118 "guardianSignature": { # User signature. # Optional. A signature from a guardian. 119 "image": { # Raw bytes representing consent artifact content. # Optional. An image of the user's signature. 120 "gcsUri": "A String", # 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 "rawBytes": "A String", # 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 "metadata": { # Optional. Metadata associated with the user's signature. For example, the user's name or the user's title. 124 "a_key": "A String", 125 }, 126 "signatureTime": "A String", # Optional. Timestamp of the signature. 127 "userId": "A String", # Required. User's UUID provided by the client. 128 }, 129 "metadata": { # Optional. Metadata associated with the Consent artifact. For example, the consent locale or user agent version. 130 "a_key": "A String", 131 }, 132 "name": "A String", # 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 "userId": "A String", # Required. User's UUID provided by the client. 134 "userSignature": { # User signature. # Optional. User's signature. 135 "image": { # Raw bytes representing consent artifact content. # Optional. An image of the user's signature. 136 "gcsUri": "A String", # 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 "rawBytes": "A String", # 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 "metadata": { # Optional. Metadata associated with the user's signature. For example, the user's name or the user's title. 140 "a_key": "A String", 141 }, 142 "signatureTime": "A String", # Optional. Timestamp of the signature. 143 "userId": "A String", # Required. User's UUID provided by the client. 144 }, 145 "witnessSignature": { # User signature. # Optional. A signature from a witness. 146 "image": { # Raw bytes representing consent artifact content. # Optional. An image of the user's signature. 147 "gcsUri": "A String", # 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 "rawBytes": "A String", # 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 "metadata": { # Optional. Metadata associated with the user's signature. For example, the user's name or the user's title. 151 "a_key": "A String", 152 }, 153 "signatureTime": "A String", # Optional. Timestamp of the signature. 154 "userId": "A String", # Required. User'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's consent. 167 "consentContentScreenshots": [ # Optional. Screenshots, PDFs, or other binary information documenting the user's consent. 168 { # Raw bytes representing consent artifact content. 169 "gcsUri": "A String", # 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 "rawBytes": "A String", # 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 "consentContentVersion": "A String", # Optional. An string indicating the version of the consent information shown to the user. 174 "guardianSignature": { # User signature. # Optional. A signature from a guardian. 175 "image": { # Raw bytes representing consent artifact content. # Optional. An image of the user's signature. 176 "gcsUri": "A String", # 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 "rawBytes": "A String", # 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 "metadata": { # Optional. Metadata associated with the user's signature. For example, the user's name or the user's title. 180 "a_key": "A String", 181 }, 182 "signatureTime": "A String", # Optional. Timestamp of the signature. 183 "userId": "A String", # Required. User's UUID provided by the client. 184 }, 185 "metadata": { # Optional. Metadata associated with the Consent artifact. For example, the consent locale or user agent version. 186 "a_key": "A String", 187 }, 188 "name": "A String", # 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 "userId": "A String", # Required. User's UUID provided by the client. 190 "userSignature": { # User signature. # Optional. User's signature. 191 "image": { # Raw bytes representing consent artifact content. # Optional. An image of the user's signature. 192 "gcsUri": "A String", # 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 "rawBytes": "A String", # 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 "metadata": { # Optional. Metadata associated with the user's signature. For example, the user's name or the user's title. 196 "a_key": "A String", 197 }, 198 "signatureTime": "A String", # Optional. Timestamp of the signature. 199 "userId": "A String", # Required. User's UUID provided by the client. 200 }, 201 "witnessSignature": { # User signature. # Optional. A signature from a witness. 202 "image": { # Raw bytes representing consent artifact content. # Optional. An image of the user's signature. 203 "gcsUri": "A String", # 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 "rawBytes": "A String", # 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 "metadata": { # Optional. Metadata associated with the user's signature. For example, the user's name or the user's title. 207 "a_key": "A String", 208 }, 209 "signatureTime": "A String", # Optional. Timestamp of the signature. 210 "userId": "A String", # Required. User'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's consent. 248 "consentContentScreenshots": [ # Optional. Screenshots, PDFs, or other binary information documenting the user's consent. 249 { # Raw bytes representing consent artifact content. 250 "gcsUri": "A String", # 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 "rawBytes": "A String", # 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 "consentContentVersion": "A String", # Optional. An string indicating the version of the consent information shown to the user. 255 "guardianSignature": { # User signature. # Optional. A signature from a guardian. 256 "image": { # Raw bytes representing consent artifact content. # Optional. An image of the user's signature. 257 "gcsUri": "A String", # 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 "rawBytes": "A String", # 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 "metadata": { # Optional. Metadata associated with the user's signature. For example, the user's name or the user's title. 261 "a_key": "A String", 262 }, 263 "signatureTime": "A String", # Optional. Timestamp of the signature. 264 "userId": "A String", # Required. User's UUID provided by the client. 265 }, 266 "metadata": { # Optional. Metadata associated with the Consent artifact. For example, the consent locale or user agent version. 267 "a_key": "A String", 268 }, 269 "name": "A String", # 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 "userId": "A String", # Required. User's UUID provided by the client. 271 "userSignature": { # User signature. # Optional. User's signature. 272 "image": { # Raw bytes representing consent artifact content. # Optional. An image of the user's signature. 273 "gcsUri": "A String", # 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 "rawBytes": "A String", # 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 "metadata": { # Optional. Metadata associated with the user's signature. For example, the user's name or the user's title. 277 "a_key": "A String", 278 }, 279 "signatureTime": "A String", # Optional. Timestamp of the signature. 280 "userId": "A String", # Required. User's UUID provided by the client. 281 }, 282 "witnessSignature": { # User signature. # Optional. A signature from a witness. 283 "image": { # Raw bytes representing consent artifact content. # Optional. An image of the user's signature. 284 "gcsUri": "A String", # 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 "rawBytes": "A String", # 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 "metadata": { # Optional. Metadata associated with the user's signature. For example, the user's name or the user's title. 288 "a_key": "A String", 289 }, 290 "signatureTime": "A String", # Optional. Timestamp of the signature. 291 "userId": "A String", # Required. User'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 `"query text"`. 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, `"Comment = great"` 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 (`<`, `<=`, `>`, `>=`). 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 (`<`, `<=`, `>`, `>=`). 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'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=\"user123\"`. - consent_content_version - metadata. For example, `filter=Metadata(\"testkey\")=\"value\"` or `filter=HasMetadata(\"testkey\")`. 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 "consentArtifacts": [ # 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's consent. 316 "consentContentScreenshots": [ # Optional. Screenshots, PDFs, or other binary information documenting the user's consent. 317 { # Raw bytes representing consent artifact content. 318 "gcsUri": "A String", # 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 "rawBytes": "A String", # 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 "consentContentVersion": "A String", # Optional. An string indicating the version of the consent information shown to the user. 323 "guardianSignature": { # User signature. # Optional. A signature from a guardian. 324 "image": { # Raw bytes representing consent artifact content. # Optional. An image of the user's signature. 325 "gcsUri": "A String", # 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 "rawBytes": "A String", # 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 "metadata": { # Optional. Metadata associated with the user's signature. For example, the user's name or the user's title. 329 "a_key": "A String", 330 }, 331 "signatureTime": "A String", # Optional. Timestamp of the signature. 332 "userId": "A String", # Required. User's UUID provided by the client. 333 }, 334 "metadata": { # Optional. Metadata associated with the Consent artifact. For example, the consent locale or user agent version. 335 "a_key": "A String", 336 }, 337 "name": "A String", # 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 "userId": "A String", # Required. User's UUID provided by the client. 339 "userSignature": { # User signature. # Optional. User's signature. 340 "image": { # Raw bytes representing consent artifact content. # Optional. An image of the user's signature. 341 "gcsUri": "A String", # 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 "rawBytes": "A String", # 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 "metadata": { # Optional. Metadata associated with the user's signature. For example, the user's name or the user's title. 345 "a_key": "A String", 346 }, 347 "signatureTime": "A String", # Optional. Timestamp of the signature. 348 "userId": "A String", # Required. User's UUID provided by the client. 349 }, 350 "witnessSignature": { # User signature. # Optional. A signature from a witness. 351 "image": { # Raw bytes representing consent artifact content. # Optional. An image of the user's signature. 352 "gcsUri": "A String", # 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 "rawBytes": "A String", # 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 "metadata": { # Optional. Metadata associated with the user's signature. For example, the user's name or the user's title. 356 "a_key": "A String", 357 }, 358 "signatureTime": "A String", # Optional. Timestamp of the signature. 359 "userId": "A String", # Required. User's UUID provided by the client. 360 }, 361 }, 362 ], 363 "nextPageToken": "A String", # 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 'execute()' 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>