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

package components

type HostAsset struct {
	Extensions map[string]any `json:"extensions"`
	Resource   Host           `json:"resource"`
}

func (o *HostAsset) GetExtensions() map[string]any {
	if o == nil {
		return map[string]any{}
	}
	return o.Extensions
}

func (o *HostAsset) GetResource() Host {
	if o == nil {
		return Host{}
	}
	return o.Resource
}
