API Docs for: 5.4.0-alpha.18+9f4e020c
Show:

StringTransform Class

The StringTransform class is used to serialize and deserialize string attributes on Ember Data record objects. This transform is used when string is passed as the type parameter to the attr function.

Usage

import Model, { attr, belongsTo } from '@ember-data/model';

export default class UserModel extends Model {
  @attr('boolean') isAdmin;
  @attr('string') name;
  @attr('string') email;
}

Item Index