forked from oracle/oci-dotnet-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DeleteTagResponse.cs
37 lines (27 loc) · 1.26 KB
/
DeleteTagResponse.cs
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
/*
* Copyright (c) 2020, 2021, Oracle and/or its affiliates. All rights reserved.
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
*/
// NOTE: Code generated by OracleSDKGenerator.
// DO NOT EDIT this file manually.
using System.Runtime.Serialization;
using Oci.IdentityService.Models;
namespace Oci.IdentityService.Responses
{
public class DeleteTagResponse : Oci.Common.IOciResponse
{
/// <value>
/// Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a
/// particular request, please provide the request ID.
///
/// </value>
[Oci.Common.Http.HttpConverter(Oci.Common.Http.TargetEnum.Header, "opc-request-id")]
public string OpcRequestId { get; set; }
/// <value>
/// The [OCID](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the work request.
///
/// </value>
[Oci.Common.Http.HttpConverter(Oci.Common.Http.TargetEnum.Header, "opc-work-request-id")]
public string OpcWorkRequestId { get; set; }
}
}