// Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.

package components

type Whois struct {
	Network      *Network      `json:"network,omitempty"`
	Organization *Organization `json:"organization,omitempty"`
}

func (o *Whois) GetNetwork() *Network {
	if o == nil {
		return nil
	}
	return o.Network
}

func (o *Whois) GetOrganization() *Organization {
	if o == nil {
		return nil
	}
	return o.Organization
}
