github.com/Ingenico-ePayments/connect-sdk-go@v0.0.0-20240318153750-1f8cd329b9c9/domain/product/AccountOnFileAttribute.go (about) 1 // This class was auto-generated from the API references found at 2 // https://epayments-api.developer-ingenico.com/ 3 4 package product 5 6 // AccountOnFileAttribute represents class AccountOnFileAttribute 7 type AccountOnFileAttribute struct { 8 Key *string `json:"key,omitempty"` 9 MustWriteReason *string `json:"mustWriteReason,omitempty"` 10 Status *string `json:"status,omitempty"` 11 Value *string `json:"value,omitempty"` 12 } 13 14 // NewAccountOnFileAttribute constructs a new AccountOnFileAttribute 15 func NewAccountOnFileAttribute() *AccountOnFileAttribute { 16 return &AccountOnFileAttribute{} 17 }