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

package components

type ChromeDevtoolsTarget struct {
	Title *string `json:"title,omitempty"`
	Type  *string `json:"type,omitempty"`
	URL   *string `json:"url,omitempty"`
}

func (o *ChromeDevtoolsTarget) GetTitle() *string {
	if o == nil {
		return nil
	}
	return o.Title
}

func (o *ChromeDevtoolsTarget) GetType() *string {
	if o == nil {
		return nil
	}
	return o.Type
}

func (o *ChromeDevtoolsTarget) GetURL() *string {
	if o == nil {
		return nil
	}
	return o.URL
}
