/** * Emil PublicAPI * The Emil Public API description * * The version of the OpenAPI document: 1.0 * Contact: kontakt@emil.de * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface PartnerRoleClass */ export interface PartnerRoleClass { /** * Internal unique identifier for the object. You should not have to use this, use code instead. * @type {number} * @memberof PartnerRoleClass */ 'id': number; /** * Unique identifier for the object. * @type {string} * @memberof PartnerRoleClass */ 'code': string; /** * Name of the partner role. * @type {string} * @memberof PartnerRoleClass */ 'name': string; /** * A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id. * @type {string} * @memberof PartnerRoleClass */ 'slug': string; /** * A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id. * @type {string} * @memberof PartnerRoleClass */ 'productSlug'?: string; /** * Time at which the object was created. * @type {string} * @memberof PartnerRoleClass */ 'createdAt': string; /** * Time at which the object was updated. * @type {string} * @memberof PartnerRoleClass */ 'updatedAt': string; }