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

package components

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

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

func (o *WebpropertyAsset) GetResource() Webproperty {
	if o == nil {
		return Webproperty{}
	}
	return o.Resource
}
