Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added fss-sedo-appeal-reply #77

Merged
merged 1 commit into from
Jan 15, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
using Kontur.Extern.Api.Client.Models.Docflows.Descriptions.Fns;
using Kontur.Extern.Api.Client.Models.Docflows.Descriptions.Fns.BusinessRegistration;
using Kontur.Extern.Api.Client.Models.Docflows.Descriptions.Fss;
using Kontur.Extern.Api.Client.Models.Docflows.Descriptions.Fss.Enums;
using Kontur.Extern.Api.Client.Models.Docflows.Descriptions.Oved;
using Kontur.Extern.Api.Client.Models.Docflows.Descriptions.Pfr;
using Kontur.Extern.Api.Client.Models.Docflows.Descriptions.Rosstat;
Expand Down Expand Up @@ -59,6 +60,7 @@ public static class DocflowDescriptionTypes
[DocflowType.FssSedoBenefitPaymentStatusNotice] = typeof(FssSedoBenefitPaymentStatusNoticeDescription),
[DocflowType.FssSedoError] = typeof(FssSedoErrorDescription),
[DocflowType.FssSedoEmployeeSalaryInformation] = typeof(FssSedoEmployeeSalaryInformationDescription),
[DocflowType.FssSedoAppealReply] = typeof(FssSedoAppealReplyDescription),
[DocflowType.OvedConfirmation] = typeof(OvedConfirmationDescription),
[DocflowType.CbrfReport] = typeof(CbrfReportDescription),
[DocflowType.BusinessRegistration] = typeof(BusinessRegistrationDescription)
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
using System;
using JetBrains.Annotations;

namespace Kontur.Extern.Api.Client.Models.Docflows.Descriptions.Fss.Enums;

[PublicAPI]
public class FssSedoAppealReplyDescription : FssSedoDescription
{
/// <summary>
/// ИНН организации, за которую сдается отчет
/// </summary>
public string? PayerInn { get; set; }

/// <summary>
/// Отпечаток сертификата отправителя
/// </summary>
public string? SenderCertificateThumbprint { get; set; }

/// <summary>
/// Идентификатор доверенности
/// </summary>
public Guid? WarrantId { get; set; }

/// <summary>
/// Версия формы документа
/// </summary>
public FormVersion? FormVersion { get; set; }

/// <summary>
/// Идентификатор связанного документооборота ФСС
/// </summary>
public Guid? RelatedDocflowId { get; set; }
}
Original file line number Diff line number Diff line change
Expand Up @@ -767,6 +767,42 @@ public static class FssSedoBabyCareVacationCloseNotice
public static readonly DocumentType ExchangeError = "urn:document:fss-sedo-baby-care-vacation-close-notice-exchange-error";
}

/// <summary>
/// Ответ страхователя на обращение СФР
/// </summary>
[PublicAPI]
public static class FssSedoAppealReply
{
/// <summary>
/// Запрос на отправку сообщения "Ответ страхователя на обращение СФР"
/// </summary>
public static readonly DocumentType Request = "urn:document:fss-sedo-appeal-reply-request";
/// <summary>
/// Квитанция о прочтении (используется в методе генерации ответного документа)
/// </summary>
public static readonly DocumentType ReadReceipt = "urn:document:fss-sedo-appeal-reply-read-receipt";
/// <summary>
/// Результат отправки сообщения на портал
/// </summary>
public static readonly DocumentType ReceptionResult = "urn:document:fss-sedo-appeal-reply-reception-result";
/// <summary>
/// Сообщение "Уведомление о подтверждении получения Фондом сообщения от Страхователя"
/// </summary>
public static readonly DocumentType ResultDocument = "urn:document:fss-sedo-appeal-reply-result-document";
/// <summary>
/// Ошибка взаимодействия с СЭДО
/// </summary>
public static readonly DocumentType ExchangeError = "urn:document:fss-sedo-appeal-reply-exchange-error";
/// <summary>
/// Ошибка обработки
/// </summary>
public static readonly DocumentType ErrorMessage = "urn:document:fss-sedo-appeal-reply-error-message";
/// <summary>
/// Приложение
/// </summary>
public static readonly DocumentType Attachment = "urn:document:fss-sedo-appeal-reply-attachment";
}

/// <summary>
/// Уведомление о статусе выплаты пособия
/// </summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,10 +114,12 @@ public partial struct DocflowType
/// Справка о расчетах ФСС
/// </summary>
public static readonly DocflowType FssSedoBillingInformation = "urn:docflow:fss-sedo-billing-information";

/// <summary>
/// Уведомление о прекращении отпуска по уходу за ребенком до полутора лет
/// </summary>
public static readonly DocflowType FssSedoBabyCareVacationCloseNotice = "urn:docflow:fss-sedo-baby-care-vacation-close-notice";

/// <summary>
/// Уведомление о статусе выплаты пособия
/// </summary>
Expand All @@ -127,5 +129,10 @@ public partial struct DocflowType
/// Сведения о зарплате сотрудника
/// </summary>
public static readonly DocflowType FssSedoEmployeeSalaryInformation = "urn:docflow:fss-sedo-employee-salary-information";

/// <summary>
/// Ответ страхователя на обращение СФР
/// </summary>
public static readonly DocflowType FssSedoAppealReply = "urn:docflow:fss-sedo-appeal-reply";
}
}