public static ConvertOfficeFormatResponse Unmarshall(UnmarshallerContext _ctx)
        {
            ConvertOfficeFormatResponse convertOfficeFormatResponse = new ConvertOfficeFormatResponse();

            convertOfficeFormatResponse.HttpResponse = _ctx.HttpResponse;
            convertOfficeFormatResponse.RequestId    = _ctx.StringValue("ConvertOfficeFormat.RequestId");
            convertOfficeFormatResponse.PageCount    = _ctx.IntegerValue("ConvertOfficeFormat.PageCount");

            return(convertOfficeFormatResponse);
        }
Ejemplo n.º 2
0
 public DocConvertResultDto(ConvertOfficeFormatResponse response)
 {
     RequestId = response.RequestId;
     Status    = DocConvertStatus.Finished;
 }