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

package components

type OtherName struct {
	// The OID identifying the syntax of the otherName value.
	ID *string `json:"id,omitempty"`
	// The raw otherName value.
	Value *string `json:"value,omitempty"`
}

func (o *OtherName) GetID() *string {
	if o == nil {
		return nil
	}
	return o.ID
}

func (o *OtherName) GetValue() *string {
	if o == nil {
		return nil
	}
	return o.Value
}
