| Name | Type | Description | Notes |
|---|---|---|---|
| string | Customer's email address | ||
| Amount | int32 | Amount should be in kobo if currency is NGN, pesewas, if currency is GHS, and cents, if currency is ZAR | |
| AuthorizationCode | Pointer to string | Valid authorization code to charge | [optional] |
| Currency | Pointer to string | The transaction currency | [optional] |
func NewTransactionCheckAuthorization(email string, amount int32, ) *TransactionCheckAuthorization
NewTransactionCheckAuthorization instantiates a new TransactionCheckAuthorization object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed
func NewTransactionCheckAuthorizationWithDefaults() *TransactionCheckAuthorization
NewTransactionCheckAuthorizationWithDefaults instantiates a new TransactionCheckAuthorization object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set
func (o *TransactionCheckAuthorization) GetEmail() string
GetEmail returns the Email field if non-nil, zero value otherwise.
func (o *TransactionCheckAuthorization) GetEmailOk() (*string, bool)
GetEmailOk returns a tuple with the Email field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TransactionCheckAuthorization) SetEmail(v string)
SetEmail sets Email field to given value.
func (o *TransactionCheckAuthorization) GetAmount() int32
GetAmount returns the Amount field if non-nil, zero value otherwise.
func (o *TransactionCheckAuthorization) GetAmountOk() (*int32, bool)
GetAmountOk returns a tuple with the Amount field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TransactionCheckAuthorization) SetAmount(v int32)
SetAmount sets Amount field to given value.
func (o *TransactionCheckAuthorization) GetAuthorizationCode() string
GetAuthorizationCode returns the AuthorizationCode field if non-nil, zero value otherwise.
func (o *TransactionCheckAuthorization) GetAuthorizationCodeOk() (*string, bool)
GetAuthorizationCodeOk returns a tuple with the AuthorizationCode field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TransactionCheckAuthorization) SetAuthorizationCode(v string)
SetAuthorizationCode sets AuthorizationCode field to given value.
func (o *TransactionCheckAuthorization) HasAuthorizationCode() bool
HasAuthorizationCode returns a boolean if a field has been set.
func (o *TransactionCheckAuthorization) GetCurrency() string
GetCurrency returns the Currency field if non-nil, zero value otherwise.
func (o *TransactionCheckAuthorization) GetCurrencyOk() (*string, bool)
GetCurrencyOk returns a tuple with the Currency field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TransactionCheckAuthorization) SetCurrency(v string)
SetCurrency sets Currency field to given value.
func (o *TransactionCheckAuthorization) HasCurrency() bool
HasCurrency returns a boolean if a field has been set.