guibranco/MaxiPago-SDK-dotnet

View on GitHub
Src/MaxiPago/DataContract/Transactional/Boleto.cs

Summary

Maintainability
A
0 mins
Test Coverage
// ***********************************************************************
// Assembly         : MaxiPago
// Author           : Guilherme Branco Stracini
// Created          : 16/01/2023
//
// Last Modified By : Guilherme Branco Stracini
// Last Modified On : 16/01/2023
// ***********************************************************************
// <copyright file="Boleto.cs" company="Guilherme Branco Stracini ME">
//     © 2023 Guilherme Branco Stracini. All rights reserved.
// </copyright>
// <summary></summary>
// ***********************************************************************
using System;
using System.Xml.Serialization;

namespace MaxiPago.DataContract.Transactional
{
    /// <summary>
    /// Class Boleto.
    /// </summary>
    [Serializable]
    [XmlRoot(ElementName = "boleto")]
    public class Boleto
    {
        /// <summary>
        /// Gets or sets the expiration date.
        /// </summary>
        /// <value>The expiration date.</value>
        [XmlElement(ElementName = "expirationDate")]
        public string ExpirationDate { get; set; }

        /// <summary>
        /// Gets or sets the number.
        /// </summary>
        /// <value>The number.</value>
        [XmlElement(ElementName = "number")]
        public string Number { get; set; }

        /// <summary>
        /// Gets or sets the instructions.
        /// </summary>
        /// <value>The instructions.</value>
        [XmlElement(ElementName = "instructions")]
        public string Instructions { get; set; }
    }
}