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

package components

type LdapAttribute struct {
	// Name of the LDAP attribute in the root DN
	Name *string `json:"name,omitempty"`
	// Values for the respective LDAP attribute
	Values []string `json:"values,omitempty"`
}

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

func (o *LdapAttribute) GetValues() []string {
	if o == nil {
		return nil
	}
	return o.Values
}
