|
| 1 | +using System.Text.Json.Serialization; |
| 2 | + |
| 3 | +namespace Asaas.Sdk.Models; |
| 4 | + |
| 5 | +/// <summary> |
| 6 | +/// Account document group response |
| 7 | +/// </summary> |
| 8 | +public class AccountDocumentGroupResponseDto |
| 9 | +{ |
| 10 | + /// <summary> |
| 11 | + /// Unique document group identifier in Asaas |
| 12 | + /// </summary> |
| 13 | + [JsonPropertyName("id")] |
| 14 | + public string? Id { get; set; } |
| 15 | + |
| 16 | + /// <summary> |
| 17 | + /// Document group status |
| 18 | + /// </summary> |
| 19 | + [JsonPropertyName("status")] |
| 20 | + public AccountDocumentStatus? Status { get; set; } |
| 21 | + |
| 22 | + /// <summary> |
| 23 | + /// Type of documents |
| 24 | + /// </summary> |
| 25 | + [JsonPropertyName("type")] |
| 26 | + public AccountDocumentType? Type { get; set; } |
| 27 | + |
| 28 | + /// <summary> |
| 29 | + /// Document group title |
| 30 | + /// </summary> |
| 31 | + [JsonPropertyName("title")] |
| 32 | + public string? Title { get; set; } |
| 33 | + |
| 34 | + /// <summary> |
| 35 | + /// Document group description |
| 36 | + /// </summary> |
| 37 | + [JsonPropertyName("description")] |
| 38 | + public string? Description { get; set; } |
| 39 | + |
| 40 | + /// <summary> |
| 41 | + /// Who is responsible for sending these documents |
| 42 | + /// </summary> |
| 43 | + [JsonPropertyName("responsible")] |
| 44 | + public AccountDocumentResponsibleResponseDto? Responsible { get; set; } |
| 45 | + |
| 46 | + /// <summary> |
| 47 | + /// URL for onboarding |
| 48 | + /// </summary> |
| 49 | + [JsonPropertyName("onboardingUrl")] |
| 50 | + public string? OnboardingUrl { get; set; } |
| 51 | + |
| 52 | + /// <summary> |
| 53 | + /// Onboarding URL expiration date |
| 54 | + /// </summary> |
| 55 | + [JsonPropertyName("onboardingUrlExpirationDate")] |
| 56 | + public string? OnboardingUrlExpirationDate { get; set; } |
| 57 | + |
| 58 | + /// <summary> |
| 59 | + /// Documents that have already been sent with their respective identifiers |
| 60 | + /// </summary> |
| 61 | + [JsonPropertyName("documents")] |
| 62 | + public List<AccountDocumentGetResponseDto>? Documents { get; set; } |
| 63 | +} |
0 commit comments