-
Notifications
You must be signed in to change notification settings - Fork 46
/
model_eventproperties.go
42 lines (36 loc) · 2.16 KB
/
model_eventproperties.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package events
import (
"time"
"github.com/hashicorp/go-azure-helpers/lang/dates"
)
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See NOTICE.txt in the project root for license information.
type EventProperties struct {
Adjustments *Amount `json:"adjustments,omitempty"`
AdjustmentsInBillingCurrency *AmountWithExchangeRate `json:"adjustmentsInBillingCurrency,omitempty"`
BillingCurrency *string `json:"billingCurrency,omitempty"`
Charges *Amount `json:"charges,omitempty"`
ChargesInBillingCurrency *AmountWithExchangeRate `json:"chargesInBillingCurrency,omitempty"`
ClosedBalance *Amount `json:"closedBalance,omitempty"`
ClosedBalanceInBillingCurrency *AmountWithExchangeRate `json:"closedBalanceInBillingCurrency,omitempty"`
CreditCurrency *string `json:"creditCurrency,omitempty"`
CreditExpired *Amount `json:"creditExpired,omitempty"`
CreditExpiredInBillingCurrency *AmountWithExchangeRate `json:"creditExpiredInBillingCurrency,omitempty"`
Description *string `json:"description,omitempty"`
EventType *EventType `json:"eventType,omitempty"`
InvoiceNumber *string `json:"invoiceNumber,omitempty"`
NewCredit *Amount `json:"newCredit,omitempty"`
NewCreditInBillingCurrency *AmountWithExchangeRate `json:"newCreditInBillingCurrency,omitempty"`
Reseller *Reseller `json:"reseller,omitempty"`
TransactionDate *string `json:"transactionDate,omitempty"`
}
func (o *EventProperties) GetTransactionDateAsTime() (*time.Time, error) {
if o.TransactionDate == nil {
return nil, nil
}
return dates.ParseAsFormat(o.TransactionDate, "2006-01-02T15:04:05Z07:00")
}
func (o *EventProperties) SetTransactionDateAsTime(input time.Time) {
formatted := input.Format("2006-01-02T15:04:05Z07:00")
o.TransactionDate = &formatted
}