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

package components

type IppAttribute struct {
	Name     *string `json:"name,omitempty"`
	ValueTag *int    `json:"value_tag,omitempty"`
}

func (o *IppAttribute) GetName() *string {
	if o == nil {
		return nil
	}
	return o.Name
}

func (o *IppAttribute) GetValueTag() *int {
	if o == nil {
		return nil
	}
	return o.ValueTag
}
