github.com/yaegashi/msgraph.go@v0.1.4/beta/ModelVendor.go (about)

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  import "time"
     6  
     7  // Vendor undocumented
     8  type Vendor struct {
     9  	// Entity is the base model of Vendor
    10  	Entity
    11  	// Number undocumented
    12  	Number *string `json:"number,omitempty"`
    13  	// DisplayName undocumented
    14  	DisplayName *string `json:"displayName,omitempty"`
    15  	// Address undocumented
    16  	Address *PostalAddressType `json:"address,omitempty"`
    17  	// PhoneNumber undocumented
    18  	PhoneNumber *string `json:"phoneNumber,omitempty"`
    19  	// Email undocumented
    20  	Email *string `json:"email,omitempty"`
    21  	// Website undocumented
    22  	Website *string `json:"website,omitempty"`
    23  	// TaxRegistrationNumber undocumented
    24  	TaxRegistrationNumber *string `json:"taxRegistrationNumber,omitempty"`
    25  	// CurrencyID undocumented
    26  	CurrencyID *UUID `json:"currencyId,omitempty"`
    27  	// CurrencyCode undocumented
    28  	CurrencyCode *string `json:"currencyCode,omitempty"`
    29  	// PaymentTermsID undocumented
    30  	PaymentTermsID *UUID `json:"paymentTermsId,omitempty"`
    31  	// PaymentMethodID undocumented
    32  	PaymentMethodID *UUID `json:"paymentMethodId,omitempty"`
    33  	// TaxLiable undocumented
    34  	TaxLiable *bool `json:"taxLiable,omitempty"`
    35  	// Blocked undocumented
    36  	Blocked *string `json:"blocked,omitempty"`
    37  	// Balance undocumented
    38  	Balance *int `json:"balance,omitempty"`
    39  	// LastModifiedDateTime undocumented
    40  	LastModifiedDateTime *time.Time `json:"lastModifiedDateTime,omitempty"`
    41  	// Picture undocumented
    42  	Picture []Picture `json:"picture,omitempty"`
    43  	// Currency undocumented
    44  	Currency *Currency `json:"currency,omitempty"`
    45  	// PaymentTerm undocumented
    46  	PaymentTerm *PaymentTerm `json:"paymentTerm,omitempty"`
    47  	// PaymentMethod undocumented
    48  	PaymentMethod *PaymentMethod `json:"paymentMethod,omitempty"`
    49  }