Good afternoon!
I have the following situation, as a return of a request I get a json with several information. In C # I convert this information to objects using JsonConvert.Deserialize () ..
Look at the return below:
{
"id": "AV654AS65D4AS654DASD65AS4DA6S5D4AS65D4",
"due_date": "2017-08-10",
"currency": "BRL",
"items_total_cents": 1800,
"status": "paid",
"updated_at": "2017-08-11T10:45:30-03:00",
"total_cents": 1800,
"total_paid_cents": 1620,
"paid_at": "2017-08-11T10:45:30-03:00",
"taxes_paid_cents": 128,
"paid_cents": 1620,
"payable_with": "bank_slip",
"paid": "R$ 16,20",
"transaction_number": 9999999999,
"payment_method": "bank_slip",
"created_at_iso": "2017-08-10T11:25:46-03:00",
"updated_at_iso": "2017-08-11T10:45:30-03:00",
"items": [
{
"id": "AV654AS65D4AS654DASD65AS4DA6S5D4AS65D4",
"description": "PARCELA X Y Z",
"price_cents": 1800,
"quantity": 1,
"created_at": "2017-08-10T11:25:46-03:00",
"updated_at": "2017-08-10T11:25:46-03:00",
"price": "R$ 18,00"
}
],
"variables": [
{
"id": "1",
"variable": "payment_data.bank",
"value": "bradesco"
},
{
"id": "2",
"variable": "payment_data.occurrence_date",
"value": "100817"
},
{
"id": "3",
"variable": "payment_data.transaction_identifier",
"value": "110817027400"
},
{
"id": "4",
"variable": "payment_data.transaction_number",
"value": "90801863"
},
{
"id": "5",
"variable": "payment_method",
"value": "iugu_bank_slip"
}
]
}
In variables I have the following structure: id, variable, and value. The variable field has predefined values, could I convert these values to something similar to enum? does C # offer this breakthrough?
Type:
EnumString{
payment_data.bank,
payment_data.occurrence_date,
payment_data.transaction_identifier,
payment_data.transaction_number,
payment_method
}