-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathActivateUserProfileResponse.g.cs
45 lines (41 loc) · 2.26 KB
/
ActivateUserProfileResponse.g.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
38
39
40
41
42
43
44
45
// Licensed to Elasticsearch B.V under one or more agreements.
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
// See the LICENSE file in the project root for more information.
//
// ███╗ ██╗ ██████╗ ████████╗██╗ ██████╗███████╗
// ████╗ ██║██╔═══██╗╚══██╔══╝██║██╔════╝██╔════╝
// ██╔██╗ ██║██║ ██║ ██║ ██║██║ █████╗
// ██║╚██╗██║██║ ██║ ██║ ██║██║ ██╔══╝
// ██║ ╚████║╚██████╔╝ ██║ ██║╚██████╗███████╗
// ╚═╝ ╚═══╝ ╚═════╝ ╚═╝ ╚═╝ ╚═════╝╚══════╝
// ------------------------------------------------
//
// This file is automatically generated.
// Please do not edit these files manually.
//
// ------------------------------------------------
#nullable restore
using Elastic.Clients.Elasticsearch.Serverless.Fluent;
using Elastic.Clients.Elasticsearch.Serverless.Serialization;
using Elastic.Transport.Products.Elasticsearch;
using System;
using System.Collections.Generic;
using System.Text.Json.Serialization;
namespace Elastic.Clients.Elasticsearch.Serverless.Security;
public sealed partial class ActivateUserProfileResponse : ElasticsearchResponse
{
[JsonInclude, JsonPropertyName("data")]
public IReadOnlyDictionary<string, object> Data { get; init; }
[JsonInclude, JsonPropertyName("_doc")]
public Elastic.Clients.Elasticsearch.Serverless.Security.UserProfileHitMetadata Doc { get; init; }
[JsonInclude, JsonPropertyName("enabled")]
public bool? Enabled { get; init; }
[JsonInclude, JsonPropertyName("labels")]
public IReadOnlyDictionary<string, object> Labels { get; init; }
[JsonInclude, JsonPropertyName("last_synchronized")]
public long LastSynchronized { get; init; }
[JsonInclude, JsonPropertyName("uid")]
public string Uid { get; init; }
[JsonInclude, JsonPropertyName("user")]
public Elastic.Clients.Elasticsearch.Serverless.Security.UserProfileUser User { get; init; }
}