You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

64 lines
1.7 KiB

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Swift.API.Common.TrustDoc
{
public class VerificationStatusResponse
{
public string id { get; set; }
public string public_id { get; set; }
public string id_for_helper { get; set; }
public string state { get; set; }
public string result { get; set; }
public DateTime accepted_at { get; set; }
public DateTime plans_selected_at { get; set; }
public DateTime document_submitted_at { get; set; }
public DateTime prepared_at { get; set; }
public DateTime verified_at { get; set; }
public ComparingData comparing_data { get; set; }
public List<Record> records { get; set; }
}
public class Record
{
public string state { get; set; }
public string result { get; set; }
public DateTime verified_at { get; set; }
public Plan plan { get; set; }
public Document document { get; set; }
public List<Reason> reasons { get; set; }
}
public class Data
{
public string token { get; set; }
public DateTime expired_at { get; set; }
public List<string> image_urls { get; set; }
public List<string> text_urls { get; set; }
public List<string> video_urls { get; set; }
}
public class Document
{
public IdDocument id_document { get; set; }
public Data data { get; set; }
public Selfie selfie { get; set; }
}
public class IdDocument
{
public string type { get; set; }
public object first_submitted_at { get; set; }
public DateTime submitted_at { get; set; }
public string source_plan_id { get; set; }
}
}