interface AssociateRole {
    buyerAssignable: boolean;
    createdAt: string;
    createdBy?: CreatedBy;
    custom?: CustomFields;
    id: string;
    key: string;
    lastModifiedAt: string;
    lastModifiedBy?: LastModifiedBy;
    name?: string;
    permissions: string[];
    version: number;
}

Hierarchy (view full)

Properties

buyerAssignable: boolean

Whether the AssociateRole can be assigned to an Associate by a buyer. If false, the AssociateRole can only be assigned using the general endpoint.

createdAt: string

Date and time (UTC) the AssociateRole was initially created.

createdBy?: CreatedBy

IDs and references that created the AssociateRole.

custom?: CustomFields

Custom Fields for the AssociateRole.

id: string

Unique identifier of the AssociateRole.

key: string

User-defined unique and immutable identifier of the AssociateRole.

lastModifiedAt: string

Date and time (UTC) the AssociateRole was last updated.

lastModifiedBy?: LastModifiedBy

IDs and references that last modified the AssociateRole.

name?: string

Name of the AssociateRole.

permissions: string[]

List of Permissions for the AssociateRole.

version: number

Current version of the AssociateRole.