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

package operations

import (
	"github.com/censys/censys-sdk-go/models/components"
)

type V3GlobaldataAssetWebpropertyListGlobals struct {
	OrganizationID *string `queryParam:"style=form,explode=true,name=organization_id"`
}

func (o *V3GlobaldataAssetWebpropertyListGlobals) GetOrganizationID() *string {
	if o == nil {
		return nil
	}
	return o.OrganizationID
}

type V3GlobaldataAssetWebpropertyListRequest struct {
	// The ID of a Censys organization to associate the request with. See the [Getting Started docs](https://docs.censys.com/reference/get-started#step-3-set-your-organization-id) for more information.
	OrganizationID *string `queryParam:"style=form,explode=false,name=organization_id"`
	// A list of web property identifiers.
	WebpropertyIds []string `queryParam:"style=form,explode=false,name=webproperty_ids"`
}

func (o *V3GlobaldataAssetWebpropertyListRequest) GetOrganizationID() *string {
	if o == nil {
		return nil
	}
	return o.OrganizationID
}

func (o *V3GlobaldataAssetWebpropertyListRequest) GetWebpropertyIds() []string {
	if o == nil {
		return nil
	}
	return o.WebpropertyIds
}

type V3GlobaldataAssetWebpropertyListResponse struct {
	HTTPMeta components.HTTPMetadata `json:"-"`
	// OK
	ResponseEnvelopeListWebpropertyAsset *components.ResponseEnvelopeListWebpropertyAsset
	Headers                              map[string][]string
}

func (o *V3GlobaldataAssetWebpropertyListResponse) GetHTTPMeta() components.HTTPMetadata {
	if o == nil {
		return components.HTTPMetadata{}
	}
	return o.HTTPMeta
}

func (o *V3GlobaldataAssetWebpropertyListResponse) GetResponseEnvelopeListWebpropertyAsset() *components.ResponseEnvelopeListWebpropertyAsset {
	if o == nil {
		return nil
	}
	return o.ResponseEnvelopeListWebpropertyAsset
}

func (o *V3GlobaldataAssetWebpropertyListResponse) GetHeaders() map[string][]string {
	if o == nil {
		return map[string][]string{}
	}
	return o.Headers
}
